Age | Commit message (Collapse) | Author |
|
|
|
(currently) have no exchange rate, and euro-pegged currencies
- some cosmetic tweaks to make the currencies stuff more consistent
|
|
The Economist rather than The Wall Street Journal, and have removed
entries for which i have no data (i think this is better than providing
data from 2002; in the future we can hopefully add them back in).
|
|
reserve section (i'll get to the others sometime), as of 23.9.11. i've
also updated the website link, and the date of the exchange rate.
because the rates given on the federal reserve website are in currency
units per US dollar, and units(1) needs US dollars per currency unit,
there is an additional layer of conversion and rounding (and work) to
perform. i have side stepped that by prefixing all the amounts by "1|"
to let units(1) do the work. for whatever reason, four currencies are
given in US dollars per currency unit and do not need this.
|
|
that they are pegged to the euro;
|
|
Also make the -l output go to stdout as it's easier to grep with it,
and set stdout to linebuf.
ok djm@ "as long as you add a setlinebuf(stdout) :-)"
|
|
|
|
|
|
BRR -> BRL (brazilreal)
MXP -> MXN (mexicopeso)
add LKR (srilankarupee) and VEF (venezuelabolivar)
use base unit name for CNY and GBP
|
|
currency may have more than one alias, i sorted it by base unit (column
two), rather than alias name.
|
|
sync the list from the federal reserve, to match exactly what they
currently publish. to do that, i've changed the base currency for the UK
from "britainpound" to "unitedkingdompound"; and for China from "chinarenminbi"
to "chinayuan".
to preserve those long existing terms, i've added aliases for
"greatbritainpound", "britainpound", and "chinarenminbi".
i've also sorted the federal reserve list to match the order currently
published.
|
|
|
|
implement .Bl -bullet
add more information to the .TH line
escape dots at the beginnings of lines
add trailing newline character at the end of the file
do not misinterpret the ROOT block as .Ap
|
|
isakmpd.8: rsa:1024 -> rsa:2048 (ok markus)
all: X509 -> X.509
from Lawrence Teo
|
|
|
|
With this change nm(1) prints the expected symbol type ('B' or 'D')
for variables in the .tbss and .tdata sections respectively, instead
of '?'. This would be what binutils do for non-automatic variables
that are marked as thread-local with the __thread attribute in GCC.
help and ok miod@, guenther@
|
|
from the update.
|
|
from Michael W. Bombardieri
|
|
manual pages; whilst here, a little clean up for clarity
ok millert
|
|
specifier that makes it look nicer;
ok schwarze kristaps
|
|
|
|
|
|
file and line number
|
|
|
|
|
|
1) send the actual listen port in the open message (instead of 0).
this allows multiple forwardings with a dynamic listen port
2) update the matching permit-open entry, so we can identify where
to connect to
report: den at skbkontur.ru and P. Szczygielski
feedback and ok djm@
|
|
localhost:*". bz #1857, ok djm markus.
|
|
Michael W Bombardieri.
ok millert
|
|
because the -V command printed them... gut the -V (and -L, while there)
to be silent.
ok miod jsg
|
|
is no longer needed.
|
|
in all likelihood, they will be resorted anyway
|
|
Use strlcpy() not snprintf() to copy a simple string.
OK deraadt@
|
|
move the call to bell() out of u_interrupt() (a signal handler).
OK and with help from deraadt@
|
|
|
|
|
|
forget about pending whitespace (vbl), or the next line would
be misaligned and potentially too long; but i'm fixing this
in a simpler way than he proposed.
Also remove the kludges in .HP that compensated for this bug.
|
|
support .Lb -libdwarf and update .Lb -libelf
after Werner Lemberg committed a patch by Joseph Koshy
|
|
to work both with and without frames and rulers.
Started during BSDCan 2011 in Ottawa, finished during s2k11 in Ljubljana.
ok kristaps@
|
|
fprintf(3) and exit(3).
from Michael W. Bombardieri <mwb at bom.nom.co>, thanks!
|
|
to have *next*-line head arguments on the *same* input line.
So .TP must not assume that a head argument with a matching
input line number is a same-line argument (and access a NULL pointer).
Bug found and fix tested by kristaps@ with groff_hdtbl(7).
|
|
|
|
to variables that might be changed;
from kristaps@
|
|
to the default and check that the left does not outgrow the right one.
Otherwise, the (rmargin >= offset) assertion fails in term_flushln().
Bug found and fix tested by kristaps@ with NetBSD slapo-retcode(5).
|
|
|
|
this was forgotten after man_term.c rev. 1.25 on March 2, 2010.
The benefit is a sane page header line when .Dt is very long.
Reminded by Thomas Klausner <wiz at NetBSD>, thanks.
|
|
In columnated contexts (.Bl -column, .Bl -tag, .IP, .TP, .HP etc.), do not
pad after writing a column. Instead, always pad before writing content.
In itself, this change avoids:
- writing trailing whitespace in some situations
- with .fi/.nf in .HP, breaking lines that were already padded
It allows several bugfixes included in this patch:
- Do not count backspace as a character with positive width.
- Set up proper indentation when encountering .fi/.nf in .HP.
- Adjust the .HP indentation width to what groff does.
- Never unlimit the right margin unless in the final column.
This reduces the groff/mandoc-differences in base by nearly 20%,
from 89k to 72k lines of diffs.
ok kristaps@
|
|
limited subset of information the kernel supplies.
ok miod pirofti
|
|
remove some now useless statistics, and add some
relevant ones regarding kva usage in the cache.
make systat io and show bcstats in ddb both show
these counters.
ok deraadt@ krw@
|
|
is both preceded and followed by an alphabetic character.
This fixes about a dozen places in base.
|
|
If a string is defined in terms of itself, the REPARSE_LIMIT in read.c
used to break the cycle. This no longer works since all the work
is now done in the function roff_res(), looping indefinitely.
Make this loop finite by arbitrarily limiting the number of times one
string may be expanded; when that limit is reached, leave the remaining
string references unexpanded.
This changes behaviour compared to 1.11.5, where the whole line would
have been dropped. The new behaviour is better because it loses less
information. We don't want to imitate groff-1.20.1 behaviour anyway
because groff aborts parsing of the whole file.
|