commit bash-20110110 snapshot

This commit is contained in:
Chet Ramey
2011-12-12 22:13:35 -05:00
parent 9fc76425ef
commit 9aea588273
78 changed files with 7676 additions and 7248 deletions
+19 -3
View File
@@ -47,6 +47,8 @@ TEXI2HTML = $(srcdir)/texi2html
QUIETPS = #set this to -q to shut up dvips
PSDPI = 600
DVIPS = dvips -D ${PSDPI} $(QUIETPS) -o $@ # tricky
DVIPDF = dvipdfm -o $@ -p ${PAPERSIZE}
PSPDF = gs -sPAPERSIZE=${PAPERSIZE} -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -sOutputFile=$@
RLSRC = $(srcdir)/rlman.texi $(srcdir)/rluser.texi \
$(srcdir)/rltech.texi $(srcdir)/version.texi \
@@ -64,15 +66,25 @@ DVIOBJ = readline.dvi history.dvi rluserman.dvi
INFOOBJ = readline.info history.info rluserman.info
PSOBJ = readline.ps history.ps rluserman.ps
HTMLOBJ = readline.html history.html rluserman.html
PDFOBJ = readline.pdf history.pdf rluserman.pdf
INTERMEDIATE_OBJ = rlman.dvi
CREATED_DOCS = $(DVIOBJ) $(INFOOBJ) $(PSOBJ) $(HTMLOBJ)
CREATED_DOCS = $(DVIOBJ) $(INFOOBJ) $(PSOBJ) $(HTMLOBJ) $(PDFOBJ)
.SUFFIXES: .ps .txt .dvi
.SUFFIXES: .ps .txt .dvi .html .pdf
all: info dvi html ps
.ps.pdf:
$(RM) $@
-${PSPDF} $<
.dvi.pdf:
$(RM) $@
-${DVIPDF} $<
all: info dvi html ps
nodvi: info html
pdf: $(PDFOBJ)
readline.dvi: $(RLSRC)
TEXINPUTS=.:$(TEXINPUTDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/rlman.texi
@@ -121,6 +133,10 @@ dvi: $(DVIOBJ)
ps: $(PSOBJ)
html: $(HTMLOBJ)
readline.pdf: readline.dvi
history.pdf: history.dvi
rluserman.pdf: rluserman.dvi
clean:
$(RM) *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.cps *.pgs \
*.fns *.kys *.tps *.vrs *.bt *.bts *.o core *.core
Binary file not shown.
+11 -9
View File
@@ -1,6 +1,6 @@
<HTML>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- Created on December, 7 2010 by texi2html 1.64 -->
<!-- Created on January, 10 2011 by texi2html 1.64 -->
<!--
Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
@@ -4705,18 +4705,20 @@ from the array must be freed.
<DL>
<DT><U>Variable:</U> rl_icppfunc_t * <B>rl_directory_completion_hook</B>
<DD>This function, if defined, is allowed to modify the directory portion
of filenames Readline completes. It is called with the address of a
string (the current directory name) as an argument, and may modify that string.
of filenames Readline completes.
It could be used to expand symbolic links or shell variables in pathnames.
It is called with the address of a string (the current directory name) as an
argument, and may modify that string.
If the string is replaced with a new string, the old value should be freed.
Any modified directory name should have a trailing slash.
The modified value will be displayed as part of the completion, replacing
The modified value will be used as part of the completion, replacing
the directory portion of the pathname the user typed.
It returns an integer that should be non-zero if the function modifies
its directory argument.
It could be used to expand symbolic links or shell variables in pathnames.
At the least, even if no other expansion is performed, this function should
remove any quote characters from the directory name, because its result will
be passed directly to <CODE>opendir()</CODE>.
The directory completion hook returns an integer that should be non-zero if
the function modifies its directory argument.
The function should not modify the directory argument if it returns 0.
</DL>
</P><P>
@@ -6835,7 +6837,7 @@ to permit their use in free software.
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="readline.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1>About this document</H1>
This document was generated by <I>Chet Ramey</I> on <I>December, 7 2010</I>
This document was generated by <I>Chet Ramey</I> on <I>January, 10 2011</I>
using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
"><I>texi2html</I></A>
<P></P>
@@ -6997,7 +6999,7 @@ the following structure:
<BR>
<FONT SIZE="-1">
This document was generated
by <I>Chet Ramey</I> on <I>December, 7 2010</I>
by <I>Chet Ramey</I> on <I>January, 10 2011</I>
using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
"><I>texi2html</I></A>
+42 -41
View File
@@ -2989,19 +2989,20 @@ File: readline.info, Node: Completion Variables, Next: A Short Completion Exam
-- Variable: rl_icppfunc_t * rl_directory_completion_hook
This function, if defined, is allowed to modify the directory
portion of filenames Readline completes. It is called with the
address of a string (the current directory name) as an argument,
and may modify that string. If the string is replaced with a new
string, the old value should be freed. Any modified directory
name should have a trailing slash. The modified value will be
displayed as part of the completion, replacing the directory
portion of the pathname the user typed. It returns an integer
that should be non-zero if the function modifies its directory
argument. It could be used to expand symbolic links or shell
variables in pathnames. At the least, even if no other expansion
is performed, this function should remove any quote characters
from the directory name, because its result will be passed
directly to `opendir()'.
portion of filenames Readline completes. It could be used to
expand symbolic links or shell variables in pathnames. It is
called with the address of a string (the current directory name)
as an argument, and may modify that string. If the string is
replaced with a new string, the old value should be freed. Any
modified directory name should have a trailing slash. The
modified value will be used as part of the completion, replacing
the directory portion of the pathname the user typed. At the
least, even if no other expansion is performed, this function
should remove any quote characters from the directory name,
because its result will be passed directly to `opendir()'. The
directory completion hook returns an integer that should be
non-zero if the function modifies its directory argument. The
function should not modify the directory argument if it returns 0.
-- Variable: rl_dequote_func_t * rl_filename_rewrite_hook
If non-zero, this is the address of a function called when reading
@@ -4346,11 +4347,11 @@ Function and Variable Index
* rl_attempted_completion_function: Completion Variables.
(line 12)
* rl_attempted_completion_over: Completion Variables.
(line 225)
(line 226)
* rl_basic_quote_characters: Completion Variables.
(line 114)
(line 115)
* rl_basic_word_break_characters: Completion Variables.
(line 108)
(line 109)
* rl_begin_undo_group: Allowing Undoing. (line 29)
* rl_bind_key: Binding Keys. (line 22)
* rl_bind_key_if_unbound: Binding Keys. (line 32)
@@ -4383,39 +4384,39 @@ Function and Variable Index
* rl_complete_internal: Completion Functions.
(line 10)
* rl_completer_quote_characters: Completion Variables.
(line 131)
(line 132)
* rl_completer_word_break_characters: Completion Variables.
(line 117)
(line 118)
* rl_completion_append_character: Completion Variables.
(line 155)
(line 156)
* rl_completion_display_matches_hook: Completion Variables.
(line 95)
(line 96)
* rl_completion_entry_function <1>: How Completing Works.
(line 55)
* rl_completion_entry_function: Completion Variables.
(line 7)
* rl_completion_found_quote: Completion Variables.
(line 183)
(line 184)
* rl_completion_invoking_key: Completion Variables.
(line 248)
(line 249)
* rl_completion_mark_symlink_dirs: Completion Variables.
(line 190)
(line 191)
* rl_completion_matches: Completion Functions.
(line 45)
* rl_completion_mode: Completion Functions.
(line 37)
* rl_completion_query_items: Completion Variables.
(line 149)
(line 150)
* rl_completion_quote_character: Completion Variables.
(line 171)
(line 172)
* rl_completion_suppress_append: Completion Variables.
(line 165)
(line 166)
* rl_completion_suppress_quote: Completion Variables.
(line 177)
(line 178)
* rl_completion_type: Completion Variables.
(line 240)
(line 241)
* rl_completion_word_break_hook: Completion Variables.
(line 122)
(line 123)
* rl_copy_keymap: Keymaps. (line 17)
* rl_copy_text: Modifying Text. (line 15)
* rl_crlf: Redisplay. (line 30)
@@ -4445,19 +4446,19 @@ Function and Variable Index
* rl_explicit_arg: Readline Variables. (line 261)
* rl_extend_line_buffer: Utility Functions. (line 27)
* rl_filename_completion_desired: Completion Variables.
(line 205)
(line 206)
* rl_filename_completion_function: Completion Functions.
(line 59)
* rl_filename_dequoting_function: Completion Variables.
(line 37)
* rl_filename_quote_characters: Completion Variables.
(line 137)
(line 138)
* rl_filename_quoting_desired: Completion Variables.
(line 215)
(line 216)
* rl_filename_quoting_function: Completion Variables.
(line 24)
* rl_filename_rewrite_hook: Completion Variables.
(line 80)
(line 81)
* rl_forced_update_display: Redisplay. (line 11)
* rl_free: Utility Functions. (line 18)
* rl_free_keymap: Keymaps. (line 30)
@@ -4482,11 +4483,11 @@ Function and Variable Index
* rl_getc_function: Readline Variables. (line 130)
* rl_gnu_readline_p: Readline Variables. (line 83)
* rl_ignore_completion_duplicates: Completion Variables.
(line 201)
(line 202)
* rl_ignore_some_completions_function: Completion Variables.
(line 56)
* rl_inhibit_completion: Completion Variables.
(line 254)
(line 255)
* rl_initialize: Utility Functions. (line 31)
* rl_insert_completions: Completion Functions.
(line 32)
@@ -4561,9 +4562,9 @@ Function and Variable Index
(line 119)
* rl_show_char: Redisplay. (line 33)
* rl_sort_completion_matches: Completion Variables.
(line 232)
(line 233)
* rl_special_prefixes: Completion Variables.
(line 142)
(line 143)
* rl_startup_hook: Readline Variables. (line 115)
* rl_stuff_char: Character Input. (line 19)
* rl_terminal_name: Readline Variables. (line 87)
@@ -4667,9 +4668,9 @@ Node: Custom Completers112183
Node: How Completing Works112903
Node: Completion Functions116217
Node: Completion Variables119789
Node: A Short Completion Example133803
Node: GNU Free Documentation License146582
Node: Concept Index171775
Node: Function and Variable Index173296
Node: A Short Completion Example133902
Node: GNU Free Documentation License146681
Node: Concept Index171874
Node: Function and Variable Index173395

End Tag Table
+50 -48
View File
@@ -11,7 +11,7 @@
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -D 300 -o readline.ps readline.dvi
%DVIPSParameters: dpi=300
%DVIPSSource: TeX output 2010.12.07:1619
%DVIPSSource: TeX output 2011.01.10:1040
%%BeginProcSet: tex.pro 0 0
%!
/TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
@@ -7006,67 +7006,69 @@ Fs(,)g(whic)o(h)g(is)g(the)f(quoting)h(c)o(haracter)f(that)195
Fr(')p Fs(')g(or)h(`)p Fr(")p Fs('\).)21 b(If)c Fi(quote)p
1185 423 V 19 w(c)o(har)i Fs(is)d(zero,)g(the)g(\014lename)g(w)o(as)f
(not)195 478 y(in)g(an)g(em)o(b)q(edded)i(string.)1685
601 y([V)l(ariable])-1801 b Fg(rl_linebuf_func_t)29 b(*)d
(rl_char_is_quoted_p)195 656 y Fs(A)18 b(p)q(oin)o(ter)g(to)g(a)g
574 y([V)l(ariable])-1801 b Fg(rl_linebuf_func_t)29 b(*)d
(rl_char_is_quoted_p)195 629 y Fs(A)18 b(p)q(oin)o(ter)g(to)g(a)g
(function)g(to)g(call)g(that)f(determines)i(whether)f(or)g(not)g(a)g
(sp)q(eci\014c)i(c)o(haracter)195 711 y(in)d(the)g(line)g(bu\013er)g
(sp)q(eci\014c)i(c)o(haracter)195 684 y(in)d(the)g(line)g(bu\013er)g
(is)g(quoted,)h(according)e(to)h(whatev)o(er)f(quoting)h(mec)o(hanism)g
(the)g(program)195 766 y(calling)11 b(Readline)i(uses.)19
(the)g(program)195 738 y(calling)11 b(Readline)i(uses.)19
b(The)12 b(function)h(is)e(called)h(with)g(t)o(w)o(o)f(argumen)o(ts:)18
b Fi(text)q Fs(,)12 b(the)g(text)g(of)g(the)195 821 y(line,)j(and)g
b Fi(text)q Fs(,)12 b(the)g(text)g(of)g(the)195 793 y(line,)j(and)g
Fi(index)s Fs(,)g(the)g(index)h(of)f(the)g(c)o(haracter)g(in)g(the)g
(line.)20 b(It)15 b(is)g(used)g(to)g(decide)h(whether)f(a)195
875 y(c)o(haracter)f(found)i(in)f Fr(rl_completer_word_break_)o
848 y(c)o(haracter)f(found)i(in)f Fr(rl_completer_word_break_)o
(charact)o(ers)d Fs(should)j(b)q(e)h(used)g(to)e(break)195
930 y(w)o(ords)g(for)h(the)g(completer.)1685 1054 y([V)l(ariable])-1801
903 y(w)o(ords)g(for)h(the)g(completer.)1685 999 y([V)l(ariable])-1801
b Fg(rl_compignore_func_t)29 b(*)d(rl_ignore_some_compl)q(etions_)q
(functio)q(n)195 1108 y Fs(This)18 b(function,)i(if)e(de\014ned,)j(is)d
(functio)q(n)195 1054 y Fs(This)18 b(function,)i(if)e(de\014ned,)j(is)d
(called)g(b)o(y)h(the)g(completer)f(when)i(real)e(\014lename)h
(completion)195 1163 y(is)e(done,)g(after)f(all)g(the)h(matc)o(hing)f
(completion)195 1108 y(is)e(done,)g(after)f(all)g(the)h(matc)o(hing)f
(names)h(ha)o(v)o(e)g(b)q(een)h(generated.)25 b(It)17
b(is)g(passed)g(a)g Fr(NULL)f Fs(ter-)195 1218 y(minated)f(arra)o(y)f
b(is)g(passed)g(a)g Fr(NULL)f Fs(ter-)195 1163 y(minated)f(arra)o(y)f
(of)h(matc)o(hes.)20 b(The)c(\014rst)f(elemen)o(t)g(\()p
Fr(matches[0])p Fs(\))e(is)i(the)h(maximal)e(substring)195
1273 y(common)g(to)g(all)f(matc)o(hes.)19 b(This)14 b(function)g(can)h
1218 y(common)g(to)g(all)f(matc)o(hes.)19 b(This)14 b(function)g(can)h
(re-arrange)f(the)g(list)f(of)h(matc)o(hes)g(as)g(required,)195
1328 y(but)h(eac)o(h)h(elemen)o(t)f(deleted)g(from)g(the)g(arra)o(y)f
(m)o(ust)g(b)q(e)i(freed.)1685 1451 y([V)l(ariable])-1801
1273 y(but)h(eac)o(h)h(elemen)o(t)f(deleted)g(from)g(the)g(arra)o(y)f
(m)o(ust)g(b)q(e)i(freed.)1685 1369 y([V)l(ariable])-1801
b Fg(rl_icppfunc_t)28 b(*)e(rl_directory_completi)q(on_hoo)q(k)195
1506 y Fs(This)c(function,)i(if)e(de\014ned,)k(is)c(allo)o(w)o(ed)f(to)
1423 y Fs(This)c(function,)i(if)e(de\014ned,)k(is)c(allo)o(w)o(ed)f(to)
h(mo)q(dify)g(the)h(directory)f(p)q(ortion)g(of)g(\014lenames)195
1560 y(Readline)d(completes.)28 b(It)19 b(is)e(called)h(with)g(the)g
(address)h(of)e(a)h(string)g(\(the)g(curren)o(t)g(directory)195
1615 y(name\))g(as)g(an)h(argumen)o(t,)f(and)h(ma)o(y)f(mo)q(dify)g
(that)g(string.)29 b(If)19 b(the)f(string)g(is)g(replaced)h(with)195
1670 y(a)h(new)g(string,)g(the)g(old)f(v)m(alue)h(should)g(b)q(e)h
(freed.)34 b(An)o(y)20 b(mo)q(di\014ed)h(directory)e(name)h(should)195
1725 y(ha)o(v)o(e)14 b(a)g(trailing)f(slash.)19 b(The)c(mo)q(di\014ed)g
(v)m(alue)g(will)e(b)q(e)i(displa)o(y)o(ed)f(as)g(part)g(of)h(the)f
(completion,)195 1780 y(replacing)f(the)i(directory)e(p)q(ortion)g(of)h
(the)g(pathname)g(the)h(user)f(t)o(yp)q(ed.)20 b(It)14
b(returns)g(an)g(in)o(teger)195 1834 y(that)i(should)g(b)q(e)h
(non-zero)g(if)f(the)h(function)f(mo)q(di\014es)h(its)e(directory)h
(argumen)o(t.)23 b(It)17 b(could)f(b)q(e)195 1889 y(used)h(to)f(expand)
i(sym)o(b)q(olic)e(links)g(or)g(shell)g(v)m(ariables)h(in)f(pathnames.)
24 b(A)o(t)17 b(the)g(least,)e(ev)o(en)i(if)195 1944
y(no)h(other)g(expansion)g(is)f(p)q(erformed,)i(this)f(function)g
(should)g(remo)o(v)o(e)f(an)o(y)h(quote)g(c)o(haracters)195
1999 y(from)c(the)i(directory)e(name,)h(b)q(ecause)h(its)f(result)f
(will)g(b)q(e)i(passed)f(directly)g(to)f Fr(opendir\(\))p
Fs(.)1685 2122 y([V)l(ariable])-1801 b Fg(rl_dequote_func_t)29
b(*)d(rl_filename_rewrite_hoo)q(k)195 2177 y Fs(If)12
b(non-zero,)h(this)e(is)g(the)h(address)g(of)g(a)f(function)h(called)f
(when)i(reading)e(directory)g(en)o(tries)h(from)195 2232
y(the)f(\014lesystem)f(for)g(completion)f(and)i(comparing)f(them)g(to)g
(the)h(partial)d(w)o(ord)i(to)g(b)q(e)h(completed.)195
2286 y(The)g(function)f(should)h(p)q(erform)f(an)o(y)h(necesary)g
(application)e(or)h(system-sp)q(eci\014c)h(con)o(v)o(ersion)f(on)195
2341 y(the)h(\014lename,)h(suc)o(h)f(as)g(con)o(v)o(erting)f(b)q(et)o
(w)o(een)h(c)o(haracter)g(sets)g(or)f(con)o(v)o(erting)g(from)h(a)f
(\014lesystem)195 2396 y(format)16 b(to)g(a)h(c)o(haracter)f(input)h
(format.)24 b(The)17 b(function)g(tak)o(es)f(t)o(w)o(o)g(argumen)o(ts:)
22 b Fi(fname)s Fs(,)17 b(the)195 2451 y(\014lename)d(to)g(b)q(e)h(con)
o(v)o(erted,)f(and)g Fi(fnlen)p Fs(,)h(its)e(length)h(in)g(b)o(ytes.)20
1478 y(Readline)c(completes.)26 b(It)17 b(could)h(b)q(e)g(used)g(to)f
(expand)h(sym)o(b)q(olic)f(links)f(or)h(shell)g(v)m(ariables)g(in)195
1533 y(pathnames.)35 b(It)20 b(is)f(called)h(with)g(the)g(address)g(of)
g(a)g(string)f(\(the)h(curren)o(t)g(directory)f(name\))195
1588 y(as)f(an)h(argumen)o(t,)g(and)g(ma)o(y)f(mo)q(dify)g(that)g
(string.)30 b(If)19 b(the)g(string)f(is)g(replaced)h(with)f(a)h(new)195
1643 y(string,)g(the)g(old)g(v)m(alue)g(should)h(b)q(e)f(freed.)33
b(An)o(y)19 b(mo)q(di\014ed)h(directory)e(name)h(should)g(ha)o(v)o(e)g
(a)195 1697 y(trailing)c(slash.)27 b(The)17 b(mo)q(di\014ed)h(v)m(alue)
g(will)e(b)q(e)i(used)g(as)f(part)g(of)g(the)h(completion,)f(replacing)
195 1752 y(the)f(directory)f(p)q(ortion)g(of)g(the)h(pathname)g(the)g
(user)g(t)o(yp)q(ed.)22 b(A)o(t)15 b(the)h(least,)f(ev)o(en)h(if)g(no)f
(other)195 1807 y(expansion)j(is)f(p)q(erformed,)h(this)f(function)h
(should)g(remo)o(v)o(e)f(an)o(y)g(quote)h(c)o(haracters)f(from)g(the)
195 1862 y(directory)11 b(name,)h(b)q(ecause)h(its)e(result)g(will)g(b)
q(e)h(passed)g(directly)f(to)g Fr(opendir\(\))p Fs(.)18
b(The)12 b(directory)195 1917 y(completion)k(ho)q(ok)g(returns)g(an)h
(in)o(teger)f(that)f(should)i(b)q(e)g(non-zero)g(if)f(the)h(function)f
(mo)q(di\014es)195 1971 y(its)f(directory)g(argumen)o(t.)20
b(The)c(function)f(should)h(not)f(mo)q(dify)g(the)h(directory)f
(argumen)o(t)g(if)g(it)195 2026 y(returns)g(0.)1685 2122
y([V)l(ariable])-1801 b Fg(rl_dequote_func_t)29 b(*)d
(rl_filename_rewrite_hoo)q(k)195 2177 y Fs(If)12 b(non-zero,)h(this)e
(is)g(the)h(address)g(of)g(a)f(function)h(called)f(when)i(reading)e
(directory)g(en)o(tries)h(from)195 2232 y(the)f(\014lesystem)f(for)g
(completion)f(and)i(comparing)f(them)g(to)g(the)h(partial)d(w)o(ord)i
(to)g(b)q(e)h(completed.)195 2286 y(The)g(function)f(should)h(p)q
(erform)f(an)o(y)h(necesary)g(application)e(or)h(system-sp)q(eci\014c)h
(con)o(v)o(ersion)f(on)195 2341 y(the)h(\014lename,)h(suc)o(h)f(as)g
(con)o(v)o(erting)f(b)q(et)o(w)o(een)h(c)o(haracter)g(sets)g(or)f(con)o
(v)o(erting)g(from)h(a)f(\014lesystem)195 2396 y(format)16
b(to)g(a)h(c)o(haracter)f(input)h(format.)24 b(The)17
b(function)g(tak)o(es)f(t)o(w)o(o)g(argumen)o(ts:)22
b Fi(fname)s Fs(,)17 b(the)195 2451 y(\014lename)d(to)g(b)q(e)h(con)o
(v)o(erted,)f(and)g Fi(fnlen)p Fs(,)h(its)e(length)h(in)g(b)o(ytes.)20
b(It)14 b(m)o(ust)g(either)g(return)g(its)f(\014rst)195
2506 y(argumen)o(t)i(\(if)f(no)h(con)o(v)o(ersion)g(tak)o(es)g(place\))
g(or)g(the)g(con)o(v)o(erted)g(\014lename)h(in)f(newly-allo)q(cated)195
+3 -3
View File
@@ -1,4 +1,4 @@
This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.12.11) 7 DEC 2010 16:19
This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.12.11) 10 JAN 2011 10:40
**/usr/homes/chet/src/bash/src/lib/readline/doc/rlman.texi
(/usr/homes/chet/src/bash/src/lib/readline/doc/rlman.texi (./texinfo.tex
Loading texinfo [version 2009-01-18.17]:
@@ -204,7 +204,7 @@ gnored[] |
[12] [13] [14] [15] [16] [17] [18] [19] [20]) (./rltech.texi Chapter 2 [21]
[22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36]
[37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48]
Underfull \hbox (badness 7379) in paragraph at lines 1908--1913
Underfull \hbox (badness 7379) in paragraph at lines 1910--1915
[]@textrm If an application-specific com-ple-tion func-tion as-signed to @text
tt rl_attempted_
@@ -228,4 +228,4 @@ Here is how much of TeX's memory you used:
51 hyphenation exceptions out of 8191
16i,6n,14p,327b,534s stack positions out of 5000i,500n,6000p,200000b,5000s
Output written on rlman.dvi (74 pages, 300044 bytes).
Output written on rlman.dvi (74 pages, 300184 bytes).
Binary file not shown.
+3 -3
View File
@@ -1,6 +1,6 @@
<HTML>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- Created on December, 7 2010 by texi2html 1.64 -->
<!-- Created on January, 10 2011 by texi2html 1.64 -->
<!--
Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
@@ -2756,7 +2756,7 @@ to permit their use in free software.
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="rluserman.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1>About this document</H1>
This document was generated by <I>Chet Ramey</I> on <I>December, 7 2010</I>
This document was generated by <I>Chet Ramey</I> on <I>January, 10 2011</I>
using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
"><I>texi2html</I></A>
<P></P>
@@ -2918,7 +2918,7 @@ the following structure:
<BR>
<FONT SIZE="-1">
This document was generated
by <I>Chet Ramey</I> on <I>December, 7 2010</I>
by <I>Chet Ramey</I> on <I>January, 10 2011</I>
using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
"><I>texi2html</I></A>
+1 -1
View File
@@ -1,4 +1,4 @@
This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.12.11) 7 DEC 2010 16:19
This is TeX, Version 3.141592 (Web2C 7.5.4) (format=tex 2008.12.11) 10 JAN 2011 10:40
**/usr/homes/chet/src/bash/src/lib/readline/doc/rluserman.texi
(/usr/homes/chet/src/bash/src/lib/readline/doc/rluserman.texi (./texinfo.tex
Loading texinfo [version 2009-01-18.17]:
+1 -1
View File
@@ -11,7 +11,7 @@
%DVIPSWebPage: (www.radicaleye.com)
%DVIPSCommandLine: dvips -D 300 -o rluserman.ps rluserman.dvi
%DVIPSParameters: dpi=300
%DVIPSSource: TeX output 2010.12.07:1619
%DVIPSSource: TeX output 2011.01.10:1040
%%BeginProcSet: tex.pro 0 0
%!
/TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S