aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorStefan Monnier2011-03-06 16:22:16 -0500
committerStefan Monnier2011-03-06 16:22:16 -0500
commit0d6459dfb52188481bfd6bb53f1b2f653ecd6a5d (patch)
tree306b87fc2903ad23343f3c84be1cccfa72e5a97e /doc
parent798cb64441228d473f7bdd213183c70fb582595c (diff)
parent892777baa1739fa5f1f2d1c2975488c3e6f57bae (diff)
downloademacs-0d6459dfb52188481bfd6bb53f1b2f653ecd6a5d.tar.gz
emacs-0d6459dfb52188481bfd6bb53f1b2f653ecd6a5d.zip
Merge from trunk
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog30
-rw-r--r--doc/emacs/custom.texi9
-rw-r--r--doc/emacs/maintaining.texi19
-rw-r--r--doc/emacs/misc.texi5
-rw-r--r--doc/emacs/mule.texi9
-rw-r--r--doc/emacs/search.texi37
-rw-r--r--doc/lispref/ChangeLog9046
-rw-r--r--doc/lispref/ChangeLog.trunk9032
-rw-r--r--doc/lispref/Makefile.in1
-rw-r--r--doc/lispref/elisp.texi1
-rw-r--r--doc/lispref/files.texi3
-rw-r--r--doc/lispref/minibuf.texi23
-rw-r--r--doc/lispref/package.texi290
-rw-r--r--doc/lispref/processes.texi25
-rw-r--r--doc/lispref/variables.texi24
-rw-r--r--doc/misc/ChangeLog70
-rw-r--r--doc/misc/auth.texi10
-rw-r--r--doc/misc/calc.texi133
-rw-r--r--doc/misc/dbus.texi4
-rw-r--r--doc/misc/dired-x.texi122
-rw-r--r--doc/misc/edt.texi30
-rw-r--r--doc/misc/erc.texi2
-rw-r--r--doc/misc/faq.texi4
-rw-r--r--doc/misc/gnus.texi11
-rw-r--r--doc/misc/idlwave.texi2
-rw-r--r--doc/misc/mh-e.texi6
-rw-r--r--doc/misc/semantic.texi2
-rw-r--r--doc/misc/texinfo.tex91
-rw-r--r--doc/misc/tramp.texi34
-rw-r--r--doc/misc/trampver.texi2
-rw-r--r--doc/misc/url.texi20
31 files changed, 9698 insertions, 9399 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index f113a7987c1..dfdef6a0b05 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,33 @@
12011-03-06 Chong Yidong <cyd@stupidchicken.com>
2
3 * search.texi (Isearch Yank): C-y now bound to isearch-yank-kill.
4
52011-03-03 Drake Wilson <drake@begriffli.ch> (tiny change)
6
7 * misc.texi (emacsclient Options): Add q/quiet.
8
92011-03-02 Glenn Morris <rgm@gnu.org>
10
11 * mule.texi (Communication Coding) <x-select-request-type>:
12 Remove duplicate (essentially) paragraph. (Bug#8148)
13
142011-03-01 Christoph Scholtes <cschol2112@googlemail.com>
15
16 * maintaining.texi (Format of ChangeLog): Add reference to
17 add-log-full-name.
18 (Change Log Commands): Add documentation for combining multiple
19 symbols in one change.
20
212011-03-01 Glenn Morris <rgm@gnu.org>
22
23 * custom.texi (Directory Variables):
24 Give an example of excluding subdirectories.
25
262011-02-28 Eli Zaretskii <eliz@gnu.org>
27
28 * search.texi (Regexp Search): Move index entries about regexps to the
29 "Regexps" node. Add index entries for regexp search. (Bug#8096)
30
12011-02-19 Glenn Morris <rgm@gnu.org> 312011-02-19 Glenn Morris <rgm@gnu.org>
2 32
3 * dired.texi (Dired): Dired-X version number was dropped. 33 * dired.texi (Dired): Dired-X version number was dropped.
diff --git a/doc/emacs/custom.texi b/doc/emacs/custom.texi
index dfd55b13f18..9304e8bef08 100644
--- a/doc/emacs/custom.texi
+++ b/doc/emacs/custom.texi
@@ -1331,7 +1331,8 @@ corresponding alist applies to all the files in that subdirectory.
1331 (tab-width . 4) 1331 (tab-width . 4)
1332 (fill-column . 80))) 1332 (fill-column . 80)))
1333 (c-mode . ((c-file-style . "BSD"))) 1333 (c-mode . ((c-file-style . "BSD")))
1334 (java-mode . ((c-file-style . "BSD"))) 1334 (java-mode . ((c-file-style . "BSD")
1335 (subdirs . nil)))
1335 ("src/imported" 1336 ("src/imported"
1336 . ((nil . ((change-log-default-name . "ChangeLog.local")))))) 1337 . ((nil . ((change-log-default-name . "ChangeLog.local"))))))
1337@end example 1338@end example
@@ -1340,8 +1341,10 @@ corresponding alist applies to all the files in that subdirectory.
1340This example shows some settings for a hypothetical project. It sets 1341This example shows some settings for a hypothetical project. It sets
1341@samp{indent-tabs-mode}, @code{tab-width}, and @code{fill-column} for 1342@samp{indent-tabs-mode}, @code{tab-width}, and @code{fill-column} for
1342any file in the project's directory tree, and it sets the indentation 1343any file in the project's directory tree, and it sets the indentation
1343style for any C or Java source file. Finally, it specifies a different 1344style for any C or Java source file. The special @code{subdirs} element
1344@file{ChangeLog} file name for any file in the @file{src/imported} 1345indicates that the Java mode settings are only to be applied in the
1346current directory, not in any subdirectories. Finally, it specifies a
1347different @file{ChangeLog} file name for any file in the @file{src/imported}
1345subdirectory of the directory where you put the @file{.dir-locals.el} 1348subdirectory of the directory where you put the @file{.dir-locals.el}
1346file. 1349file.
1347 1350
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi
index 60c569596ea..d311104ddd7 100644
--- a/doc/emacs/maintaining.texi
+++ b/doc/emacs/maintaining.texi
@@ -1486,6 +1486,10 @@ changed.
1486non-@code{nil}, @kbd{C-x 4 a} adds to any existing item for the file 1486non-@code{nil}, @kbd{C-x 4 a} adds to any existing item for the file
1487rather than starting a new item. 1487rather than starting a new item.
1488 1488
1489You can combine multiple changes of the same nature. If you don't
1490enter any text after the initial @kbd{C-x 4 a}, any subsequent
1491@kbd{C-x 4 a} adds another symbol to the change.
1492
1489@vindex add-log-always-start-new-record 1493@vindex add-log-always-start-new-record
1490 If @code{add-log-always-start-new-record} is non-@code{nil}, 1494 If @code{add-log-always-start-new-record} is non-@code{nil},
1491@kbd{C-x 4 a} always makes a new entry, even if the last entry 1495@kbd{C-x 4 a} always makes a new entry, even if the last entry
@@ -1535,13 +1539,14 @@ insert a VC log entry into a Change Log buffer by typing @kbd{C-x v a}
1535@node Format of ChangeLog 1539@node Format of ChangeLog
1536@subsection Format of ChangeLog 1540@subsection Format of ChangeLog
1537 1541
1538 A change log entry starts with a header line that contains the current 1542 A change log entry starts with a header line that contains the
1539date, your name, and your email address (taken from the variable 1543current date, your name (taken from the variable
1540@code{add-log-mailing-address}). Aside from these header lines, every 1544@code{add-log-full-name}), and your email address (taken from the
1541line in the change log starts with a space or a tab. The bulk of the 1545variable @code{add-log-mailing-address}). Aside from these header
1542entry consists of @dfn{items}, each of which starts with a line starting 1546lines, every line in the change log starts with a space or a tab. The
1543with whitespace and a star. Here are two entries, both dated in May 1547bulk of the entry consists of @dfn{items}, each of which starts with a
15441993, with two items and one item respectively. 1548line starting with whitespace and a star. Here are two entries, both
1549dated in May 1993, with two items and one item respectively.
1545 1550
1546@iftex 1551@iftex
1547@medbreak 1552@medbreak
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi
index d7143d1498a..1299895a06e 100644
--- a/doc/emacs/misc.texi
+++ b/doc/emacs/misc.texi
@@ -1672,6 +1672,11 @@ all server buffers are finished. You can take as long as you like to
1672edit the server buffers within Emacs, and they are @emph{not} killed 1672edit the server buffers within Emacs, and they are @emph{not} killed
1673when you type @kbd{C-x #} in them. 1673when you type @kbd{C-x #} in them.
1674 1674
1675@item -q
1676@itemx --quiet
1677Do not let @command{emacsclient} display messages about waiting for
1678Emacs or connecting to remote server sockets.
1679
1675@item -s @var{server-name} 1680@item -s @var{server-name}
1676@itemx --socket-name=@var{server-name} 1681@itemx --socket-name=@var{server-name}
1677Connect to the Emacs server named @var{server-name}. The server name 1682Connect to the Emacs server named @var{server-name}. The server name
diff --git a/doc/emacs/mule.texi b/doc/emacs/mule.texi
index f0facec86c1..22c155d26de 100644
--- a/doc/emacs/mule.texi
+++ b/doc/emacs/mule.texi
@@ -1153,15 +1153,6 @@ specified by one of the environment variables @env{LC_ALL},
1153specified above, whose value is nonempty is the one that determines 1153specified above, whose value is nonempty is the one that determines
1154the text representation.) 1154the text representation.)
1155 1155
1156@vindex x-select-request-type
1157 The variable @code{x-select-request-type} specifies a selection data
1158type of selection to request from the X server. The default value is
1159@code{nil}, which means Emacs tries @code{COMPOUND_TEXT} and
1160@code{UTF8_STRING}, and uses whichever result seems more appropriate.
1161You can explicitly specify the data type by setting the variable to
1162one of the symbols @code{COMPOUND_TEXT}, @code{UTF8_STRING},
1163@code{STRING} and @code{TEXT}.
1164
1165@node File Name Coding 1156@node File Name Coding
1166@section Coding Systems for File Names 1157@section Coding Systems for File Names
1167 1158
diff --git a/doc/emacs/search.texi b/doc/emacs/search.texi
index df0579ab9ea..9fdccc3218d 100644
--- a/doc/emacs/search.texi
+++ b/doc/emacs/search.texi
@@ -271,19 +271,24 @@ keybindings. These keybindings are part of the keymap
271@node Isearch Yank 271@node Isearch Yank
272@subsection Isearch Yanking 272@subsection Isearch Yanking
273 273
274 Within incremental search, you can use @kbd{C-w} and @kbd{C-y} to grab 274 Within incremental search, @kbd{C-y} (@code{isearch-yank-kill})
275text from the buffer into the search string. This makes it convenient 275copies text from the kill ring into the search string. It uses the
276to search for another occurrence of text at point. 276same text that @kbd{C-y}, outside of incremental search, would
277normally yank into the buffer. @kbd{Mouse-2} in the echo area does
278the same. @xref{Yanking}.
277 279
278 @kbd{C-w} copies the character or word after point and adds it to 280 @kbd{C-w} (@code{isearch-yank-word-or-char}) grabs the next
279the search string, advancing point over it. (The decision, whether to 281character or word at point, and adds it to the search string. This is
280copy a character or a word, is heuristic.) 282convenient for searching for another occurrence of the text at point.
283(The decision, whether to copy a character or a word, is heuristic.)
281 284
282 @kbd{C-y} is similar to @kbd{C-w} but copies all the rest of the 285 Similarly, @kbd{M-s C-e} (@code{isearch-yank-line}) grabs the rest
283current line into the search string. If point is already at the end 286of the current line, and adds it to the search string. If point is
284of a line, it grabs the entire next line. If the search is currently 287already at the end of a line, it grabs the entire next line.
285case-insensitive, both @kbd{C-y} and @kbd{C-w} convert the text they 288
286copy to lower case, so that the search remains case-insensitive. 289 If the search is currently case-insensitive, both @kbd{C-w} and
290@kbd{M-s C-e} convert the text they copy to lower case, so that the
291search remains case-insensitive.
287 292
288 @kbd{C-M-w} and @kbd{C-M-y} modify the search string by only one 293 @kbd{C-M-w} and @kbd{C-M-y} modify the search string by only one
289character at a time: @kbd{C-M-w} deletes the last character from the 294character at a time: @kbd{C-M-w} deletes the last character from the
@@ -293,10 +298,6 @@ after point into the search string is to enter the minibuffer by
293@kbd{M-e} and to type @kbd{C-f} at the end of the search string in the 298@kbd{M-e} and to type @kbd{C-f} at the end of the search string in the
294minibuffer. 299minibuffer.
295 300
296 The character @kbd{M-y} copies text from the kill ring into the
297search string. It uses the same text that @kbd{C-y} would yank.
298@kbd{Mouse-2} in the echo area does the same. @xref{Yanking}.
299
300@node Isearch Scroll 301@node Isearch Scroll
301@subsection Scrolling During Incremental Search 302@subsection Scrolling During Incremental Search
302 303
@@ -468,8 +469,8 @@ apply to the lazy highlight, which always matches whole words.
468 469
469@node Regexp Search 470@node Regexp Search
470@section Regular Expression Search 471@section Regular Expression Search
471@cindex regular expression 472@cindex regexp search
472@cindex regexp 473@cindex search for a regular expression
473 474
474 A @dfn{regular expression} (or @dfn{regexp} for short) is a pattern 475 A @dfn{regular expression} (or @dfn{regexp} for short) is a pattern
475that denotes a class of alternative strings to match. GNU Emacs 476that denotes a class of alternative strings to match. GNU Emacs
@@ -543,6 +544,8 @@ Search}.
543@node Regexps 544@node Regexps
544@section Syntax of Regular Expressions 545@section Syntax of Regular Expressions
545@cindex syntax of regexps 546@cindex syntax of regexps
547@cindex regular expression
548@cindex regexp
546 549
547 This manual describes regular expression features that users 550 This manual describes regular expression features that users
548typically use. @xref{Regular Expressions,,, elisp, The Emacs Lisp 551typically use. @xref{Regular Expressions,,, elisp, The Emacs Lisp
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 338dbb5e7fd..2aecc5a6b4b 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,9012 +1,34 @@
12011-03-01 Stefan Monnier <monnier@iro.umontreal.ca> 12011-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * variables.texi (Scope): Mention the availability of lexical scoping. 3 * variables.texi (Scope): Mention the availability of lexical scoping.
4 (Lexical Binding): New node. 4 (Lexical Binding): New node.
5 * eval.texi (Eval): Add `eval's new `lexical' arg. 5 * eval.texi (Eval): Add `eval's new `lexical' arg.
6 6
72011-02-25 Stefan Monnier <monnier@iro.umontreal.ca> 72011-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
8 8
9 * vol2.texi (Top): 9 * vol2.texi (Top):
10 * vol1.texi (Top): 10 * vol1.texi (Top):
11 * objects.texi (Programming Types, Funvec Type, Type Predicates): 11 * objects.texi (Programming Types, Funvec Type, Type Predicates):
12 * functions.texi (Functions, What Is a Function, Function Currying): 12 * functions.texi (Functions, What Is a Function, Function Currying):
13 * elisp.texi (Top): Remove mentions of funvec and curry. 13 * elisp.texi (Top): Remove mentions of funvec and curry.
14 14
152011-02-19 Eli Zaretskii <eliz@gnu.org> 15;; Local Variables:
16 16;; coding: utf-8
17 * elisp.texi: Sync @dircategory with ../../info/dir. 17;; End:
18 18
19 * files.texi (Visiting Functions): Document find-file-literally, 19 Copyright (C) 2011 Free Software Foundation, Inc.
20 both the command and the variable. 20
21 21 This file is part of GNU Emacs.
22 * variables.texi (Creating Buffer-Local): Explain the meaning of 22
23 permanent local variables. 23 GNU Emacs is free software: you can redistribute it and/or modify
24 24 it under the terms of the GNU General Public License as published by
25 * files.texi (Visiting Functions): Document find-file-literally, 25 the Free Software Foundation, either version 3 of the License, or
26 both the command and the variable. 26 (at your option) any later version.
27 27
28 * variables.texi (Creating Buffer-Local): Explain the meaning of 28 GNU Emacs is distributed in the hope that it will be useful,
29 permanent local variables. 29 but WITHOUT ANY WARRANTY; without even the implied warranty of
30 30 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
312011-02-19 Glenn Morris <rgm@gnu.org> 31 GNU General Public License for more details.
32 32
33 * keymaps.texi (Remapping Commands): Mention how to undo it. 33 You should have received a copy of the GNU General Public License
34 34 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
352011-02-09 Reuben Thomas <rrt@sc3d.org>
36
37 * loading.texi (Hooks for Loading): Remove unnecessary advice
38 about eval-after-load (Bug#7986).
39
402011-02-05 Chong Yidong <cyd@stupidchicken.com>
41
42 * commands.texi (Accessing Mouse): Note that a header line is not
43 included in the row of posn-col-row.
44
452011-02-02 Chong Yidong <cyd@stupidchicken.com>
46
47 * modes.texi (Major Mode Conventions): Add face guidelines.
48 (Faces for Font Lock): List faces in order of prominence.
49
502011-02-01 Paul Eggert <eggert@cs.ucla.edu>
51
52 format-time-string now supports subsecond time stamp resolution
53 * os.texi (Time Parsing): Document %N.
54
552011-01-28 Chong Yidong <cyd@stupidchicken.com>
56
57 * vol1.texi (Top):
58 * vol2.texi (Top):
59 * elisp.texi (Top):
60 * display.texi (Display Property): Shorten the menu description of
61 the "Other Display Specs" node (Bug#7816).
62
63 * keymaps.texi (Defining Menus): Add "menu item" and "extended
64 menu item" concept index entries (Bug#7805).
65
662011-01-29 Eli Zaretskii <eliz@gnu.org>
67
68 * makefile.w32-in (texinfodir): New variable.
69 (usermanualdir): Remove as redundant with $(emacsdir).
70 (MAKEINFO): Remove options, leave only program name.
71 (MAKEINFO_OPTS): New variable.
72 (texinputdir, $(infodir)/elisp): Use $(MAKEINFO_OPTS).
73
742011-01-25 Chong Yidong <cyd@stupidchicken.com>
75 Richard Kim <emacs18@gmail.com>
76
77 * loading.texi (Library Search): Document list-load-path-shadows
78 (Bug#7757).
79
802011-01-25 Chong Yidong <cyd@stupidchicken.com>
81
82 * searching.texi (Regexp Special): Remove outdated discussion of
83 character sets (Bug#7780).
84
85 * frames.texi (Pop-Up Menus): Document where menu title comes
86 from (Bug#7684).
87
882011-01-25 Glenn Morris <rgm@gnu.org>
89
90 * display.texi (Making Buttons): Mention limitation of text buttons.
91
922011-01-23 Werner Lemberg <wl@gnu.org>
93
94 * Makefile.in (MAKEINFO): Now controlled by `configure'.
95 (MAKEINFO_OPTS): New variable. Use it where appropriate.
96 (ENVADD): New variable to control texi2dvi and texi2pdf.
97
982011-01-15 Chong Yidong <cyd@stupidchicken.com>
99
100 * files.texi (Directory Names): Move directory-abbrev-alist doc to
101 Emacs manual.
102
1032011-01-15 Eli Zaretskii <eliz@gnu.org>
104
105 * files.texi (Directory Names): Explain why FROM in
106 directory-abbrev-alist should begin with \`. (Bug#7777)
107
1082011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
109
110 * loading.texi (Hooks for Loading): Adjust doc of eval-after-load.
111
1122011-01-02 Eli Zaretskii <eliz@gnu.org>
113
114 * modes.texi (Emulating Mode Line): Fix last change.
115
1162011-01-02 Eli Zaretskii <eliz@gnu.org>
117
118 * modes.texi (Emulating Mode Line): Update documentation of
119 format-mode-line according to changes that fixed bug #7587.
120
1212010-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
122
123 * modes.texi (Derived Modes): Mention prog-mode.
124
125 * keymaps.texi (Simple Menu Items, Extended Menu Items): Remove mention
126 of the key-binding-data cache since we don't use it any more.
127
1282010-12-13 Eli Zaretskii <eliz@gnu.org>
129
130 * processes.texi (Shell Arguments):
131 * strings.texi (Creating Strings): Don't mention "shell commands";
132 make it explicit that `split-string-and-unquote' and
133 `combine-and-quote-strings' are mainly for working with arguments
134 to call-process and start-process.
135
136 * processes.texi (Shell Arguments): Fix documentation of
137 `split-string-and-unquote'. Add indexing. (Bug#7563)
138
1392010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
140
141 * modes.texi (Auto-Indentation): New section to document SMIE.
142 (Major Mode Conventions):
143 * text.texi (Mode-Specific Indent): Refer to it.
144
1452010-12-13 Eli Zaretskii <eliz@gnu.org>
146
147 * display.texi (Other Display Specs): Document left-fringe and
148 right-fringe display specs.
149
1502010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
151
152 * backups.texi (Making Backups):
153 * modes.texi (Example Major Modes): Use recommended coding style.
154 (Major Mode Basics, Derived Modes): Encourge more strongly use of
155 define-derived-mode. Mention completion-at-point-functions.
156
1572010-12-13 Chong Yidong <cyd@stupidchicken.com>
158
159 * nonascii.texi (Converting Representations):
160 Document byte-to-string.
161
1622010-12-08 Glenn Morris <rgm@gnu.org>
163
164 * buffers.texi (Modification Time):
165 verify-visited-file-modtime now defaults to the current buffer.
166
1672010-11-27 Chong Yidong <cyd@stupidchicken.com>
168
169 * nonascii.texi (Converting Representations): Document byte-to-string.
170
171 * strings.texi (Creating Strings): Don't mention semi-obsolete
172 function char-to-string.
173 (String Conversion): Shorten discussion of semi-obsolete function
174 string-to-char. Link to Converting Representations.
175
176 * objects.texi (Symbol Type):
177 * text.texi (Near Point):
178 * help.texi (Help Functions):
179 * functions.texi (Mapping Functions): Use string instead of
180 char-to-string in examples.
181
1822010-11-27 Chong Yidong <cyd@stupidchicken.com>
183
184 * text.texi (Kill Functions, Kill Functions)
185 (Low-Level Kill Ring, Low-Level Kill Ring): Remove obsolete
186 YANK-HANDLER args.
187
188 * symbols.texi (Creating Symbols): Using unintern without an
189 obarray arg is now obsolete.
190
191 * numbers.texi (Float Basics): Document float-e and float-pi.
192
193 * variables.texi (Defining Variables): Change "pi" example to
194 "float-pi".
195
1962010-11-26 Eli Zaretskii <eliz@gnu.org>
197
198 * commands.texi (Click Events): Document the values of X, Y and
199 COL, ROW in the event's position, when the click is on the header
200 or mode line, on the fringes, or in the margins.
201
2022010-11-17 Eli Zaretskii <eliz@gnu.org>
203
204 * customize.texi (Composite Types): Lower-case index entry.
205
206 * loading.texi (How Programs Do Loading):
207 Document load-file-name. (Bug#7346)
208
2092010-11-17 Glenn Morris <rgm@gnu.org>
210
211 * text.texi (Kill Functions, Low-Level Kill Ring): Small fixes.
212
2132010-11-13 Eli Zaretskii <eliz@gnu.org>
214
215 * display.texi (Usual Display): Characters with no fonts are not
216 necessarily displayed as empty boxes.
217
2182010-10-31 Glenn Morris <rgm@gnu.org>
219
220 * maps.texi (Standard Keymaps): Update File menu description.
221
2222010-10-28 Glenn Morris <rgm@gnu.org>
223
224 * Makefile.in (elisp.dvi, elisp.pdf): Also include $emacsdir.
225
2262010-10-24 Eli Zaretskii <eliz@gnu.org>
227
228 * display.texi (Window Systems): Deprecate use of window-system as
229 a predicate.
230
2312010-10-23 Glenn Morris <rgm@gnu.org>
232
233 * help.texi (Documentation Basics): Remove mentions of digest-doc and
234 sorted-doc.
235
2362010-10-15 Eli Zaretskii <eliz@gnu.org>
237
238 * os.texi (Dynamic Libraries): New node, with slightly modified
239 text deleted from "Image Formats".
240 (System Interface): Add @menu entry for "Dynamic Libraries".
241
242 * display.texi (Image Formats): Remove description of
243 image-library-alist. (Renamed in 2010-10-13T14:50:06Z!lekktu@gmail.com.)
244
2452010-10-12 Glenn Morris <rgm@gnu.org>
246
247 * book-spine.texinfo: Rename to book-spine.texi.
248
2492010-10-11 Glenn Morris <rgm@gnu.org>
250
251 * Makefile.in (MAKEINFO): Add explicit -I$srcdir.
252
253 * Makefile.in (DVIPS): New variable.
254 (.PHONY): Add html, ps.
255 (html, elisp.html, ps, elisp.ps): New targets.
256 (clean): Delete html, ps files.
257 ($(infodir)/elisp): Remove unnecessary includes.
258
2592010-10-09 Eli Zaretskii <eliz@gnu.org>
260
261 * makefile.w32-in (emacsdir): New variable.
262 (srcs): Add emacsver.texi.
263 ($(infodir)/elisp, elisp.dvi): Add -I$(emacsdir).
264
2652010-10-09 Glenn Morris <rgm@gnu.org>
266
267 * Makefile.in (VPATH): Remove.
268 (infodir): Make it absolute.
269 (mkinfodir, $(infodir)/elisp, infoclean): No need to cd $srcdir.
270
271 * Makefile.in (dist): Anchor regexps.
272
273 * Makefile.in (srcs): Put elisp.texi first.
274 ($(infodir)/elisp, elisp.dvi, elisp.pdf): Use $<.
275
276 * Makefile.in (infoclean): Remove harmless, long-standing error.
277
278 * Makefile.in ($(infodir)): Delete rule.
279 (mkinfodir): New.
280 ($(infodir)/elisp): Use $mkinfodir instead of infodir.
281
282 * Makefile.in (dist): Remove reference to emacsver.texi.in.
283 Also copy emacsver.texi, and edit $emacsdir.
284
2852010-10-09 Glenn Morris <rgm@gnu.org>
286
287 * Makefile.in (emacsdir): New variable.
288 (MAKEINFO): Add -I $emacsdir.
289 (dist): Copy emacsver.texi.
290 (srcs): Add emacsver.texi.
291
292 * book-spine.texinfo, elisp.texi, vol2.texi, vol1.texi:
293 Set EMACSVER by including emacsver.texi.
294
295 * Makefile.in (.PHONY): Declare info, dvi, pdf, dist.
296
2972010-10-07 Glenn Morris <rgm@gnu.org>
298
299 * Makefile.in (version): New, set by configure.
300 (clean): Delete dist tar file.
301 (dist): Use version in tar name.
302
3032010-10-06 Glenn Morris <rgm@gnu.org>
304
305 * Makefile.in: Rearrange to more closely resemble doc/emacs/Makefile.
306 (INSTALL_INFO): Remove unused variable.
307 (mostlyclean, infoclean, dist): New rules.
308 (clean): Delete dvi and pdf files.
309 (maintainer-clean): Remove elisp.oaux, use infoclean.
310 ($(infodir)): Add parallel build workaround.
311
3122010-10-04 Glenn Morris <rgm@gnu.org>
313
314 * Makefile.in (dvi, pdf, $(infodir)): New targets.
315 ($(infodir)/elisp): Ensure target directory exists. Use $@.
316 Fix -I typo.
317 (clean): No 'make.out' or 'core' files.
318 (.PHONY): Declare clean rules.
319 (maintainer-clean): Delete pdf file. Guard against cd failures.
320
3212010-10-03 Glenn Morris <rgm@gnu.org>
322
323 * files.texi (File Name Components): Remove ignored section about
324 deleted variable directory-sep-char.
325
3262010-10-03 Michael Albinus <michael.albinus@gmx.de>
327
328 * files.texi (Magic File Names): New defopt
329 remote-file-name-inhibit-cache.
330
3312010-10-02 Glenn Morris <rgm@gnu.org>
332
333 * os.texi (Killing Emacs): Hook now runs in batch mode.
334
3352010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
336
337 * text.texi (Special Properties): Clarify when modification-hooks run.
338
3392010-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
340
341 * syntax.texi (Syntax Flags): Document new `c' flag.
342
3432010-09-09 Glenn Morris <rgm@gnu.org>
344
345 * display.texi (ImageMagick Images): General cleanup.
346
3472010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
348
349 * files.texi (Directory Names): Use \` rather than ^.
350
3512010-09-02 Jan Djärv <jan.h.d@swipnet.se>
352
353 * text.texi (Low-Level Kill Ring):
354 * frames.texi (Window System Selections): Remove cut buffer
355 documentation.
356
3572010-08-28 Eli Zaretskii <eliz@gnu.org>
358
359 * display.texi (Fringe Size/Pos): Add a cross-reference to "Layout
360 Parameters", where the default fringe width is described.
361
362 * frames.texi (Window Frame Parameters, Basic Parameters)
363 (Position Parameters, Layout Parameters, Management Parameters)
364 (Cursor Parameters, Font and Color Parameters): Add indexing for
365 frame parameters. (Bug#6929)
366
3672010-08-25 Tom Tromey <tromey@redhat.com>
368
369 * vol2.texi (Top): Update.
370 * vol1.texi (Top): Update.
371 * tips.texi (Library Headers): Mention Package-Version and
372 Package-Requires.
373 * package.texi: New file.
374 * os.texi (System Interface): Update pointers.
375 * elisp.texi (Top): Link to new nodes. Include package.texi.
376 * anti.texi (Antinews): Update pointers.
377
3782010-08-25 Eli Zaretskii <eliz@gnu.org>
379
380 * processes.texi (Filter Functions): Fix last change.
381
3822010-08-24 Markus Triska <triska@gmx.at>
383
384 * processes.texi (Filter Functions): Use `buffer-live-p' instead
385 of `buffer-name' in the main text as well as in the example
386 (Bug#3098).
387
3882010-08-22 Chong Yidong <cyd@stupidchicken.com>
389
390 * nonascii.texi (Text Representations):
391 * loading.texi (Loading Non-ASCII):
392 * compile.texi (Byte Compilation): Don't mention obsolete
393 --unibyte command-line argument.
394
3952010-08-22 Chong Yidong <cyd@stupidchicken.com>
396
397 * modes.texi (Defining Minor Modes): Doc fix (Bug#6880).
398
3992010-08-22 Chong Yidong <cyd@stupidchicken.com>
400
401 * objects.texi (Bool-Vector Type): Minor definition tweak (Bug#6878).
402
4032010-08-20 Eli Zaretskii <eliz@gnu.org>
404
405 * commands.texi (Misc Events): Add cross-references to where
406 POSITION of a mouse event is described in detail.
407
4082010-08-08 Christoph <cschol2112@googlemail.com>
409
410 * control.texi (Handling Errors) <error-message-string>: Fix arg name.
411
4122010-08-08 Juanma Barranquero <lekktu@gmail.com>
413
414 * modes.texi (Defining Minor Modes): Use C-backspace, not C-delete.
415 Suggested by Štěpán Němec <stepnem@gmail.com>.
416
4172010-08-08 Juanma Barranquero <lekktu@gmail.com>
418
419 * minibuf.texi (High-Level Completion): Document args of
420 `read-buffer-function' (bug#5625).
421
4222010-07-29 Jan Djärv <jan.h.d@swipnet.se>
423
424 * frames.texi (Layout Parameters): Add doc for tool-bar-position.
425
4262010-07-29 Michael Albinus <michael.albinus@gmx.de>
427
428 * processes.texi (Process Information): Explain process property
429 `remote-tty'.
430
4312010-07-27 Juanma Barranquero <lekktu@gmail.com>
432
433 * modes.texi (Defining Minor Modes): Use C-delete in examples,
434 instead of "\C-\^?" (bug#6334).
435
436 * text.texi (Special Properties): Fix typo.
437
4382010-07-09 Eli Zaretskii <eliz@gnu.org>
439
440 * internals.texi (Writing Emacs Primitives): Adapt to ANSI C
441 calling sequences, which are now the standard.
442
4432010-06-24 Chong Yidong <cyd@stupidchicken.com>
444
445 * text.texi (Undo): Clarify command loop behavior (Bug#2433).
446
447 * commands.texi (Command Overview): Mention undo-boundary call.
448
4492010-06-23 Glenn Morris <rgm@gnu.org>
450
451 * abbrevs.texi, commands.texi, compile.texi, debugging.texi:
452 * display.texi, edebug.texi, elisp.texi, eval.texi, files.texi:
453 * frames.texi, functions.texi, internals.texi, keymaps.texi:
454 * loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi:
455 * searching.texi, sequences.texi, strings.texi, syntax.texi:
456 * text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi:
457 Untabify Texinfo files.
458
4592010-06-20 Chong Yidong <cyd@stupidchicken.com>
460
461 * modes.texi (Minor Mode Conventions): Fix typo (Bug#6477).
462
4632010-06-19 Chong Yidong <cyd@stupidchicken.com>
464
465 * errors.texi (Standard Errors): Remove unnecessary markup (Bug#6461).
466
4672010-06-02 Chong Yidong <cyd@stupidchicken.com>
468
469 * searching.texi (Regexp Special): Remove obsolete information
470 about matching non-ASCII characters, and suggest using char
471 classes (Bug#6283).
472
4732010-05-30 Juanma Barranquero <lekktu@gmail.com>
474
475 * minibuf.texi (Basic Completion): Add missing "@end defun".
476
4772010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
478
479 * minibuf.texi (Basic Completion): Document completion-boundaries.
480 (Programmed Completion): Document the new fourth method for boundaries.
481
4822010-05-22 Chong Yidong <cyd@stupidchicken.com>
483
484 * display.texi (Image Cache): Update documentation about image caching.
485
4862010-05-08 Štěpán Němec <stepnem@gmail.com> (tiny change)
487
488 * windows.texi (Textual Scrolling):
489 * tips.texi (Coding Conventions):
490 * minibuf.texi (Minibuffer History):
491 * maps.texi (Standard Keymaps):
492 * loading.texi (Where Defined):
493 * edebug.texi (Instrumenting): Fix typos.
494
4952010-05-08 Chong Yidong <cyd@stupidchicken.com>
496
497 * keymaps.texi (Menu Bar): Document :advertised-binding property.
498
499 * functions.texi (Obsolete Functions):
500 Document set-advertised-calling-convention.
501
502 * minibuf.texi (Basic Completion): Document completion-in-region.
503 (Programmed Completion): Document completion-annotate-function.
504
505 * commands.texi (Reading One Event): Document read-key.
506 (Distinguish Interactive): Document KIND arg to
507 called-interactively-p. Delete obsolete interactive-p.
508
509 * elisp.texi (Top): Update node description.
510
5112010-05-08 Eli Zaretskii <eliz@gnu.org>
512
513 * nonascii.texi (Character Properties):
514 Document unicode-category-table. Add an index entry for Unicode
515 general category.
516
5172010-05-07 Chong Yidong <cyd@stupidchicken.com>
518
519 * Version 23.2 released.
520
5212010-04-20 Juanma Barranquero <lekktu@gmail.com>
522
523 * locals.texi (Standard Buffer-Local Variables):
524 Remove @ignore'd reference to `direction-reversed'.
525
5262010-04-14 Juri Linkov <juri@jurta.org>
527
528 Fix @deffn without category.
529
530 * abbrevs.texi (Abbrev Expansion): Replace @deffn with @defun
531 for `abbrev-insert'.
532
533 * buffers.texi (Indirect Buffers): Add category `Command'
534 to @deffn of `clone-indirect-buffer'.
535
536 * windows.texi (Cyclic Window Ordering): Replace @deffn with @defun
537 for `next-window' and `previous-window'. Add category `Command'
538 to @deffn of `pop-to-buffer'.
539
5402010-04-01 Chong Yidong <cyd@stupidchicken.com>
541
542 * nonascii.texi (Text Representations): Don't mark
543 enable-multibyte-characters as a user option.
544
5452010-03-31 Eli Zaretskii <eliz@gnu.org>
546
547 * control.texi (Handling Errors): How to re-throw a signal caught
548 by condition-case.
549
5502010-03-26 Chong Yidong <cyd@stupidchicken.com>
551
552 * loading.texi (Hooks for Loading): Document after-load-functions.
553 Copyedits.
554
5552010-03-24 Arni Magnusson <arnima@hafro.is> (tiny change)
556
557 * frames.texi (Cursor Parameters): Fix typo. (Bug#5760)
558
5592010-03-24 Chong Yidong <cyd@stupidchicken.com>
560
561 * processes.texi (Network Processes): Document seqpacket type.
562
5632010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
564
565 * os.texi (System Environment): Do not mention lynxos.
566
5672010-03-10 Chong Yidong <cyd@stupidchicken.com>
568
569 * Branch for 23.2.
570
5712010-03-06 Chong Yidong <cyd@stupidchicken.com>
572
573 * objects.texi (Integer Type): Take note of the read syntax
574 exception for numbers that cannot fit in the integer type.
575
5762010-03-03 Glenn Morris <rgm@gnu.org>
577
578 * numbers.texi (Integer Basics, Bitwise Operations):
579 * objects.texi (Integer Type): Update for integers now being 30-bit.
580
5812010-02-27 Chong Yidong <cyd@stupidchicken.com>
582
583 * display.texi (Low-Level Font): Document :otf font-spec property.
584
5852010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
586
587 * display.texi (Line Height): Avoid obsolete special default variables
588 like default-major-mode.
589
5902010-01-28 Alan Mackenzie <acm@muc.de>
591
592 * display.texi (Auto Faces): Say fontification-functions is called
593 whether or not Font Lock is enabled. Tidy up the wording a bit.
594
5952010-01-17 Chong Yidong <cyd@stupidchicken.com>
596
597 * elisp.texi: Remove duplicate edition information (Bug#5407).
598
5992010-01-17 Juanma Barranquero <lekktu@gmail.com>
600
601 * two.el (volume-header-toc-markup): Fix typos in docstring.
602
6032010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
604
605 Avoid dubious uses of save-excursions.
606 * positions.texi (Excursions): Recommend the use of
607 save-current-buffer if applicable.
608 * text.texi (Clickable Text): Fix the example code which used
609 save-excursion in a naive way which sometimes preserves point and
610 sometimes not.
611 * variables.texi (Creating Buffer-Local):
612 * os.texi (Session Management):
613 * display.texi (GIF Images):
614 * control.texi (Cleanups): Use (save|with)-current-buffer.
615
6162010-01-02 Eli Zaretskii <eliz@gnu.org>
617
618 * modes.texi (Example Major Modes): Fix indentation. (Bug#5195)
619
6202010-01-02 Chong Yidong <cyd@stupidchicken.com>
621
622 * nonascii.texi (Text Representations, Character Codes)
623 (Converting Representations, Explicit Encoding)
624 (Translation of Characters): Use hex notation consistently.
625 (Character Sets): Fix map-charset-chars doc (Bug#5197).
626
6272010-01-01 Chong Yidong <cyd@stupidchicken.com>
628
629 * loading.texi (Where Defined): Make it clearer that these are
630 loaded files (Bug#5068).
631
6322009-12-29 Chong Yidong <cyd@stupidchicken.com>
633
634 * minibuf.texi (Completion Styles): Document `initials' style.
635
6362009-12-25 Chong Yidong <cyd@stupidchicken.com>
637
638 * frames.texi (Resources): Describe inhibit-x-resources.
639 (Size Parameters): Copyedit.
640
641 * hash.texi (Creating Hash):
642 * objects.texi (Hash Table Type): Document the new hash table
643 printed representation.
644
645 * minibuf.texi (Basic Completion): 4th arg to all-completions is
646 obsolete.
647
648 * processes.texi (Process Buffers):
649 Document process-kill-buffer-query-function.
650
6512009-12-05 Glenn Morris <rgm@gnu.org>
652
653 * hooks.texi (Standard Hooks): Remove diary-display-hook, replaced by
654 diary-display-function, and no longer recommended to be a hook.
655 Update for changes in the names of calendar and diary hooks.
656 diary-print-entries-hook has changed section.
657
6582009-11-28 Eli Zaretskii <eliz@gnu.org>
659
660 * text.texi (Special Properties): More accurate description of
661 what the `cursor' property does.
662
6632009-11-26 Kevin Ryde <user42@zip.com.au>
664
665 * commands.texi (Misc Events): vindex mouse-wheel-up-event and
666 mouse-wheel-down-event, the closest thing to a definition for them.
667 * os.texi (Startup Summary): vindex inhibit-startup-message and
668 inhibit-splash-screen.
669 (Command-Line Arguments): vindex argv.
670 (Suspending Emacs): vindex suspend-tty-functions and
671 resume-tty-functions. Don't want to index every hook, but having
672 the programming ones is helpful.
673
6742009-11-14 Chong Yidong <cyd@stupidchicken.com>
675
676 * commands.texi (Motion Events): Fix typo (Bug#4907).
677
6782009-11-08 Chong Yidong <cyd@stupidchicken.com>
679
680 * searching.texi (Char Classes): Note that [:upper:] and [:lower:]
681 are affected by case-fold-search (Bug#4483).
682
6832009-11-02 Chong Yidong <cyd@stupidchicken.com>
684
685 * minibuf.texi (Reading File Names): Note that read-file-name may
686 use a graphical file dialog.
687
6882009-10-31 Glenn Morris <rgm@gnu.org>
689
690 * nonascii.texi (User-Chosen Coding Systems): Minor reword. (Bug#4817)
691
6922009-10-16 Kevin Ryde <user42@zip.com.au>
693
694 * files.texi (Magic File Names): Add @vindex file-name-handler-alist,
695 in particular so `info-lookup-symbol' can find its docs.
696
6972009-10-16 Chong Yidong <cyd@stupidchicken.com>
698
699 * variables.texi (Constant Variables): Distinguish from defconst
700 variables.
701 (Defining Variables): Add cindex.
702
7032009-10-15 Chong Yidong <cyd@stupidchicken.com>
704
705 * os.texi (Time of Day): Clarify that the microsecond part is
706 ignored (Bug#4637).
707
7082009-10-11 Glenn Morris <rgm@gnu.org>
709
710 * frames.texi (Size and Position): Clarify what is included in the frame
711 height. (Bug#4535)
712
7132009-10-10 Glenn Morris <rgm@gnu.org>
714
715 * windows.texi (Size of Window): The relationship between window and
716 frame heights is not so simple. (Bug#4535)
717 Mention window-full-height-p.
718
7192009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
720
721 * positions.texi (Text Lines): Remove goto-line, since it shouldn't be
722 used from Lisp.
723
7242009-10-07 Eli Zaretskii <eliz@gnu.org>
725
726 * files.texi (Directory Names) <abbreviate-file-name>:
727 Document that root home directories are not replaced with "~".
728
7292009-10-06 Eli Zaretskii <eliz@gnu.org>
730
731 * text.texi (Special Properties): Document the meaning of the
732 `cursor' text property whose value is an integer.
733
7342009-10-05 Michael Albinus <michael.albinus@gmx.de>
735
736 * files.texi (Magic File Names): Add `copy-directory'.
737
7382009-10-05 Eli Zaretskii <eliz@gnu.org>
739
740 * files.texi (File Attributes): Fix description of file
741 attributes. (Bug#4638) Update attributes of files.texi example to
742 be more representative.
743
7442009-10-05 Michael Albinus <michael.albinus@gmx.de>
745
746 * files.texi (Create/Delete Dirs): New command copy-directory.
747
7482009-10-04 Juanma Barranquero <lekktu@gmail.com>
749
750 * anti.texi (Antinews):
751 * macros.texi (Indenting Macros):
752 * strings.texi (Creating Strings, Case Conversion):
753 Remove duplicate words.
754
7552009-10-01 Michael Albinus <michael.albinus@gmx.de>
756
757 * files.texi (Create/Delete Dirs): delete-directory has an
758 optional parameter RECURSIVE.
759
7602009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
761
762 * buffers.texi (Swapping Text): Minor clarification.
763
7642009-10-01 Glenn Morris <rgm@gnu.org>
765
766 * functions.texi (Declaring Functions): Mention that we also search for
767 ".m" files in the src/ directory.
768
7692009-09-25 David Engster <deng@randomsample.de>
770
771 * display.texi (Managing Overlays): Document copy-overlay (Bug#4549).
772
7732009-09-22 Glenn Morris <rgm@gnu.org>
774
775 * internals.texi (Building Emacs): Mention preloaded-file-list.
776
7772009-09-14 Alan Mackenzie <acm@muc.de>
778
779 * os.texi (Terminal Output): Put "@code{}" around "stdout".
780
7812009-09-13 Chong Yidong <cyd@stupidchicken.com>
782
783 * functions.texi (Anonymous Functions): Rearrange discussion,
784 giving usage of unquoted lambda forms first. Mention that
785 `function' and `#'' are no longer required (Bug#4290).
786
7872009-09-11 Alan Mackenzie <acm@muc.de>
788
789 * os.texi (Terminal Output): Document `send-string-to-terminal' in
790 batch mode.
791
7922009-09-01 Glenn Morris <rgm@gnu.org>
793
794 * display.texi (Face Functions): Mention define-obsolete-face-alias.
795
7962009-08-26 Ulrich Mueller <ulm@gentoo.org>
797
798 * nonascii.texi (Character Codes): Fix typos.
799
8002009-08-25 Michael Albinus <michael.albinus@gmx.de>
801
802 * processes.texi (Synchronous Processes): New defvar
803 process-file-side-effects.
804
8052009-08-25 Glenn Morris <rgm@gnu.org>
806
807 * display.texi (Fontsets): Fix typo.
808
809 * files.texi (Format Conversion Round-Trip): Mention nil regexp.
810
8112009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
812
813 * processes.texi (Asynchronous Processes): Adjust arglist of
814 start-process-shell-command and start-file-process-shell-command.
815
8162009-08-15 Chong Yidong <cyd@stupidchicken.com>
817
818 * advice.texi (Argument Access in Advice): Note that argument
819 positions are zero-based (Bug#3932).
820
821 * commands.texi (Distinguish Interactive): Minor copyedit.
822
823 * display.texi (Face Attributes): Add xref to Displaying Faces for
824 explanation of "underlying face".
825
826 * customize.texi (Common Keywords): Add xref to Loading.
827
828 * loading.texi (How Programs Do Loading): Add xref to Lisp
829 Libraries node in the Emacs manual.
830
8312009-08-13 Chong Yidong <cyd@stupidchicken.com>
832
833 * objects.texi (Meta-Char Syntax): Add xref to Strings of Events.
834
8352009-07-18 Chong Yidong <cyd@stupidchicken.com>
836
837 * processes.texi (Shell Arguments): Copyedits.
838
8392009-07-18 Glenn Morris <rgm@gnu.org>
840
841 * loading.texi (Repeated Loading): Fix typo.
842
8432009-07-16 Richard Stallman <rms@gnu.org>
844
845 * buffers.texi (Swapping Text): Recommend setting
846 write-region-annotate-functions and buffer-saved-size.
847
848 * backups.texi (Auto-Saving): Document buffer-saved-size = -2.
849
8502009-07-15 Glenn Morris <rgm@gnu.org>
851
852 * edebug.texi: Minor re-phrasings throughout.
853 (Edebug Execution Modes): Sit-for affects continue mode too.
854 (Jumping): Use `forward-sexp' rather than its keybinding.
855 (Edebug Misc): Fix Q binding.
856 (Edebug Eval): Remove cl version.
857 (Printing in Edebug): Clarify print-length etc.
858 (Instrumenting Macro Calls): Defopt edebug-eval-macro-args.
859 (Specification List): Remove edebug-unwrap findex entry.
860 (Specification Examples): defmacro is actually not the same as defun.
861 Escape "`" in example.
862
8632009-07-15 Chong Yidong <cyd@stupidchicken.com>
864
865 * markers.texi (The Mark): Document optional arg to
866 deactivate-mark.
867
8682009-07-11 Kevin Ryde <user42@zip.com.au>
869
870 * hooks.texi (Standard Hooks): Fix cross-references.
871
872 * loading.texi (Named Features): Refer to eval-after-load.
873
8742009-07-11 Glenn Morris <rgm@gnu.org>
875
876 * Makefile.in (TEXI2PDF): New.
877 (elisp.pdf): New target.
878
879 * searching.texi (Regexp Backslash): Fix typo.
880
881 * elisp.texi (Top): Display copyright notice at start of non-TeX.
882
8832009-07-10 Glenn Morris <rgm@gnu.org>
884
885 * elisp.texi, vol1.texi, vol2.texi: Update @detailmenu.
886
887 * customize.texi (Customization Types):
888 * display.texi (Abstract Display):
889 * objects.texi (Character Type, String Type):
890 Merge in some menu descriptions from elisp.texi.
891
892 * hash.texi (Hash Tables):
893 * modes.texi (Multiline Font Lock):
894 End menu description with period.
895
8962009-07-09 Glenn Morris <rgm@gnu.org>
897
898 * back.texi: Don't hard-code texinfo location.
899
900 * two-volume.make (texinfodir): New, with location of texinfo.tex.
901 (tex): Add texinfodir to TEXINPUTS.
902 (elisp1med-init, elisp2med-init): Use texinfodir.
903
904 * Makefile.in (texinfodir): Rename from usermanualdir, and update.
905 (clean): Add two-volume.make intermediate files.
906
907 * elisp.texi, vol1.texi, vol2.texi:
908 Use a DATE variable with the publication date, and update it.
909 Fix antinews menu description.
910
911 * vol1.texi, vol2.texi: Update VERSION to match elisp.texi.
912 Update the detailed node listing to match elisp.texi.
913
914 * README: Update edition to match elisp.texi.
915
916 * objects.texi (General Escape Syntax):
917 * nonascii.texi (Character Sets):
918 Use consistent case for "Unicode Standard".
919
920 * anti.texi (Antinews):
921 * customize.texi (Variable Definitions):
922 * functions.texi (Declaring Functions):
923 * nonascii.texi (Character Properties):
924 * processes.texi (Serial Ports):
925 * text.texi (Special Properties):
926 * tips.texi (Coding Conventions):
927 Minor rearrangements to improve TeX line-filling.
928
929 * commands.texi (Using Interactive): Fix cross-reference.
930
9312009-07-01 Jan Djärv <jan.h.d@swipnet.se>
932
933 * frames.texi (Management Parameters): Mention sticky.
934
9352009-07-01 Andreas Schwab <aschwab@redhat.com>
936
937 * help.texi (Help Functions): Fix description of help-buffer and
938 help-setup-xref to use @defun instead of @deffn.
939
9402009-07-01 Jan Djärv <jan.h.d@swipnet.se>
941
942 * frames.texi (Size Parameters): Mention maximized for fullscreen.
943
9442009-06-24 Chong Yidong <cyd@stupidchicken.com>
945
946 * display.texi (Window Systems): Add ns to the list.
947
9482009-06-21 Chong Yidong <cyd@stupidchicken.com>
949
950 * Branch for 23.1.
951
9522009-06-17 Martin Rudalics <rudalics@gmx.at>
953
954 * windows.texi (Dedicated Windows): Fix typo.
955 (Resizing Windows): Replace @defun by @deffn.
956
9572009-06-17 Glenn Morris <rgm@gnu.org>
958
959 * variables.texi (Directory Local Variables):
960 Update for 2009-04-11 name-change of dir-locals-directory-alist.
961
9622009-06-09 Kenichi Handa <handa@m17n.org>
963
964 * nonascii.texi (Character Sets): State clearly that FROM and TO
965 are codepoints of CHARSET.
966
9672009-06-07 Chong Yidong <cyd@stupidchicken.com>
968
969 * minibuf.texi (Reading File Names): Fix introductory text.
970 Suggested by stan@derbycityprints.com.
971 (High-Level Completion): Fix typo.
972
9732009-05-28 Chong Yidong <cyd@stupidchicken.com>
974
975 * frames.texi (Text Terminal Colors): Multi-tty is already
976 implemented, but tty-local colors are not.
977
9782009-05-27 Chong Yidong <cyd@stupidchicken.com>
979
980 * hooks.texi (Standard Hooks): Remove mention of obsolete
981 redisplay-end-trigger-functions.
982
983 * internals.texi (Window Internals): Remove mention of obsolete
984 redisplay-end-trigger-functions.
985
9862009-05-21 Martin Rudalics <rudalics@gmx.at>
987
988 * abbrevs.texi (Abbrev Mode): abbrev-mode is an option.
989
990 * backups.texi (Making Backups): backup-directory-alist and
991 make-backup-file-name-function are options.
992 (Auto-Saving): auto-save-list-file-prefix is an option.
993
994 * buffers.texi (Killing Buffers): buffer-offer-save is an
995 option.
996
997 * display.texi (Refresh Screen): no-redraw-on-reenter is an
998 option.
999 (Echo Area Customization): echo-keystrokes is an option.
1000 (Selective Display): selective-display-ellipses is an option.
1001 (Temporary Displays): temp-buffer-show-function is an option.
1002 (Face Attributes): underline-minimum-offset and x-bitmap-file-path
1003 are options.
1004 (Font Selection): face-font-family-alternatives,
1005 face-font-selection-order, face-font-registry-alternatives, and
1006 scalable-fonts-allowed are options.
1007 (Fringe Indicators): indicate-buffer-boundaries is an option.
1008 (Fringe Cursors): overflow-newline-into-fringe is an option.
1009 (Scroll Bars): scroll-bar-mode is an option.
1010
1011 * eval.texi (Eval): max-lisp-eval-depth is an option.
1012
1013 * files.texi (Visiting Functions): find-file-hook is an option.
1014 (Directory Names): directory-abbrev-alist is an option.
1015 (Unique File Names): temporary-file-directory and
1016 small-temporary-file-directory are options.
1017
1018 * frames.texi (Initial Parameters): initial-frame-alist,
1019 minibuffer-frame-alist and default-frame-alist are options.
1020 (Cursor Parameters): blink-cursor-alist and
1021 cursor-in-non-selected-windows ar options.
1022 (Window System Selections): selection-coding-system is an
1023 option.
1024 (Display Feature Testing): display-mm-dimensions-alist is an
1025 option.
1026
1027 * help.texi (Help Functions): help-char and help-event-list are
1028 options.
1029
1030 * keymaps.texi (Functions for Key Lookup): meta-prefix-char is
1031 an option.
1032
1033 * minibuf.texi (Minibuffer History): history-length and
1034 history-delete-duplicates are options.
1035 (High-Level Completion): read-buffer-function and
1036 read-buffer-completion-ignore-case are options.
1037 (Reading File Names): read-file-name-completion-ignore-case is
1038 an option.
1039
1040 * modes.texi (Mode Line Top): mode-line-format is an option.
1041 (Mode Line Variables): mode-line-position and mode-line-modes
1042 are options.
1043
1044 * nonascii.texi (Text Representations):
1045 enable-multibyte-characters is an option.
1046 (Default Coding Systems): auto-coding-regexp-alist,
1047 file-coding-system-alist, auto-coding-alist and
1048 auto-coding-functions are options.
1049 (Specifying Coding Systems): inhibit-eol-conversion is an
1050 option.
1051
1052 * os.texi (Init File): site-run-file is an option.
1053 (System Environment): mail-host-address is an option.
1054 (User Identification): user-mail-address is an option.
1055 (Terminal Output): baud-rate is an option.
1056
1057 * positions.texi (Word Motion): words-include-escapes is an
1058 option.
1059
1060 * searching.texi (Standard Regexps): page-delimiter,
1061 paragraph-separate, paragraph-separate and sentence-end are
1062 options.
1063
1064 * text.texi (Margins): left-margin and fill-nobreak-predicate
1065 are options.
1066
1067 * variables.texi (Local Variables): max-specpdl-size is an
1068 option.
1069
1070 * windows.texi (Choosing Window):
1071 split-window-preferred-function, special-display-function and
1072 display-buffer-function are options.
1073
10742009-05-20 Chong Yidong <cyd@stupidchicken.com>
1075
1076 Fix errors spotted by Martin Rudalics.
1077
1078 * syntax.texi (Position Parse): Document rationale for ignored
1079 arguments to syntax-ppss-flush-cache.
1080
1081 * processes.texi (Input to Processes): Mark PROCESS arg to
1082 process-running-child-p as optional.
1083 (Network Options): Document NO-ERROR arg to
1084 set-network-process-option.
1085
1086 * buffers.texi (Indirect Buffers): Mark clone-indirect-buffer as a
1087 command.
1088
1089 * searching.texi (POSIX Regexps): Mark posix-search-forward and
1090 posix-search-backward as commands.
1091
1092 * os.texi (Killing Emacs): Mark kill-emacs as a command.
1093 (Suspending Emacs): Mark suspend-emacs as a command.
1094 (Processor Run Time): Mark emacs-uptime and emacs-init-time as
1095 commands.
1096 (Terminal Output): Remove obsolete function baud-rate.
1097 Document TERMINAL arg for send-string-to-terminal.
1098
1099 * nonascii.texi (Terminal I/O Encoding): Document TERMINAL arg for
1100 terminal-coding-system and set-terminal-coding-system.
1101 (Explicit Encoding): Mark DESTINATION arg of decode-coding-region
1102 as optional.
1103 (Character Sets): Document RESTRICTION arg of char-charset.
1104 (Character Codes): Mark POS argument to get-byte as optional.
1105
1106 * minibuf.texi (Minibuffer Misc): Document ARGS arg for
1107 minibuffer-message.
1108
1109 * files.texi (Create/Delete Dirs): Mark make-directory and
1110 delete-directory as commands.
1111
1112 * abbrevs.texi (Abbrev Tables): Fix arglist for make-abbrev-table.
1113
1114 * text.texi (Base 64): Mark base64-decode-string and
1115 base64-encode-string as commands.
1116 (Columns): Mark move-to-column as a command.
1117 (Mode-Specific Indent): Document RIGID arg to
1118 indent-for-tab-command.
1119 (Region Indent): Mark TO-COLUMN arg to indent-region as optional.
1120 Mark indent-code-rigidly as a command.
1121 (Substitution): Mark translate-region as a command.
1122
1123 * frames.texi (Size and Position): Remove obsolete functions
1124 screen-height and screen-width.
1125
11262009-05-19 Chong Yidong <cyd@stupidchicken.com>
1127
1128 * windows.texi (Cyclic Window Ordering, Cyclic Window Ordering)
1129 (Displaying Buffers, Resizing Windows): Correct mistakes;
1130 next-window, previous-window, and pop-to-buffer are not commands,
1131 and fit-window-to-buffer" is a command. (Pointed out by Martin
1132 Rudalics.)
1133
11342009-05-17 Richard M Stallman <rms@gnu.org>
1135
1136 * modes.texi (Precalculated Fontification): Clarify text.
1137
11382009-05-17 Martin Rudalics <rudalics@gmx.at>
1139
1140 * windows.texi (Selecting Windows): Clarify descriptions of
1141 with-selected-window and get-lru-window.
1142 (Cyclic Window Ordering): Refer to particular frame when talking
1143 about how splitting affects the ordering.
1144 (Displaying Buffers): Fix descriptions of switch-to-buffer and
1145 switch-to-buffer-other-window. Explain how setting of
1146 display-buffer-reuse-frames affects pop-to-buffer.
1147 (Choosing Window): Clarify some details in descriptions of
1148 display-buffer-reuse-frames, pop-up-frames, and
1149 pop-up-frame-function.
1150 (Dedicated Windows): Clarify some details.
1151 (Textual Scrolling): Replace term vscroll by term vertical
1152 scroll position.
1153 (Vertical Scrolling): Fix typo.
1154 (Window Hooks): Relate text on jit-lock-register to window
1155 scrolling and size changes.
1156
11572009-05-14 Chong Yidong <cyd@stupidchicken.com>
1158
1159 * frames.texi (Initial Parameters): Clarify what the initial
1160 minibuffer frame is.
1161 (Buffer Parameters): Note that the minibuffer parameter can not be
1162 altered.
1163
1164 * anti.texi (Antinews): Copyedits. Rearrange some entries.
1165 Document display-buffer changes.
1166
11672009-05-13 Chong Yidong <cyd@stupidchicken.com>
1168
1169 * anti.texi (Antinews): Rewrite for Emacs 22.
1170
1171 * abbrevs.texi (Abbrevs): Add xref to Creating Symbols when
1172 obarrays are first mentioned. Define "system abbrev" more
1173 prominently, and add it to the index.
1174 (Abbrev Mode, Abbrev Tables, Defining Abbrevs, Abbrev Properties):
1175 Copyedits.
1176 (Abbrev Expansion): Document abbrev-insert.
1177
11782009-05-12 Chong Yidong <cyd@stupidchicken.com>
1179
1180 * frames.texi (Font and Color Parameters): Rename from Color
1181 Parameters. Document font-backend parameter.
1182
1183 * vol2.texi (Top): Update node listing.
1184 * vol1.texi (Top): Update node listing.
1185 * elisp.texi (Top): Update node listing.
1186
11872009-05-11 Martin Rudalics <rudalics@gmx.at>
1188
1189 * windows.texi (Choosing Window): Don't explicitly refer to
1190 split-window-sensibly's window argument in descriptions of
1191 split-height-threshold and split-width-threshold.
1192
11932009-05-10 Martin Rudalics <rudalics@gmx.at>
1194
1195 * windows.texi (Choosing Window): Fix rewrite of window
1196 splitting section.
1197
11982009-05-09 Eli Zaretskii <eliz@gnu.org>
1199
1200 * nonascii.texi (Default Coding Systems): Document
1201 find-auto-coding, set-auto-coding, and auto-coding-alist.
1202 Add indexing.
1203 (Lisp and Coding Systems): Add index entries.
1204
12052009-05-09 Martin Rudalics <rudalics@gmx.at>
1206
1207 * windows.texi (Choosing Window): Describe split-window-sensibly
1208 and rewrite section on window splitting accordingly.
1209 (Textual Scrolling): Replace `...' by @code{...}.
1210
12112009-05-04 Chong Yidong <cyd@stupidchicken.com>
1212
1213 * hooks.texi (Standard Hooks): Add abbrev-expand-functions.
1214 Remove obsoleted pre-abbrev-expand-hook.
1215
1216 * locals.texi (Standard Buffer-Local Variables): Consolidate table
1217 entries.
1218
1219 * internals.texi (Object Internals): Don't assume 32-bit machines
1220 are the norm.
1221 (Buffer Internals): Consolidate table entries for readability.
1222 (Window Internals): Synch field names to window.h.
1223 (Process Internals): Synch field names to process.h.
1224
12252009-04-29 Chong Yidong <cyd@stupidchicken.com>
1226
1227 * variables.texi (File Local Variables): Note that read-circle is
1228 bound to nil when reading file-local variables.
1229
1230 * streams.texi (Input Functions): Document read-circle.
1231 (Output Variables): Add xref to Circular Objects.
1232
12332009-04-25 Chong Yidong <cyd@stupidchicken.com>
1234
1235 * tips.texi (Coding Conventions): Copyedits. Add xref to Named
1236 Features and Coding System Basics. Node that "p" stands for
1237 "predicate". Recommend utf-8-emacs instead of emacs-mule.
1238 (Key Binding Conventions): Emacs does use S-down-mouse-1, for
1239 mouse-appearance-menu.
1240 (Programming Tips): Add xref to Progress.
1241
12422009-04-22 Chong Yidong <cyd@stupidchicken.com>
1243
1244 * os.texi (Command-Line Arguments):
1245 Document command-line-args-left.
1246 (Suspending Emacs): Adapt text to multi-tty case. Document use of
1247 terminal objects for tty arguments.
1248 (Startup Summary): Add xref to Session Management.
1249 (Session Management): Mention emacs-session-restore. Copyedits.
1250
12512009-04-20 Chong Yidong <cyd@stupidchicken.com>
1252
1253 * os.texi (Startup Summary): Copyedits. The init file is not
1254 necessarily named .emacs now. Document initial-buffer-choice and
1255 initial-scratch-message. Note where Emacs exits in batch mode.
1256 Document inhibit-splash-screen as an alias.
1257 (Init File): Be neutral about which init file name to use.
1258
12592009-04-16 Chong Yidong <cyd@stupidchicken.com>
1260
1261 * os.texi (System Interface): Fix Texinfo usage.
1262
12632009-04-15 Chong Yidong <cyd@stupidchicken.com>
1264
1265 * searching.texi (Regexp Backslash): Also refer to shy groups as
1266 non-capturing or unnumbered groups.
1267 (Regexp Functions): Add cross-reference to Regexp Backslash.
1268
1269 * display.texi (Truncation): Overlays can use line-prefix and
1270 wrap-prefix too.
1271 (Overlay Properties): Document wrap-prefix and line-prefix.
1272 (Face Attributes): Document underline-minimum-offset.
1273 (Face Remapping): Copyedits.
1274 (Low-Level Font): Copyedits.
1275 (Image Cache): Note that the image cache is shared between frames.
1276 (Line Height): Emphasize that line-spacing only takes effect on
1277 graphical terminals.
1278
12792009-04-13 Chong Yidong <cyd@stupidchicken.com>
1280
1281 * display.texi (Refresh Screen): Note that a passage about screen
1282 refreshing is text terminal only.
1283 (Forcing Redisplay): Delete misleading comment---sit-for calls
1284 redisplay, not the other way around.
1285 (Truncation): Note new values of truncate-partial-width-windows.
1286 Copyedits.
1287 (Invisible Text): Document invisible-p.
1288
12892009-04-11 Eli Zaretskii <eliz@gnu.org>
1290
1291 * display.texi (Overlays): Overlays don't scale well. See
1292 http://lists.gnu.org/archive/html/emacs-devel/2009-04/msg00243.html.
1293
12942009-04-10 Chong Yidong <cyd@stupidchicken.com>
1295
1296 * syntax.texi (Syntax Table Functions): Document cons cell
1297 argument for modify-syntax-entry.
1298 (Categories): Document cons cell argument for
1299 modify-category-entry.
1300
1301 * searching.texi (String Search): Document word-search-forward-lax
1302 and word-search-backward-lax.
1303 (Searching and Case): Describe isearch behavior more precisely.
1304
1305 * keymaps.texi (Tool Bar): Mention that some platforms do not
1306 support multi-line toolbars. Suggested by Stephen Eglen.
1307
1308 * frames.texi (Layout Parameters): Mention that Nextstep also
1309 allows only one tool-bar line. Suggested by Stephen Eglen.
1310
1311 * nonascii.texi (Text Representations): Copyedits.
1312 (Coding System Basics): Also mention utf-8-emacs.
1313 (Converting Representations, Selecting a Representation)
1314 (Scanning Charsets, Translation of Characters, Encoding and I/O):
1315 Copyedits.
1316 (Character Codes): Mention role of codepoints 1114112 to 4194175.
1317
13182009-04-09 Chong Yidong <cyd@stupidchicken.com>
1319
1320 * text.texi (Yank Commands): Note that yank uses push-mark.
1321 (Filling): Clarify REGION argument of fill-paragraph.
1322 Document fill-forward-paragraph-function.
1323 (Special Properties): Remove "new in Emacs 22" declaration.
1324 (Clickable Text): Merge with Links and Mouse-1 node.
1325
1326 * display.texi (Button Properties, Button Buffer Commands):
1327 Change xref to Clickable Text.
1328
1329 * tips.texi (Key Binding Conventions): Change xref to Clickable
1330 Text.
1331
1332 * elisp.texi (Top): Update node listing.
1333
13342009-04-05 Chong Yidong <cyd@stupidchicken.com>
1335
1336 * markers.texi (The Mark): Copyedits. Improve description of
1337 handle-shift-selection.
1338 (The Region): Move use-region-p here from The Mark.
1339
1340 * positions.texi (Screen Lines): Document (cols . lines) argument
1341 for vertical-motion.
1342
13432009-04-04 Chong Yidong <cyd@stupidchicken.com>
1344
1345 * frames.texi (Frames): Clean up introduction. Document `ns'
1346 return value for framep.
1347 (Creating Frames): Note how the terminal is chosen.
1348 (Multiple Terminals, Multiple Displays): Merge into a single node.
1349 (Color Parameters): Fix typo.
1350
1351 * variables.texi (Local Variables, Buffer-Local Variables)
1352 (Creating Buffer-Local): Change link to Multiple Terminals.
1353
1354 * os.texi (X11 Keysyms): Change link to Multiple Terminals.
1355
1356 * keymaps.texi (Controlling Active Maps): Change link to Multiple
1357 Terminals.
1358
1359 * commands.texi (Command Loop Info, Keyboard Macros): Change link
1360 to Multiple Terminals.
1361
1362 * elisp.texi (Top): Update node listing.
1363 * vol2.texi (Top): Update node listing.
1364 * vol1.texi (Top): Update node listing.
1365
1366 * buffers.texi (Current Buffer): Note that the append-to-buffer
1367 example is no longer in synch with the latest code. Tie the two
1368 examples together.
1369
1370 * files.texi (File Attributes): Move note about MS-DOS from
1371 Changing Files to File Attributes.
1372 (Create/Delete Dirs): Note that mkdir is an alias for this.
1373
13742009-04-01 Markus Triska <triska@gmx.at>
1375
1376 * processes.texi (Filter Functions): Suggest how to handle output
1377 batches.
1378
13792009-03-30 Chong Yidong <cyd@stupidchicken.com>
1380
1381 * help.texi (Accessing Documentation): Update example to use
1382 help-setup-xref and with-help-window.
1383 (Help Functions): Remove print-help-return-message, which is
1384 semi-obsolete due to with-help-window. Document help-buffer and
1385 help-setup-xref.
1386
13872009-03-29 Chong Yidong <cyd@stupidchicken.com>
1388
1389 * help.texi (Accessing Documentation, Help Functions):
1390 Remove information about long-obsolete Emacs versions.
1391
1392 * modes.texi (Mode Line Variables): The default values of the mode
1393 line variables are now more complicated.
1394
13952009-03-28 Chong Yidong <cyd@stupidchicken.com>
1396
1397 * modes.texi (Major Mode Conventions): Note that specialness is
1398 inherited.
1399 (Derived Modes): Note that define-derive-mode sets the mode-class
1400 property.
1401
1402 * keymaps.texi (Prefix Keys): The M-g prefix key is now named
1403 goto-map. Add search-map to the list.
1404
14052009-03-27 Eli Zaretskii <eliz@gnu.org>
1406
1407 * os.texi (System Environment): Update the list of system-type
1408 values.
1409
1410 * markers.texi (The Mark) <handle-shift-selection>: Update for
1411 removal of the optional argument DEACTIVATE.
1412
14132009-03-25 Chong Yidong <cyd@stupidchicken.com>
1414
1415 * commands.texi (Focus Events): Most X window managers don't use
1416 focus-follows-mouse nowadays.
1417
14182009-03-24 Chong Yidong <cyd@stupidchicken.com>
1419
1420 * commands.texi (Defining Commands): Clarify introduction.
1421 (Using Interactive): Not that interactive can be put in a symbol
1422 property.
1423 (Interactive Call): Note that a symbol with a non-nil
1424 interactive-form property satisfies commandp.
1425
14262009-03-23 Juanma Barranquero <lekktu@gmail.com>
1427
1428 * minibuf.texi (Intro to Minibuffers): Fix typos.
1429
14302009-03-23 Chong Yidong <cyd@stupidchicken.com>
1431
1432 * minibuf.texi (Intro to Minibuffers): Remove long-obsolete info
1433 about minibuffers in old Emacs versions. Copyedits.
1434 Emphasize that enable-recursive-minibuffers defaults to nil.
1435 (Text from Minibuffer): Simplify introduction.
1436
14372009-03-22 Alan Mackenzie <acm@muc.de>
1438
1439 * commands.texi (Using Interactive): Clarify string argument to
1440 `interactive' - even promptless elements need \n separators.
1441
14422009-03-18 Chong Yidong <cyd@stupidchicken.com>
1443
1444 * minibuf.texi (Completion Styles): New node.
1445
1446 * elisp.texi (Top): Update node listing.
1447
14482009-03-17 Chong Yidong <cyd@stupidchicken.com>
1449
1450 * minibuf.texi (Basic Completion): Note that
1451 read-file-name-completion-ignore-case and
1452 read-buffer-completion-ignore-case can override
1453 completion-ignore-case.
1454 (Minibuffer Completion): Document completing-read changes.
1455 (Completion Commands): Avoid mentioning partial completion mode.
1456 Document minibuffer-completion-confirm changes, and
1457 minibuffer-confirm-exit-commands.
1458 (High-Level Completion): Document new require-match behavior for
1459 read-buffer. Document read-buffer-completion-ignore-case.
1460 (Reading File Names): Document new require-match behavior for
1461 read-file-name.
1462
14632009-03-14 Chong Yidong <cyd@stupidchicken.com>
1464
1465 * debugging.texi (Error Debugging): Don't mislead the reader into
1466 thinking that debug-on-error enters debugger for C-f at EOB.
1467 (Error Debugging): Setting debug-on-init within the init file
1468 works, and has for some time.
1469
14702009-03-13 Kenichi Handa <handa@m17n.org>
1471
1472 * display.texi (Fontsets): Update the description.
1473
14742009-03-13 Chong Yidong <cyd@stupidchicken.com>
1475
1476 * advice.texi (Advising Primitives): Link to What Is a Function.
1477
14782009-03-12 Chong Yidong <cyd@stupidchicken.com>
1479
1480 * compile.texi (Speed of Byte-Code): Update example.
1481 (Disassembly): Update examples.
1482
1483 * loading.texi (Repeated Loading): Simplify examples.
1484
1485 * customize.texi (Common Keywords): It's not necessary to use :tag
1486 to remove hyphens, as custom-unlispify-tag-name does it
1487 automatically.
1488 (Variable Definitions): Link to File Local Variables.
1489 Document customized-value symbol property.
1490 (Customization Types): Move menu to end of node.
1491
14922009-03-10 Chong Yidong <cyd@stupidchicken.com>
1493
1494 * macros.texi (Compiling Macros): Omit misleading sentence, which
1495 implied that macros can only be used in the same file they are
1496 defined.
1497 (Backquote): Remove obsolete information about Emacs 19.
1498
14992009-03-05 John Foerch <jjfoerch@earthlink.net> (tiny change)
1500
1501 * display.texi (Display Margins): Fix paren typo.
1502
15032009-02-27 Chong Yidong <cyd@stupidchicken.com>
1504
1505 * elisp.texi (Top): Update node listing.
1506
1507 * variables.texi (Variables): Clarify introduction.
1508 (Global Variables): Mention that setq is a special form.
1509 (Local Variables): Use active voice.
1510 (Tips for Defining): Mention marking variables as safe.
1511 (Buffer-Local Variables): Mention terminal-local and frame-local
1512 variables together.
1513 (File Local Variables): Copyedits.
1514 (Frame-Local Variables): Note that they are not really useful.
1515 (Future Local Variables): Node deleted.
1516
1517 * objects.texi (General Escape Syntax): Update explanation of
1518 unicode escape syntax.
1519
15202009-02-23 Chong Yidong <cyd@stupidchicken.com>
1521
1522 * control.texi (Control Structures): Add cindex entry for "textual
1523 order".
1524
1525 * eval.texi (Intro Eval): Copyedits. Standardize on "form"
1526 instead of "expression" throughout.
1527 (Function Indirection): Copyedits. Use active voice.
1528 (Eval): The default value of max-lisp-eval-depth is now 400.
1529
15302009-02-23 Miles Bader <miles@gnu.org>
1531
1532 * processes.texi (System Processes): Rename `system-process-attributes'
1533 to `process-attributes'.
1534
15352009-02-22 Chong Yidong <cyd@stupidchicken.com>
1536
1537 * symbols.texi (Property Lists): Emphasize that property lists are
1538 not restricted to symbol cells.
1539 (Other Plists): Copyedit.
1540
1541 * sequences.texi (Sequences Arrays Vectors): Make introduction
1542 more concise.
1543 (Arrays): Mention char-tables and bool-vectors too.
1544 (Vectors): Don't repeat information given in Arrays node. Link to
1545 nodes that explain the vector usage examples.
1546 (Char-Tables): Note that char-table elements can have arbitrary
1547 type. Explain effect of omitted char-table-extra-slots property.
1548 Link to Property Lists node.
1549
15502009-02-22 Chong Yidong <cyd@stupidchicken.com>
1551
1552 * lists.texi (Building Lists): Remove obsolete Emacs 20 usage of
1553 `append'.
1554 (List Elements): Copyedits.
1555
1556 * sequences.texi (Vector Functions): Remove obsolete Emacs 20 use
1557 of `vconcat'.
1558
1559 * strings.texi (Creating Strings): Copyedits. Remove obsolete
1560 Emacs 20 usage of `concat'.
1561 (Case Conversion): Copyedits.
1562
15632009-02-21 Chong Yidong <cyd@stupidchicken.com>
1564
1565 * objects.texi (Lisp Data Types, Syntax for Strings, Buffer Type):
1566 Minor edits.
1567 (Frame Configuration Type): Emphasize that it is not primitive.
1568 (Font Type): New node.
1569 (Type Predicates): Add fontp; type-of now recognizes font object
1570 types.
1571
1572 * intro.texi (Version Info): Update version numbers in examples.
1573 (Acknowledgements): List more contributors.
1574
1575 * elisp.texi: Bump version number to 3.0.
1576 (Top): Link to Font Type node.
1577
15782009-02-20 Juanma Barranquero <lekktu@gmail.com>
1579
1580 * modes.texi (Major Mode Conventions): Remove duplicate words.
1581 (Customizing Keywords): Fix typo.
1582
15832009-02-14 Eli Zaretskii <eliz@gnu.org>
1584
1585 * nonascii.texi (User-Chosen Coding Systems): Document that
1586 select-safe-coding-system suggests raw-text if there are raw bytes
1587 in the region.
1588 (Explicit Encoding): Warn not to use `undecided' when encoding.
1589
15902009-02-11 Glenn Morris <rgm@gnu.org>
1591
1592 * frames.texi (Visibility of Frames): Mention the effect multiple
1593 workspaces/desktops can have on visibility.
1594
15952009-02-07 Eli Zaretskii <eliz@gnu.org>
1596
1597 * text.texi (Commands for Insertion):
1598 * commands.texi (Event Mod):
1599 * keymaps.texi (Searching Keymaps):
1600 * nonascii.texi (Translation of Characters):
1601 Reinstate documentation of translation-table-for-input.
1602 (Explicit Encoding): Document the `charset' text property produced
1603 by decode-coding-region and decode-coding-string.
1604
16052009-01-27 Alan Mackenzie <acm@muc.de>
1606
1607 * modes.texi (Search-based Fontification): Correct a typo.
1608
16092009-01-25 Juanma Barranquero <lekktu@gmail.com>
1610
1611 * abbrevs.texi (Abbrev Table Properties): Fix typo.
1612 Reported by Seweryn Kokot <sewkokot@gmail.com>. (Bug#2039)
1613
16142009-01-24 Eli Zaretskii <eliz@gnu.org>
1615
1616 * display.texi (Window Systems): Document the value of
1617 `initial-window-system' under --daemon.
1618
1619 * os.texi (System Environment): Remove description of the
1620 `environment' function which has been deleted.
1621
16222009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
1623
1624 * frames.texi (Multiple Displays): Remove documentation for
1625 removed function make-frame-on-tty.
1626
16272009-01-22 Chong Yidong <cyd@stupidchicken.com>
1628
1629 * files.texi (Format Conversion Piecemeal): Clarify behavior of
1630 write-region-annotate-functions.
1631 Document write-region-post-annotation-function.
1632
16332009-01-19 Chong Yidong <cyd@stupidchicken.com>
1634
1635 * display.texi (Font Lookup): Document WIDTH argument of
1636 x-list-fonts.
1637
16382009-01-17 Eli Zaretskii <eliz@gnu.org>
1639
1640 * maps.texi (Standard Keymaps): Rename function-key-map to
1641 local-function-key-map.
1642
1643 * keymaps.texi (Translation Keymaps): Rename function-key-map to
1644 local-function-key-map.
1645
1646 * nonascii.texi (Terminal I/O Encoding): `keyboard-coding-system'
1647 and `set-keyboard-coding-system' now accept an optional terminal
1648 argument.
1649
1650 * commands.texi (Event Mod): `keyboard-translate-table' is now
1651 terminal-local.
1652 (Function Keys): Rename function-key-map to
1653 local-function-key-map.
1654
1655 * elisp.texi (Top): Make @detailmenu be consistent with changes in
1656 frames.texi.
1657
1658 * hooks.texi (Standard Hooks): Document `delete-frame-functions'
1659 `delete-terminal-functions', `suspend-tty-functions' and
1660 `resume-tty-functions'.
1661
1662 * frames.texi (Frames): Document `frame-terminal' and
1663 `terminal-live-p'.
1664 (Multiple Displays): Document `make-frame-on-tty'.
1665 (Multiple Terminals): Document `terminal-list', `delete-terminal',
1666 `terminal-name', and `get-device-terminal'.
1667 (Terminal Parameters): Document `terminal-parameters',
1668 `terminal-parameter', and `set-terminal-parameter'.
1669
1670 * os.texi (System Environment): Document `environment' and
1671 `initial-environment'.
1672 (Suspending Emacs): Update for multi-tty; document
1673 `suspend-tty', `resume-tty', and `controlling-tty-p'.
1674
1675 * nonascii.texi (Coding System Basics): More accurate description
1676 of `raw-text'.
1677
16782009-01-12 Juanma Barranquero <lekktu@gmail.com>
1679
1680 * display.texi (Low-Level Font): Fix typo.
1681
16822009-01-10 Chong Yidong <cyd@stupidchicken.com>
1683
1684 * elisp.texi (Top): Update node listing.
1685
1686 * display.texi (PostScript Images): Node deleted.
1687
16882009-01-10 Eli Zaretskii <eliz@gnu.org>
1689
1690 * processes.texi (Decoding Output): Document that null bytes force
1691 no-conversion for reading process output.
1692
1693 * files.texi (Reading from Files): Document that null bytes force
1694 no-conversion when visiting files.
1695
1696 * processes.texi (Serial Ports): Improve wording, suggested by RMS.
1697
1698 * nonascii.texi (Lisp and Coding Systems):
1699 Document inhibit-null-byte-detection and inhibit-iso-escape-detection.
1700 (Character Properties): Improve wording.
1701
17022009-01-09 Chong Yidong <cyd@stupidchicken.com>
1703
1704 * display.texi (Font Lookup): Remove obsolete function
1705 x-font-family-list. x-list-fonts accepts Fontconfig/GTK syntax.
1706 (Low-Level Font): Rename from Fonts, move to end of Faces section.
1707 (Font Selection): Reorder order of variable descriptions.
1708 Minor clarifications.
1709
1710 * elisp.texi (Top): Update node listing.
1711
17122009-01-09 Glenn Morris <rgm@gnu.org>
1713
1714 * commands.texi (Command Loop Info): Say that last-command-char and
1715 last-input-char are obsolete aliases.
1716
1717 * edebug.texi (Edebug Recursive Edit): Remove separate references to
1718 last-input-char and last-command-char, since they are just aliases for
1719 last-input-event and last-command-event.
1720
1721 * minibuf.texi (Minibuffer Commands): Use last-command-event rather than
1722 last-command-char.
1723
17242009-01-08 Chong Yidong <cyd@stupidchicken.com>
1725
1726 * elisp.texi: Update node listing.
1727
1728 * display.texi (Faces): Put Font Selection node after Auto Faces.
1729 (Face Attributes): Don't link to Font Lookup.
1730 Document font-family-list.
1731 (Fonts): New node.
1732
17332009-01-08 Jason Rumney <jasonr@gnu.org>
1734
1735 * frames.texi (Pointer Shape): Clarify that only X supports
1736 changing the standard pointer shapes. (Bug#1485)
1737
17382009-01-08 Chong Yidong <cyd@stupidchicken.com>
1739
1740 * display.texi (Attribute Functions): Note that a function value
1741 :height is relative, and that compatibility functions work by
1742 calling set-face-attribute.
1743 (Displaying Faces): Reorder list in order of increasing priority.
1744 (Face Remapping): New node. Content moved here from Displaying
1745 Faces.
1746 (Glyphs): Link to Face Functions.
1747
17482009-01-08 Chong Yidong <cyd@stupidchicken.com>
1749
1750 * display.texi (Faces): Don't discuss face id here. facep does
1751 not return t.
1752 (Defining Faces): Minor clarification.
1753 (Face Attributes): Rearrange items to match docstring of
1754 set-face-attribute. Add :foundry attribute. Document new role of
1755 :font attribute. Texinfo usage fix.
1756 (Attribute Functions): Copyedits.
1757 (Face Functions): Note that face number is seldom used.
1758
17592009-01-05 Richard M Stallman <rms@gnu.org>
1760
1761 * strings.texi (Predicates for Strings): Minor clarification.
1762
1763 * functions.texi (Function Safety): Texinfo usage fix.
1764
17652009-01-04 Eduard Wiebe <usenet@pusto.de> (tiny patch)
1766
1767 * objects.texi (General Escape Syntax): Fix typo.
1768
17692009-01-03 Martin Rudalics <rudalics@gmx.at>
1770
1771 * windows.texi (Choosing Window): Say that pop-up-frame-alist
1772 works via the default value of pop-up-frame-function.
1773
17742009-01-02 Eli Zaretskii <eliz@gnu.org>
1775
1776 * processes.texi (System Processes): Document the `time' and
1777 `ctime' attributes of `system-process-attributes'.
1778
17792009-01-01 Chong Yidong <cyd@stupidchicken.com>
1780
1781 * display.texi (Face Attributes): Clarify :height attribute.
1782
17832008-12-31 Martin Rudalics <rudalics@gmx.at>
1784
1785 * buffers.texi (The Buffer List): Clarify what moves a buffer to
1786 the front of the buffer list. Add entries for `last-buffer' and
1787 `unbury-buffer'.
1788
17892008-12-27 Eli Zaretskii <eliz@gnu.org>
1790
1791 * elisp.texi (Top): Add @detailmenu items for "Multiple Terminals"
1792 and its subsections.
1793
1794 * frames.texi (Multiple Terminals, Low-level Terminal)
1795 (Terminal Parameters, Frames on Other TTY devices): New sections.
1796 (Frames): Add an xref to "Multiple Terminals".
1797
1798 * elisp.texi (Top): Add @detailmenu item for "Terminal Type".
1799
1800 * objects.texi (Terminal Type): New node.
1801 (Editing Types): Add it to the menu.
1802
1803 * elisp.texi (Top): Add a @detailmenu item for "Directory Local
1804 Variables".
1805
1806 * variables.texi (Directory Local Variables): New node.
1807 (Variables): Add a menu item for it.
1808
1809 * loading.texi (Autoload): Document `generate-autoload-cookie' and
1810 `generated-autoload-file'.
1811
18122008-12-20 Eli Zaretskii <eliz@gnu.org>
1813
1814 * os.texi (Startup Summary): Add xref to documentation of
1815 `initial-window-system'.
1816
1817 * display.texi (Window Systems): Document `window-system' the
1818 function. The variable `window-system' is now frame-local.
1819 Document `initial-window-system'.
1820
18212008-12-19 Martin Rudalics <rudalics@gmx.at>
1822
1823 * windows.texi (Windows): Rewrite description of
1824 fit-window-to-buffer.
1825
18262008-12-13 Glenn Morris <rgm@gnu.org>
1827
1828 * modes.texi (Font Lock Basics): Fix level description. (Bug#1534)
1829 (Levels of Font Lock): Refer to font-lock-maximum-decoration.
1830
18312008-12-12 Glenn Morris <rgm@gnu.org>
1832
1833 * debugging.texi (Error Debugging): Refer forwards to
1834 eval-expression-debug-on-error.
1835
18362008-12-05 Eli Zaretskii <eliz@gnu.org>
1837
1838 * strings.texi (String Basics): Only unibyte strings that
1839 represent key sequences hold 8-bit raw bytes.
1840
1841 * nonascii.texi (Coding System Basics): Rewrite @ignore'd
1842 paragraph to speak about `undecided'.
1843 (Character Properties): Don't explain the meaning of each
1844 property; instead, identify their Unicode Standard names.
1845 (Character Sets): Document `map-charset-chars'.
1846
18472008-12-02 Glenn Morris <rgm@gnu.org>
1848
1849 * files.texi (Format Conversion Round-Trip): Rewrite format-write-file
1850 section yet again.
1851
18522008-11-29 Eli Zaretskii <eliz@gnu.org>
1853
1854 * nonascii.texi (Character Properties): New Section.
1855 (Specifying Coding Systems): Document
1856 `coding-system-priority-list', `set-coding-system-priority', and
1857 `with-coding-priority'.
1858 (Lisp and Coding Systems): Document `check-coding-systems-region'
1859 and `coding-system-charset-list'.
1860 (Coding System Basics): Document `coding-system-aliases'.
1861
1862 * elisp.texi (Top): Add a @detailmenu entry for "Character
1863 Properties".
1864
1865 * objects.texi (Character Type): Correct the range of Emacs
1866 characters. Add an @xref to "Character Codes".
1867
1868 * strings.texi (String Basics): Add an @xref to "Character Codes".
1869
1870 * numbers.texi (Integer Basics): Add an @xref to `max-char'.
1871
1872 * nonascii.texi (Explicit Encoding): Update for Emacs 23.
1873 (Character Codes): Document `max-char'.
1874
18752008-11-28 Eli Zaretskii <eliz@gnu.org>
1876
1877 * nonascii.texi (Text Representations, Converting Representations)
1878 (Character Sets, Scanning Charsets, Translation of Characters):
1879 Make text more accurate.
1880
18812008-11-28 Glenn Morris <rgm@gnu.org>
1882
1883 * files.texi (Format Conversion Round-Trip): Improve previous change.
1884
18852008-11-26 Chong Yidong <cyd@stupidchicken.com>
1886
1887 * modes.texi (Auto Major Mode): Fix example.
1888
18892008-11-25 Glenn Morris <rgm@gnu.org>
1890
1891 * control.texi (Signaling Errors): Fix `wrong-type-argument' name.
1892
1893 * files.texi (Format Conversion Round-Trip):
1894 Use active voice for previous change.
1895
18962008-11-25 Chong Yidong <cyd@stupidchicken.com>
1897
1898 * os.texi (Processor Run Time):
1899 * processes.texi (Transaction Queues):
1900 * markers.texi (The Mark):
1901 * windows.texi (Choosing Window, Selecting Windows):
1902 * files.texi (Changing Files, Magic File Names):
1903 * commands.texi (Key Sequence Input):
1904 * functions.texi (Declaring Functions):
1905 * strings.texi (Predicates for Strings):
1906 * intro.texi (nil and t): Fix typos (pointed out by Drew Adams).
1907
19082008-11-24 Chong Yidong <cyd@stupidchicken.com>
1909
1910 * help.texi (Accessing Documentation): Update example.
1911
1912 * variables.texi (Defining Variables): Note that `*' is not
1913 necessary if defcustom is used.
1914
19152008-11-22 Eli Zaretskii <eliz@gnu.org>
1916
1917 * elisp.texi (Top): Remove "Chars and Bytes" and "Splitting
1918 Characters" from @detailmenu.
1919
1920 * nonascii.texi (Character Codes, Character Sets)
1921 (Scanning Charsets, Translation of Characters): Update for Emacs 23.
1922 (Chars and Bytes, Splitting Characters): Sections removed.
1923
19242008-11-22 Lute Kamstra <lute@gnu.org>
1925
1926 * positions.texi (Text Lines): Update goto-line documentation.
1927
19282008-11-21 Martin Rudalics <rudalics@gmx.at>
1929
1930 * frames.texi (Frames): Fix typo, add cross references, reword.
1931 (Initial Parameters): Reword special-display-frame-alist text.
1932 (Frames and Windows): Reword. Describe argument norecord for
1933 set-frame-selected-window.
1934 (Input Focus): Describe argument norecord for select-frame.
1935 Remove comment on MS-Windows behavior for focus-follows-mouse.
1936 (Raising and Lowering): Mention windows-frames dichotomy in
1937 metaphor.
1938
1939 * windows.texi (Displaying Buffers, Vertical Scrolling)
1940 (Horizontal Scrolling): Fix indenting and rewording issues
1941 introduced with 2008-11-07 change.
1942
19432008-11-20 Glenn Morris <rgm@gnu.org>
1944
1945 * files.texi (Format Conversion Round-Trip): Mention `preserve'
1946 element of `format-alist'.
1947
19482008-11-19 Glenn Morris <rgm@gnu.org>
1949
1950 * doclicense.texi: Update to FDL 1.3.
1951 * elisp.texi, vol1.texi, vol2.texi: Relicense under FDL 1.3 or later.
1952
19532008-11-18 Chong Yidong <cyd@stupidchicken.com>
1954
1955 * windows.texi (Window Hooks): Remove *-end-trigger-functions
1956 vars, which are obsolete. Mention jit-lock-register.
1957
1958 * modes.texi (Other Font Lock Variables):
1959 Document jit-lock-register and jit-lock-unregister.
1960
1961 * frames.texi (Color Parameters): Document alpha parameter.
1962
19632008-11-16 Martin Rudalics <rudalics@gmx.at>
1964
1965 * windows.texi (Splitting Windows, Deleting Windows)
1966 (Selecting Windows, Cyclic Window Ordering)
1967 (Buffers and Windows, Displaying Buffers, Choosing Window)
1968 (Dedicated Windows, Window Point, Window Start and End)
1969 (Textual Scrolling, Vertical Scrolling, Horizontal Scrolling)
1970 (Size of Window, Resizing Windows, Window Configurations)
1971 (Window Parameters): Avoid @var at beginning of sentences and
1972 reword accordingly.
1973
19742008-11-11 Lute Kamstra <lute@gnu.org>
1975
1976 * files.texi (File Name Components): Fix file-name-extension
1977 documentation.
1978
19792008-11-11 Juanma Barranquero <lekktu@gmail.com>
1980
1981 * frames.texi (Basic Parameters): Remove display-environment-variable
1982 and term-environment-variable.
1983
19842008-11-08 Eli Zaretskii <eliz@gnu.org>
1985
1986 * windows.texi (Basic Windows, Splitting Windows)
1987 (Deleting Windows, Selecting Windows, Cyclic Window Ordering)
1988 (Buffers and Windows, Displaying Buffers, Dedicated Windows)
1989 (Resizing Windows, Window Configurations, Window Parameters):
1990 Fix wording and markup.
1991
19922008-11-07 Martin Rudalics <rudalics@gmx.at>
1993
1994 * windows.texi (Windows): Update entries.
1995 (Basic Windows): Remove listing of attributes. Reword.
1996 (Splitting Windows, Deleting Windows): Reword.
1997 (Selecting Windows, Cyclic Window Ordering): Reword with special
1998 emphasis on order of recently selected windows and buffer list.
1999 (Buffers and Windows, Choosing Window): Reword with special
2000 emphasis on dedicated windows.
2001 (Displaying Buffers): Reword. For switch-to-buffer mention that
2002 it may fall back on pop-to-buffer. For other-window try to
2003 explain how it treats the cyclic ordering of windows.
2004 (Dedicated Windows): New node and section discussing dedicated
2005 windows and associated functions.
2006 (Window Point): Add entry for window-point-insertion-type. Reword.
2007 (Window Start and End): Rename node and section title. Reword.
2008 (Textual Scrolling, Vertical Scrolling, Horizontal Scrolling):
2009 Minor rewording.
2010 (Size of Window): Reword, in particular text on window-width.
2011 (Resizing Windows): Reword. Add text on balancing windows.
2012 (Window Configurations): Reword. Mention window parameters.
2013 (Window Parameters): New node and section on window parameters.
2014 (Window Hooks): Reword. Mention that
2015 window-configuration-change-hook is run "buffer-locally".
2016 * elisp.texi (Top): Update Windows entries in @detailmenu
2017 section.
2018
20192008-11-04 Juanma Barranquero <lekktu@gmail.com>
2020
2021 * searching.texi (Regexp Search): Fix typo.
2022
20232008-11-03 Seweryn Kokot <sewkokot@gmail.com> (tiny change)
2024
2025 * searching.texi (Regexp Search): Document GREEDY arg.
2026 (Simple Match Data): Fix return value.
2027
20282008-11-01 Eli Zaretskii <eliz@gnu.org>
2029
2030 * nonascii.texi (Text Representations): Rewrite to make consistent
2031 with Emacs 23 internal representation of characters.
2032 Document `unibyte-string'.
2033
20342008-10-28 Chong Yidong <cyd@stupidchicken.com>
2035
2036 * processes.texi (Process Information): Note that process-status
2037 does not accept buffer names.
2038
20392008-10-27 Seweryn Kokot <sewkokot@gmail.com> (tiny change)
2040
2041 * positions.texi (Skipping Characters): Correct return value of
2042 skip-chars-forward.
2043
20442008-10-25 Martin Rudalics <rudalics@gmx.at>
2045
2046 * windows.texi (Deleting Windows): Update documentation of
2047 delete-windows-on.
2048 (Buffers and Windows): Update documentations of
2049 get-buffer-window and get-buffer-window-list.
2050 (Displaying Buffers): Update documentation of
2051 replace-buffer-in-windows.
2052
2053 * buffers.texi (Current Buffer): Reword set-buffer and
2054 with-current-buffer documentations.
2055 (Creating Buffers): Reword documentation of get-buffer-create.
2056
20572008-10-23 Martin Rudalics <rudalics@gmx.at>
2058
2059 * buffers.texi (Current Buffer): Reword documentation of
2060 set-buffer.
2061 (Buffer Names): Reword documentation of buffer-name.
2062 (The Buffer List): For bury-buffer explain what happens with the
2063 buffer's window.
2064 (Creating Buffers): Say that get-buffer-create's arg is called
2065 buffer-or-name.
2066
20672008-10-22 Chong Yidong <cyd@stupidchicken.com>
2068
2069 * advice.texi (Computed Advice): Explain what DEFINITION is.
2070
2071 * nonascii.texi (Character Codes): Remove obsolete function
2072 char-valid-p, and document characterp instead.
2073
20742008-10-22 Martin Rudalics <rudalics@gmx.at>
2075
2076 * windows.texi (Displaying Buffers): Reword documentation of
2077 pop-to-buffer.
2078 (Choosing Window): Rewrite documentation of display-buffer and
2079 its options.
2080
2081 * buffers.texi (Killing Buffers): Update documentation of
2082 kill-buffer.
2083
20842008-10-21 Eli Zaretskii <eliz@gnu.org>
2085
2086 * processes.texi (Serial Ports): Fix wording and improve markup.
2087
2088 * searching.texi (Regexp Search): Document `string-match-p' and
2089 `looking-at-p'.
2090 (POSIX Regexps): Add an xref for "non-greedy".
2091 (Regexp Special): Add @cindex entry for "non-greedy".
2092
2093 * display.texi (Attribute Functions): Document `face-all-attributes'.
2094 (Image Cache) <image-refresh>: Minor wording fixes.
2095
2096 * frames.texi (Color Names): Add an xref to `read-color'.
2097
2098 * minibuf.texi (High-Level Completion): Document `read-color'.
2099
2100 * elisp.texi (Top): Add "Swapping Text" to @detailmenu.
2101
2102 * positions.texi (Narrowing): Add an xref to "Swapping Text".
2103
2104 * buffers.texi (Swapping Text): New section, documents
2105 `buffer-swap-text'.
2106
21072008-10-21 Martin Rudalics <rudalics@gmx.at>
2108
2109 * windows.texi (Resizing Windows): Minor wording fix.
2110
21112008-10-20 Eli Zaretskii <eliz@gnu.org>
2112
2113 * processes.texi (Shell Arguments): Document `split-string-and-unquote'
2114 and `combine-and-quote-strings'.
2115
2116 * strings.texi (Creating Strings): Add xrefs for them.
2117
21182008-10-19 Eli Zaretskii <eliz@gnu.org>
2119
2120 * elisp.texi (Top): Make descriptive text for "Reading File Names"
2121 match the corresponding menu in minibuf.texi.
2122
2123 * minibuf.texi (Reading File Names): Document `read-shell-command'
2124 and `minibuffer-local-shell-command-map'.
2125
21262008-10-19 Martin Rudalics <rudalics@gmx.at>
2127
2128 * windows.texi (Resizing Windows): Remove var{} around "window" in
2129 documentation of enlarge-window.
2130 Rewrite documentation of window-min-height and window-min-width.
2131
21322008-10-19 Eli Zaretskii <eliz@gnu.org>
2133
2134 * functions.texi (Calling Functions): Document `apply-partially'.
2135
2136 * hooks.texi (Standard Hooks): Mention
2137 `before-hack-local-variables-hook' and `hack-local-variables-hook'.
2138
2139 * variables.texi (File Local Variables): Document
2140 `file-local-variables-alist', `before-hack-local-variables-hook'
2141 and `hack-local-variables-hook'.
2142
2143 * processes.texi (Synchronous Processes): Document `process-lines'.
2144
2145 * customize.texi (Variable Definitions):
2146 Document `custom-reevaluate-setting'.
2147
21482008-10-18 Martin Rudalics <rudalics@gmx.at>
2149
2150 * windows.texi (Choosing Window, Deleting Windows)
2151 (Displaying Buffers): Expand documentation of dedicated windows.
2152
21532008-10-18 Eli Zaretskii <eliz@gnu.org>
2154
2155 * files.texi (Changing Files): Document symbolic input of file
2156 modes to `set-file-modes'. Document `read-file-modes' and
2157 `file-modes-symbolic-to-number'.
2158
2159 * maps.texi (Standard Keymaps): Document `multi-query-replace-map'
2160 and `search-map'.
2161
2162 * searching.texi (Search and Replace):
2163 Document `replace-search-function' and `replace-re-search-function'.
2164 Document `multi-query-replace-map'.
2165
2166 * minibuf.texi (Text from Minibuffer): Document `read-regexp'.
2167 (Completion Commands, Reading File Names):
2168 Rename `minibuffer-local-must-match-filename-map' to
2169 `minibuffer-local-filename-must-match-map'.
2170 (Minibuffer Completion): The `require-match' argument to
2171 `completing-read' can now have the value `confirm-only'.
2172
2173 * windows.texi (Displaying Buffers): Minor wording fix.
2174 (Choosing Window): `split-height-threshold' can now be nil.
2175 Document `split-width-threshold'. `pop-up-frames' can have the
2176 value `graphic-only'.
2177
21782008-10-17 Eli Zaretskii <eliz@gnu.org>
2179
2180 * os.texi (Startup Summary): Document `before-init-time' and
2181 `after-init-time'. Document `initial-window-system' and
2182 `window-system-initialization-alist'. Document reading the
2183 abbrevs file. Document the call to `server-start' under --daemon.
2184 Rearrange a bit to be consistent with the code flow.
2185 (Processor Run Time): Document `emacs-uptime' and `emacs-init-time'.
2186 (Time Parsing): Document `format-seconds'.
2187
21882008-10-17 Martin Rudalics <rudalics@gmx.at>
2189
2190 * windows.texi (Basic Windows, Splitting Windows): Fix whitespace
2191 and reword.
2192
21932008-10-16 Eli Zaretskii <eliz@gnu.org>
2194
2195 * markers.texi (The Mark): Document use-region-p.
2196
21972008-10-15 Eli Zaretskii <eliz@gnu.org>
2198
2199 * internals.texi (Writing Emacs Primitives): The interactive spec
2200 of a primitive can be a Lisp form.
2201
2202 * markers.texi (The Mark): Document the `lambda' and `(only . OLD)'
2203 values of transient-mark-mode. Document handle-shift-selection.
2204
2205 * commands.texi (Using Interactive, Interactive Codes): Document `^'.
2206 (Interactive Examples): Show an example of `^'.
2207 (Key Sequence Input): Document this-command-keys-shift-translated.
2208 (Defining Commands, Using Interactive): The interactive-form of a
2209 function can be added via its symbol's property.
2210
2211 * positions.texi (List Motion): beginning-of-defun-function can
2212 now accept an argument.
2213
2214 * text.texi (Low-Level Kill Ring): interprogram-paste-function can
2215 now return a list of strings.
2216
2217 * control.texi (Handling Errors): Document ignore-errors.
2218
2219 * frames.texi (Creating Frames): Document frame-inherited-parameters.
2220 (Parameter Access): Document set-frame-parameter.
2221
2222 * variables.texi (Creating Buffer-Local): Add an xref to "Setting
2223 Hooks" for the effect of kill-all-local-variables on local hook
2224 functions.
2225
2226 * modes.texi (Major Mode Conventions, Mode Line Variables):
2227 `mode-name' need not be a string. xref to "Mode Line Data" for
2228 details, and to "Emulating Mode Line" for computing a string
2229 value.
2230
22312008-10-14 Eli Zaretskii <eliz@gnu.org>
2232
2233 * processes.texi (System Processes): New section.
2234 (Processes, Signals to Processes): Add xrefs to it.
2235
2236 * objects.texi (Editing Types): A `process' is a subprocess of
2237 Emacs, not just any process running on the OS.
2238
2239 * elisp.texi (Top): Adjust the @detailmenu for the above two
2240 changes.
2241
2242 * sequences.texi (Char-Tables): Remove documentation of
2243 set-char-table-default, which has no effect since Emacs 23.
2244 <char-table-range, set-char-table-range>: Don't mention generic
2245 characters and charsets. Add a cons cell as a possible argument.
2246
2247 * nonascii.texi (Splitting Characters)
2248 (Translation of Characters): Don't mention generic characters.
2249
2250 * display.texi (Fontsets): Don't mention generic characters.
2251
2252 * sequences.texi (Char-Tables): `map-char-table' can now call its
2253 argument FUNCTION with a cons cell as KEY.
2254
22552008-10-13 Eli Zaretskii <eliz@gnu.org>
2256
2257 * objects.texi (Primitive Function Type): Move "@cindex special
2258 forms" from here...
2259
2260 * eval.texi (Special Forms): ...to here.
2261
2262 * functions.texi (What Is a Function): `functionp' returns nil for
2263 special forms. Add an xref.
2264
2265 * elisp.texi (Top): Add a @detailmenu entry for "Frame-Local
2266 Variables".
2267
2268 * variables.texi (Frame-Local Variables): New section.
2269 (Buffer-Local Variables): Add an xref to it.
2270 (Intro to Buffer-Local, Creating Buffer-Local): A variable cannot
2271 have both frame-local and buffer-local binding.
2272
2273 * frames.texi (Frames): Mention multiple tty frames.
2274 (Frame Parameters, Parameter Access): Mention frame-local variable
2275 bindings.
2276
22772008-09-20 Glenn Morris <rgm@gnu.org>
2278
2279 * display.texi (Defining Faces): Recommend against face variables.
2280
22812008-09-16 Juanma Barranquero <lekktu@gmail.com>
2282
2283 * display.texi (Echo Area Customization): Fix typo.
2284
22852008-09-09 Juanma Barranquero <lekktu@gmail.com>
2286
2287 * loading.texi (Where Defined): Add `defface' item.
2288
22892008-09-06 Martin Rudalics <rudalics@gmx.at>
2290
2291 * loading.texi (Where Defined): Fix description of symbol-file.
2292
22932008-08-26 Jason Rumney <jasonr@gnu.org>
2294
2295 * display.texi (TIFF Images): New section describing :index property.
2296
22972008-08-23 Chong Yidong <cyd@stupidchicken.com>
2298
2299 * display.texi (Temporary Displays): Remove unnecessary comment
2300 about usage of temp-buffer-show-hook.
2301
23022008-08-05 Chong Yidong <cyd@stupidchicken.com>
2303
2304 * symbols.texi (Other Plists): Fix incorrect example.
2305 Suggested by Florian Beck.
2306
23072008-07-31 Juanma Barranquero <lekktu@gmail.com>
2308
2309 * os.texi: Fix previous change.
2310
23112008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
2312
2313 * os.texi:
2314 * intro.texi:
2315 * files.texi: Remove VMS support.
2316
23172008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2318
2319 * os.texi:
2320 * frames.texi:
2321 * display.texi: Remove mentions of Mac Carbon.
2322
23232008-07-01 Miles Bader <miles@gnu.org>
2324
2325 * text.texi (Special Properties):
2326 * display.texi (Truncation): Add wrap-prefix and line-prefix.
2327
23282008-06-28 Johan Bockgård <bojohan@gnu.org>
2329
2330 * display.texi (Other Image Types): Fix copy/paste error; say
2331 "PBM", not "XBM".
2332
23332008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
2334
2335 * os.texi: Remove references to obsolete systems.
2336
23372008-06-20 Eli Zaretskii <eliz@gnu.org>
2338
2339 * makefile.w32-in (distclean): Remove makefile.
2340
23412008-06-17 Glenn Morris <rgm@gnu.org>
2342
2343 * Makefile.in (emacsver, miscmanualdir, VERSION, manual, install)
2344 (elisp, dist): Remove rules and variables that are obsolete now
2345 the lisp manual is no longer distributed separately.
2346
23472008-06-16 Glenn Morris <rgm@gnu.org>
2348
2349 * configure, configure.in, mkinstalldirs: Remove unused files.
2350
2351 * book-spine.texinfo: Set version to 23.0.60.
2352 * vol1.texi (EMACSVER):
2353 * vol2.texi (EMACSVER): Set to 23.0.60.
2354
2355 * elisp.texi, vol1.texi, vol2.texi: Update Back-Cover Text
2356 as per maintain.info.
2357
23582008-06-15 Glenn Morris <rgm@gnu.org>
2359
2360 * makefile.w32-in (manual): Use "23" rather than "21".
2361
2362 * Makefile.in (emacsver): New, set by configure.
2363 (manual): Use emacsver.
2364
2365 * intro.texi: Report bugs using M-x report-emacs-bug.
2366
2367 * elisp.texi (EMACSVER): Remove duplicate, outdated setting.
2368
23692008-06-13 Daniel Engeler <engeler@gmail.com>
2370
2371 * elisp.texi, internals.texi, processes.texi: Add documentation
2372 about serial port access.
2373
23742008-06-05 Miles Bader <miles@gnu.org>
2375
2376 * display.texi (Displaying Faces): Update to reflect function
2377 renamings in face-remap.el.
2378
23792008-06-05 Juanma Barranquero <lekktu@gmail.com>
2380
2381 * display.texi (Fontsets): Fix typos.
2382
23832008-06-03 Miles Bader <miles@gnu.org>
2384
2385 * display.texi (Displaying Faces): Add add-relative-face-remapping,
2386 remove-relative-face-remapping, set-base-face-remapping,
2387 and set-default-base-face-remapping.
2388
23892008-06-01 Miles Bader <miles@gnu.org>
2390
2391 * display.texi (Displaying Faces): Add face-remapping-alist.
2392
23932008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
2394
2395 * tips.texi (Coding Conventions): Do not encourage the use of "-flag"
2396 variable names.
2397
23982008-05-03 Eric S. Raymond <esr@golux>
2399
2400 * keymaps.texi: Clarify that (current-local-map) and
2401 (current-global-map) return references, not copies.
2402
24032008-05-02 Juri Linkov <juri@jurta.org>
2404
2405 * minibuf.texi (Text from Minibuffer): Document a list of
2406 default values for `read-from-minibuffer'.
2407
24082008-04-24 Juanma Barranquero <lekktu@gmail.com>
2409
2410 * nonascii.texi (Translation of Characters): Fix previous change.
2411
24122008-04-20 Chong Yidong <cyd@stupidchicken.com>
2413
2414 * display.texi (Overlay Properties): Clarify role of underlying
2415 textprop and overlay keymaps for display strings.
2416
2417 * keymaps.texi (Active Keymaps): Ditto.
2418
24192008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2420
2421 * minibuf.texi (Programmed Completion):
2422 Replace dynamic-completion-table with the new completion-table-dynamic.
2423
24242008-04-07 Chong Yidong <cyd@stupidchicken.com>
2425
2426 * intro.texi (Some Terms): Change "fonts in this manual" index
2427 entry to "typographic conventions".
2428
24292008-04-05 Eli Zaretskii <eliz@gnu.org>
2430
2431 * objects.texi (Text Props and Strings): Add indexing for read
2432 syntax of text properties.
2433
24342008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2435
2436 * processes.texi (Decoding Output): Remove process-filter-multibyte
2437 functions.
2438
24392008-03-15 Martin Rudalics <rudalics@gmx.at>
2440
2441 * display.texi (Finding Overlays): Say that empty overlays at
2442 the end of the buffer are reported too.
2443
24442008-03-13 Glenn Morris <rgm@gnu.org>
2445
2446 * elisp.texi (EMACSVER): Set to 23.0.60.
2447
24482008-02-26 Chong Yidong <cyd@stupidchicken.com>
2449
2450 * strings.texi (Formatting Strings): Treat - and 0 as flag characters.
2451
24522008-02-22 Glenn Morris <rgm@gnu.org>
2453
2454 * frames.texi (Position Parameters): Clarify the description of
2455 `left' and `top', using information from "Geometry".
2456 (Geometry): Give a pointer to "Position Parameters", rather than
2457 repeating information.
2458
24592008-02-11 Glenn Morris <rgm@gnu.org>
2460
2461 * objects.texi (Equality Predicates): No longer talk about "two"
2462 functions.
2463
24642008-02-11 Lawrence Mitchell <wence@gmx.li> (tiny change)
2465
2466 * objects.texi (Equality Predicates): Add defun for
2467 equal-including-properties.
2468
24692008-02-10 Glenn Morris <rgm@gnu.org>
2470
2471 * objects.texi (Equality Predicates):
2472 Mention equal-including-properties.
2473
24742008-02-07 Richard Stallman <rms@gnu.org>
2475
2476 * windows.texi (Window Start): Mention the feature of moving
2477 window-start to start of line.
2478
24792008-02-07 Jan Djärv <jan.h.d@swipnet.se>
2480
2481 * keymaps.texi (Tool Bar): Document rtl property.
2482
24832008-01-27 Thien-Thi Nguyen <ttn@gnuvola.org>
2484
2485 * display.texi (Button Types):
2486 For define-button-type, clarify type of NAME.
2487
24882008-01-19 Martin Rudalics <rudalics@gmx.at>
2489
2490 * buffers.texi (Buffer Modification): Fix typo.
2491
24922008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
2493
2494 * os.texi (System Environment): Remove references to OSes that are
2495 not supported anymore.
2496
24972008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
2498
2499 * os.texi (System Environment): Remove mention for Masscomp.
2500
25012008-01-04 Richard Stallman <rms@gnu.org>
2502
2503 * display.texi (Faces): Don't talk about internal face vector as arg
2504 to facep.
2505
2506 * customize.texi (Type Keywords): Fix previous change.
2507
2508 * text.texi (Links and Mouse-1): Fix xref for commands.texi change.
2509 * elisp.texi (Top): Fix menu for commands.texi change.
2510
25112007-12-30 Richard Stallman <rms@gnu.org>
2512
2513 * commands.texi (Accessing Mouse): Rename from Accessing Events.
2514 (Accessing Scroll): New node broken out of Accessing Mouse.
2515
25162007-12-28 Richard Stallman <rms@gnu.org>
2517
2518 * frames.texi (Size Parameters): Fix typo.
2519 (Basic Parameters): For `title', refer to title bar.
2520 (Size and Position): Explain meaning of frame pixel width and height.
2521
25222007-12-23 Richard Stallman <rms@gnu.org>
2523
2524 * customize.texi (Type Keywords): Uncomment :validate and clarify it.
2525 Improve some of the commented-out keywords' text too.
2526
25272007-12-14 Martin Rudalics <rudalics@gmx.at>
2528
2529 * nonascii.texi (Encoding and I/O): Reword to avoid saying
2530 "visit the current buffer".
2531
2532 * os.texi (System Interface): Fix typo.
2533
25342007-12-04 Richard Stallman <rms@gnu.org>
2535
2536 * objects.texi (Symbol Type): Fix typo.
2537
25382007-12-03 Richard Stallman <rms@gnu.org>
2539
2540 * hooks.texi (Standard Hooks): Add link to Hooks for Loading.
2541
25422007-12-01 Glenn Morris <rgm@gnu.org>
2543
2544 * functions.texi (Declaring Functions): Improve previous change.
2545
25462007-11-30 Glenn Morris <rgm@gnu.org>
2547
2548 * functions.texi (Declaring Functions): Add optional fourth
2549 argument of declare-function, and setting third argument to `t'.
2550
25512007-11-29 Richard Stallman <rms@gnu.org>
2552
2553 * customize.texi (Composite Types): Document `group' type.
2554
25552007-11-29 Glenn Morris <rgm@gnu.org>
2556
2557 * functions.texi (Declaring Functions): Add findex.
2558 Mention `external' files.
2559
25602007-11-26 Juanma Barranquero <lekktu@gmail.com>
2561
2562 * functions.texi (Declaring Functions): Fix directive.
2563
25642007-11-25 Richard Stallman <rms@gnu.org>
2565
2566 * help.texi (Help Functions): Clean up last change.
2567
2568 * advice.texi (Preactivation, Activation of Advice): Minor cleanup.
2569
2570 * loading.texi (Named Features): Minor cleanup.
2571
2572 * macros.texi (Eval During Expansion): Minor cleanup.
2573
2574 * variables.texi (Variable Aliases): Minor cleanup.
2575
25762007-11-24 Richard Stallman <rms@gnu.org>
2577
2578 * functions.texi (Declaring Functions): Clarify previous change.
2579
2580 * compile.texi (Compiler Errors): Clarify previous change.
2581
25822007-11-24 Richard Stallman <rms@gnu.org>
2583
2584 * display.texi (Refresh Screen, Forcing Redisplay):
2585 Clarify the text and move items around.
2586
25872007-11-24 Glenn Morris <rgm@gnu.org>
2588
2589 * functions.texi (Declaring Functions): New section.
2590 * compile.texi (Compiler Errors): Mention declaring functions,
2591 defvar with no initvalue, and byte-compile-warnings.
2592
25932007-11-15 Martin Rudalics <rudalics@gmx.at>
2594
2595 * vol1.texi (Top): Remove Frame-Local Variables from Node Listing.
2596 * vol2.texi (Top): Remove Frame-Local Variables from Node Listing.
2597
25982007-11-13 Martin Rudalics <rudalics@gmx.at>
2599
2600 * help.texi (Help Functions): Document new macro `with-help-window'.
2601
26022007-11-10 Paul Pogonyshev <pogonyshev@gmx.net>
2603
2604 * searching.texi (Replacing Match): Describe new
2605 `match-substitute-replacement'.
2606
26072007-10-31 Richard Stallman <rms@gnu.org>
2608
2609 * strings.texi (Creating Strings): Null strings from concat not unique.
2610
26112007-10-26 Richard Stallman <rms@gnu.org>
2612
2613 * objects.texi (Equality Predicates): Null strings are uniquified.
2614
2615 * minibuf.texi: Minor clarifications in previous change.
2616
26172007-10-25 Glenn Morris <rgm@gnu.org>
2618
2619 * customize.texi (Variable Definitions): Add :risky and :safe keywords.
2620
26212007-10-24 Richard Stallman <rms@gnu.org>
2622
2623 * elisp.texi (Top): Delete Frame-Local Variables from subnode menu.
2624
2625 * variables.texi (Frame-Local Variables): Node deleted.
2626 (Variables): Delete Frame-Local Variables from menu.
2627 (Local Variables, Buffer-Local Variables, Intro to Buffer-Local)
2628 (Default Value): Don't mention frame-local vars.
2629
2630 * os.texi (Idle Timers): current-idle-time returns nil if not idle.
2631
2632 * loading.texi (Unloading): Document FEATURE-unload-function
2633 instead of FEATURE-unload-hook.
2634
2635 * frames.texi (Multiple Displays): Don't mention frame-local vars.
2636
26372007-10-22 Juri Linkov <juri@jurta.org>
2638
2639 * minibuf.texi (Text from Minibuffer, Minibuffer Completion)
2640 (High-Level Completion): Document a list of default value strings
2641 in the DEFAULT argument, for which minibuffer functions return the
2642 first element.
2643
26442007-10-17 Juri Linkov <juri@jurta.org>
2645
2646 * text.texi (Filling): Update arguments of fill-paragraph.
2647 fill-paragraph operates on the active region in Transient Mark mode.
2648 Remove fill-paragraph-or-region.
2649
26502007-10-13 Karl Berry <karl@gnu.org>
2651
2652 * elisp.texi (@dircategory): Move to after @copying,
2653 since we want @copying as close as possible to the beginning of
2654 the output.
2655
26562007-10-12 Richard Stallman <rms@gnu.org>
2657
2658 * elisp.texi (Top): Add Distinguish Interactive to subnode menu.
2659
2660 * commands.texi (Distinguish Interactive): New node,
2661 broken out from Interactive Call and rewritten.
2662 (Command Loop): Put Distinguish Interactive in menu.
2663
26642007-10-09 Richard Stallman <rms@gnu.org>
2665
2666 * text.texi (Examining Properties): Mention overlay priority.
2667
2668 * display.texi (Display Margins): Correct the description
2669 of margin display specifications.
2670 (Replacing Specs): New subnode broken out of Display Property.
2671
26722007-10-06 Juri Linkov <juri@jurta.org>
2673
2674 * text.texi (Filling): Document fill-paragraph-or-region.
2675
26762007-10-05 Juanma Barranquero <lekktu@gmail.com>
2677
2678 * display.texi (Auto Faces): Fix typo.
2679
26802007-10-02 Richard Stallman <rms@gnu.org>
2681
2682 * display.texi (Display Property): Explain some display specs
2683 don't let you move point in.
2684
2685 * frames.texi (Cursor Parameters):
2686 Describe cursor-in-non-selected-windows here. Explain more values.
2687
2688 * windows.texi (Basic Windows): Don't describe
2689 cursor-in-non-selected-windows here.
2690
26912007-10-01 Eli Zaretskii <eliz@gnu.org>
2692
2693 * processes.texi (Misc Network): Note that these functions are
2694 supported only on some systems.
2695
26962007-10-01 Richard Stallman <rms@gnu.org>
2697
2698 * display.texi (Overlay Properties): Explain nil as priority.
2699 Explain that conflicts are unpredictable if not resolved by
2700 priorities.
2701
27022007-09-23 Richard Stallman <rms@gnu.org>
2703
2704 * macros.texi (Backquote): Minor clarification.
2705
27062007-09-19 Richard Stallman <rms@gnu.org>
2707
2708 * display.texi (Display Property): Explain multiple display specs.
2709 Clarify when they work in parallel and when one overrides.
2710 Fix error in example.
2711
27122007-09-06 Glenn Morris <rgm@gnu.org>
2713
2714 Move from lispref/ to doc/lispref/. Change all setfilename
2715 commands to use ../../info.
2716 * Makefile.in (infodir): Go up one more level.
2717 (usermanualdir): Change from ../man to ../emacs.
2718 (miscmanualdir): New.
2719 (dist): Use new variable miscmanualdir.
2720 * makefile.w32-in (infodir, texinputdir): Go up one more level.
2721 (usermanualdir): Change from ../man to ../emacs.
2722
27232007-08-30 Martin Rudalics <rudalics@gmx.at>
2724
2725 * commands.texi (Command Loop Info): Advise against changing
2726 most variables described here. Explain new variable
2727 last-repeatable-command.
2728
27292007-08-29 Glenn Morris <rgm@gnu.org>
2730
2731 * elisp.texi (EMACSVER): Increase to 23.0.50.
2732
27332007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
2734
2735 * frames.texi (Basic Parameters): Add display-environment-variable
2736 and term-environment-variable.
2737
27382007-08-28 Juri Linkov <juri@jurta.org>
2739
2740 * display.texi (Image Formats, Other Image Types): Add SVG.
2741
27422007-08-28 Juri Linkov <juri@jurta.org>
2743
2744 * display.texi (Images): Move formats-related text to new node
2745 "Image Formats".
2746 (Image Formats): New node.
2747
27482007-08-27 Richard Stallman <rms@gnu.org>
2749
2750 * windows.texi (Window Configurations): Clarify what
2751 a window configuration saves.
2752
27532007-08-25 Richard Stallman <rms@gnu.org>
2754
2755 * display.texi (Images): Delete redundant @findex.
2756
27572007-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
2758
2759 * text.texi (Change Hooks): (after|before)-change-functions are no
2760 longer bound to nil while running; rather inhibit-modification-hooks
2761 is t.
2762
27632007-08-16 Richard Stallman <rms@gnu.org>
2764
2765 * processes.texi (Asynchronous Processes):
2766 Clarify doc of start-file-process.
2767
27682007-08-08 Martin Rudalics <rudalics@gmx.at>
2769
2770 * modes.texi (Example Major Modes): Fix typo.
2771
27722007-08-08 Glenn Morris <rgm@gnu.org>
2773
2774 * intro.texi (nil and t): Do not use `iff' in documentation.
2775
2776 * tips.texi (Documentation Tips): Recommend against `iff'.
2777
27782007-08-07 Chong Yidong <cyd@stupidchicken.com>
2779
2780 * display.texi (Image Cache): Document image-refresh.
2781
27822007-08-06 Martin Rudalics <rudalics@gmx.at>
2783
2784 * windows.texi (Size of Window): Document window-full-width-p.
2785
27862007-07-25 Glenn Morris <rgm@gnu.org>
2787
2788 * gpl.texi (GPL): Replace license with GPLv3.
2789
2790 * Relicense all FSF files to GPLv3 or later.
2791
27922007-07-24 Michael Albinus <michael.albinus@gmx.de>
2793
2794 * processes.texi (Synchronous Processes):
2795 Add `process-file-shell-command'.
2796 (Asynchronous Processes): Mention restricted use of
2797 `process-filter' and `process-sentinel' in
2798 `start-file-process'. Add `start-file-process-shell-command'.
2799
28002007-07-17 Michael Albinus <michael.albinus@gmx.de>
2801
2802 * files.texi (Magic File Names): Introduce optional parameter
2803 IDENTIFICATION for `file-remote-p'.
2804
28052007-07-16 Richard Stallman <rms@gnu.org>
2806
2807 * display.texi (Defining Faces): Fix previous change.
2808
28092007-07-14 Richard Stallman <rms@gnu.org>
2810
2811 * control.texi (Handling Errors): Document `debug' in handler list.
2812
28132007-07-10 Richard Stallman <rms@gnu.org>
2814
2815 * display.texi (Defining Faces): Explain C-M-x feature for defface.
2816
28172007-07-09 Richard Stallman <rms@gnu.org>
2818
2819 * files.texi (Magic File Names): Rewrite previous change.
2820
28212007-07-08 Michael Albinus <michael.albinus@gmx.de>
2822
2823 * files.texi (Magic File Names): Introduce optional parameter
2824 CONNECTED for `file-remote-p'.
2825
28262007-07-07 Michael Albinus <michael.albinus@gmx.de>
2827
2828 * processes.texi (Asynchronous Processes):
2829 * files.texi (Magic File Names): Add `start-file-process'.
2830
28312007-06-27 Richard Stallman <rms@gnu.org>
2832
2833 * files.texi (Format Conversion Piecemeal):
2834 Clarify `after-insert-file-functions' calling convention.
2835
28362007-06-27 Michael Albinus <michael.albinus@gmx.de>
2837
2838 * files.texi (Magic File Names): Remove `dired-call-process'.
2839 Add `process-file'.
2840
28412007-06-27 Kenichi Handa <handa@m17n.org>
2842
2843 * text.texi (Special Properties): Fix description about
2844 `composition' property.
2845
28462007-06-26 Kenichi Handa <handa@m17n.org>
2847
2848 * nonascii.texi (Default Coding Systems): Document about the
2849 return value `undecided'.
2850
28512007-06-25 David Kastrup <dak@gnu.org>
2852
2853 * keymaps.texi (Active Keymaps): Document new POSITION argument of
2854 `current-active-maps'.
2855
28562007-06-24 Karl Berry <karl@gnu.org>
2857
2858 * elisp.texi, vol1.texi, vol2.texi: New Back-Cover Text.
2859
28602007-06-15 Juanma Barranquero <lekktu@gmail.com>
2861
2862 * display.texi (Overlay Arrow): Doc fix.
2863
28642007-06-14 Karl Berry <karl@tug.org>
2865
2866 * anti.texi (Antinews): Typo.
2867
28682007-06-14 Chong Yidong <cyd@stupidchicken.com>
2869
2870 * display.texi (Image Cache): Document image-refresh.
2871
28722007-06-12 Karl Berry <karl@gnu.org>
2873
2874 * vol1.texi, vol2.texi, two-volume-cross-refs.txt: Update.
2875 * two-volume.make: New file.
2876 * .cvsignore: Ignore two-volume files.
2877
28782007-06-12 Tom Tromey <tromey@redhat.com>
2879
2880 * os.texi (Init File): Document user-emacs-directory.
2881
28822007-06-03 Nick Roberts <nickrob@snap.net.nz>
2883
2884 * commands.texi (Click Events): Describe width and height when
2885 object is nil.
2886
28872007-05-30 Nick Roberts <nickrob@snap.net.nz>
2888
2889 * commands.texi (Click Events): Layout more logically.
2890 Describe width and height.
2891 (Drag Events, Motion Events): Update to new format for position.
2892
28932007-06-02 Richard Stallman <rms@gnu.org>
2894
2895 * frames.texi (Color Parameters): Add xref to (emacs)Standard Faces.
2896
28972007-06-02 Chong Yidong <cyd@stupidchicken.com>
2898
2899 * Version 22.1 released.
2900
29012007-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
2902
2903 * text.texi (Special Properties): Correct meaning of fontified face.
2904
29052007-05-30 Richard Stallman <rms@gnu.org>
2906
2907 * text.texi (Special Properties): Add link to Adjusting Point.
2908
29092007-05-12 Richard Stallman <rms@gnu.org>
2910
2911 * text.texi (Margins): indent-to-left-margin is not the default.
2912 (Mode-Specific Indent): For indent-line-function, the default
2913 is indent-relative.
2914
2915 * modes.texi (Example Major Modes): Explain last line of text-mode
2916 is redundant.
2917
29182007-05-10 Richard Stallman <rms@gnu.org>
2919
2920 * keymaps.texi (Scanning Keymaps): Update where-is-internal example.
2921
2922 * help.texi (Keys in Documentation): Add reference to
2923 Documentation Tips.
2924
2925 * files.texi (Format Conversion): TO-FN gets three arguments.
2926
2927 * modes.texi (Auto Major Mode): Document file-start-mode-alist.
2928
29292007-05-10 Thien-Thi Nguyen <ttn@gnuvola.org>
2930
2931 * elisp.texi (Top): Remove "Saving Properties" from detailed menu.
2932 * files.texi (Format Conversion): Expand intro; add menu.
2933 (Format Conversion Overview, Format Conversion Round-Trip)
2934 (Format Conversion Piecemeal): New nodes/subsections.
2935 * hooks.texi: Xref "Format Conversion" , not "Saving Properties".
2936 * text.texi (Text Properties): Remove "Saving Properties" from menu.
2937 (Saving Properties): Delete node/subsection.
2938
29392007-05-07 Karl Berry <karl@gnu.org>
2940
2941 * elisp.texi (EMACSVER): Back to 22.
2942
29432007-05-06 Richard Stallman <rms@gnu.org>
2944
2945 * processes.texi (Accepting Output): Revert most of previous change.
2946
29472007-05-05 Richard Stallman <rms@gnu.org>
2948
2949 * processes.texi (Accepting Output): accept-process-output
2950 uses microseconds, not milliseconds. But that arg is obsolete.
2951
29522007-05-04 Karl Berry <karl@tug.org>
2953
2954 * elisp.texi (EMACSVER) [smallbook]: 22.1, not 22.
2955
29562007-05-04 Eli Zaretskii <eliz@gnu.org>
2957
2958 * tips.texi (Documentation Tips): Rearrange items to place the
2959 more important ones first. Add an index entry for hyperlinks.
2960
29612007-05-03 Karl Berry <karl@gnu.org>
2962
2963 * elisp.texi (\urlcolor, \linkcolor) [smallbook]: \Black for printing.
2964 (EMACSVER) [smallbook]: 22 for printed version.
2965
2966 * control.texi (Signaling Errors) <signal>: texinfo.tex is fixed,
2967 so restore anchor to normal position after defun. Found by Kevin Ryde.
2968
29692007-04-26 Glenn Morris <rgm@gnu.org>
2970
2971 * elisp.texi (EMACSVER): Increase to 22.1.50.
2972
29732007-04-28 Karl Berry <karl@gnu.org>
2974
2975 * elisp.texi: Improve line breaks on copyright page,
2976 similar layout to emacs manual, 8.5x11 by default.
2977
29782007-04-24 Richard Stallman <rms@gnu.org>
2979
2980 * text.texi (Special Properties): Add xref to Overlay Properties.
2981
2982 * display.texi (Overlay Properties): Add xref to Special Properties.
2983
29842007-04-22 Richard Stallman <rms@gnu.org>
2985
2986 * keymaps.texi (Extended Menu Items): Move the info about
2987 format with cached keyboard binding.
2988
29892007-04-21 Richard Stallman <rms@gnu.org>
2990
2991 * text.texi (Special Properties): Clarify previous change.
2992
2993 * files.texi (File Name Expansion): Clarify previous change.
2994
2995 * display.texi (Attribute Functions): Fix example for
2996 face-attribute-relative-p.
2997
29982007-04-19 Kenichi Handa <handa@m17n.org>
2999
3000 * text.texi (Special Properties): Document composition property.
3001
30022007-04-19 Glenn Morris <rgm@gnu.org>
3003
3004 * files.texi (File Name Expansion): Mention "superroot".
3005
30062007-04-15 Chong Yidong <cyd@stupidchicken.com>
3007
3008 * frames.texi (Multiple Displays): Add note about "multi-monitor"
3009 setups.
3010 (Display Feature Testing): Note that display refers to all
3011 physical monitors for multi-monitor setups.
3012
30132007-04-14 Richard Stallman <rms@gnu.org>
3014
3015 * lists.texi (Sets And Lists): Clarify `delete' examples.
3016 Remove spurious xref to same node.
3017 Clarify xref for add-to-list.
3018
30192007-04-12 Nick Roberts <nickrob@snap.net.nz>
3020
3021 * keymaps.texi (Format of Keymaps): Remove spurious ")" from
3022 value of lisp-mode-map.
3023
30242007-04-11 Karl Berry <karl@gnu.org>
3025
3026 * anti.texi (Antinews):
3027 * display.texi (Overlay Properties, Defining Images):
3028 * processes.texi (Synchronous Processes, Sentinels):
3029 * syntax.texi (Syntax Table Internals):
3030 * searching.texi (Regexp Special):
3031 * nonascii.texi (Default Coding Systems):
3032 * text.texi (Special Properties):
3033 * minibuf.texi (Basic Completion): Wording to improve breaks in
3034 8.5x11 format.
3035 * elisp.texi (smallbook): New @set to more easily switch between
3036 smallbook and 8.5x11.
3037
30382007-04-11 Richard Stallman <rms@gnu.org>
3039
3040 * text.texi (Lazy Properties): Minor fix.
3041
30422007-04-08 Karl Berry <karl@gnu.org>
3043
3044 * symbols.texi (Plists and Alists): Period after "vs" in index entries.
3045 * macros.texi (Backquote): Downcase Backquote in index entries for
3046 consistency.
3047
30482007-04-08 Richard Stallman <rms@gnu.org>
3049
3050 * text.texi (Adaptive Fill): Just describe default,
3051 don't show it (since it contains non-ASCII chars).
3052
30532007-04-07 Karl Berry <karl@gnu.org>
3054
3055 * text.texi (Adaptive Fill) [@iftex]: Omit binary characters in
3056 adaptive-fill-regexp's value, since they are not in the standard
3057 TeX fonts.
3058
30592007-04-07 Guanpeng Xu <herberteuler@hotmail.com>
3060
3061 * display.texi (Defining Faces): Fix example.
3062
30632007-04-07 Karl Berry <karl@gnu.org>
3064
3065 * display.texi (Button Buffer Commands): Improve page break.
3066
30672007-04-07 Richard Stallman <rms@gnu.org>
3068
3069 * advice.texi (Activation of Advice): Remove redundant index entry.
3070
3071 * backups.texi: Improve index entries. Remove redundant ones.
3072
3073 * compile.texi (Byte Compilation): Improve index entry.
3074
3075 * hash.texi (Creating Hash): Improve index entry.
3076
3077 * symbols.texi (Definitions): Improve index entry.
3078
3079 * edebug.texi: Improve index entries. Remove redundant/useless ones.
3080
3081 * maps.texi (Standard Keymaps): Remove useless index entry.
3082
3083 * help.texi (Documentation Basics): Remove redundant index entries.
3084
3085 * customize.texi: Improve index entries.
3086 Remove redundant/useless ones.
3087
3088 * locals.texi (Standard Buffer-Local Variables): Clarify intro text.
3089
3090 * streams.texi (Output Variables): Improve index entry.
3091
3092 * abbrevs.texi (Abbrevs): Remove useless index entry.
3093
3094 * macros.texi (Expansion): Remove useless index entry.
3095
3096 * text.texi: Improve index entries. Remove redundant/useless ones.
3097 (Text Properties, Examining Properties)
3098 (Special Properties): Use "property category" instead of "category"
3099 to refer to the `category' property.
3100
3101 * positions.texi: Improve index entries. Remove useless one.
3102
3103 * lists.texi: Improve index entries. Remove redundant/useless ones.
3104
3105 * os.texi: Improve index entries.
3106 (Timers): Fix previous change.
3107
3108 * buffers.texi: Improve index entries.
3109 (Modification Time): Get rid of term "obsolete buffer".
3110
3111 * debugging.texi: Improve index entries.
3112 (Test Coverage): Add xref to other test coverage ftr.
3113
3114 * eval.texi: Improve index entry. Remove redundant ones.
3115
3116 * numbers.texi: Improve index entries. Remove redundant/useless ones.
3117
3118 * files.texi: Improve index entries. Remove redundant/useless ones.
3119
3120 * objects.texi: Improve index entries.
3121
3122 * processes.texi: Improve index entries.
3123
3124 * modes.texi: Improve index entry. Remove redundant one.
3125
3126 * nonascii.texi: Improve index entries.
3127
3128 * internals.texi: Improve index entries.
3129
3130 * syntax.texi: Improve index entries.
3131
3132 * keymaps.texi (Active Keymaps): Improve index entries.
3133
3134 * commands.texi: Improve index entries. Remove redundant/useless ones.
3135
3136 * frames.texi: Improve index entries. Remove redundant/useless ones.
3137
3138 * markers.texi: Improve index entries. Remove redundant ones.
3139
3140 * tips.texi: Improve index entries.
3141
3142 * loading.texi (Unloading): Improve index entry.
3143
3144 * variables.texi: Improve index entries. Remove redundant one.
3145
3146 * sequences.texi: Improve index entry.
3147
3148 * display.texi: Improve index entries. Remove redundant ones.
3149
3150 * windows.texi: Improve index entries.
3151
3152 * searching.texi: Improve index entries. Remove redundant one.
3153
3154 * strings.texi (Case Tables): Improve last change.
3155
31562007-04-04 Chong Yidong <cyd@stupidchicken.com>
3157
3158 * strings.texi (Case Tables): Document with-case-table and
3159 ascii-case-table.
3160
31612007-04-03 Karl Berry <karl@gnu.org>
3162
3163 * processes.texi (Network): Reword to improve page break.
3164
31652007-04-03 Eli Zaretskii <eliz@gnu.org>
3166
3167 * functions.texi (Inline Functions): Describe more disadvantages
3168 of defsubst, and make advice against it stronger.
3169
31702007-04-02 Karl Berry <karl@gnu.org>
3171
3172 * backups.texi (Backup Names): Avoid widow words.
3173 * modes.texi (Example Major Modes): Align last comment.
3174
31752007-04-01 Chong Yidong <cyd@stupidchicken.com>
3176
3177 * keymaps.texi (Remapping Commands): Document new arg to
3178 command-remapping.
3179
31802007-04-01 Karl Berry <karl@gnu.org>
3181
3182 * processes.texi (Low-Level Network): Typo.
3183 * loading.texi (Hooks for Loading): Avoid double "the".
3184 * keymaps.texi (Key Sequences): No double "and".
3185 (Changing Key Bindings): Shorten to improve line break.
3186
31872007-03-31 Glenn Morris <rgm@gnu.org>
3188
3189 * os.texi (Timers): Fix description of run-at-time TIME formats.
3190
31912007-03-31 Richard Stallman <rms@gnu.org>
3192
3193 * display.texi (Invisible Text): Correct buffer-invisibility-spec
3194 regarding ellipsis.
3195
31962007-03-31 Eli Zaretskii <eliz@gnu.org>
3197
3198 * intro.texi (nil and t):
3199 * symbols.texi (Plists and Alists):
3200 * variables.texi (Variable Aliases, Constant Variables):
3201 * functions.texi (Defining Functions):
3202 * advice.texi (Advising Primitives):
3203 * debugging.texi (Syntax Errors, Compilation Errors):
3204 * minibuf.texi (Minibuffer Windows):
3205 * commands.texi (Adjusting Point):
3206 * modes.texi (Syntactic Font Lock, Faces for Font Lock)
3207 (Auto Major Mode, Major Mode Conventions):
3208 * help.texi (Describing Characters):
3209 * files.texi (Create/Delete Dirs, Information about Files)
3210 (File Locks, Writing to Files, Reading from Files)
3211 (Saving Buffers):
3212 * windows.texi (Resizing Windows, Cyclic Window Ordering):
3213 * frames.texi (Finding All Frames):
3214 * positions.texi (Buffer End, Motion):
3215 * markers.texi (The Region):
3216 * text.texi (Deletion, Near Point):
3217 * display.texi (Displaying Messages, Truncation):
3218 * os.texi (Processor Run Time):
3219 * tips.texi (Key Binding Conventions, Programming Tips)
3220 (Warning Tips, Documentation Tips, Comment Tips):
3221 * internals.texi (Memory Usage): Improve indexing.
3222
3223 * variables.texi (Frame-Local Variables):
3224 * functions.texi (Argument List):
3225 * loading.texi (Library Search):
3226 * streams.texi (Output Variables):
3227 * keymaps.texi (Translation Keymaps, Searching Keymaps):
3228 * searching.texi (Replacing Match, Search and Replace):
3229 * processes.texi (Byte Packing, Decoding Output)
3230 (Accepting Output, Network Servers, Shell Arguments):
3231 * display.texi (Abstract Display, Image Cache, Scroll Bars):
3232 * windows.texi (Window Point, Window Start):
3233 * frames.texi (Management Parameters, Frame Parameters, Frame Titles):
3234 * commands.texi (Reading Input, Keyboard Events):
3235 * minibuf.texi (Reading File Names, Minibuffer Completion)
3236 (Recursive Mini):
3237 * positions.texi (List Motion):
3238 * hash.texi (Hash Tables, Creating Hash, Defining Hash):
3239 * numbers.texi (Arithmetic Operations, Math Functions)
3240 (Predicates on Numbers, Comparison of Numbers):
3241 (Numeric Conversions):
3242 * locals.texi (Standard Buffer-Local Variables):
3243 * maps.texi (Standard Keymaps):
3244 * os.texi (User Identification, System Environment, Recording Input)
3245 (X11 Keysyms):
3246 * nonascii.texi (Non-ASCII Characters, Splitting Characters):
3247 * backups.texi (Backups and Auto-Saving):
3248 * customize.texi (Customization, Group Definitions)
3249 (Variable Definitions):
3250 * compile.texi (Byte Compilation): Improve index entries.
3251
32522007-03-31 Karl Berry <karl@gnu.org>
3253
3254 * macros.texi (Defining Macros): Avoid widow syllable.
3255
32562007-03-31 Eli Zaretskii <eliz@gnu.org>
3257
3258 * elisp.texi (Top): Postscript -> PostScript.
3259
3260 * display.texi (Images, Postscript Images): Postscript -> PostScript.
3261
32622007-03-31 Markus Triska <markus.triska@gmx.at>
3263
3264 * internals.texi (Writing Emacs Primitives): Untabify `For'.
3265
32662007-03-30 Karl Berry <karl@gnu.org>
3267
3268 * lists.texi (List-related Predicates): Remove spurious @need.
3269 (Setcdr): Use @smallexample to improve page break.
3270 (Association Lists) <assoc>: Reword to improve page break.
3271
3272 * strings.texi (String Conversion): Insert blank line to improve
3273 page break.
3274
3275 * numbers.texi (Random Numbers): Use @minus{}.
3276 (Math Functions): Use @minus{}.
3277
3278 * intro.texi (Acknowledgements): Avoid line breaks before middle
3279 initials.
3280
32812007-03-24 Eli Zaretskii <eliz@gnu.org>
3282
3283 * errors.texi (Standard Errors): Add an index entry.
3284
32852007-03-19 Richard Stallman <rms@gnu.org>
3286
3287 * os.texi (Recording Input): recent-keys now gives 300 keys.
3288
32892007-03-12 Glenn Morris <rgm@gnu.org>
3290
3291 * os.texi: Replace "daylight savings" with "daylight saving"
3292 throughout.
3293
32942007-03-05 Richard Stallman <rms@gnu.org>
3295
3296 * variables.texi (File Local Variables):
3297 Update enable-local-variables values.
3298
32992007-03-04 Richard Stallman <rms@gnu.org>
3300
3301 * syntax.texi (Control Parsing): Minor clarification.
3302
3303 * strings.texi (Formatting Strings): Clarify width, precision, flags.
3304
3305 * sequences.texi (Sequence Functions): Move string-bytes away,
3306 add xref.
3307
3308 * nonascii.texi (Text Representations): Move string-bytes here.
3309
3310 * modes.texi (Major Mode Conventions): Fundamental mode is exception.
3311
3312 * minibuf.texi (Basic Completion): Minor clarification.
3313
3314 * markers.texi (The Mark): Clarify existence vs activation of mark.
3315 Other cleanup.
3316
3317 * display.texi (Finding Overlays): Write better example.
3318
3319 * compile.texi (Eval During Compile): Clarify putting macros
3320 in eval-when-compile.
3321
33222007-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br> (tiny change)
3323
3324 * loading.texi (How Programs Do Loading): Fix anchor position at
3325 load-read-function definition doc.
3326
33272007-02-21 Kim F. Storm <storm@cua.dk>
3328
3329 * strings.texi (Text Comparison): Mention that assoc-string
3330 converts symbols to strings before testing.
3331
33322007-02-17 Kim F. Storm <storm@cua.dk>
3333
3334 * processes.texi (Bindat Spec): Vector types can have optional
3335 element type.
3336 (Bindat Examples): Fix example. Add vector with element type.
3337
33382007-02-16 Andreas Schwab <schwab@suse.de>
3339
3340 * strings.texi (Formatting Strings): Document '+' flag.
3341
33422007-02-15 Juanma Barranquero <lekktu@gmail.com>
3343
3344 * strings.texi (Modifying Strings): Clarify that `clear-string'
3345 always converts the string to unibyte.
3346
33472007-02-14 Kim F. Storm <storm@cua.dk>
3348
3349 * display.texi (Glyphs): Add make-glyph-code, glyph-char, glyph-face.
3350 Rewrite glyph code description to refer to these functions.
3351 Remove details of encoding face number and char into integer code.
3352
33532007-02-03 Alan Mackenzie <acm@muc.de>
3354
3355 * loading.texi (Hooks for Loading): Make the description of
3356 `eval-after-load' more detailed, and amend the description of
3357 after-load-alist, in accordance with changes from 2006-05.
3358
33592007-02-03 Chong Yidong <cyd@stupidchicken.com>
3360
3361 * modes.texi (Defining Minor Modes): Document that a :require
3362 keyword or similar may be required to make saved customization
3363 variables work.
3364
33652007-02-03 Eli Zaretskii <eliz@gnu.org>
3366
3367 * elisp.texi (Top): Make the detailed menu headers compliant with
3368 Texinfo guidelines and with what texnfo-upd.el expects.
3369 Add comments to prevent people from inadvertently modifying the key
3370 parts needed by `texinfo-multiple-files-update'.
3371
33722007-02-02 Eli Zaretskii <eliz@gnu.org>
3373
3374 * elisp.texi (Top): Update the top-level menus.
3375
3376 * syntax.texi (Categories): Add index entries.
3377
33782007-02-01 Juanma Barranquero <lekktu@gmail.com>
3379
3380 * display.texi (Attribute Functions): Fix name and description of
3381 the UNDERLINE arg of `set-face-underline-p'.
3382
33832007-01-29 Eli Zaretskii <eliz@gnu.org>
3384
3385 * elisp.texi (Top): Add "Standard Errors", "Standard Buffer-Local
3386 Variables", and "Standard Keymaps" to the detailed menu.
3387
3388 * variables.texi (Future Local Variables): Add index entry.
3389
33902007-01-28 Richard Stallman <rms@gnu.org>
3391
3392 * tips.texi (Coding Conventions): Clarify the tip about macros
3393 that define a function or a variable.
3394
3395 * files.texi (File Attributes): UID and GID can be floats.
3396 (Magic File Names): Explain why deferring all operations to
3397 the standard handler does not work.
3398
33992007-01-23 Martin Rudalics <rudalics@gmx.at>
3400
3401 * backups.texi (Reverting): Use "buffer" instead of "file"
3402 when talking about major and minor modes.
3403
34042007-01-21 Richard Stallman <rms@gnu.org>
3405
3406 * help.texi (Documentation): Add xref to Documentation Tips.
3407
34082007-01-14 Juanma Barranquero <lekktu@gmail.com>
3409
3410 * tips.texi (Coding Conventions): Fix typos.
3411
34122007-01-05 Richard Stallman <rms@gnu.org>
3413
3414 * modes.texi (Defining Minor Modes): Fix previous change.
3415
34162007-01-03 Richard Stallman <rms@gnu.org>
3417
3418 * customize.texi (Variable Definitions, Customization Types):
3419 Don't use * in doc string for defcustom.
3420
34212007-01-02 Richard Stallman <rms@gnu.org>
3422
3423 * variables.texi (Variable Aliases): Clarify that aliases vars
3424 always have the same value.
3425
3426 * processes.texi (Bindat Spec): Fix Texinfo usage.
3427
3428 * modes.texi (Defining Minor Modes): Explain effect of command
3429 defined with define-global-minor-mode on new buffers.
3430
34312006-12-30 Kim F. Storm <storm@cua.dk>
3432
3433 * keymaps.texi (Tool Bar): Describe `grow-only' value of
3434 `auto-resize-tool-bars'.
3435
34362006-12-30 Richard Stallman <rms@gnu.org>
3437
3438 * keymaps.texi (Active Keymaps): Fix previous change.
3439
34402006-12-30 Nick Roberts <nickrob@snap.net.nz>
3441
3442 * keymaps.texi (Active Keymaps): Make xref to lookup-key.
3443
34442006-12-30 Kim F. Storm <storm@cua.dk>
3445
3446 * processes.texi (Bindat Spec): Clarify using field names in
3447 length specifications.
3448
34492006-12-29 Kim F. Storm <storm@cua.dk>
3450
3451 * processes.texi (Bindat Spec): Explain eval forms and lengths better.
3452 Add count and index variables for eval forms in repeat blocks.
3453
34542006-12-24 Richard Stallman <rms@gnu.org>
3455
3456 * customize.texi (Variable Definitions):
3457 Document new name custom-add-frequent-value.
3458
34592006-12-19 Kim F. Storm <storm@cua.dk>
3460
3461 * commands.texi (Misc Events): User signals now result in sigusr1
3462 and sigusr2 events which are handled through special-event-map.
3463 (Special Events): User signals and drag-n-drop are special.
3464
34652006-12-17 Richard Stallman <rms@gnu.org>
3466
3467 * loading.texi (Named Features): Explain subfeatures better.
3468
3469 * customize.texi: Use "option" only for user options.
3470 For the keyword values inside defcustom etc, say "keywords".
3471 For :options value's elements, say "elements".
3472 :group should not be omitted.
3473
3474 * syntax.texi (Parsing Expressions): Split up node.
3475 (Motion via Parsing, Position Parse, Parser State)
3476 (Low-Level Parsing, Control Parsing): New subnodes.
3477 (Parser State): Document syntax-ppss-toplevel-pos.
3478
3479 * positions.texi (List Motion): Punctuation fix.
3480
3481 * files.texi (File Name Completion): Document PREDICATE arg
3482 to file-name-completion.
3483
34842006-12-16 Eli Zaretskii <eliz@gnu.org>
3485
3486 * internals.texi (Building Emacs, Writing Emacs Primitives):
3487 Add index entries.
3488
34892006-12-11 Richard Stallman <rms@gnu.org>
3490
3491 * modes.texi (Font Lock Basics): Explain how nil for font-lock-defaults
3492 affects face menu. Explain how to make it non-nil without enabling
3493 any fontification.
3494
34952006-12-10 Chong Yidong <cyd@stupidchicken.com>
3496
3497 * modes.texi (Font Lock Basics): Document nil value of
3498 font-lock-defaults.
3499
35002006-12-10 Glenn Morris <rgm@gnu.org>
3501
3502 * abbrevs.texi (Defining Abbrevs): Mention `define-abbrev' 'force
3503 value for system-flag argument. Abbrev tables may not be empty
3504 when major modes are loaded.
3505
35062006-12-08 Juanma Barranquero <lekktu@gmail.com>
3507
3508 * makefile.w32-in (maintainer-clean): Partially revert last
3509 change; delete "elisp-?" and "elisp-??" instead of "elisp-*"
3510 to protect elisp-covers.texi.
3511
35122006-12-07 Juanma Barranquero <lekktu@gmail.com>
3513
3514 * makefile.w32-in (maintainer-clean): Depend on `distclean'.
3515 Don't remove elisp* info files; they are already deleted by the
3516 `clean' and `distclean' targets, and they are in the $(infodir)
3517 directory, not the current one.
3518
35192006-12-04 Kim F. Storm <storm@cua.dk>
3520
3521 * commands.texi (Misc Events): Update signal events.
3522 (Event Examples): Add signal example.
3523
35242006-11-29 Richard Stallman <rms@gnu.org>
3525
3526 * frames.texi (Visibility of Frames): Explain visible windows
3527 can be covered by others. Add xref for raise-frame.
3528
35292006-11-28 Richard Stallman <rms@gnu.org>
3530
3531 * searching.texi (Regexp Special): Update when ^ is special.
3532
35332006-11-27 Eli Zaretskii <eliz@gnu.org>
3534
3535 * customize.texi (Customization, Common Keywords)
3536 (Group Definitions, Variable Definitions, Composite Types)
3537 (Type Keywords, Customization Types): Add index entries for
3538 various customization keywords.
3539
35402006-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
3541
3542 * modes.texi (Multiline Font Lock): Rephrase some parts for clarity.
3543
35442006-11-10 Jan Djärv <jan.h.d@swipnet.se>
3545
3546 * frames.texi (Window System Selections): Remove clipboard from
3547 description of selection-coding-system.
3548
35492006-11-06 Richard Stallman <rms@gnu.org>
3550
3551 * lists.texi (List Variables): Document COMPARE-FN.
3552
3553 * keymaps.texi: Avoid use of "binding" to mean a relation;
3554 use it only to refer to the meaning associated with a key.
3555 (Keymaps): Change menu node description.
3556
3557 * elisp.texi (Top): Change menu node description.
3558
3559 * display.texi (Managing Overlays): Document overlay-recenter.
3560
35612006-10-29 Chong Yidong <cyd@stupidchicken.com>
3562
3563 * Makefile.in: Use relative paths to avoid advertising filesystem
3564 contents during compilation.
3565
35662006-10-23 Kim F. Storm <storm@cua.dk>
3567
3568 * commands.texi (Event Input Misc): Update unread-command-events.
3569
35702006-10-23 Nick Roberts <nickrob@snap.net.nz>
3571
3572 * lists.texi (Sets And Lists): Fix typos.
3573
35742006-10-18 Juanma Barranquero <lekktu@gmail.com>
3575
3576 * control.texi (Processing of Errors): Use @var for an argument,
3577 not @code.
3578
35792006-10-16 Richard Stallman <rms@gnu.org>
3580
3581 * edebug.texi (Edebug Recursive Edit): Minor cleanup.
3582
3583 * keymaps.texi (Format of Keymaps): Show all the keymap element
3584 patterns that result from menu items.
3585 (Key Lookup): Minor cleanups.
3586
3587 * modes.texi (Precalculated Fontification): Don't say that
3588 not setting font-lock-defaults avoids loading font-lock.
3589
3590 * help.texi (Documentation): Move xref to Emacs Manual here.
3591 (Documentation Basics): From here.
3592 Also doc emacs-lisp-docstring-fill-column.
3593
3594 * elisp.texi: Update version and ISBN.
3595
3596 * commands.texi (Interactive Call): Clarify KEYS arg to
3597 call-interactively is a vector.
3598 (Command Loop Info): Delete anchor in this-command-keys.
3599 Add anchor in this-command-keys-vector.
3600 (Recursive Editing): Document how recursive-edit
3601 handles the current buffer.
3602
36032006-10-13 Chong Yidong <cyd@stupidchicken.com>
3604
3605 * frames.texi (Frame Titles): %c and %l are ignored in
3606 frame-title-format.
3607
36082006-10-11 Richard Stallman <rms@gnu.org>
3609
3610 * keymaps.texi (Key Sequences): Clarify use of kbd.
3611
36122006-10-10 Kim F. Storm <storm@cua.dk>
3613
3614 * lists.texi (Sets And Lists): Add memql.
3615
36162006-10-03 Richard Stallman <rms@gnu.org>
3617
3618 * searching.texi (Char Classes): Document :multibyte: and :unibyte:.
3619 Clarify :ascii: and :nonascii:.
3620
36212006-09-29 Juri Linkov <juri@jurta.org>
3622
3623 * modes.texi (%-Constructs): Reorder coding systems in the
3624 documentation of %z to the real order displayed in the modeline.
3625
36262006-09-25 Richard Stallman <rms@gnu.org>
3627
3628 * os.texi (Timers): Describe timer-max-repeats.
3629
36302006-09-25 Chong Yidong <cyd@stupidchicken.com>
3631
3632 * os.texi (Timers): Mention with-local-quit.
3633
36342006-09-24 Richard Stallman <rms@gnu.org>
3635
3636 * searching.texi (Searching and Matching): Mention property search.
3637
3638 * commands.texi (Command Loop Info): Explain how read-event affects
3639 this-command-keys.
3640
36412006-09-20 Richard Stallman <rms@gnu.org>
3642
3643 * os.texi (Timers): Clarify about REPEAT when timer is delayed.
3644
3645 * windows.texi (Window Start): Minor cleanups.
3646
36472006-09-20 Kim F. Storm <storm@cua.dk>
3648
3649 * windows.texi (Window Start): pos-visible-in-window-p allows
3650 specifying t for position to mean "end of window".
3651 Add window-line-height.
3652
3653 * anti.texi (Antinews): Mention window-line-height.
3654
36552006-09-19 David Kastrup <dak@gnu.org>
3656
3657 * keymaps.texi (Searching Keymaps): Small clarification.
3658
36592006-09-18 Richard Stallman <rms@gnu.org>
3660
3661 * keymaps.texi (Creating Keymaps): Explain that keymap prompt strings
3662 cause keyboard menus.
3663 (Menu Keymaps): Likewise.
3664 (Defining Menus, Keyboard Menus): Clarify.
3665
3666 * text.texi (Fields): Clarify explanation of constrain-to-field.
3667
36682006-09-16 Eli Zaretskii <eliz@gnu.org>
3669
3670 * variables.texi (Tips for Defining): Fix a typo.
3671
36722006-09-15 Richard Stallman <rms@gnu.org>
3673
3674 * keymaps.texi (Remapping Commands, Searching Keymaps)
3675 (Active Keymaps): Clean up previous change.
3676
36772006-09-15 Jay Belanger <belanger@truman.edu>
3678
3679 * gpl.texi: Replace "Library Public License" by "Lesser Public
3680 License" throughout.
3681
36822006-09-15 David Kastrup <dak@gnu.org>
3683
3684 * keymaps.texi (Active Keymaps): Adapt description to use
3685 `get-char-property' instead `get-text-property'. Explain how
3686 mouse events change this. Explain the new optional argument of
3687 `key-binding' and its mouse-dependent lookup.
3688 (Searching Keymaps): Adapt description similarly.
3689 (Remapping Commands): Explain the new optional argument of
3690 `command-remapping'.
3691
36922006-09-14 Richard Stallman <rms@gnu.org>
3693
3694 * keymaps.texi (Searching Keymaps): Clarification.
3695 (Active Keymaps): Refer to Searching Keymaps instead of duplication.
3696
36972006-09-13 Richard Stallman <rms@gnu.org>
3698
3699 * objects.texi (Character Type): Node split.
3700 Add xref to Describing Characters.
3701 (Basic Char Syntax, General Escape Syntax)
3702 (Ctl-Char Syntax, Meta-Char Syntax): New subnodes.
3703
37042006-09-11 Richard Stallman <rms@gnu.org>
3705
3706 * display.texi (Display Table Format): Wording clarification.
3707 (Glyphs): Clarifications.
3708
37092006-09-10 Chong Yidong <cyd@stupidchicken.com>
3710
3711 * keymaps.texi (Active Keymaps): Mention that key-binding checks
3712 local maps.
3713
37142006-09-10 Kim F. Storm <storm@cua.dk>
3715
3716 * display.texi (Forcing Redisplay): Document return value of
3717 function redisplay.
3718
37192006-09-09 Richard Stallman <rms@gnu.org>
3720
3721 * windows.texi (Window Hooks): Explain limits of
3722 window-scroll-functions.
3723
3724 * display.texi (Fringe Indicators): Update for last change in
3725 indicate-buffer-boundaries.
3726
37272006-09-08 Richard Stallman <rms@gnu.org>
3728
3729 * processes.texi (Bindat Spec): Suggest names ending in -bindat-spec.
3730
37312006-09-06 Kim F. Storm <storm@cua.dk>
3732
3733 * frames.texi (Display Feature Testing): display-mm-dimensions-alist.
3734
3735 * windows.texi (Window Start): Update pos-visible-in-window-p.
3736
37372006-09-04 Richard Stallman <rms@gnu.org>
3738
3739 * processes.texi (Accepting Output): Explain SECONDS=0 for
3740 accept-process-output.
3741
3742 * os.texi (Idle Timers): Explain why timer functions should not
3743 loop until (input-pending-p).
3744
37452006-09-02 Eli Zaretskii <eliz@gnu.org>
3746
3747 * makefile.w32-in (usermanualdir): New variable.
3748 (elisp.dvi): Use it.
3749
37502006-09-01 Eli Zaretskii <eliz@gnu.org>
3751
3752 * buffers.texi (Buffer Modification): Fix last change.
3753
37542006-09-01 Chong Yidong <cyd@stupidchicken.com>
3755
3756 * buffers.texi (Buffer Modification):
3757 Document buffer-chars-modified-tick.
3758
37592006-08-31 Richard Stallman <rms@gnu.org>
3760
3761 * modes.texi (Syntactic Font Lock): Mention specific faces once again.
3762
37632006-08-31 Richard Bielawski <RBielawski@moneygram.com> (tiny change)
3764
3765 * modes.texi (Syntactic Font Lock):
3766 Mention font-lock-syntactic-face-function
3767 instead of specific faces.
3768
37692006-08-29 Chong Yidong <cyd@stupidchicken.com>
3770
3771 * display.texi (Images): Add xrref to display-images-p.
3772
37732006-08-28 Kenichi Handa <handa@m17n.org>
3774
3775 * nonascii.texi (Lisp and Coding Systems): Fix description of
3776 detect-coding-region.
3777
37782006-08-27 Michael Olson <mwolson@gnu.org>
3779
3780 * processes.texi (Transaction Queues): Remove stray quote
3781 character.
3782
37832006-08-25 Richard Stallman <rms@gnu.org>
3784
3785 * os.texi (Idle Timers): run-with-idle-timer allows Lisp time value.
3786 Add xref.
3787
37882006-08-24 Chong Yidong <cyd@stupidchicken.com>
3789
3790 * os.texi (Timers): Avoid waiting inside timers.
3791
37922006-08-21 Lute Kamstra <lute@gnu.org>
3793
3794 * Makefile.in: Use ../man/texinfo.tex to build elisp.dvi.
3795
37962006-08-20 Richard Stallman <rms@gnu.org>
3797
3798 * os.texi (Idle Timers): New node, split out from Timers.
3799 Document current-idle-time.
3800 * commands.texi (Reading One Event): Update xref.
3801 * elisp.texi (Top): Update subnode menu.
3802
38032006-08-16 Richard Stallman <rms@gnu.org>
3804
3805 * keymaps.texi (Extended Menu Items): Show format of cached
3806 bindings in extended menu items.
3807
3808 * customize.texi (Variable Definitions): Explain when the
3809 standard value expression is evaluated.
3810
38112006-08-15 Chong Yidong <cyd@stupidchicken.com>
3812
3813 * commands.texi (Reading One Event): Explain idleness in
3814 `read-event'.
3815
38162006-08-12 Chong Yidong <cyd@stupidchicken.com>
3817
3818 * text.texi (Near Point): Say "cursor" not "terminal cursor".
3819 (Commands for Insertion): Remove split-line since it's not
3820 relevant for Lisp programming.
3821 (Yank Commands): Rewrite introduction.
3822 (Undo): Clarify.
3823 (Maintaining Undo): Clarify. Document undo-ask-before-discard.
3824 (Filling): Remove redundant comment. Clarify return value of
3825 current-justification.
3826 (Margins): Minor clarifications.
3827 (Adaptive Fill): Update default value of adaptive-fill-regexp.
3828 (Sorting): Update definition of sort-lines.
3829 (Columns): Clarify behavior of sort-columns.
3830 (Indent Tabs): Link to Tab Stops in Emacs manual.
3831 (Special Properties): Clarify.
3832 (Clickable Text): Mention Buttons package.
3833
38342006-08-12 Kevin Ryde <user42@zip.com.au>
3835
3836 * os.texi (Time Parsing): Add %z to description of
3837 format-time-string, as per docstring. Add cross reference to
3838 glibc manual for strftime.
3839
38402006-08-08 Richard Stallman <rms@gnu.org>
3841
3842 * modes.texi: Clean up wording in previous change.
3843
38442006-08-07 Chong Yidong <cyd@stupidchicken.com>
3845
3846 * modes.texi (Hooks): Clarify.
3847 (Major Mode Basics): Mention define-derived-mode explicitly.
3848 (Major Mode Conventions): Rebinding RET is OK for some modes.
3849 Mention change-major-mode-hook and after-change-major-mode-hook.
3850 (Example Major Modes): Move to end of Modes section.
3851 (Mode Line Basics): Clarify.
3852 (Mode Line Data): Mention help-echo and local-map in strings.
3853 Explain reason for treatment of non-risky variables.
3854 (Properties in Mode): Clarify.
3855 (Faces for Font Lock): Add font-lock-negation-char-face.
3856
38572006-08-04 Eli Zaretskii <eliz@gnu.org>
3858
3859 * strings.texi (Formatting Strings): Warn against arbitrary
3860 strings as first arg to `format'.
3861
38622006-07-31 Thien-Thi Nguyen <ttn@gnu.org>
3863
3864 * text.texi (Clickable Text): Mention `help-echo' text property.
3865 Update intro, examples and associated explanations.
3866
38672006-07-31 Richard Stallman <rms@gnu.org>
3868
3869 * commands.texi: Update xrefs.
3870 (Event Mod): New node, cut out from old Translating Input.
3871
3872 * maps.texi: Update xrefs.
3873
3874 * keymaps.texi (Translation Keymaps): New node.
3875 Update xrefs from Translating Input to Translation Keymaps.
3876
3877 * elisp.texi (Top): Update subnode menu.
3878
3879 * display.texi (Face Functions): Fix explanations of FRAME=t or nil.
3880
3881 * os.texi (System Interface): Fix menu descriptions of some nodes.
3882 (Translating Input): Node deleted.
3883
38842006-07-31 Nick Roberts <nickrob@snap.net.nz>
3885
3886 * modes.texi (Minor Mode Conventions): Update xref for add-to-list.
3887
3888 * lists.texi (Sets And Lists): Likewise.
3889
38902006-07-30 Thien-Thi Nguyen <ttn@gnu.org>
3891
3892 * text.texi (Fields): Mention POS
3893 requirement when narrowing is in effect.
3894
38952006-07-28 Richard Stallman <rms@gnu.org>
3896
3897 * display.texi (Face Attributes): Simplify wording.
3898 (Attribute Functions): Clarify meaning of new-frame default
3899 attribute settings.
3900
3901 * customize.texi (Common Keywords): Document how to use
3902 :package-version in a package not in Emacs.
3903
39042006-07-28 Kim F. Storm <storm@cua.dk>
3905
3906 * commands.texi (Reading One Event): Fix last change.
3907
39082006-07-26 Chong Yidong <cyd@stupidchicken.com>
3909
3910 * commands.texi (Reading One Event): Document SECONDS argument for
3911 read-event, read-char, and read-char-exclusive.
3912
39132006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
3914
3915 * modes.texi (Multiline Font Lock): Can't use jit-lock-defer-multiline
3916 to ensure correct identification.
3917
39182006-07-24 Richard Stallman <rms@gnu.org>
3919
3920 * text.texi (Clickable Text): Clarify.
3921
3922 * sequences.texi (Vector Functions): Delete duplicate xref.
3923
3924 * objects.texi (Function Type): Clarify.
3925
3926 * modes.texi (Keymaps and Minor Modes): List punct chars for minor
3927 modes.
3928
3929 * lists.texi (List Variables): New node.
3930 Material moved from other nodes.
3931
3932 * variables.texi (Setting Variables): add-to-list and
3933 add-to-ordered-list moved to List Variables node.
3934
39352006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
3936
3937 * text.texi (Links and Mouse-1):
3938 For mouse-on-link-p, expand on arg POS.
3939
39402006-07-21 Kim F. Storm <storm@cua.dk>
3941
3942 * display.texi (Forcing Redisplay): Don't mention systems which
3943 don't support sub-second timers for redisplay-preemption-period.
3944
3945 * os.texi (Terminal Output): Clarify text vs graphical terminal.
3946
39472006-07-21 Eli Zaretskii <eliz@gnu.org>
3948
3949 * frames.texi (Input Focus): Document that focus-follows-mouse has
3950 no effect on MS-Windows.
3951
39522006-07-18 Richard Stallman <rms@gnu.org>
3953
3954 * display.texi (Forcing Redisplay): Cleanups in previous change.
3955
3956 * processes.texi (Low-Level Network): Make menu more convenient.
3957
39582006-07-18 Kim F. Storm <storm@cua.dk>
3959
3960 * display.texi (Forcing Redisplay): redisplay-preemption-period
3961 only used on window systems. Add xref to Terminal Output.
3962
3963 * os.texi (Terminal Output): baud-rate only controls preemption on
3964 non-window systems. Add xref to Forcing Redisplay.
3965
3966 * processes.texi (Low-Level Network): Rename node "Make Network"
3967 to "Network Processes".
3968
39692006-07-18 Karl Berry <karl@gnu.org>
3970
3971 * variables.texi, functions.texi, customize.texi, loading.texi:
3972 * edebug.texi, minibuf.texi: Fix page breaks through chapter 20.
3973
39742006-07-17 Chong Yidong <cyd@stupidchicken.com>
3975
3976 * commands.texi (Waiting): Document batch-mode sit-for behavior.
3977
39782006-07-17 Richard Stallman <rms@gnu.org>
3979
3980 * eval.texi, elisp.texi, text.texi: Use real doublequote inside menus.
3981 Put period and comma inside quotes.
3982
3983 * loading.texi, markers.texi: Use real doublequote inside menus.
3984
3985 * windows.texi: Put point and comma inside quotes.
3986 (Textual Scrolling): Use @samp for error message.
3987
3988 * variables.texi, tips.texi, syntax.texi, symbols.texi:
3989 * strings.texi, streams.texi, processes.texi, os.texi:
3990 * objects.texi, numbers.texi, modes.texi, minibuf.texi:
3991 * lists.texi, keymaps.texi, intro.texi, hash.texi, internals.texi:
3992 * gpl.texi, functions.texi, files.texi, frames.texi, doclicense.texi:
3993 * display.texi, control.texi, commands.texi, buffers.texi, anti.texi:
3994 Put point and comma inside quotes.
3995
3996 * control.texi (Processing of Errors): Add command-error-function.
3997
3998 * variables.texi (File Local Variables): Clarify that
3999 file local variables make buffer-local bindings.
4000
4001 * modes.texi (Syntactic Font Lock): Give default for
4002 font-lock-syntax-table.
4003
40042006-07-17 Nick Roberts <nickrob@snap.net.nz>
4005
4006 * text.texi (Special Properties): Clean up previous change.
4007
40082006-07-16 Karl Berry <karl@gnu.org>
4009
4010 * objects.texi, numbers.texi, strings.texi, lists.texi, hash.texi:
4011 * control.texi: Fix bad page breaks through chapter 10 (control).
4012
4013 * anti.texi (Antinews): Reorder face-attribute fns to avoid
4014 underfull hbox.
4015
40162006-07-15 Nick Roberts <nickrob@snap.net.nz>
4017
4018 * text.texi (Special Properties): Describe fontified text property
4019 in relation to a character (not text).
4020
40212006-07-15 Kim F. Storm <storm@cua.dk>
4022
4023 * maps.texi (Standard Keymaps): Add xref for minibuffer maps.
4024 Add apropos-mode-map, custom-mode-map, esc-map, global-map,
4025 grep-mode-map, help-map, help-mode-map, kmacro-map, and tool-bar-map.
4026
4027 * anti.texi (Antinews): Mention redisplay function.
4028 The kbd macro existed, but was not documented, before 22.x.
4029 Function pos-visible-in-window-p is not new in 22.x, just enhanced.
4030
40312006-07-14 Nick Roberts <nickrob@snap.net.nz>
4032
4033 * display.texi (Displaying Messages): Add anchor.
4034
4035 * frames.texi (Dialog Boxes): Use it.
4036
40372006-07-12 Richard Stallman <rms@gnu.org>
4038
4039 * objects.texi (Frame Type): Explain nature of frames better.
4040
4041 * frames.texi (Frames): Explain nature of frames better.
4042
40432006-07-12 Ken Manheimer <ken.manheimer@gmail.com>
4044
4045 * tips.texi (Coding Conventions): Explain why use cl at compile time.
4046
40472006-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4048
4049 * frames.texi (Window System Selections): Mention scrap support for Mac.
4050 Default value of x-select-enable-clipboard is t on Mac.
4051
4052 * os.texi (Getting Out): Suspending is not allowed on Mac, either.
4053
40542006-07-11 Kim F. Storm <storm@cua.dk>
4055
4056 * display.texi (Forcing Redisplay): Add `redisplay' function.
4057 Don't mention (sit-for -1) -- use (redisplay t) instead.
4058
4059 * commands.texi (Waiting): (sit-for -1) is no longer special.
4060 (sit-for 0) is equivalent to (redisplay).
4061 Iconifying/deiconifying no longer makes sit-for return.
4062
40632006-07-10 Nick Roberts <nickrob@snap.net.nz>
4064
4065 * display.texi (Buttons): Fix typo.
4066
4067 * index.texi, elisp.texi (New Symbols): Comment node out.
4068
40692006-07-09 Richard Stallman <rms@gnu.org>
4070
4071 * display.texi (Truncation): Clean up previous change.
4072
40732006-07-08 Richard Stallman <rms@gnu.org>
4074
4075 * commands.texi (Interactive Call): Use 3 as prefix in example
4076 for execute-extended-command.
4077
4078 * display.texi (Attribute Functions): Move paragraph about
4079 compatibility with Emacs < 21.
4080
40812006-07-09 Kim F. Storm <storm@cua.dk>
4082
4083 * display.texi (Refresh Screen): Clarify force-window-update.
4084 (Truncation): "Normally" indicated by fringe arrows.
4085
40862006-07-08 Eli Zaretskii <eliz@gnu.org>
4087
4088 * windows.texi (Textual Scrolling, Resizing Windows):
4089 * variables.texi (Constant Variables):
4090 * text.texi (Buffer Contents, Deletion, Changing Properties)
4091 (Property Search, Special Properties, Sticky Properties)
4092 (Links and Mouse-1, Fields, Change Hooks):
4093 * syntax.texi (Syntax Table Functions, Parsing Expressions)
4094 (Categories):
4095 * symbols.texi (Other Plists):
4096 * streams.texi (Output Variables):
4097 * processes.texi (Input to Processes, Query Before Exit):
4098 * positions.texi (Word Motion, Text Lines, List Motion):
4099 * os.texi (Init File, System Environment, Sound Output)
4100 (Session Management):
4101 * nonascii.texi (Text Representations, Character Sets)
4102 (Chars and Bytes, Locales):
4103 * modes.texi (Defining Minor Modes, Header Lines):
4104 * minibuf.texi (Minibuffer Contents):
4105 * markers.texi (Information from Markers):
4106 * lists.texi (List Elements, Building Lists, Association Lists):
4107 * keymaps.texi (Tool Bar):
4108 * hash.texi (Creating Hash, Hash Access, Defining Hash, Other Hash):
4109 * functions.texi (What Is a Function, Mapping Functions):
4110 * frames.texi (Creating Frames, Parameter Access, Pointer Shape)
4111 (Color Names, Text Terminal Colors, Display Feature Testing):
4112 * files.texi (Visiting Functions, File Name Components)
4113 (Unique File Names, Contents of Directories):
4114 * display.texi (Forcing Redisplay, Displaying Messages)
4115 (Temporary Displays, Font Selection, Auto Faces)
4116 (Font Lookup, Fringe Indicators, Display Margins)
4117 (Image Descriptors, Showing Images, Image Cache, Button Types)
4118 (Making Buttons, Manipulating Buttons, Button Buffer Commands)
4119 (Display Table Format, Glyphs):
4120 * control.texi (Iteration):
4121 * commands.texi (Command Loop Info, Adjusting Point):
4122 * backups.texi (Making Backups, Auto-Saving):
4123 Remove @tindex entries.
4124
41252006-07-07 Kim F. Storm <storm@cua.dk>
4126
4127 * display.texi (Fringe Cursors): Fix typo.
4128 (Customizing Bitmaps): Fix define-fringe-bitmap entry.
4129 (Overlay Arrow): Default is overlay-arrow fringe indicator.
4130
41312006-07-05 Richard Stallman <rms@gnu.org>
4132
4133 * text.texi (Buffer Contents): Add example of text props
4134 in result of buffer-substring.
4135 (Text Properties): Explain better about use of specific property names.
4136 (Property Search): Some cleanups; reorder some functions.
4137
4138 * keymaps.texi (Changing Key Bindings): Cleanup.
4139 Add xref to Key Binding Conventions.
4140
4141 * display.texi (Attribute Functions): Add examples for
4142 face-attribute-relative-p.
4143
4144 * tips.texi (Coding Conventions): Cleanup last change.
4145
41462006-07-05 Karl Berry <karl@gnu.org>
4147
4148 * elisp.texi: Use @fonttextsize 10pt, a la emacs.texi.
4149 Remove @setchapternewpage odd.
4150 Result is 1013 pages, down from 1100.
4151
4152 * anti.texi, customize.texi, display.texi, internals.texi:
4153 * minibuf.texi, modes.texi, tips.texi:
4154 Fix overfull/underfull boxes.
4155
41562006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
4157
4158 * edebug.texi (Instrumenting):
4159 Add Edebug-specific findex for eval-buffer.
4160 * loading.texi (Loading):
4161 Replace eval-current-buffer with eval-buffer.
4162
41632006-06-30 Nick Roberts <nickrob@snap.net.nz>
4164
4165 * locals.texi (Standard Buffer-Local Variables): Update the list
4166 of variables.
4167
41682006-06-26 Nick Roberts <nickrob@snap.net.nz>
4169
4170 * files.texi (File Name Completion): Point user to the node
4171 "Reading File Names".
4172
41732006-06-24 Eli Zaretskii <eliz@gnu.org>
4174
4175 * files.texi (Contents of Directories): Document case-insensitive
4176 behavior on respective filesystems.
4177
4178 * objects.texi (Character Type): Document that Emacs signals an
4179 error for unsupported Unicode characters specified as \uNNNN.
4180
41812006-06-19 Richard Stallman <rms@gnu.org>
4182
4183 * processes.texi (Bindat Spec): Clarify previous change.
4184
41852006-06-16 Richard Stallman <rms@gnu.org>
4186
4187 * tips.texi (Coding Conventions): Better explain conventions
4188 for definition constructs.
4189
4190 * text.texi (Special Properties): String value of `read-only'
4191 serves as the error message.
4192
4193 * objects.texi (Character Type): Clarify prev. change.
4194 (Non-ASCII in Strings): Mention \u and \U.
4195
4196 * commands.texi (Using Interactive): Explain problem of
4197 markers, etc., in command-history.
4198
41992006-06-14 Kim F. Storm <storm@cua.dk>
4200
4201 * commands.texi (Waiting): Negative arg to sit-for forces
4202 redisplay even if input is pending.
4203
4204 * display.texi (Forcing Redisplay): Use (sit-for -1) to force a
4205 redisplay. Remove incorrect example of binding redisplay-dont-pause
4206 around (sit-for 0).
4207
42082006-06-13 Richard Stallman <rms@gnu.org>
4209
4210 * display.texi (Forcing Redisplay): Clarify previous change.
4211
42122006-06-13 Romain Francoise <romain@orebokech.com>
4213
4214 * display.texi (Forcing Redisplay): Fix typo.
4215
42162006-06-13 Kim F. Storm <storm@cua.dk>
4217
4218 * display.texi (Forcing Redisplay): Add redisplay-preemption-period.
4219
42202006-06-10 Luc Teirlinck <teirllm@auburn.edu>
4221
4222 * tips.texi (Coding Conventions): Add `@end itemize'.
4223
42242006-06-10 Richard Stallman <rms@gnu.org>
4225
4226 * tips.texi (Coding Conventions): Explain use of coding systems
4227 to ensure one decoding for strings.
4228
42292006-06-09 Aidan Kehoe <kehoea@parhasard.net>
4230
4231 * objects.texi (Character Type): Describe the \uABCD and \U00ABCDEF
4232 syntax.
4233
42342006-06-07 Eli Zaretskii <eliz@gnu.org>
4235
4236 * display.texi (Font Selection): Remove description of
4237 clear-face-cache.
4238
4239 * compile.texi (Eval During Compile): Fix a typo. Add index
4240 entries for possible uses of eval-when-compile.
4241
42422006-06-04 Thien-Thi Nguyen <ttn@gnu.org>
4243
4244 * display.texi (Abstract Display): Fix typo.
4245
42462006-06-03 Eli Zaretskii <eliz@gnu.org>
4247
4248 * minibuf.texi (Minibuffer History) <history-add-new-input>:
4249 Reword variable's description.
4250
42512006-06-01 Richard Stallman <rms@gnu.org>
4252
4253 * windows.texi (Splitting Windows): Clarify splitting nonselected
4254 window.
4255
42562006-05-31 Juri Linkov <juri@jurta.org>
4257
4258 * minibuf.texi (Minibuffer History): Add history-add-new-input.
4259
42602006-05-30 Richard Stallman <rms@gnu.org>
4261
4262 * display.texi (Line Height): Fix errors in description of
4263 default line height and line-height property.
4264
4265 * nonascii.texi (Default Coding Systems): Further clarification.
4266
42672006-05-29 Luc Teirlinck <teirllm@auburn.edu>
4268
4269 * internals.texi (Pure Storage): Mention that an overflow in pure
4270 space causes a memory leak.
4271 (Garbage Collection): If there was an overflow in pure space,
4272 `garbage-collect' returns nil.
4273
42742006-05-30 Eli Zaretskii <eliz@gnu.org>
4275
4276 * nonascii.texi (Default Coding Systems): Fix it some more.
4277
42782006-05-29 Eli Zaretskii <eliz@gnu.org>
4279
4280 * nonascii.texi (Default Coding Systems): Fix last change.
4281
42822006-05-29 Kenichi Handa <handa@m17n.org>
4283
4284 * nonascii.texi (find-operation-coding-system): Describe the new
4285 argument format (FILENAME . BUFFER).
4286
42872006-05-28 Richard Stallman <rms@gnu.org>
4288
4289 * tips.texi (Coding Conventions): Better explain reasons not to
4290 advise other packages or use `eval-after-load'.
4291
42922006-05-29 Kim F. Storm <storm@cua.dk>
4293
4294 * processes.texi (Bindat Functions): Rename `pos' and `raw-data' to
4295 `bindat-idx' and `bindat-raw' for clarity.
4296
42972006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
4298
4299 * processes.texi (Bindat Spec): Expand on `repeat' handler.
4300
4301 * display.texi (Display): Add "Abstract Display" to menu.
4302 (Abstract Display, Abstract Display Functions)
4303 (Abstract Display Example): New nodes.
4304 * elisp.texi (Top): Add "Abstract Display" to menu.
4305
43062006-05-27 Chong Yidong <cyd@stupidchicken.com>
4307
4308 * keymaps.texi (Key Sequences): Link to input events definition.
4309 (Format of Keymaps): Delete material duplicated in Keymap Basics.
4310
4311 * files.texi (Changing Files): Document updated argument list for
4312 copy-file.
4313
43142006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
4315
4316 * processes.texi (Bindat Functions): Explain term "total length".
4317 Use it in bindat-length and bindat-pack descriptions.
4318
43192006-05-26 Eli Zaretskii <eliz@gnu.org>
4320
4321 * tips.texi (Coding Conventions): Advise against using
4322 eval-after-load in packages. Add an index entry.
4323
43242006-05-25 Juri Linkov <juri@jurta.org>
4325
4326 * minibuf.texi (Text from Minibuffer): Undocument keep-all.
4327
4328 * modes.texi (%-Constructs): Add %e, %z, %Z.
4329
43302006-05-25 Richard Stallman <rms@gnu.org>
4331
4332 * elisp.texi (Top): Update subnode menu.
4333
4334 * keymaps.texi (Keymap Basics): New node, split out of Key Sequences.
4335 (Keymaps): Update menu.
4336
43372006-05-25 Chong Yidong <cyd@stupidchicken.com>
4338
4339 * keymaps.texi (Key Sequences): Some clarifications.
4340
43412006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
4342
4343 * processes.texi (Bindat Functions): Say "unibyte string"
4344 explicitly for bindat-unpack and bindat-pack descriptions.
4345 (Bindat Examples): Don't call `string-make-unibyte' in example.
4346
43472006-05-25 Chong Yidong <cyd@stupidchicken.com>
4348
4349 * keymaps.texi (Key Sequences): Rename from Keymap Terminology.
4350 Explain string and vector representations of key sequences.
4351
4352 * keymaps.texi (Changing Key Bindings):
4353 * commands.texi (Interactive Codes):
4354 * help.texi (Describing Characters): Refer to it.
4355
43562006-05-23 Luc Teirlinck <teirllm@auburn.edu>
4357
4358 * frames.texi (Pointer Shape): @end table -> @end defvar.
4359
43602006-05-22 Richard Stallman <rms@gnu.org>
4361
4362 * elisp.texi (Top): Update subnode menus.
4363
4364 * frames.texi (Pointer Shape): Node renamed from Pointer Shapes.
4365 Contents rewritten; material from old Pointer Shape node moved here.
4366
4367 * display.texi (Pointer Shape): Node deleted.
4368 (Image Descriptors): Minor cleanup.
4369
43702006-05-21 Richard Stallman <rms@gnu.org>
4371
4372 * syntax.texi (Parsing Expressions): Update info on which STATE
4373 elements are ignored.
4374
43752006-05-19 Luc Teirlinck <teirllm@auburn.edu>
4376
4377 * hooks.texi (Standard Hooks): Correct typo.
4378
4379 * gpl.texi (GPL): ifinfo -> ifnottex.
4380
43812006-05-19 Michael Ernst <mernst@alum.mit.edu> (tiny change)
4382
4383 * searching.texi (Simple Match Data): Warn about match data being
4384 set anew by every search.
4385
43862006-05-17 Richard Stallman <rms@gnu.org>
4387
4388 * minibuf.texi (Minibuffer History): Clarify.
4389
4390 * searching.texi (Regexp Special): Clarify nested regexp warning.
4391
43922006-05-16 Kim F. Storm <storm@cua.dk>
4393
4394 * minibuf.texi (Minibuffer History): Update add-to-history.
4395
43962006-05-15 Oliver Scholz <epameinondas@gmx.de> (tiny change)
4397
4398 * nonascii.texi (Explicit Encoding):
4399 Fix typo (encoding<->decoding).
4400
44012006-05-14 Richard Stallman <rms@gnu.org>
4402
4403 * buffers.texi (Creating Buffers): Cleanup.
4404
4405 * files.texi (Visiting Functions): Rewrite in find-file-noselect.
4406
44072006-05-13 Eli Zaretskii <eliz@gnu.org>
4408
4409 * buffers.texi (Current Buffer): Document that with-temp-buffer
4410 disables undo.
4411
4412 * os.texi (Terminal-Specific): More accurate description of how
4413 Emacs searches for the terminal-specific libraries.
4414
44152006-05-12 Eli Zaretskii <eliz@gnu.org>
4416
4417 * hooks.texi (Standard Hooks) [iftex]: Convert @xref's to
4418 emacs-xtra to @inforef's.
4419
4420 * text.texi (Undo): Document that undo is turned off in buffers
4421 whose names begin with a space.
4422
4423 * buffers.texi (Buffer Names): Add index entries for buffers whose
4424 names begin with a space.
4425 (Creating Buffers): Document that undo is turned off in buffers
4426 whose names begin with a space.
4427
4428 * files.texi (Visiting Functions, Reading from Files)
4429 (Saving Buffers): Mention code and EOL conversions by file I/O
4430 primitives and subroutines.
4431
4432 * nonascii.texi (Lisp and Coding Systems): Document
4433 coding-system-eol-type. Add index entries for eol conversion.
4434
4435 * display.texi (Defining Faces): Mention `mac', and add an xref to
4436 where window-system is described.
4437
44382006-05-10 Richard Stallman <rms@gnu.org>
4439
4440 * internals.texi (Writing Emacs Primitives): Clarify GCPRO rules.
4441
44422006-05-10 Reiner Steib <Reiner.Steib@gmx.de>
4443
4444 * variables.texi (File Local Variables): Recommend to quote lambda
4445 expressions in safe-local-variable property.
4446
44472006-05-09 Richard Stallman <rms@gnu.org>
4448
4449 * variables.texi (File Local Variables):
4450 Document safe-local-eval-forms and safe-local-eval-function.
4451
44522006-05-07 Kim F. Storm <storm@cua.dk>
4453
4454 * minibuf.texi (Minibuffer History): Remove keep-dups arg
4455 from add-to-history.
4456
44572006-05-07 Romain Francoise <romain@orebokech.com>
4458
4459 * commands.texi (Event Input Misc):
4460 * compile.texi (Eval During Compile):
4461 * internals.texi (Buffer Internals):
4462 * minibuf.texi (Initial Input):
4463 * nonascii.texi (Scanning Charsets):
4464 * numbers.texi (Comparison of Numbers):
4465 * windows.texi (Textual Scrolling, Vertical Scrolling):
4466 Fix various typos.
4467
44682006-05-06 Eli Zaretskii <eliz@gnu.org>
4469
4470 * hooks.texi (Standard Hooks): Replace inforef to emacs-xtra by
4471 conditional xref's to either emacs or emacs-xtra, depending on
4472 @iftex/@ifnottex.
4473
4474 * minibuf.texi (Minibuffer History): Document add-to-history.
4475
44762006-05-05 Eli Zaretskii <eliz@gnu.org>
4477
4478 * internals.texi (Pure Storage): Mention the pure overflow message
4479 at startup.
4480
44812006-05-05 Johan Bockgård <bojohan@dd.chalmers.se>
4482
4483 * keymaps.texi (Active Keymaps): Fix pseudo-Lisp syntax.
4484 (Searching Keymaps): Fix pseudo-Lisp description of keymap
4485 search.
4486
44872006-05-01 Richard Stallman <rms@gnu.org>
4488
4489 * intro.texi (nil and t): Clarify.
4490
4491 * variables.texi (File Local Variables): Suggest using booleanp.
4492
44932006-05-01 Juanma Barranquero <lekktu@gmail.com>
4494
4495 * objects.texi (Type Predicates): Fix typos.
4496
44972006-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
4498
4499 * intro.texi (nil and t): Add booleanp.
4500
4501 * objects.texi (Type Predicates): Add links for booleanp and
4502 string-or-null-p.
4503
45042006-04-29 Richard Stallman <rms@gnu.org>
4505
4506 * modes.texi (Multiline Font Lock): Rename from
4507 Multi line Font Lock Elements. Much clarification.
4508 (Font Lock Multiline, Region to Fontify): Much clarification.
4509
45102006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4511
4512 * variables.texi (File Local Variables): Remove the special case t for
4513 safe-local-variable.
4514
45152006-04-26 Richard Stallman <rms@gnu.org>
4516
4517 * syntax.texi (Parsing Expressions): Minor cleanup.
4518
45192006-04-18 Richard Stallman <rms@gnu.org>
4520
4521 * tips.texi (Coding Conventions): Explain when the package's
4522 prefix should appear later on (not at the start of the name).
4523
4524 * searching.texi (String Search): Clarify effect of NOERROR.
4525
4526 * modes.texi (Imenu): Clarify what special items do.
4527
4528 * hooks.texi (Standard Hooks): Delete text about old hook names.
4529
45302006-04-17 Romain Francoise <romain@orebokech.com>
4531
4532 * variables.texi (Local Variables): Update the default value of
4533 `max-specpdl-size'.
4534
45352006-04-15 Michael Olson <mwolson@gnu.org>
4536
4537 * processes.texi (Transaction Queues): Mention the new optional
4538 `delay-question' argument for `tq-enqueue'.
4539
45402006-04-13 Bill Wohler <wohler@newt.com>
4541
4542 * customize.texi (Common Keywords): Use dotted notation for
4543 :package-version value. Specify its values. Improve documentation
4544 for customize-package-emacs-version-alist.
4545
45462006-04-12 Bill Wohler <wohler@newt.com>
4547
4548 * customize.texi (Common Keywords): Move description of
4549 customize-package-emacs-version-alist to @defvar.
4550
45512006-04-10 Bill Wohler <wohler@newt.com>
4552
4553 * customize.texi (Common Keywords): Add :package-version.
4554
45552006-04-10 Kim F. Storm <storm@cua.dk>
4556
4557 * text.texi (Buffer Contents): Add NOPROPS arg to
4558 filter-buffer-substring.
4559
45602006-04-08 Kevin Ryde <user42@zip.com.au>
4561
4562 * os.texi (Command-Line Arguments): Update xref to emacs manual
4563 "Command Arguments" -> "Emacs Invocation", per change there.
4564
45652006-04-08 Thien-Thi Nguyen <ttn@gnu.org>
4566
4567 * display.texi (Other Display Specs): Arrange a @code{DOTTED-LIST} to
4568 be on one line to help makeinfo not render two spaces after the dot.
4569
45702006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
4571
4572 * strings.texi (Predicates for Strings): Add string-or-null-p.
4573
45742006-03-28 Kim F. Storm <storm@cua.dk>
4575
4576 * processes.texi (Accepting Output): Remove obsolete (and incorrect)
4577 remarks about systems that don't support fractional seconds.
4578
45792006-03-25 Karl Berry <karl@gnu.org>
4580
4581 * elisp.texi: Use @copyright{} instead of (C), and do not indent
4582 the year list.
4583
45842006-03-21 Nick Roberts <nickrob@snap.net.nz>
4585
4586 * display.texi (Fringe Indicators): Fix typos.
4587
45882006-03-19 Luc Teirlinck <teirllm@auburn.edu>
4589
4590 * tips.texi (Documentation Tips): One can now also write `program'
4591 in front of a quoted symbol in a docstring to prevent making a
4592 hyperlink.
4593
45942006-03-19 Alan Mackenzie <acm@muc.de>
4595
4596 * text.texi (Special Properties): Clarify `fontified' property.
4597
45982006-03-16 Richard Stallman <rms@gnu.org>
4599
4600 * display.texi (Defining Images): Minor cleanup.
4601
46022006-03-16 Bill Wohler <wohler@newt.com>
4603
4604 * display.texi (Defining Images): In image-load-path-for-library,
4605 prefer user's images.
4606
46072006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4608
4609 * modes.texi (Region to Fontify): Remove font-lock-lines-before.
4610
46112006-03-15 Bill Wohler <wohler@newt.com>
4612
4613 * display.texi (Defining Images): Fix example in
4614 image-load-path-for-library by not recommending that one binds
4615 image-load-path. Just defvar it to placate compiler and only use
4616 it if previously defined.
4617
46182006-03-14 Bill Wohler <wohler@newt.com>
4619
4620 * display.texi (Defining Images): In image-load-path-for-library,
4621 always return list of directories. Update example.
4622
46232006-03-14 Alan Mackenzie <acm@muc.de>
4624
4625 * modes.texi: New node, "Region to Fontify" (for Font Lock).
4626 This describes font-lock-extend-region-function.
4627 ("Other Font Lock Variables"): Move "font-lock-lines-before" to
4628 the new node "Region to Fontify".
4629
46302006-03-13 Richard Stallman <rms@gnu.org>
4631
4632 * display.texi (Invisible Text): The impossible position is
4633 now before the invisible text, not after.
4634 (Defining Images): Clean up last change.
4635
46362006-03-11 Bill Wohler <wohler@newt.com>
4637
4638 * display.texi (Defining Images): Add image-load-path-for-library.
4639
46402006-03-11 Luc Teirlinck <teirllm@auburn.edu>
4641
4642 * text.texi (Adaptive Fill): Fix Texinfo usage.
4643
4644 * strings.texi (Creating Strings): Fix Texinfo usage.
4645
4646 * searching.texi (Regexp Special): Use @samp for regular
4647 expressions that are not in Lisp syntax.
4648
46492006-03-08 Luc Teirlinck <teirllm@auburn.edu>
4650
4651 * searching.texi (Regexp Special): Put remark between parentheses
4652 to avoid misreading.
4653
46542006-03-07 Luc Teirlinck <teirllm@auburn.edu>
4655
4656 * searching.texi (Syntax of Regexps): More accurately describe
4657 which characters are special in which situations.
4658 (Regexp Special): Recommend _not_ to quote `]' or `-' when they
4659 are not special. Describe in detail when `[' and `]' are special.
4660 (Regexp Backslash): Plenty of regexps with unbalanced square
4661 brackets are valid, so reword that statement.
4662
46632006-03-02 Kim F. Storm <storm@cua.dk>
4664
4665 * keymaps.texi (Tool Bar): Add tool-bar-border.
4666
46672006-02-28 Luc Teirlinck <teirllm@auburn.edu>
4668
4669 * loading.texi (Load Suffixes): Rephrase last paragraph. Fix typos.
4670
46712006-02-27 Luc Teirlinck <teirllm@auburn.edu>
4672
4673 * elisp.texi (Top): Include "Load Suffixes" in the detailed menu.
4674
4675 * files.texi (Locating Files): Suggest additional values for the
4676 SUFFIXES arg of `locate-file'. Update pxref.
4677
4678 * loading.texi (Loading): Include new node "Load Suffixes" in menu.
4679 (How Programs Do Loading): Discuss the effects of Auto Compression
4680 mode on `load'.
4681 (Load Suffixes): New node.
4682 (Library Search): Delete description of `load-suffixes'; it was
4683 moved to "Load Suffixes".
4684 (Autoload, Named Features): Mention `load-suffixes'.
4685
46862006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
4687
4688 * display.texi (Fringe Indicators, Fringe Cursors): Fix typos.
4689
4690 * windows.texi (Window Tree): Fix typo.
4691
46922006-02-20 Kim F. Storm <storm@cua.dk>
4693
4694 * display.texi (Fringe Indicators): New section.
4695 Move indicate-empty-lines, indicate-buffer-boundaries, and
4696 default-indicate-buffer-boundaries here.
4697 Add fringe-indicator-alist and default-fringes-indicator-alist.
4698 Add list of logical fringe indicator symbols.
4699 Update list of standard bitmap names.
4700 (Fringe Cursors): New section.
4701 Move overflow-newline-into-fringe here.
4702 Add fringe-cursor-alist and default-fringes-cursor-alist.
4703 Add list of fringe cursor symbols.
4704
47052006-02-20 Juanma Barranquero <lekktu@gmail.com>
4706
4707 * commands.texi (Using Interactive): Fix reference to node
4708 "Minibuffers".
4709
47102006-02-19 Richard M. Stallman <rms@gnu.org>
4711
4712 * minibuf.texi (High-Level Completion):
4713 Add xref to read-input-method-name.
4714
4715 * files.texi (Relative File Names): Move file-relative-name here.
4716 (File Name Expansion): From here. Minor clarifications.
4717
4718 * commands.texi (Using Interactive): Add xrefs about reading input.
4719 Clarify remarks about that moving point and mark.
4720 Put string case before list case.
4721
47222006-02-16 Johan Bockgård <bojohan@dd.chalmers.se>
4723
4724 * display.texi (Other Display Specs, Image Descriptors):
4725 Revert erroneous changes. The previous description of
4726 image-descriptors as `(image . PROPS)' was correct.
4727
47282006-02-14 Richard M. Stallman <rms@gnu.org>
4729
4730 * variables.texi (File Local Variables): Clarifications.
4731
47322006-02-14 Juanma Barranquero <lekktu@gmail.com>
4733
4734 * variables.texi (File Local Variables): Use @code for a cons
4735 cell, not @var.
4736
47372006-02-13 Chong Yidong <cyd@stupidchicken.com>
4738
4739 * variables.texi (File Local Variables): Document new file local
4740 variable behavior.
4741
47422006-02-10 Kim F. Storm <storm@cua.dk>
4743
4744 * eval.texi (Function Indirection): Add NOERROR to indirect-function.
4745
47462006-02-08 Juanma Barranquero <lekktu@gmail.com>
4747
4748 * modes.texi (%-Constructs): Remove obsolete info about
4749 `global-mode-string'.
4750
47512006-02-07 Richard M. Stallman <rms@gnu.org>
4752
4753 * commands.texi (Prefix Command Arguments): Minor cleanup.
4754
4755 * display.texi: "Graphical display", not window system.
4756
4757 * functions.texi (What Is a Function): Fix xref.
4758
4759 * keymaps.texi (Key Lookup): Clarify wrt commands vs other functions.
4760 (Changing Key Bindings): Clarify when remapping is better than
4761 substitute-key-definition.
4762
47632006-02-02 Richard M. Stallman <rms@gnu.org>
4764
4765 * minibuf.texi (Basic Completion): Completion alists are risky.
4766
4767 * keymaps.texi (Active Keymaps): Clarifications.
4768 (Searching Keymaps): New node.
4769 (Keymaps): Update menu.
4770
4771 * frames.texi (Layout Parameters): Minor clarification.
4772 (Drag and Drop): New node.
4773 (Frames): Update menu.
4774
47752006-01-29 Chong Yidong <cyd@stupidchicken.com>
4776
4777 * display.texi (Other Display Specs, Image Descriptors):
4778 Image description is a list, not a cons cell.
4779
47802006-01-28 Luc Teirlinck <teirllm@auburn.edu>
4781
4782 * lists.texi (Cons Cells): Minor correction (the cdr of a dotted
4783 list is not necessarily a list).
4784
47852006-01-27 Eli Zaretskii <eliz@gnu.org>
4786
4787 * frames.texi (Layout Parameters): border-width and
4788 internal-border-width belong to the frame, not the window.
4789
47902006-01-19 Richard M. Stallman <rms@gnu.org>
4791
4792 * nonascii.texi (Translation of Characters): Search cmds use
4793 translation-table-for-input. Automatically made local.
4794
4795 * markers.texi (Overview of Markers): Count insertion type
4796 as one of a marker's attributes.
4797
4798 * keymaps.texi (Controlling Active Maps): New node, split out of
4799 Active Keymaps.
4800 (Keymaps): Menu updated.
4801 (Active Keymaps): Give pseudocode to explain how the active
4802 maps are searched. current-active-maps and key-binding moved here.
4803 (Functions for Key Lookup): current-active-maps and key-binding moved.
4804 Clarifications.
4805 (Searching the Keymaps): New subnode.
4806
4807 * elisp.texi (Top): Menu clarification.
4808
4809 * display.texi (Other Display Specs): Delete duplicate entry for
4810 just a string as display spec. Move text about recursive display
4811 specs on such a string.
4812
4813 * commands.texi (Key Sequence Input): Clarify.
4814 Move num-nonmacro-input-events out.
4815 (Reading One Event): num-nonmacro-input-events moved here.
4816
48172006-01-14 Nick Roberts <nickrob@snap.net.nz>
4818
4819 * advice.texi (Simple Advice): Update example to fit argument
4820 change in previous-line.
4821
48222006-01-05 Richard M. Stallman <rms@gnu.org>
4823
4824 * markers.texi (The Mark): Fix in `mark'.
4825
48262006-01-04 Richard M. Stallman <rms@gnu.org>
4827
4828 * processes.texi (Misc Network, Make Network): Minor cleanups.
4829
48302006-01-04 Kim F. Storm <storm@cua.dk>
4831
4832 * processes.texi (Make Network): Add IPv6 addresses and handling.
4833 (Network Feature Testing): Mention (:family ipv6).
4834 (Misc Network): Add IPv6 formats to format-network-address.
4835
48362005-12-30 Richard M. Stallman <rms@gnu.org>
4837
4838 * text.texi (Changing Properties):
4839 Don't use return value of set-text-properties.
4840
48412005-12-29 Luc Teirlinck <teirllm@auburn.edu>
4842
4843 * modes.texi (Mode Line Format): Correct typo in menu.
4844
48452005-12-29 Richard M. Stallman <rms@gnu.org>
4846
4847 * modes.texi (Mode Line Top): New node.
4848 (Mode Line Data): Some text moved to new node.
4849 Explain the data structure more concretely.
4850 (Mode Line Basics): Clarifications.
4851 (Mode Line Variables): Clarify intro paragraph.
4852 (%-Constructs): Clarify intro paragraph.
4853 (Mode Line Format): Update menu.
4854
48552005-12-28 Luc Teirlinck <teirllm@auburn.edu>
4856
4857 * minibuf.texi (Basic Completion): Update lazy-completion-table
4858 examples for removal of ARGS argument.
4859
48602005-12-23 Richard M. Stallman <rms@gnu.org>
4861
4862 * text.texi (Undo): Restore some explanation from the version
4863 that was deleted.
4864
48652005-12-23 Eli Zaretskii <eliz@gnu.org>
4866
4867 * text.texi (Undo): Remove duplicate descriptions of `apply
4868 funname' and `apply delta' elements of the undo list.
4869
48702005-12-20 Richard M. Stallman <rms@gnu.org>
4871
4872 * help.texi (Help Functions): Update documentation of `apropos'.
4873
48742005-12-20 Luc Teirlinck <teirllm@auburn.edu>
4875
4876 * customize.texi (Type Keywords): Delete xref to "Text help-echo",
4877 because it is confusing. If the :help-echo keyword is a function,
4878 it is not directly used as the :help-echo overlay property, as the
4879 xref seems to suggest (it does not take the appropriate args).
4880
48812005-12-19 Luc Teirlinck <teirllm@auburn.edu>
4882
4883 * customize.texi (Common Keywords): Fix Texinfo usage.
4884 (Group Definitions, Variable Definitions): Update for new
4885 conventions for using `*' in docstrings.
4886
4887 * tips.texi (Documentation Tips): Update for new conventions for
4888 using `*' in docstrings.
4889
48902005-12-16 Richard M. Stallman <rms@gnu.org>
4891
4892 * minibuf.texi (Minibuffer Contents): Minor cleanup.
4893
48942005-12-16 Juri Linkov <juri@jurta.org>
4895
4896 * minibuf.texi (Minibuffer Contents): Add minibuffer-completion-contents.
4897
48982005-12-14 Romain Francoise <romain@orebokech.com>
4899
4900 * modes.texi (Customizing Keywords): Rename `append' to `how'.
4901 Fix typo.
4902
49032005-12-11 Juri Linkov <juri@jurta.org>
4904
4905 * minibuf.texi (Completion Commands): Add mention of read-file-name
4906 for filename completion keymaps.
4907 (Reading File Names): Add mention of filename completion keymaps
4908 for read-file-name and xref to `Completion Commands'.
4909
49102005-12-10 Richard M. Stallman <rms@gnu.org>
4911
4912 * customize.texi (Common Keywords): State caveats for use of :tag.
4913
49142005-12-08 Richard M. Stallman <rms@gnu.org>
4915
4916 * minibuf.texi (Intro to Minibuffers): Replace list of local maps
4917 with xrefs and better explanation.
4918 (Completion Commands): Add the filename completion maps.
4919
4920 * objects.texi (Character Type): Clarify that \s is not space
4921 if a dash follows.
4922
49232005-12-05 Richard M. Stallman <rms@gnu.org>
4924
4925 * windows.texi (Resizing Windows): Delete preserve-before args.
4926
49272005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
4928
4929 * keymaps.texi (Format of Keymaps): Remove mention of a quirk
4930 in full keymaps, since the quirk has been fixed.
4931
49322005-12-03 Eli Zaretskii <eliz@gnu.org>
4933
4934 * hooks.texi (Standard Hooks): Add index entries.
4935 Mention `compilation-finish-functions'.
4936
49372005-11-27 Richard M. Stallman <rms@gnu.org>
4938
4939 * windows.texi (Resizing Windows): Add adjust-window-trailing-edge.
4940
49412005-11-21 Juri Linkov <juri@jurta.org>
4942
4943 * customize.texi (Common Keywords): Update links types
4944 custom-manual and url-link. Add link types emacs-library-link,
4945 file-link, function-link, variable-link, custom-group-link.
4946
49472005-11-20 Chong Yidong <cyd@stupidchicken.com>
4948
4949 * display.texi: Revert 2005-11-20 change.
4950
49512005-11-20 Thien-Thi Nguyen <ttn@gnu.org>
4952
4953 * processes.texi (Bindat Functions):
4954 Say "third" to refer to zero-based index "2".
4955
49562005-11-18 Luc Teirlinck <teirllm@auburn.edu>
4957
4958 * loading.texi (Library Search): Update the default value of
4959 `load-suffixes'.
4960
49612005-11-17 Chong Yidong <cyd@stupidchicken.com>
4962
4963 * display.texi (Attribute Functions): Mention :ignore-defface.
4964
49652005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4966
4967 * modes.texi (Minor Mode Conventions): Use custom-set-minor-mode.
4968 (Minor Mode Conventions): Mention the use of a hook.
4969
49702005-11-06 Richard M. Stallman <rms@gnu.org>
4971
4972 * files.texi (Magic File Names): find-file-name-handler checks the
4973 `operations' property of the handler.
4974
49752005-11-03 Richard M. Stallman <rms@gnu.org>
4976
4977 * variables.texi (Frame-Local Variables): Small clarification.
4978
49792005-10-29 Chong Yidong <cyd@stupidchicken.com>
4980
4981 * os.texi (Init File): Document ~/.emacs.d/init.el.
4982
49832005-10-29 Richard M. Stallman <rms@gnu.org>
4984
4985 * internals.texi (Garbage Collection): Document memory-full.
4986
49872005-10-28 Bill Wohler <wohler@newt.com>
4988
4989 * tips.texi (Documentation Tips): Help mode now creates hyperlinks
4990 for URLs.
4991
49922005-10-28 Richard M. Stallman <rms@gnu.org>
4993
4994 * minibuf.texi (Completion Commands): Clean up prev change.
4995
49962005-10-26 Kevin Ryde <user42@zip.com.au>
4997
4998 * compile.texi (Eval During Compile): Explain recommended uses
4999 of eval-when-compile and eval-and-compile.
5000
50012005-10-27 Masatake YAMATO <jet@gyve.org>
5002
5003 * minibuf.texi (Completion Commands):
5004 Write about new optional argument for `display-completion-list'.
5005
50062005-10-23 Richard M. Stallman <rms@gnu.org>
5007
5008 * display.texi (Overlay Arrow): Clarify about local bindings of
5009 overlay-arrow-position.
5010
50112005-10-22 Eli Zaretskii <eliz@gnu.org>
5012
5013 * internals.texi (Building Emacs): Fix last change.
5014
50152005-10-22 Richard M. Stallman <rms@gnu.org>
5016
5017 * internals.texi (Building Emacs): Document eval-at-startup.
5018
50192005-10-21 Richard M. Stallman <rms@gnu.org>
5020
5021 * loading.texi (Where Defined): load-history contains abs file names.
5022 symbol-file returns abs file names.
5023
50242005-10-19 Kim F. Storm <storm@cua.dk>
5025
5026 * display.texi (Showing Images): Add max-image-size integer value.
5027
50282005-10-18 Chong Yidong <cyd@stupidchicken.com>
5029
5030 * display.texi (Showing Images): Document max-image-size.
5031
50322005-10-17 Richard M. Stallman <rms@gnu.org>
5033
5034 * commands.texi (Quitting): Minor clarification.
5035
5036 * processes.texi (Sentinels): Clarify about output and quitting.
5037 (Filter Functions): Mention with-local-quit.
5038
50392005-10-17 Juri Linkov <juri@jurta.org>
5040
5041 * buffers.texi (Current Buffer):
5042 * commands.texi (Event Input Misc):
5043 * compile.texi (Eval During Compile, Compiler Errors):
5044 * customize.texi (Group Definitions):
5045 * display.texi (Progress, Defining Faces):
5046 * files.texi (Writing to Files):
5047 * modes.texi (Mode Hooks, Defining Minor Modes):
5048 * streams.texi (Output Functions):
5049 * syntax.texi (Syntax Table Functions):
5050 * text.texi (Change Hooks):
5051 Replace `...' with `@dots{}' in `@defmac' and `@defspec'.
5052
5053 * commands.texi (Quitting): Replace arg `forms' with `body' in
5054 `with-local-quit'.
5055
5056 * positions.texi (Excursions): Replace arg `forms' with `body' in
5057 `save-excursion'.
5058
50592005-10-08 Kim F. Storm <storm@cua.dk>
5060
5061 * windows.texi (Window Tree): Rename window-split-tree to window-tree.
5062 Rename manual section accordingly.
5063
50642005-10-04 Kim F. Storm <storm@cua.dk>
5065
5066 * windows.texi (Window Split Tree): New section describing
5067 new function window-split-tree function.
5068
50692005-10-03 Nick Roberts <nickrob@snap.net.nz>
5070
5071 * display.texi (Fringe Size/Pos): Simplify and add detail.
5072
50732005-09-30 Romain Francoise <romain@orebokech.com>
5074
5075 * minibuf.texi (High-Level Completion): Explain that the prompt
5076 given to `read-buffer' should end with a colon and a space.
5077 Update usage examples.
5078
50792005-09-29 Juri Linkov <juri@jurta.org>
5080
5081 * display.texi (Displaying Messages): Rename argument name
5082 `string' to `format-string' in functions `message', `message-box',
5083 `message-or-box'.
5084
50852005-09-26 Chong Yidong <cyd@stupidchicken.com>
5086
5087 * errors.texi (Standard Errors): Correct xrefs.
5088
50892005-09-18 Chong Yidong <cyd@stupidchicken.com>
5090
5091 * display.texi (Defining Images): Update documentation for
5092 `image-load-path'.
5093
50942005-09-17 Richard M. Stallman <rms@gnu.org>
5095
5096 * display.texi (Defining Images): Clean up previous change.
5097
50982005-09-16 Romain Francoise <romain@orebokech.com>
5099
5100 * elisp.texi: Specify GFDL version 1.2.
5101
5102 * doclicense.texi (GNU Free Documentation License): Update to
5103 version 1.2.
5104
51052005-09-15 Chong Yidong <cyd@stupidchicken.com>
5106
5107 * display.texi (Defining Images): Document `image-load-path'.
5108
51092005-09-15 Richard M. Stallman <rms@gnu.org>
5110
5111 * objects.texi (Printed Representation): Minor cleanup.
5112 (Box Diagrams): Minor fix.
5113 (Cons Cell Type): Move (...) index item here.
5114 (Box Diagrams): From here.
5115 (Array Type): Minor fix.
5116 (Type Predicates): Delete index "predicates".
5117 (Hash Table Type): Clarify xref.
5118 (Dotted Pair Notation): Minor fix.
5119
51202005-09-10 Chong Yidong <cyd@stupidchicken.com>
5121
5122 * files.texi (Saving Buffers): Fix typo.
5123
51242005-09-08 Richard M. Stallman <rms@gnu.org>
5125
5126 * tips.texi (Programming Tips): Correct the "default" prompt spec.
5127
51282005-09-08 Chong Yidong <cyd@stupidchicken.com>
5129
5130 * locals.texi (Standard Buffer-Local Variables): Don't include
5131 mode variables for minor modes.
5132 Fix xrefs for buffer-display-count, buffer-display-table,
5133 buffer-offer-save, buffer-saved-size, cache-long-line-scans,
5134 enable-multibyte-characters, fill-column, header-line-format,
5135 left-fringe-width, left-margin, and right-fringe-width.
5136
5137 * hooks.texi (Standard Hooks): All hooks should conform to the
5138 standard naming convention now.
5139 Fix xref for `echo-area-clear-hook'.
5140
5141 * display.texi (Usual Display): Note that indicate-empty-lines and
5142 tab-width are buffer-local.
5143
5144 * files.texi (Saving Buffers): Add xref to `Killing Buffers'.
5145
5146 * modes.texi (Mode Help): Note that major-mode is buffer-local.
5147
5148 * nonascii.texi (Encoding and I/O): Note that
5149 buffer-file-coding-system is buffer-local.
5150
5151 * positions.texi (List Motion): Note that defun-prompt-regexp is
5152 buffer-local.
5153
5154 * text.texi (Auto Filling): Note that auto-fill-function is
5155 buffer-local.
5156 (Undo): Note that buffer-undo-list is buffer-local.
5157
5158 * windows.texi (Buffers and Windows):
5159 Document buffer-display-count.
5160
51612005-09-06 Richard M. Stallman <rms@gnu.org>
5162
5163 * tips.texi (Coding Conventions): Sometimes it is ok to put the
5164 package prefix elsewhere than at the start of the name.
5165
51662005-09-03 Richard M. Stallman <rms@gnu.org>
5167
5168 * tips.texi (Programming Tips): Add conventions for minibuffer
5169 questions and prompts.
5170
51712005-09-03 Joshua Varner <jlvarner@gmail.com> (tiny change)
5172
5173 * intro.texi (nil and t): Minor cleanup.
5174 Delete spurious mention of keyword symbols.
5175 (Evaluation Notation): Add index entry.
5176 (A Sample Function Description): Minor cleanup.
5177 (A Sample Variable Description): Not all vars can be set.
5178
51792005-09-03 Thien-Thi Nguyen <ttn@gnu.org>
5180
5181 * text.texi (Buffer Contents): Use "\n" in examples' result strings.
5182
5183 (Insertion): Document precise type of `insert-char' arg COUNT.
5184
51852005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
5186
5187 * modes.texi (Other Font Lock Variables): Sync the default of
5188 font-lock-lines-before.
5189
51902005-08-31 Michael Albinus <michael.albinus@gmx.de>
5191
5192 * files.texi (Magic File Names): Add `make-auto-save-file-name'.
5193
51942005-08-29 Richard M. Stallman <rms@gnu.org>
5195
5196 * elisp.texi (Top): Update subnode menu.
5197
5198 * searching.texi (Searching and Matching): Move node.
5199 Rearrange contents and add overall explanation.
5200 (Searching and Case): Move node.
5201 (Searching and Matching): Update menu.
5202
52032005-08-27 Eli Zaretskii <eliz@gnu.org>
5204
5205 * os.texi (Startup Summary): Fix the description of the initial
5206 startup message display.
5207
52082005-08-25 Richard M. Stallman <rms@gnu.org>
5209
5210 * searching.texi (Search and Replace): Add replace-regexp-in-string.
5211
52122005-08-25 Emilio C. Lopes <eclig@gmx.net>
5213
5214 * display.texi (Finding Overlays): Fix `find-overlay-prop' in
5215 `next-overlay-change' example.
5216
52172005-08-22 Juri Linkov <juri@jurta.org>
5218
5219 * display.texi (Attribute Functions): Add set-face-inverse-video-p.
5220 Fix invert-face. Fix args of face-background.
5221
5222 * display.texi (Standard Faces): Delete node.
5223 (Faces): Add xref to `(emacs)Standard Faces'.
5224 (Displaying Faces): Fix xref to `Standard Faces'.
5225
5226 * modes.texi (Mode Line Data): Fix xref to Standard Faces.
5227
52282005-08-20 Alan Mackenzie <acm@muc.de>
5229
5230 * buffers.texi (The Buffer List): Clarify the manipulation of the
5231 buffer list.
5232
52332005-08-14 Richard M. Stallman <rms@gnu.org>
5234
5235 * modes.texi (Auto Major Mode): interpreter-mode-alist key is not
5236 a regexp.
5237
52382005-08-11 Richard M. Stallman <rms@gnu.org>
5239
5240 * elisp.texi (Top): Update subnode lists.
5241
5242 * display.texi (Inverse Video): Node deleted.
5243
5244 * tips.texi (Key Binding Conventions, Programming Tips, Warning Tips):
5245 New nodes split out of Coding Conventions.
5246
5247 * searching.texi (Regular Expressions): Document re-builder.
5248
5249 * os.texi (Time Parsing): New node split out of Time Conversion.
5250
5251 * processes.texi (Misc Network, Network Feature Testing)
5252 (Network Options, Make Network): New nodes split out of
5253 Low-Level Network.
5254
52552005-08-09 Richard M. Stallman <rms@gnu.org>
5256
5257 * frames.texi (Geometry): New node, split from Size and Position.
5258 (Frame Parameters): Refer to Geometry.
5259
5260 * buffers.texi (The Buffer List): Fix xrefs.
5261
5262 * windows.texi (Splitting Windows): Fix xref.
5263
5264 * frames.texi (Layout Parameters): Add xref.
5265
5266 * display.texi (Line Height, Scroll Bars): Fix xrefs.
5267
5268 * keymaps.texi (Menu Bar): Fix xref.
5269
5270 * locals.texi (Standard Buffer-Local Variables): Fix xref.
5271
5272 * modes.texi (%-Constructs): Fix xref.
5273
5274 * frames.texi (Window Frame Parameters): Node split up.
5275 (Basic Parameters, Position Parameters, Size Parameters)
5276 (Layout Parameters, Buffer Parameters, Management Parameters)
5277 (Cursor Parameters, Color Parameters): New subnodes.
5278
52792005-08-09 Luc Teirlinck <teirllm@auburn.edu>
5280
5281 * positions.texi (Screen Lines): Update xref for previous change
5282 in minibuf.texi.
5283
5284 * minibuf.texi (Intro to Minibuffers): Update pxref for previous
5285 change in minibuf.texi.
5286
52872005-08-09 Richard M. Stallman <rms@gnu.org>
5288
5289 * tips.texi (Coding Conventions): Minor cleanup.
5290
5291 * modes.texi (Defining Minor Modes): Explain when init-value
5292 can be non-nil.
5293
5294 * elisp.texi (Top): Update submenu for Minibuffer.
5295
5296 * minibuf.texi (Minibuffer Misc): Node split up.
5297 (Minibuffer Commands, Minibuffer Windows, Minibuffer Contents)
5298 (Recursive Mini): New nodes split out from Minibuffer Misc.
5299 (Minibuffer Misc): Document max-mini-window-height.
5300
5301 * hash.texi (Defining Hash): Delete stray paren in example.
5302
5303 * display.texi (Echo Area Customization): Don't define
5304 max-mini-window-height here; xref instead.
5305
5306 * commands.texi (Event Input Misc): Update while-no-input.
5307
5308 * advice.texi (Advising Functions): Explain when to use advice
5309 and when to use a hook.
5310
53112005-07-30 Eli Zaretskii <eliz@gnu.org>
5312
5313 * makefile.w32-in (info): Don't run install-info.
5314 ($(infodir)/dir): New target, produced by running install-info.
5315
53162005-07-27 Luc Teirlinck <teirllm@auburn.edu>
5317
5318 * modes.texi (Defining Minor Modes): The keyword for the initial
5319 value is :init-value, not :initial-value.
5320
53212005-07-23 Eli Zaretskii <eliz@gnu.org>
5322
5323 * loading.texi (Autoload): Make the `doctor' example be consistent
5324 with what's in current loaddefs.el. Describe the "fn" magic in
5325 the usage portion of the doc string.
5326
53272005-07-22 Richard M. Stallman <rms@gnu.org>
5328
5329 * internals.texi (Garbage Collection): Clarify previous change.
5330
53312005-07-21 Stefan Monnier <monnier@iro.umontreal.ca>
5332
5333 * internals.texi (Garbage Collection): Add gc-cons-percentage.
5334
53352005-07-18 Juri Linkov <juri@jurta.org>
5336
5337 * commands.texi (Accessing Events):
5338 * frames.texi (Text Terminal Colors, Resources):
5339 * markers.texi (The Mark):
5340 * modes.texi (Defining Minor Modes):
5341 Delete duplicate duplicate words.
5342
53432005-07-16 Richard M. Stallman <rms@gnu.org>
5344
5345 * display.texi (Managing Overlays): Clarify make-overlay
5346 args for insertion types.
5347
53482005-07-13 Luc Teirlinck <teirllm@auburn.edu>
5349
5350 * customize.texi (Variable Definitions):
5351 Add `custom-initialize-safe-set' and `custom-initialize-safe-default'.
5352 `standard-value' is a list too.
5353 (Defining New Types): Use @key{RET} instead of @key{ret}.
5354
53552005-07-13 Francis Litterio <franl@world.std.com> (tiny change)
5356
5357 * os.texi (Translating Input): Fix typo.
5358
53592005-07-08 Richard M. Stallman <rms@gnu.org>
5360
5361 * README: Update edition number and size estimate.
5362
5363 * elisp.texi (VERSION): Set to 2.9.
5364
53652005-07-07 Richard M. Stallman <rms@gnu.org>
5366
5367 * book-spine.texinfo: Update Emacs version.
5368
5369 * display.texi (Inverse Video): Delete mode-line-inverse-video.
5370
53712005-07-06 Richard M. Stallman <rms@gnu.org>
5372
5373 * searching.texi (Regexp Search): Clarify what re-search-forward
5374 does when the search fails.
5375
53762005-07-05 Lute Kamstra <lute@gnu.org>
5377
5378 * Update FSF's address in GPL notices.
5379
5380 * doclicense.texi (GNU Free Documentation License):
5381 * gpl.texi (GPL):
5382 * tips.texi (Coding Conventions, Library Headers):
5383 * vol1.texi:
5384 * vol2.texi: Update FSF's address.
5385
53862005-07-04 Richard M. Stallman <rms@gnu.org>
5387
5388 * hooks.texi (Standard Hooks): Add occur-hook.
5389
53902005-07-03 Luc Teirlinck <teirllm@auburn.edu>
5391
5392 * display.texi (The Echo Area): Correct menu.
5393
53942005-07-03 Richard M. Stallman <rms@gnu.org>
5395
5396 * elisp.texi (Top): Update subnode menu for Display.
5397
5398 * display.texi (Displaying Messages): New node, with most
5399 of what was in The Echo Area.
5400 (Progress): Move under The Echo Area.
5401 (Logging Messages): New node with new text.
5402 (Echo Area Customization): New node, the rest of what was
5403 in The Echo Area. Document message-truncate-lines with @defvar.
5404 (Display): Update menu.
5405
5406 * windows.texi (Textual Scrolling): Doc 3 values for
5407 scroll-preserve-screen-position.
5408
5409 * text.texi (Special Properties): Change hook functions
5410 should bind inhibit-modification-hooks around altering buffer text.
5411
5412 * keymaps.texi (Key Binding Commands): Call binding BINDING
5413 rather than DEFINITION.
5414
54152005-06-29 Juanma Barranquero <lekktu@gmail.com>
5416
5417 * variables.texi (Defining Variables): `user-variable-p' returns t
5418 for aliases of user options, nil for alias loops.
5419
54202005-06-28 Richard M. Stallman <rms@gnu.org>
5421
5422 * keymaps.texi (Creating Keymaps): Put make-sparse-keymap before
5423 make-keymap.
5424
54252005-06-27 Luc Teirlinck <teirllm@auburn.edu>
5426
5427 * variables.texi (Setting Variables): Correct and clarify
5428 description of `add-to-ordered-list'.
5429
54302005-06-26 Richard M. Stallman <rms@gnu.org>
5431
5432 * display.texi (Faces): Minor cleanup.
5433
54342005-06-25 Luc Teirlinck <teirllm@auburn.edu>
5435
5436 * display.texi (Faces): `facep' returns t for strings that are
5437 face names.
5438
54392005-06-25 Richard M. Stallman <rms@gnu.org>
5440
5441 * objects.texi (Equality Predicates): Clarify meaning of equal.
5442
5443 * windows.texi (Selecting Windows): save-selected-window
5444 and with-selected-window save and restore the current buffer.
5445
54462005-06-24 Richard M. Stallman <rms@gnu.org>
5447
5448 * numbers.texi (Float Basics): Explain how to test for NaN,
5449 and printing the sign of NaNs.
5450
54512005-06-24 Eli Zaretskii <eliz@gnu.org>
5452
5453 * makefile.w32-in (MAKEINFO): Use --force.
5454
54552005-06-23 Richard M. Stallman <rms@gnu.org>
5456
5457 * display.texi (Face Functions): Correct Texinfo usage.
5458
54592005-06-23 Luc Teirlinck <teirllm@auburn.edu>
5460
5461 * lists.texi (Rings): `ring-elements' now returns the elements of
5462 RING in order.
5463
54642005-06-23 Juanma Barranquero <lekktu@gmail.com>
5465
5466 * markers.texi (The Mark): Texinfo usage fix.
5467
54682005-06-23 Kim F. Storm <storm@cua.dk>
5469
5470 * searching.texi (Entire Match Data): Remove evaporate option for
5471 match-data. Do not mention evaporate option for set-match-data.
5472
54732005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
5474
5475 * display.texi (Face Functions): Mention face aliases.
5476
54772005-06-21 Richard M. Stallman <rms@gnu.org>
5478
5479 * anti.texi (Antinews): Texinfo usage fix.
5480
54812005-06-21 Karl Berry <karl@gnu.org>
5482
5483 * elisp.texi: Use @copying.
5484
5485 * elisp.texi: Put @summarycontents and @contents before the Top
5486 node, instead of the end of the file, so that the contents appear
5487 in the right place in the dvi/pdf output.
5488
54892005-06-21 Juri Linkov <juri@jurta.org>
5490
5491 * display.texi (Defining Faces): Add `customized-face'.
5492
54932005-06-20 Kim F. Storm <storm@cua.dk>
5494
5495 * variables.texi (Setting Variables): Any type of element can be
5496 given order in add-to-ordered-list. Compare elements with eq.
5497
5498 * lists.texi (Rearrangement): Sort predicate may just return non-nil.
5499
55002005-06-20 Karl Berry <karl@gnu.org>
5501
5502 * syntax.texi (Syntax Flags): Make last column very slightly wider
5503 to avoid "generic comment" breaking on two lines and causing an
5504 underfull box.
5505
55062005-06-19 Luc Teirlinck <teirllm@auburn.edu>
5507
5508 * lists.texi (Rings): Various minor clarifications and corrections.
5509
55102005-06-18 Richard M. Stallman <rms@gnu.org>
5511
5512 * functions.texi (Obsolete Functions): Simplify.
5513
5514 * variables.texi (Variable Aliases): Simplify.
5515
5516 * anti.texi, backups.texi, compile.texi, customization.texi:
5517 * debugging.texi, display.texi, edebug.texi, errors.texi, frames.texi:
5518 * functions.texi, help.texi, keymaps.texi, modes.texi, nonascii.texi:
5519 * os.texi, processes.texi, searching.texi, strings.texi, text.texi:
5520 * variables.texi: Fix formatting ugliness.
5521
5522 * elisp.texi: Add links to Rings and Byte Packing.
5523 Update version and copyright years.
5524
5525 * minibuf.texi: Fix formatting ugliness.
5526 (Completion Commands): Move keymap vars to the end
5527 and vars completing-read binds to the top.
5528
55292005-06-17 Luc Teirlinck <teirllm@auburn.edu>
5530
5531 * processes.texi: Fix typos.
5532 (Bindat Spec): Correct Texinfo error.
5533 (Byte Packing): Fix ungrammatical sentence.
5534
55352005-06-17 Thien-Thi Nguyen <ttn@gnu.org>
5536
5537 * lists.texi (Rings): New node.
5538 (Lists): Add it to menu.
5539
5540 * processes.texi (Byte Packing): New node.
5541 (Processes): Add it to menu.
5542
55432005-06-17 Richard M. Stallman <rms@gnu.org>
5544
5545 * syntax.texi (Parsing Expressions): Fix texinfo usage.
5546
5547 * help.texi (Documentation Basics): Explain the xref to
5548 Documentation Tips.
5549
5550 * debugging.texi (Debugger Commands): Minor fix.
5551
55522005-06-16 Luc Teirlinck <teirllm@auburn.edu>
5553
5554 * edebug.texi (Instrumenting): Eliminate duplicate link.
5555 (Specification List): Replace references to "below", referring to
5556 a later node, with one @ref to that node.
5557
5558 * os.texi (Timers): Timers should save and restore the match data
5559 if they change it.
5560
5561 * debugging.texi (Debugger Commands): Mention that the Lisp
5562 debugger can not step through primitive functions.
5563
55642005-06-16 Juanma Barranquero <lekktu@gmail.com>
5565
5566 * functions.texi (Obsolete Functions): Update argument names of
5567 `make-obsolete' and `define-obsolete-function-alias'.
5568
5569 * variables.texi (Variable Aliases): Update argument names of
5570 `defvaralias', `make-obsolete-variable' and
5571 `define-obsolete-variable-alias'.
5572
55732005-06-15 Kim F. Storm <storm@cua.dk>
5574
5575 * searching.texi (Entire Match Data): Rephrase warnings about
5576 evaporate arg to match-data and set-match-data.
5577
55782005-06-14 Luc Teirlinck <teirllm@auburn.edu>
5579
5580 * elisp.texi (Top): Update detailed menu.
5581
5582 * edebug.texi (Edebug): Update menu.
5583 (Instrumenting): Update xrefs.
5584 (Edebug Execution Modes): Correct xref.
5585 (Jumping): Clarify description of `h' command.
5586 Eliminate redundant @ref.
5587 (Breaks): New node.
5588 (Breakpoints): Is now a subsubsection.
5589 (Global Break Condition): Mention `C-x X X'.
5590 (Edebug Views): Clarify `v' and `p'. Mention `C-x X w'.
5591 (Trace Buffer): Clarify STRING arg of `edebug-tracing'.
5592 (Edebug Display Update): Correct pxref.
5593 (Edebug and Macros): New node.
5594 (Instrumenting Macro Calls): Is now a subsubsection.
5595 Neither arg of `def-edebug-spec' is evaluated.
5596 (Instrumenting Macro Calls): Mention `edebug-eval-macro-args'.
5597 (Specification Examples): Fix typo.
5598
55992005-06-14 Lute Kamstra <lute@gnu.org>
5600
5601 * debugging.texi (Function Debugging): Primitives can break on
5602 entry too.
5603
56042005-06-14 Kim F. Storm <storm@cua.dk>
5605
5606 * variables.texi (Setting Variables): Add add-to-ordered-list.
5607
56082005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5609
5610 * syntax.texi (Parsing Expressions): Document aux functions and vars of
5611 syntax-ppss: syntax-ppss-flush-cache and syntax-begin-function.
5612
56132005-06-13 Lute Kamstra <lute@gnu.org>
5614
5615 * text.texi (Special Properties): Fix cross reference.
5616
56172005-06-11 Luc Teirlinck <teirllm@auburn.edu>
5618
5619 * debugging.texi (Function Debugging): Delete mention of empty
5620 string argument to `cancel-debug-on-entry'. Delete inaccurate
5621 description of the return value of that command.
5622
56232005-06-11 Alan Mackenzie <acm@muc.de>
5624
5625 * text.texi (Adaptive Fill): Amplify the description of
5626 fill-context-prefix.
5627
56282005-06-10 Luc Teirlinck <teirllm@auburn.edu>
5629
5630 * syntax.texi (Parsing Expressions): Fix Texinfo error.
5631
56322005-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
5633
5634 * syntax.texi (Parsing Expressions): Document syntax-ppss.
5635
56362005-06-10 Luc Teirlinck <teirllm@auburn.edu>
5637
5638 * debugging.texi (Error Debugging): Minor rewording.
5639 (Function Debugging): FUNCTION-NAME arg to `cancel-debug-on-entry'
5640 is optional.
5641
56422005-06-10 Lute Kamstra <lute@gnu.org>
5643
5644 * elisp.texi: Use EMACSVER to refer to the current version of Emacs.
5645 (Top): Give it a title. Correct version number. Give the
5646 detailed node listing a more prominent header.
5647 * intro.texi: Don't set VERSION here a second time.
5648 Mention Emacs's version too.
5649 * anti.texi (Antinews): Use EMACSVER to refer to the current
5650 version of Emacs.
5651
56522005-06-09 Kim F. Storm <storm@cua.dk>
5653
5654 * searching.texi (Entire Match Data): Explain new `reseat' argument to
5655 match-data and set-match-data.
5656
56572005-06-08 Richard M. Stallman <rms@gnu.org>
5658
5659 * searching.texi (Entire Match Data): Clarify when match-data
5660 returns markers and when integers.
5661
5662 * display.texi (Defining Faces): Explain that face name should not
5663 end in `-face'.
5664
5665 * modes.texi (Mode Line Data): Minor cleanup.
5666 (Customizing Keywords): Node split out of Search-based Fontification.
5667 Add example of using font-lock-add-keywords from a hook.
5668 Clarify when MODE should be non-nil, and when nil.
5669
56702005-06-06 Richard M. Stallman <rms@gnu.org>
5671
5672 * modes.texi (Mode Line Data): Explain what happens when the car
5673 of a list is a void symbol.
5674 (Search-based Fontification): Explain MODE arg to
5675 font-lock-add-keywords and warn about calls from major modes.
5676
56772005-06-08 Juri Linkov <juri@jurta.org>
5678
5679 * display.texi (Standard Faces): Add `shadow' face.
5680
56812005-05-29 Luc Teirlinck <teirllm@auburn.edu>
5682
5683 * modes.texi (Major Mode Conventions): A derived mode only needs
5684 to put the call to the parent mode inside `delay-mode-hooks'.
5685
56862005-05-29 Richard M. Stallman <rms@gnu.org>
5687
5688 * modes.texi (Mode Hooks): Explain that after-change-major-mode-hook is
5689 new, and what that implies. Clarify.
5690
5691 * files.texi (Locating Files): Clean up the text.
5692
5693 * frames.texi (Window Frame Parameters): Document user-size.
5694 Shorten entry for top by referring to left.
5695
56962005-05-26 Richard M. Stallman <rms@gnu.org>
5697
5698 * modes.texi (Mode Hooks): Explain that after-change-major-mode-hook
5699 is new, and what the implications are. Other clarifications.
5700
57012005-05-24 Richard M. Stallman <rms@gnu.org>
5702
5703 * frames.texi (Dialog Boxes): Minor fixes.
5704
57052005-05-25 Masatake YAMATO <jet@gyve.org>
5706
5707 * display.texi (Standard Faces): Write about `mode-line-highlight'.
5708
57092005-05-24 Luc Teirlinck <teirllm@auburn.edu>
5710
5711 * frames.texi (Dialog Boxes): HEADER argument to `x-popup-dialog'
5712 is optional.
5713
57142005-05-24 Nick Roberts <nickrob@snap.net.nz>
5715
5716 * frames.texi (Dialog Boxes): Describe new optional argument.
5717
57182005-05-23 Lute Kamstra <lute@gnu.org>
5719
5720 * modes.texi (Font Lock Basics, Syntactic Font Lock): Recommend
5721 syntax-begin-function over font-lock-beginning-of-syntax-function.
5722
57232005-05-21 Luc Teirlinck <teirllm@auburn.edu>
5724
5725 * minibuf.texi (Reading File Names): Update description of
5726 `read-directory-name'.
5727
5728 * modes.texi (Derived Modes): Clarify :group keyword.
5729
57302005-05-21 Eli Zaretskii <eliz@gnu.org>
5731
5732 * files.texi (Locating Files): New subsection.
5733 Describe locate-file and executable-find.
5734
57352005-05-21 Kevin Ryde <user42@zip.com.au>
5736
5737 * frames.texi (Initial Parameters): Update cross reference to
5738 "Emacs Invocation".
5739
57402005-05-19 Luc Teirlinck <teirllm@auburn.edu>
5741
5742 * keymaps.texi (Active Keymaps): Add anchor.
5743
5744 * modes.texi (Hooks): Delete confusing and unnecessary sentence.
5745 (Major Mode Conventions): Refer to `Auto Major Mode' in more
5746 appropriate place.
5747 (Derived Modes): Small clarifications.
5748 (Minor Mode Conventions, Keymaps and Minor Modes):
5749 Replace references to nodes with references to anchors.
5750 (Mode Line Data): Warn that `(:eval FORM)' should not load any files.
5751 Clarify description of lists whose first element is an integer.
5752 (Mode Line Variables): Add anchor.
5753 (%-Constructs): Clarify description of integer after %.
5754 (Emulating Mode Line): Describe nil value for FACE.
5755
57562005-05-18 Luc Teirlinck <teirllm@auburn.edu>
5757
5758 * modes.texi (Derived Modes): Correct references to non-existing
5759 variable standard-syntax-table.
5760
57612005-05-17 Lute Kamstra <lute@gnu.org>
5762
5763 * modes.texi (Defining Minor Modes): Mention the mode hook.
5764
57652005-05-15 Kim F. Storm <storm@cua.dk>
5766
5767 * processes.texi (Network): Remove open-network-stream-nowait.
5768 (Network Servers): Remove open-network-stream-server.
5769
57702005-05-15 Luc Teirlinck <teirllm@auburn.edu>
5771
5772 * elisp.texi (Top): Update detailed menu.
5773
5774 * variables.texi: Reorder nodes.
5775 (Variables): Update menu.
5776 (File Local Variables): Do not refer to the `-*-' line as
5777 a "local variables list". Add pxref.
5778
57792005-05-14 Luc Teirlinck <teirllm@auburn.edu>
5780
5781 * elisp.texi (Top): Update detailed menu for node changes.
5782
5783 * modes.texi (Modes): Update Menu.
5784 (Hooks): Move to beginning of chapter.
5785 Most minor modes run mode hooks too.
5786 `add-hook' can handle void hooks or hooks whose value is a single
5787 function.
5788 (Major Modes): Update Menu.
5789 (Major Mode Basics): New node, split off from `Major Modes'.
5790 (Major Mode Conventions): Correct xref. Explain how to handle
5791 auto-mode-alist if the major mode command has an autoload cookie.
5792 (Auto Major Mode): Major update. Add magic-mode-alist.
5793 (Derived Modes): Major update.
5794 (Mode Line Format): Update Menu.
5795 (Mode Line Basics): New node, split off from `Mode Line Format'.
5796
5797 * loading.texi (Autoload): Mention `autoload cookie' as synonym
5798 for `magic autoload comment'. Add index entries and anchor.
5799
58002005-05-14 Richard M. Stallman <rms@gnu.org>
5801
5802 * tips.texi (Coding Conventions): Explain how important it is
5803 that just loading certain files not change Emacs behavior.
5804
5805 * modes.texi (Defining Minor Modes): Define define-global-minor-mode.
5806
58072005-05-12 Lute Kamstra <lute@gnu.org>
5808
5809 * modes.texi (Generic Modes): Update.
5810 (Major Modes): Refer to node "Generic Modes".
5811
5812 * elisp.texi (Top): Update to the current structure of the manual.
5813 * processes.texi (Processes): Add menu description.
5814 * customize.texi (Customization): Add menu descriptions.
5815
58162005-05-11 Thien-Thi Nguyen <ttn@gnu.org>
5817
5818 * processes.texi (Signals to Processes)
5819 (Low-Level Network): Fix typos.
5820
58212005-05-11 Lute Kamstra <lute@gnu.org>
5822
5823 * elisp.texi (Top): Add some nodes from the chapter "Major and
5824 Minor Modes" to the detailed node listing.
5825
58262005-05-10 Richard M. Stallman <rms@gnu.org>
5827
5828 * keymaps.texi (Extended Menu Items): Menu item filter functions
5829 can be called at any time.
5830
58312005-05-08 Luc Teirlinck <teirllm@auburn.edu>
5832
5833 * variables.texi (File Local Variables): `(hack-local-variables t)'
5834 now also checks whether a mode is specified in the local variables
5835 list.
5836
58372005-05-05 Kevin Ryde <user42@zip.com.au>
5838
5839 * display.texi (The Echo Area): Correct format function cross
5840 reference.
5841
58422005-05-05 Luc Teirlinck <teirllm@auburn.edu>
5843
5844 * variables.texi (Variable Aliases): Change description of
5845 `define-obsolete-variable-alias'.
5846
5847 * functions.texi (Functions): Add "Obsolete Functions" to menu.
5848 (Defining Functions): Add xref.
5849 (Obsolete Functions): New node.
5850 (Function Safety): Standardize capitalization of section title.
5851
5852 * frames.texi (Pop-Up Menus): Complete description of `x-popup-menu'.
5853 (Dialog Boxes): Complete description of `x-popup-dialog'.
5854
58552005-05-04 Richard M. Stallman <rms@gnu.org>
5856
5857 * commands.texi (Interactive Codes): Fix Texinfo usage.
5858 Document U more clearly.
5859
58602005-05-01 Luc Teirlinck <teirllm@auburn.edu>
5861
5862 * variables.texi (Variable Aliases): `make-obsolete-variable' is a
5863 function and not a macro.
5864
5865 * frames.texi (Pop-Up Menus): Correct and clarify description of
5866 `x-popup-menu'.
5867 (Dialog Boxes): Clarify description of `x-popup-dialog'.
5868
58692005-05-01 Richard M. Stallman <rms@gnu.org>
5870
5871 * edebug.texi (Checking Whether to Stop): Fix previous change.
5872
58732005-05-01 Luc Teirlinck <teirllm@auburn.edu>
5874
5875 * display.texi: Fix typos and Texinfo usage.
5876
5877 * edebug.texi (Checking Whether to Stop): executing-macro ->
5878 executing-kbd-macro.
5879
58802005-05-01 Richard M. Stallman <rms@gnu.org>
5881
5882 * display.texi (Invisible Text): Correct add-to-invisibility-spec.
5883
58842005-04-30 Richard M. Stallman <rms@gnu.org>
5885
5886 * files.texi (Magic File Names): Document `operations' property.
5887
58882005-04-29 Lute Kamstra <lute@gnu.org>
5889
5890 * modes.texi (Generic Modes): New node.
5891 (Major Modes): Add it to the menu.
5892 (Derived Modes): Add "derived mode" to concept index.
5893
58942005-04-28 Lute Kamstra <lute@gnu.org>
5895
5896 * modes.texi (Defining Minor Modes): Fix previous change.
5897 (Font Lock Mode): Simplify.
5898 (Font Lock Basics): Say that font-lock-defaults is buffer-local
5899 when set and that some parts are optional. Add cross references.
5900 (Search-based Fontification): Say how to specify font-lock-keywords.
5901 Add cross references. Add font-lock-multiline to index.
5902 Move font-lock-keywords-case-fold-search here from node "Other Font
5903 Lock Variables". Document font-lock-add-keywords and
5904 font-lock-remove-keywords.
5905 (Other Font Lock Variables): Move font-lock-keywords-only,
5906 font-lock-syntax-table, font-lock-beginning-of-syntax-function,
5907 and font-lock-syntactic-face-function to node "Syntactic Font
5908 Lock". Move font-lock-keywords-case-fold-search to node
5909 "Search-based Fontification". Document font-lock-inhibit-thing-lock
5910 and font-lock-{,un}fontify-{buffer,region}-function.
5911 (Precalculated Fontification): Remove reference to deleted variable
5912 font-lock-core-only.
5913 (Faces for Font Lock): Add font-lock-comment-delimiter-face.
5914 (Syntactic Font Lock): Add intro. Move font-lock-keywords-only,
5915 font-lock-syntax-table, font-lock-beginning-of-syntax-function,
5916 and font-lock-syntactic-face-function here from node "Other Font
5917 Lock Variables". Move font-lock-syntactic-keywords to "Setting
5918 Syntax Properties". Add cross references.
5919 (Setting Syntax Properties): New node.
5920 Move font-lock-syntactic-keywords here from "Syntactic Font Lock".
5921 * syntax.texi (Syntax Properties): Add cross reference.
5922 * hooks.texi (Standard Hooks): Add Font-Lock hooks.
5923
59242005-04-26 Richard M. Stallman <rms@gnu.org>
5925
5926 * display.texi (Defining Faces):
5927 Document `default' elements of defface spec.
5928
5929 * modes.texi (Major Mode Conventions): Explain customizing ElDoc mode.
5930
5931 * variables.texi (Variable Aliases): Clarify text.
5932
59332005-04-25 Chong Yidong <cyd@stupidchicken.com>
5934
5935 * windows.texi (Window Hooks): Remove reference to obsolete Lazy Lock.
5936
59372005-04-25 Luc Teirlinck <teirllm@auburn.edu>
5938
5939 * hooks.texi (Standard Hooks): Most minor modes have mode hooks too.
5940
59412005-04-24 Eli Zaretskii <eliz@gnu.org>
5942
5943 * syntax.texi (Syntax Table Internals): Elaborate documentation of
5944 syntax-after and syntax-class.
5945
5946 * files.texi (Changing Files): Fix last change's cross-reference.
5947 (Unique File Names): Don't mention "numbers" in the documentation
5948 of make-temp-file and make-temp-name.
5949
59502005-04-23 Richard M. Stallman <rms@gnu.org>
5951
5952 * files.texi (Changing Files): Document MUSTBENEW arg in copy-file.
5953
59542005-04-22 Nick Roberts <nickrob@snap.net.nz>
5955
5956 * windows.texi (Cyclic Window Ordering): Clarify window-list.
5957
59582005-04-22 Nick Roberts <nickrob@snap.net.nz>
5959
5960 * variables.texi (Variable Aliases): Describe make-obsolete-variable
5961 and define-obsolete-variable-alias.
5962
59632005-04-22 Kim F. Storm <storm@cua.dk>
5964
5965 * symbols.texi (Symbol Plists): Remove safe-get, as get is now safe.
5966 (Other Plists): Remove safe-plist-get, as plist-get is now safe.
5967
59682005-04-21 Lute Kamstra <lute@gnu.org>
5969
5970 * lists.texi (Association Lists): Document rassq-delete-all.
5971
59722005-04-19 Richard M. Stallman <rms@gnu.org>
5973
5974 * modes.texi (Search-based Fontification): Explain that
5975 facespec is an expression to be evaluated.
5976
59772005-04-19 Kevin Ryde <user42@zip.com.au>
5978
5979 * streams.texi (Output Functions): Fix xref.
5980 * strings.texi (String Conversion): Fix xref.
5981
59822005-04-19 Kim F. Storm <storm@cua.dk>
5983
5984 * symbols.texi (Symbol Plists): Add safe-get.
5985 Mention that `get' may signal an error.
5986
59872005-04-18 Nick Roberts <nickrob@snap.net.nz>
5988
5989 * customize.texi (Variable Definitions): Replace tooltip-mode
5990 example with save-place.
5991
59922005-04-17 Richard M. Stallman <rms@gnu.org>
5993
5994 * buffers.texi (Indirect Buffers): Clarify.
5995
5996 * positions.texi (Positions): Clarify converting marker to integer.
5997
5998 * strings.texi (String Basics): Mention string-match; clarify.
5999
60002005-04-08 Lute Kamstra <lute@gnu.org>
6001
6002 * modes.texi (Search-based Fontification): Fix cross references.
6003 Use consistent terminology. Document anchored highlighting.
6004
60052005-04-05 Lute Kamstra <lute@gnu.org>
6006
6007 * modes.texi (Defining Minor Modes): Document :group keyword
6008 argument and its default value.
6009
60102005-04-03 Lute Kamstra <lute@gnu.org>
6011
6012 * hooks.texi (Standard Hooks): Add some hooks. Add cross
6013 references and/or descriptions. Delete major mode hooks; mention
6014 them as a category instead. Rename or delete obsolete hooks.
6015
60162005-04-02 Richard M. Stallman <rms@gnu.org>
6017
6018 * nonascii.texi (Coding System Basics): Another wording cleanup.
6019
60202005-04-01 Richard M. Stallman <rms@gnu.org>
6021
6022 * nonascii.texi (Coding System Basics): Clarify previous change.
6023
60242005-04-01 Kenichi Handa <handa@m17n.org>
6025
6026 * nonascii.texi (Coding System Basics): Describe about roundtrip
6027 identity of coding systems.
6028
60292005-03-29 Chong Yidong <cyd@stupidchicken.com>
6030
6031 * text.texi (Buffer Contents): Add filter-buffer-substring and
6032 buffer-substring-filters.
6033
60342005-03-26 Chong Yidong <cyd@stupidchicken.com>
6035
6036 * anti.texi (Antinews): Mention `G' interactive code.
6037
6038 * tips.texi (Compilation Tips): Mention benchmark.el.
6039
60402005-03-27 Luc Teirlinck <teirllm@auburn.edu>
6041
6042 * modes.texi (Other Font Lock Variables): `font-lock-fontify-block'
6043 is now bound to M-o M-o.
6044
6045 * keymaps.texi (Prefix Keys): `facemenu-keymap' is now on M-o.
6046
60472005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
6048
6049 * calendar.texi: Delete file (and move contents to emacs-xtra.texi
6050 in the Emacs Manual).
6051 * Makefile.in (srcs): Remove calendar.texi.
6052 * makefile.w32-in (srcs): Remove calendar.texi.
6053 * display.texi (Display): Change name of next node.
6054 * os.texi (System In): Change name of previous node.
6055 * elisp.texi (Top): Remove Calendar references.
6056 * vol1.texi (Top): Remove Calendar references.
6057 * vol2.texi (Top): Remove Calendar references.
6058
60592005-03-25 Richard M. Stallman <rms@gnu.org>
6060
6061 * display.texi (Standard Faces, Fringe Bitmaps, Customizing Bitmaps):
6062 Cleanup previous change.
6063
60642005-03-25 Chong Yidong <cyd@stupidchicken.com>
6065
6066 * display.texi (Face Attributes): Faces earlier in an :inherit
6067 list take precedence.
6068 (Scroll Bars): Fix description of vertical-scroll-bars.
6069 Document frame-current-scroll-bars and window-current-scroll-bars.
6070
6071 * markers.texi (The Mark): Document temporary Transient Mark mode.
6072
6073 * minibuf.texi (Reading File Names):
6074 Document read-file-name-completion-ignore-case.
6075
6076 * positions.texi (Screen Lines): Document nil for width argument
6077 to compute-motion.
6078
60792005-03-23 Kim F. Storm <storm@cua.dk>
6080
6081 * display.texi (Standard Faces): Other faces used in the fringe
6082 implicitly inherits from the fringe face.
6083 (Fringe Bitmaps): FACE in right-fringe and left-fringe display
6084 properties implicitly inherits from fringe face.
6085 (Customizing Bitmaps): Likewise for set-fringe-bitmap-face.
6086
60872005-03-20 Chong Yidong <cyd@stupidchicken.com>
6088
6089 * display.texi (Invisible Text): State default value of
6090 line-move-ignore-invisible.
6091 (Managing Overlays): Document remove-overlays.
6092 (Standard Faces): Document escape-glyph face.
6093
6094 * minibuf.texi (Reading File Names): Document read-file-name-function.
6095
6096 * modes.texi (Other Font Lock Variables):
6097 Document font-lock-lines-before.
6098
6099 * positions.texi (Skipping Characters): skip-chars-forward allows
6100 character classes.
6101
61022005-03-18 Lute Kamstra <lute@gnu.org>
6103
6104 * edebug.texi (Instrumenting Macro Calls): Fix another typo.
6105
61062005-03-17 Richard M. Stallman <rms@gnu.org>
6107
6108 * text.texi (Undo): Document extensible undo entries.
6109
6110 * searching.texi (String Search, Regexp Search): Cleanups.
6111
6112 * nonascii.texi (Character Codes): Minor fix.
6113
6114 * display.texi (Display Property): Explain the significance
6115 of having text properties that are eq.
6116 (Other Display Specs): Explain string as display spec.
6117
6118 * commands.texi (Interactive Codes): Document G option.
6119
61202005-03-17 Chong Yidong <cyd@stupidchicken.com>
6121
6122 * text.texi (Filling): Add sentence-end-without-period and
6123 sentence-end-without-space.
6124 (Changing Properties): Minor fix.
6125
6126 * anti.texi: Total rewrite.
6127
61282005-03-15 Lute Kamstra <lute@gnu.org>
6129
6130 * edebug.texi (Instrumenting Macro Calls): Fix typos.
6131
61322005-03-08 Kim F. Storm <storm@cua.dk>
6133
6134 * display.texi (Specified Space): Property :width is support on
6135 non-graphic terminals, :height is not.
6136
61372005-03-07 Richard M. Stallman <rms@gnu.org>
6138
6139 * display.texi (Overlay Arrow, Fringe Bitmaps, Customizing Bitmaps):
6140 Now subnodes of Fringes.
6141 (Overlay Arrow): Document overlay-arrow-variable-list.
6142 (Fringe Size/Pos): New node, broken out of Fringes.
6143 (Display): Explain clearing vs redisplay better.
6144 (Truncation): Clarify use of bitmaps.
6145 (The Echo Area): Clarify the uses of the echo area.
6146 Add max-mini-window-height.
6147 (Progress): Clarify.
6148 (Invisible Text): Explain that main loop moves point out.
6149 (Selective Display): Say "hidden", not "invisible".
6150 (Managing Overlays): Move up. Describe relation to Undo here.
6151 (Overlay Properties): Clarify intro.
6152 (Finding Overlays): Explain return values when nothing found.
6153 (Width): truncate-string-to-width has added arg.
6154 (Displaying Faces): Clarify and update mode line face handling.
6155 (Face Functions): Minor cleanup.
6156 (Conditional Display): Merge into Other Display Specs.
6157 (Pixel Specification, Other Display Specs): Minor cleanups.
6158 (Images, Image Descriptors): Minor cleanups.
6159 (GIF Images): Patents have expired.
6160 (Showing Images): Explain default text for insert-image.
6161 (Manipulating Button Types): Merge into Manipulating Buttons.
6162 (Making Buttons): Explain return values.
6163 (Button Buffer Commands): Add xref.
6164 (Inverse Video): Update mode-line-inverse-video.
6165 (Display Table Format): Clarify.
6166 (Active Display Table): Give defaults for window-display-table.
6167
6168 * calendar.texi (Calendar Customizing): calendar-holiday-marker
6169 and calendar-today-marker are strings, not chars.
6170 (Holiday Customizing): Minor fix.
6171
6172 * internals.texi (Writing Emacs Primitives): Update `or' example.
6173 Update limit on # args of subr.
6174
6175 * edebug.texi (Using Edebug): Arrow is in fringe.
6176 (Instrumenting): Arg to eval-defun works without loading edebug.
6177 (Edebug Execution Modes): Add xref.
6178
6179 * customize.texi (Common Keywords): Clarify :require.
6180 Mention :version here.
6181 (Variable Definitions, Group Definitions): Not here.
6182 (Variable Definitions): Clarify symbol arg to :initialize and :set fns.
6183
61842005-03-07 Chong Yidong <cyd@stupidchicken.com>
6185 * nonascii.texi (Text Representations): Clarify position-bytes.
6186 (Character Sets): Add list-charset-chars.
6187 (Scanning Charsets): Add charset-after.
6188 (Encoding and I/O): Minor fix.
6189
61902005-03-06 Richard M. Stallman <rms@gnu.org>
6191
6192 * windows.texi (Vertical Scrolling): Get rid of "Emacs 21".
6193 (Resizing Windows): Likewise.
6194
6195 * text.texi (Change Hooks): Get rid of "Emacs 21".
6196
6197 * strings.texi (Formatting Strings): Get rid of "Emacs 21".
6198
6199 * streams.texi (Output Variables): Get rid of "Emacs 21".
6200
6201 * searching.texi (Regexp Special, Char Classes): Get rid of "Emacs 21".
6202
6203 * os.texi (Translating Input): Replace flow-control example
6204 with a less obsolete example that uses `keyboard-translate'.
6205
6206 * objects.texi (Hash Table Type, Circular Objects):
6207 Get rid of "Emacs 21".
6208
6209 * modes.texi (Mode Line Format): Get rid of "Emacs 21".
6210 (Mode Line Data, Properties in Mode, Header Lines): Likewise.
6211
6212 * minibuf.texi (Minibuffer Misc): Get rid of "Emacs 21".
6213
6214 * lists.texi (List Elements, Building Lists): Get rid of "Emacs 21".
6215
6216 * keymaps.texi (Menu Separators, Tool Bar): Get rid of "Emacs 21".
6217 (Menu Bar): Fix when menu-bar-update-hook is called.
6218
6219 * hash.texi (Hash Tables): Get rid of "Emacs 21".
6220
6221 * frames.texi (Text Terminal Colors): Get rid of "Emacs 21",
6222 and make it read better.
6223
6224 * files.texi (Writing to Files): Get rid of "Emacs 21".
6225 (Unique File Names): Likewise.
6226
6227 * elisp.texi: Update Emacs version to 22.
6228
6229 * display.texi (Forcing Redisplay): Get rid of "Emacs 21".
6230 (Overlay Properties, Face Attributes): Likewise.
6231 (Managing Overlays): Fix punctuation.
6232 (Attribute Functions): Clarify set-face-font; get rid of
6233 info about old Emacs versions.
6234 (Auto Faces, Font Lookup, Display Property, Images):
6235 Get rid of "Emacs 21".
6236
6237 * calendar.texi (Calendar Customizing): Get rid of "Emacs 21".
6238
62392005-03-05 Richard M. Stallman <rms@gnu.org>
6240
6241 * debugging.texi (Error Debugging): Remove stack-trace-on-error.
6242
62432005-03-04 Lute Kamstra <lute@gnu.org>
6244
6245 * debugging.texi (Error Debugging): Document stack-trace-on-error.
6246
62472005-03-03 Lute Kamstra <lute@gnu.org>
6248
6249 * edebug.texi (Instrumenting Macro Calls): Fix typo.
6250
62512005-03-01 Lute Kamstra <lute@gnu.org>
6252
6253 * debugging.texi (Debugger Commands): Update `j'.
6254
62552005-02-28 Lute Kamstra <lute@gnu.org>
6256
6257 * debugging.texi (Debugging): Fix typo.
6258 (Error Debugging): Document eval-expression-debug-on-error.
6259 (Function Debugging): Update example.
6260 (Using Debugger): Mention starred stack frames.
6261 (Debugger Commands): Document `j' and `l'.
6262 (Invoking the Debugger): `d' and `j' exit recursive edit too.
6263 Update the messages that the debugger displays.
6264 (Internals of Debugger): Add cross reference. Update example.
6265 (Excess Open): Minor improvement.
6266 (Excess Close): Minor improvement.
6267
62682005-02-26 Richard M. Stallman <rms@gnu.org>
6269
6270 * tips.texi (Coding Conventions): Clarify.
6271 Put all the major mode key reservations together.
6272 Mention the Mouse-1 => Mouse-2 conventions.
6273
6274 * syntax.texi (Syntax Class Table): Clarify.
6275 (Syntax Table Functions): syntax-after moved from here.
6276 (Syntax Table Internals): syntax-after moved to here.
6277 (Parsing Expressions): Update info on number of values
6278 and what's meaningful in the STATE argument.
6279 (Categories): Fix typo.
6280
6281 * sequences.texi (Arrays): Cleanup.
6282 (Char-Tables): Clarify.
6283
6284 * processes.texi (Deleting Processes): Cleanups, add xref.
6285 (Subprocess Creation): Explain nil in exec-path. Cleanup.
6286 (Process Information): set-process-coding-system, some args optional.
6287 (Input to Processes): Explain various types for PROCESS args.
6288 Rename them from PROCESS-NAME to PROCESS.
6289 (Signals to Processes): Likewise.
6290 (Decoding Output): Cleanup.
6291 (Query Before Exit): Clarify.
6292
6293 * os.texi (Startup Summary): Correct the options; add missing ones.
6294 (Terminal Output, Batch Mode): Clarify.
6295 (Flow Control): Node deleted.
6296
6297 * markers.texi (The Mark): Clarify.
6298
6299 * macros.texi (Expansion): Cleanup.
6300 (Indenting Macros): indent-spec allows ints, not floats.
6301
6302 * keymaps.texi (Keymaps): Clarify.
6303 (Format of Keymaps): Update lisp-mode-map example.
6304 (Active Keymaps, Key Lookup): Clarify.
6305 (Changing Key Bindings): Add xref to `kbd'.
6306 (Key Binding Commands, Simple Menu Items): Clarify.
6307 (Mouse Menus, Menu Bar): Clarify.
6308 (Menu Example): Replace print example with menu-bar-replace-menu.
6309
6310 * help.texi (Documentation Basics): Add function-documentation prop.
6311
6312 * elisp.texi (Top): Don't refer to Flow Control node.
6313
6314 * commands.texi (Command Overview): Improve xrefs.
6315 (Adjusting Point): Adjusting point applies to intangible and invis.
6316 (Key Sequence Input): Doc extra read-key-sequence args.
6317 Likewise for read-key-sequence-vector.
6318
6319 * backups.texi (Rename or Copy): Minor fix.
6320 (Numbered Backups): For version-control, say the default.
6321 (Auto-Saving): make-auto-save-file-name example is simplified.
6322
6323 * advice.texi (Advising Functions): Don't imply one part of Emacs
6324 should advise another part. Markup changes.
6325 (Defining Advice): Move transitional para.
6326 (Activation of Advice): Cleanup.
6327 Explain if COMPILE is nil or negative.
6328
6329 * abbrevs.texi (Abbrev Expansion): Clarify, fix typo.
6330
63312005-02-24 Lute Kamstra <lute@gnu.org>
6332
6333 * modes.texi (Defining Minor Modes): Explain that INIT-VALUE,
6334 LIGHTER, and KEYMAP can be omitted when KEYWORD-ARGS are used.
6335
63362005-02-23 Lute Kamstra <lute@gnu.org>
6337
6338 * modes.texi (Defining Minor Modes): define-minor-mode can be used
6339 to define global minor modes as well.
6340
6341 * display.texi (Managing Overlays): overlay-buffer returns nil for
6342 deleted overlays.
6343
63442005-02-22 Kim F. Storm <storm@cua.dk>
6345
6346 * minibuf.texi (Basic Completion): Allow symbols in addition to
6347 strings in try-completion and all-completions.
6348
63492005-02-14 Lute Kamstra <lute@gnu.org>
6350
6351 * elisp.texi (Top): Remove reference to deleted node.
6352
6353 * lists.texi (Lists): Remove reference to deleted node.
6354 (Cons Cells): Fix typo.
6355
6356 * loading.texi (Where Defined): Fix typo.
6357
63582005-02-14 Richard M. Stallman <rms@gnu.org>
6359
6360 * variables.texi (Creating Buffer-Local): change-major-mode-hook
6361 is useful for discarding some minor modes.
6362
6363 * symbols.texi (Symbol Components): Reorder examples.
6364
6365 * streams.texi (Input Functions): State standard-input default.
6366 (Output Variables): State standard-output default.
6367
6368 * objects.texi (Printed Representation): Clarify read syntax vs print.
6369 (Floating Point Type): Explain meaning better.
6370 (Symbol Type): Explain uniqueness better.
6371 (Cons Cell Type): Explain empty list sooner. CAR and CDR later.
6372 List examples sooner.
6373 (Box Diagrams): New subnode broken out.
6374 Some examples moved from old Lists as Boxes node.
6375 (Dotted Pair Notation): Clarify intro.
6376 (Array Type): Clarify.
6377 (Type Predicates): Add hash-table-p.
6378
6379 * numbers.texi (Integer Basics): Clarify radix explanation.
6380 (Predicates on Numbers): Minor clarification.
6381 (Comparison of Numbers): Minor clarification. Clarify eql.
6382 Typos in min, max.
6383 (Math Functions): Clarify overflow in expt.
6384
6385 * minibuf.texi (Text from Minibuffer): Minor clarification.
6386 Mention arrow keys.
6387
6388 * loading.texi (Autoload): defun's doc string overrides autoload's
6389 doc string.
6390 (Repeated Loading): Modernize "add to list" examples.
6391 (Where Defined): Finish updating table of load-history elts.
6392
6393 * lists.texi (List-related Predicates): Minor wording improvement.
6394 (Lists as Boxes): Node deleted.
6395 (Building Lists): Explain trivial cases of number-sequence.
6396
6397 * hash.texi (Hash Tables): Add desc to menu items.
6398 (Creating Hash): Explain "full" means "make larger".
6399 (Hash Access): Any object can be a key.
6400 State value of maphash.
6401
6402 * functions.texi (What Is a Function): Wording cleanup.
6403 (Function Documentation): Minor cleanup.
6404 Explain purpose of calling convention at end of doc string.
6405 (Function Names): Wording cleanup.
6406 (Calling Functions): Wording cleanup.
6407 Explain better how funcall calls the function.
6408 (Function Cells): Delete example of saving and redefining function.
6409
6410 * control.texi (Combining Conditions): Wording cleanup.
6411 (Iteration): dolist and dotimes bind VAR locally.
6412 (Cleanups): Xref to Atomic Changes.
6413
6414 * compile.texi (Byte Compilation): Delete 19.29 info.
6415 (Compilation Functions): Macros' difficulties don't affect defsubst.
6416 (Docs and Compilation): Delete 19.29 info.
6417
64182005-02-10 Richard M. Stallman <rms@gnu.org>
6419
6420 * objects.texi (Symbol Type): Minor correction.
6421
64222005-02-06 Lute Kamstra <lute@gnu.org>
6423
6424 * modes.texi (Example Major Modes): Fix typos.
6425
64262005-02-06 Richard M. Stallman <rms@gnu.org>
6427
6428 * text.texi (Margins): fill-nobreak-predicate can be one function.
6429
6430 * strings.texi (Modifying Strings): clear-string can make unibyte.
6431 (Formatting Strings): format gives error if values missing.
6432
6433 * positions.texi (Character Motion): Mention default arg
6434 for forward-char. backward-char refers to forward-char.
6435 (Word Motion): Mention default arg for forward-word.
6436 (Buffer End Motion): Mention default arg for beginning-of-buffer.
6437 Simplify end-of-buffer.
6438 (Text Lines): Mention default arg for forward-line.
6439 (List Motion): Mention default arg for beginning/end-of-defun.
6440 (Skipping Characters): Minor fixes in explaining character-set.
6441
6442 * modes.texi (Major Mode Conventions): Mention "system abbrevs".
6443 Mode inheritance applies only when default-major-mode is nil.
6444 Clarifications.
6445 (Example Major Modes): Update Text mode and Lisp mode examples.
6446 (Minor Mode Conventions): Mention define-minor-mode at top.
6447 (Defining Minor Modes): In Hungry example, don't define C-M-DEL.
6448 (Mode Line Format): Update mode line face display info.
6449 (Properties in Mode): Mention effect of risky vars.
6450 (Imenu): Define imenu-add-to-menubar.
6451 (Font Lock Mode): Add descriptions to menu lines.
6452 (Faces for Font Lock): Add font-lock-doc-face.
6453
64542005-02-05 Lute Kamstra <lute@gnu.org>
6455
6456 * text.texi (Maintaining Undo): Remove obsolete function.
6457
64582005-02-05 Eli Zaretskii <eliz@gnu.org>
6459
6460 * frames.texi (Color Names): Add pointer to the X docs about RGB
6461 color specifications. Improve indexing.
6462 (Text Terminal Colors): Replace the description of RGB values by
6463 an xref to "Color Names".
6464
64652005-02-03 Richard M. Stallman <rms@gnu.org>
6466
6467 * windows.texi (Basic Windows): Add cursor-in-non-selected-windows.
6468 Clarify.
6469 (Selecting Windows): Clarify save-selected-window.
6470 (Cyclic Window Ordering): Clarify walk-windows.
6471 (Window Point): Clarify.
6472 (Window Start): Add comment to example.
6473 (Resizing Windows): Add `interactive' specs in examples.
6474 Document fit-window-to-buffer.
6475
6476 * text.texi (User-Level Deletion): just-one-space takes numeric arg.
6477 (Undo, Maintaining Undo): Clarify last change.
6478 (Sorting): In sort-numeric-fields, explain about octal and hex.
6479 Mention sort-numeric-base.
6480 (Format Properties): Add xref for hard newlines.
6481
6482 * frames.texi (Window Frame Parameters): Explain pixel=char on tty.
6483 (Pop-Up Menus): Fix typo.
6484 (Color Names): Explain all types of color names.
6485 Explain color-values on B&W terminal.
6486 (Text Terminal Colors): Explain "rgb values" are lists. Fix arg names.
6487
6488 * files.texi (File Locks): Not supported on MS systems.
6489 (Testing Accessibility): Clarify.
6490
6491 * edebug.texi (Printing in Edebug): Fix edebug-print-circle.
6492 (Coverage Testing): Fix typo.
6493
6494 * commands.texi (Misc Events): Remove stray space.
6495
6496 * buffers.texi (Buffer Names): Clarify generate-new-buffer-name.
6497 (Modification Time): Clarify when visited-file-modtime returns 0.
6498 (The Buffer List): Clarify bury-buffer.
6499 (Killing Buffers): Clarify.
6500 (Indirect Buffers): Add clone-indirect-buffer.
6501
65022005-02-02 Matt Hodges <MPHodges@member.fsf.org>
6503
6504 * edebug.texi (Printing in Edebug): Fix default value of
6505 edebug-print-circle.
6506 (Coverage Testing): Fix displayed frequency count data.
6507
65082005-02-02 Luc Teirlinck <teirllm@auburn.edu>
6509
6510 * text.texi (Maintaining Undo): Add `undo-outer-limit'.
6511
65122005-02-02 Kim F. Storm <storm@cua.dk>
6513
6514 * text.texi (Undo) <buffer-undo-list>: Describe `apply' elements.
6515
65162005-01-29 Eli Zaretskii <eliz@gnu.org>
6517
6518 * commands.texi (Misc Events): Describe the help-echo event.
6519
6520 * text.texi (Special Properties) <help-echo>: Use `pos'
6521 consistently in description of the help-echo property.
6522 Use @code{nil} instead of @var{nil}.
6523
6524 * display.texi (Overlay Properties): Fix the index entry for
6525 help-echo overlay property.
6526
6527 * customize.texi (Type Keywords): Uncomment the xref to the
6528 help-echo property documentation.
6529
65302005-01-23 Kim F. Storm <storm@cua.dk>
6531
6532 * windows.texi (Window Start): Fix `pos-visible-in-window-p'
6533 return value. Third element FULLY replaced by PARTIAL which
6534 specifies number of invisible pixels if row is only partially visible.
6535 (Textual Scrolling): Mention auto-window-vscroll.
6536 (Vertical Scrolling): New defvar auto-window-vscroll.
6537
65382005-01-16 Luc Teirlinck <teirllm@auburn.edu>
6539
6540 * keymaps.texi (Changing Key Bindings): `suppress-keymap' now uses
6541 command remapping.
6542
65432005-01-15 Richard M. Stallman <rms@gnu.org>
6544
6545 * display.texi (Defining Images): Mention DATA-P arg of create-image.
6546
65472005-01-14 Kim F. Storm <storm@cua.dk>
6548
6549 * commands.texi (Accessing Events): Add WHOLE arg to posn-at-x-y.
6550
6551 * text.texi (Links and Mouse-1): Fix string and vector item.
6552
65532005-01-13 Richard M. Stallman <rms@gnu.org>
6554
6555 * keymaps.texi (Active Keymaps): Rewrite the text, and update the
6556 descriptions of overriding-local-map and overriding-terminal-local-map.
6557
6558 * text.texi (Links and Mouse-1): Clarify text.
6559
65602005-01-13 Kim F. Storm <storm@cua.dk>
6561
6562 * modes.texi (Emulating Mode Line): Update format-mode-line entry.
6563
65642005-01-13 Francis Litterio <franl@world.std.com> (tiny change)
6565
6566 * keymaps.texi (Active Keymaps): Fix overriding-local-map description.
6567
65682005-01-12 Kim F. Storm <storm@cua.dk>
6569
6570 * text.texi (Links and Mouse-1): Rename section from Enabling
6571 Mouse-1 to Following Links. Change xrefs.
6572 Add examples for define-button-type and define-widget.
6573
6574 * display.texi (Button Properties, Button Buffer Commands):
6575 Clarify mouse-1 and follow-link functionality.
6576
65772005-01-12 Richard M. Stallman <rms@gnu.org>
6578
6579 * text.texi (Enabling Mouse-1 to Follow Links): Redo prev. change.
6580
6581 * display.texi (Beeping): Fix Texinfo usage.
6582
6583 * modes.texi (Emulating Mode Line): Doc FACE arg in format-header-line.
6584
65852005-01-11 Kim F. Storm <storm@cua.dk>
6586
6587 * display.texi (Button Properties, Button Buffer Commands):
6588 Mention mouse-1 binding. Add follow-link keyword.
6589
6590 * text.texi (Text Properties): Add "Enable Mouse-1" to submenu.
6591 (Enabling Mouse-1 to Follow Links): New subsection.
6592
65932005-01-06 Richard M. Stallman <rms@gnu.org>
6594
6595 * text.texi (Special Properties): Minor change.
6596
6597 * os.texi (Timers): Clarify previous change.
6598
6599 * modes.texi (Emulating Mode Line): format-mode-line requires 1 arg.
6600
66012005-01-01 Luc Teirlinck <teirllm@auburn.edu>
6602
6603 * display.texi (Face Attributes): Correct xref to renamed node.
6604
66052005-01-01 Richard M. Stallman <rms@gnu.org>
6606
6607 * display.texi (Face Attributes): Describe hex color specs.
6608
66092004-12-31 Richard M. Stallman <rms@gnu.org>
6610
6611 * os.texi (Timers): Update previous change.
6612
66132004-12-30 Kim F. Storm <storm@cua.dk>
6614
6615 * display.texi (Line Height): Total line-height is now specified
6616 in line-height property of form (HEIGHT TOTAL). Swap (FACE . RATIO)
6617 in cons cells. (nil . RATIO) is relative to actual line height.
6618 Use line-height `t' instead of `0' to get minimum height.
6619
66202004-12-29 Richard M. Stallman <rms@gnu.org>
6621
6622 * os.texi (Timers): Discuss timers vs editing the buffer and undo.
6623
66242004-12-28 Richard M. Stallman <rms@gnu.org>
6625
6626 * commands.texi (Quitting): Clarify value of with-local-quit.
6627
6628 * elisp.texi (Top): Fix previous change.
6629
6630 * loading.texi (Loading): Fix previous change.
6631
66322004-12-27 Richard M. Stallman <rms@gnu.org>
6633
6634 * Makefile.in (MAKEINFO): Specify --force.
6635
6636 * buffers.texi (Killing Buffers): Add buffer-save-without-query.
6637
6638 * modes.texi (Emulating Mode Line): Document format's BUFFER arg.
6639
6640 * display.texi (Line Height): Further clarify.
6641
6642 * elisp.texi (Top): Update Loading submenu.
6643
6644 * loading.texi (Where Defined): New node.
6645 (Unloading): load-history moved to Where Defined.
6646
66472004-12-21 Richard M. Stallman <rms@gnu.org>
6648
6649 * commands.texi (Event Input Misc): Add while-no-input.
6650
66512004-12-11 Richard M. Stallman <rms@gnu.org>
6652
6653 * display.texi (Line Height): Rewrite text for clarity.
6654
66552004-12-11 Kim F. Storm <storm@cua.dk>
6656
6657 * display.texi (Display): Add node "Line Height" to menu.
6658 (Line Height): New node. Move full description of line-spacing
6659 and line-height text properties here from text.texi.
6660 (Scroll Bars): Add vertical-scroll-bar variable.
6661
6662 * frames.texi (Window Frame Parameters): Remove line-height defvar.
6663
6664 * locals.texi (Standard Buffer-Local Variables): Fix xref for
6665 line-spacing and vertical-scroll-bar.
6666
6667 * text.texi (Special Properties): Just mention line-spacing and
6668 line-height here, add xref to new "Line Height" node.
6669
66702004-12-09 Thien-Thi Nguyen <ttn@gnu.org>
6671
6672 * frames.texi (Window Frame Parameters): New @defvar for `line-spacing'.
6673
6674 * locals.texi (Standard Buffer-Local Variables):
6675 Add @xref for `line-spacing'.
6676
66772004-12-05 Richard M. Stallman <rms@gnu.org>
6678
6679 * Makefile.in (maintainer-clean): Remove the info files
6680 in $(infodir) where they are created.
6681
66822004-12-03 Richard M. Stallman <rms@gnu.org>
6683
6684 * windows.texi (Selecting Windows): get-lru-window and
6685 get-largest-window don't consider dedicated windows.
6686
6687 * text.texi (Undo): Document undo-in-progress.
6688
66892004-11-26 Richard M. Stallman <rms@gnu.org>
6690
6691 * locals.texi (Standard Buffer-Local Variables): Undo prev change.
6692 Remove a few vars that are not always buffer-local.
6693
66942004-11-24 Luc Teirlinck <teirllm@auburn.edu>
6695
6696 * locals.texi (Standard Buffer-Local Variables): Comment out
6697 xref's to non-existent node `Yet to be written'.
6698
66992004-11-24 Richard M. Stallman <rms@gnu.org>
6700
6701 * processes.texi (Synchronous Processes): Grammar fix.
6702
6703 * numbers.texi (Comparison of Numbers): Add eql.
6704
6705 * locals.texi (Standard Buffer-Local Variables): Add many vars.
6706
6707 * intro.texi (Printing Notation): Fix previous change.
6708
6709 * display.texi (Customizing Bitmaps): Move indicate-buffer-boundaries
6710 and default-indicate-buffer-boundaries from here.
6711 (Usual Display): To here.
6712 (Scroll Bars): Add scroll-bar-mode and scroll-bar-width.
6713 (Usual Display): Move tab-width up.
6714
6715 * customize.texi (Variable Definitions):
6716 Replace show-paren-mode example with tooltip-mode.
6717 (Simple Types, Composite Types, Defining New Types):
6718 Minor cleanups.
6719
67202004-11-21 Jesper Harder <harder@ifa.au.dk>
6721
6722 * processes.texi (Synchronous Processes, Output from Processes):
6723 Markup fix.
6724
67252004-11-20 Richard M. Stallman <rms@gnu.org>
6726
6727 * positions.texi (Skipping Characters): skip-chars-forward
6728 now handles char classes.
6729
6730 * intro.texi (Printing Notation): Avoid confusion of `print'
6731 when explaining @print.
6732
6733 * macros.texi (Argument Evaluation): Fix 1st `for' expansion example.
6734
6735 * display.texi (Display Table Format): Minor fix.
6736
6737 * streams.texi (Output Functions): Fix print example.
6738
6739 * Makefile.in (elisp): New target.
6740 (dist): Depend on $(infodir)/elisp, not elisp.
6741 Copy the info files from $(infodir).
6742
6743 * minibuf.texi (Text from Minibuffer): Document KEEP-ALL arg in
6744 read-from-minibuffer.
6745
6746 * searching.texi (Regexp Search): Rename that to search-spaces-regexp.
6747
67482004-11-19 Richard M. Stallman <rms@gnu.org>
6749
6750 * searching.texi (Regexp Search): Add search-whitespace-regexp.
6751
67522004-11-19 CHENG Gao <chenggao@gmail.com> (tiny change)
6753
6754 * tips.texi (Coding Conventions): Fix typo.
6755
67562004-11-16 Richard M. Stallman <rms@gnu.org>
6757
6758 * tips.texi (Coding Conventions): Separate defvar and require
6759 methods to avoid warnings. Use require only when there are many
6760 functions and variables from that package.
6761
6762 * minibuf.texi (Minibuffer Completion): When ignoring case,
6763 predicate must not be case-sensitive.
6764
6765 * debugging.texi (Function Debugging, Explicit Debug): Clarified.
6766 (Test Coverage): Don't talk about "splotches". Clarified.
6767
67682004-11-16 Thien-Thi Nguyen <ttn@gnu.org>
6769
6770 * frames.texi (Window Frame Parameters): Fix typo.
6771
67722004-11-15 Kim F. Storm <storm@cua.dk>
6773
6774 * symbols.texi (Other Plists): Note that plist-get may signal error.
6775 Add safe-plist-get.
6776
67772004-11-15 Thien-Thi Nguyen <ttn@gnu.org>
6778
6779 * modes.texi (Font Lock Basics): Fix typo.
6780
67812004-11-08 Richard M. Stallman <rms@gnu.org>
6782
6783 * syntax.texi (Syntax Table Functions): Add syntax-after.
6784
67852004-11-06 Lars Brinkhoff <lars@nocrew.org>
6786
6787 * os.texi (Processor Run Time): New section documenting
6788 get-internal-run-time.
6789
67902004-11-06 Eli Zaretskii <eliz@gnu.org>
6791
6792 * Makefile.in (install, maintainer-clean): Don't use "elisp-*" as
6793 it nukes elisp-cover.texi.
6794 (dist): Change elisp-[0-9] to elisp-[1-9], as there could be no
6795 elisp-0 etc.
6796
67972004-11-05 Luc Teirlinck <teirllm@auburn.edu>
6798
6799 * commands.texi (Keyboard Macros): Document `append' return value
6800 of `defining-kbd-macro'.
6801
68022004-11-01 Richard M. Stallman <rms@gnu.org>
6803
6804 * commands.texi (Interactive Call): Add called-interactively-p.
6805
68062004-10-29 Simon Josefsson <jas@extundo.com>
6807
6808 * minibuf.texi (Reading a Password): Revert.
6809
68102004-10-28 Richard M. Stallman <rms@gnu.org>
6811
6812 * frames.texi (Display Feature Testing): Explain about "vendor".
6813
68142004-10-27 Richard M. Stallman <rms@gnu.org>
6815
6816 * commands.texi (Interactive Codes): `N' uses numeric prefix,
6817 not raw. Clarify `n'.
6818 (Interactive Call): Rewrite interactive-p, focusing on when
6819 and how to use it.
6820 (Misc Events): Clarify previous change.
6821
6822 * advice.texi (Simple Advice): Clarify what job the example does.
6823 (Around-Advice): Clarify ad-do-it.
6824 (Activation of Advice): An option of ad-default-compilation-action
6825 is `never', not `nil'.
6826
68272004-10-26 Kim F. Storm <storm@cua.dk>
6828
6829 * commands.texi (Interactive Codes): Add U code letter.
6830
68312004-10-25 Simon Josefsson <jas@extundo.com>
6832
6833 * minibuf.texi (Reading a Password): Add.
6834
68352004-10-24 Jason Rumney <jasonr@gnu.org>
6836
6837 * commands.texi (Misc Events): Remove mouse-wheel. Add wheel-up
6838 and wheel-down.
6839
68402004-10-24 Kai Grossjohann <kai.grossjohann@gmx.net>
6841
6842 * processes.texi (Synchronous Processes): Document process-file.
6843
68442004-10-22 Kenichi Handa <handa@m17n.org>
6845
6846 * text.texi (translate-region): Document that it accepts also a
6847 char-table.
6848
68492004-10-22 David Ponce <david@dponce.com>
6850
6851 * windows.texi (Resizing Windows): Document the `preserve-before'
6852 argument of the functions `enlarge-window' and `shrink-window'.
6853
68542004-10-19 Jason Rumney <jasonr@gnu.org>
6855
6856 * makefile.w32-in (elisp): Change order of arguments to makeinfo.
6857
68582004-10-09 Luc Teirlinck <teirllm@auburn.edu>
6859
6860 * text.texi (Filling): Add anchor for definition of
6861 `sentence-end-double-space'.
6862
6863 * searching.texi (Regexp Example): Update description of how
6864 Emacs currently recognizes the end of a sentence.
6865 (Standard Regexps): Update definition of the variable
6866 `sentence-end'. Add definition of the function `sentence-end'.
6867
68682004-10-08 Paul Pogonyshev <pogonyshev@gmx.net>
6869
6870 * display.texi (Progress): New node.
6871
68722004-10-05 Kim F. Storm <storm@cua.dk>
6873
6874 * display.texi (Fringe Bitmaps): Update fringe-bitmaps-at-pos.
6875
68762004-09-29 Kim F. Storm <storm@cua.dk>
6877
6878 * display.texi (Fringe Bitmaps): Use symbols rather than numbers
6879 to identify bitmaps. Remove -fringe-bitmap suffix for standard
6880 fringe bitmap symbols, as they now have their own namespace.
6881 (Customizing Bitmaps) <define-fringe-bitmap>: Clarify bit ordering
6882 vs. pixels. Signal error if no free bitmap slots.
6883 (Pixel Specification): Change IMAGE to @var{image}.
6884
68852004-09-28 Richard M. Stallman <rms@gnu.org>
6886
6887 * text.texi (Special Properties): Clarify line-spacing and line-height.
6888
6889 * searching.texi (Regexp Search): Add looking-back.
6890
68912004-09-25 Luc Teirlinck <teirllm@auburn.edu>
6892
6893 * display.texi: Correct typos.
6894 (Image Descriptors): Correct xref's.
6895
68962004-09-25 Richard M. Stallman <rms@gnu.org>
6897
6898 * text.texi (Special Properties): Cleanups in `cursor'.
6899 Rewrites in `line-height' and `line-spacing'; exchange them.
6900
6901 * display.texi (Fringes): Rewrite previous change.
6902 (Fringe Bitmaps): Merge text from Display Fringe Bitmaps. Rewrite.
6903 (Display Fringe Bitmaps): Node deleted, text moved.
6904 (Customizing Bitmaps): Split off from Fringe Bitmaps. Rewrite.
6905 (Scroll Bars): Clarify set-window-scroll-bars.
6906 (Pointer Shape): Rewrite.
6907 (Specified Space): Clarify :align-to, etc.
6908 (Pixel Specification): Use @var. Clarify new text.
6909 (Other Display Specs): Clarify `slice'.
6910 (Image Descriptors): Cleanups.
6911 (Showing Images): Cleanups.
6912
69132004-09-24 Luc Teirlinck <teirllm@auburn.edu>
6914
6915 * hooks.texi (Standard Hooks): Add `after-change-major-mode-hook'.
6916
6917 * modes.texi: Various minor changes in addition to:
6918 (Major Mode Conventions): Final call to `run-mode-hooks' should
6919 not be inside the `delay-mode-hooks' form.
6920 (Mode Hooks): New node.
6921 (Hooks): Delete obsolete example.
6922 Move definitions of `run-mode-hooks' and `delay-mode-hooks' to new
6923 node "Mode Hooks".
6924
69252004-09-22 Luc Teirlinck <teirllm@auburn.edu>
6926
6927 * display.texi: Correct various typos.
6928 (Display): Rename node "Pointer Shapes" to "Pointer
6929 Shape". (There is already a node called "Pointer Shapes" in
6930 frames.texi.)
6931 (Images): Remove non-existent node "Image Slices" from menu.
6932
69332004-09-23 Kim F. Storm <storm@cua.dk>
6934
6935 * text.texi (Special Properties): Add `cursor', `pointer',
6936 `line-height', and `line-spacing' properties.
6937
6938 * display.texi (Display): Add 'Fringe Bitmaps' and 'Pointer
6939 Shapes' to menu.
6940 (Standard Faces): Doc fix for fringe face.
6941 (Fringes): Add `overflow-newline-into-fringe' and
6942 'indicate-buffer-boundaries'.
6943 (Fringe Bitmaps, Pointer Shapes): New nodes.
6944 (Display Property): Add 'Pixel Specification' and 'Display Fringe
6945 Bitmaps' to menu.
6946 (Specified Space): Describe pixel width and height.
6947 (Pixel Specification): New node.
6948 (Other Display Specs): Add `slice' property.
6949 (Display Fringe Bitmaps): New node.
6950 (Images): Add 'Image Slices' to menu.
6951 (Image Descriptors): Add `:pointer' and `:map' properties.
6952 (Showing Images): Add slice arg to `insert-image'.
6953 Add 'insert-sliced-image'.
6954
69552004-09-20 Richard M. Stallman <rms@gnu.org>
6956
6957 * commands.texi (Key Sequence Input):
6958 Clarify downcasing in read-key-sequence.
6959
69602004-09-08 Juri Linkov <juri@jurta.org>
6961
6962 * minibuf.texi (Minibuffer History): Add `history-delete-duplicates'.
6963
69642004-09-07 Luc Teirlinck <teirllm@auburn.edu>
6965
6966 * locals.texi (Standard Buffer-Local Variables):
6967 Add `buffer-auto-save-file-format'.
6968 * internals.texi (Buffer Internals): Describe new
6969 auto_save_file_format field of the buffer structure.
6970 * files.texi (Format Conversion): `auto-save-file-format' has been
6971 renamed `buffer-auto-save-file-format'.
6972
69732004-08-27 Luc Teirlinck <teirllm@auburn.edu>
6974
6975 * abbrevs.texi (Abbrev Expansion): `abbrev-start-location' can be
6976 an integer or a marker.
6977 (Abbrev Expansion): Replace example for `pre-abbrev-expand-hook'.
6978
69792004-08-22 Richard M. Stallman <rms@gnu.org>
6980
6981 * modes.texi (Major Mode Conventions): Discuss rebinding of
6982 standard key bindings.
6983
69842004-08-18 Kim F. Storm <storm@cua.dk>
6985
6986 * processes.texi (Accepting Output): Add `just-this-one' arg to
6987 `accept-process-output'.
6988 (Output from Processes): New var `process-adaptive-read-buffering'.
6989
69902004-08-10 Luc Teirlinck <teirllm@auburn.edu>
6991
6992 * keymaps.texi: Various changes in addition to:
6993 (Keymap Terminology): `kbd' uses same syntax as Edit Macro mode.
6994 Give more varied examples for `kbd'.
6995 (Creating Keymaps): Char tables have slots for all characters
6996 without modifiers.
6997 (Active Keymaps): `overriding-local-map' and
6998 `overriding-terminal-local-map' also override text property and
6999 overlay keymaps.
7000 (Functions for Key Lookup): Mention OLP arg to `current-active-maps'.
7001 (Scanning Keymaps): `accessible-keymaps' uses `[]' instead of `""'
7002 to denote a prefix of no events.
7003 `map-keymap' includes parent's bindings _recursively_.
7004 Clarify and correct description of `where-is-internal'.
7005 Mention BUFFER-OR-NAME arg to `describe-bindings'.
7006 (Menu Example): For menus intended for use with the keyboard, the
7007 menu items should be bound to characters or real function keys.
7008
70092004-08-08 Luc Teirlinck <teirllm@auburn.edu>
7010
7011 * objects.texi (Character Type): Reposition `@anchor' to prevent
7012 double space inside sentence in Info.
7013
7014 * hooks.texi (Standard Hooks): `disabled-command-hook' has been
7015 renamed to `disabled-command-function'.
7016 * commands.texi (Key Sequence Input): Remove unnecessary anchor.
7017 (Command Loop Info): Replace reference to it.
7018 (Disabling Commands): `disabled-command-hook' has been renamed to
7019 `disabled-command-function'.
7020
70212004-08-07 Luc Teirlinck <teirllm@auburn.edu>
7022
7023 * os.texi (Translating Input): Only non-prefix bindings in
7024 `key-translation-map' override actual key bindings. Warn about
7025 possible indirect effect of actual key bindings on non-prefix
7026 bindings in `key-translation-map'.
7027
70282004-08-06 Luc Teirlinck <teirllm@auburn.edu>
7029
7030 * minibuf.texi (High-Level Completion): Add anchor for definition
7031 of `read-variable'.
7032
7033 * commands.texi: Various changes in addition to:
7034 (Using Interactive): Clarify description of `interactive-form'.
7035 (Interactive Call): Mention default for KEYS argument to
7036 `call-interactively'.
7037 (Command Loop Info): Clarify description of `this-command-keys'.
7038 Mention KEEP-RECORD argument to `clear-this-command-keys'.
7039 Value of `last-event-frame' can be `macro'.
7040 (Repeat Events): `double-click-fuzz' is also used to distinguish
7041 clicks and drags.
7042 (Classifying Events): Clarify descriptions of `event-modifiers'
7043 `event-basic-type' and `event-convert-list'.
7044 (Accessing Events): `posn-timestamp' takes POSITION argument.
7045 (Quoted Character Input): Clarify description of
7046 `read-quoted-char' and fix example.
7047 (Quitting): Add `with-local-quit'.
7048 (Disabling Commands): Correct and clarify descriptions of
7049 `enable-command' and `disable-command'.
7050 Mention what happens if `disabled-command-hook' is nil.
7051 (Keyboard Macros): Mention LOOPFUNC arg to `execute-kbd-macro'.
7052 Describe `executing-kbd-macro' instead of obsolete `executing-macro'.
7053
70542004-07-24 Luc Teirlinck <teirllm@auburn.edu>
7055
7056 * frames.texi: Various changes in addition to:
7057 (Creating Frames): Expand and clarify description of `make-frame'.
7058 (Window Frame Parameters): Either none or both of the `icon-left'
7059 and `icon-top' parameters must be specified. Put descriptions of
7060 `menu-bar-lines' and `toolbar-lines' closer together and change
7061 them accordingly.
7062 (Frame Titles): `multiple-frames' is not guaranteed to be accurate
7063 except while processing `frame-title-format' or `icon-title-format'.
7064 (Deleting Frames): Correct description of `delete-frame'.
7065 Non-nil return values of `frame-live-p' are like those of `framep'.
7066 (Frames and Windows): Mention return value of
7067 `set-frame-selected-window'.
7068 (Visibility of Frames): Mention `force' argument to
7069 `make-frame-invisible'. `frame-visible-p' returns t for all
7070 frames on text-only terminals.
7071 (Frame Configurations): Restoring a frame configuration does not
7072 restore deleted frames.
7073 (Window System Selections): `x-set-selection' returns DATA.
7074 (Resources): Add example.
7075 (Display Feature Testing): Clarify descriptions of
7076 `display-pixel-height', `display-pixel-width', `x-server-version'
7077 and `x-server-vendor'.
7078
7079 * windows.texi (Choosing Window): Add anchor.
7080 * minibuf.texi (Minibuffer Misc): Add anchor.
7081
70822004-07-23 John Paul Wallington <jpw@gnu.org>
7083
7084 * macros.texi (Defining Macros): Declaration keyword for setting
7085 Edebug spec is `debug' not `edebug'.
7086
70872004-07-19 Luc Teirlinck <teirllm@auburn.edu>
7088
7089 * windows.texi: Various small changes in addition to:
7090 (Window Point): Mention return value of `set-window-point'.
7091 (Window Start): `pos-visible-in-window-p' disregards horizontal
7092 scrolling. Explain return value if PARTIALLY is non-nil.
7093 (Vertical Scrolling): Mention PIXELS-P argument to `window-vscroll'
7094 and `set-window-vscroll'.
7095 (Size of Window): The argument WINDOW to `window-inside-edges',
7096 `window-pixel-edges' and `window-inside-pixel-edges' is optional.
7097 (Resizing Windows): Explain return value of
7098 `shrink-window-if-larger-than-buffer'.
7099 `window-size-fixed' automatically becomes buffer local when set.
7100 (Window Configurations): Explain return value of
7101 `set-window-configuration'.
7102
7103 * minibuf.texi (Minibuffer Misc): Add anchor for
7104 `minibuffer-scroll-window'.
7105
7106 * positions.texi (Text Lines): Add anchor for `count-lines'.
7107
71082004-07-17 Richard M. Stallman <rms@gnu.org>
7109
7110 * display.texi (Overlay Properties): Adding `evaporate' prop
7111 deletes empty overlay immediately.
7112
7113 * abbrevs.texi (Abbrev Expansion): Clarify pre-abbrev-expand-hook,
7114 fix example.
7115
71162004-07-16 Jim Blandy <jimb@redhat.com>
7117
7118 * searching.texi (Regexp Backslash): Document new \_< and \_>
7119 operators.
7120
71212004-07-16 Juanma Barranquero <lektu@terra.es>
7122
7123 * display.texi (Images): Fix Texinfo usage.
7124
71252004-07-14 Luc Teirlinck <teirllm@auburn.edu>
7126
7127 * buffers.texi (Modification Time): `visited-file-modtime' now
7128 returns a list of two integers, instead of a cons.
7129
71302004-07-13 Luc Teirlinck <teirllm@auburn.edu>
7131
7132 * windows.texi: Various changes in addition to:
7133 (Splitting Windows): Add `split-window-keep-point'.
7134
71352004-07-09 Richard M. Stallman <rms@gnu.org>
7136
7137 * frames.texi (Input Focus): Minor fix.
7138
71392004-07-07 Luc Teirlinck <teirllm@auburn.edu>
7140
7141 * frames.texi (Input Focus): Clarify descriptions of
7142 `select-frame-set-input-focus' and `select-frame'.
7143
71442004-07-06 Luc Teirlinck <teirllm@auburn.edu>
7145
7146 * os.texi: Various small changes in addition to:
7147 (Killing Emacs): Expand and clarify description of
7148 `kill-emacs-query-functions' and `kill-emacs-hook'.
7149 (System Environment): Expand and clarify description of `getenv'
7150 and `setenv'.
7151 (Timers): Clarify description of `run-at-time'.
7152 (Translating Input): Correct description of
7153 `extra-keyboard-modifiers'.
7154 (Flow Control): Correct description of `enable-flow-control'.
7155
71562004-07-06 Thien-Thi Nguyen <ttn@gnu.org>
7157
7158 * os.texi: Update copyright.
7159 (Session Management): Grammar fix.
7160 Clarify which Emacs does the restarting.
7161 Use @samp for *scratch* buffer.
7162
71632004-07-04 Alan Mackenzie <acm@muc.de>
7164
7165 * frames.texi (Input Focus): Add documentation for
7166 `select-frame-set-input-focus'. Replace refs to non-existent
7167 `switch-frame' with `select-frame'. Minor corrections and tidying
7168 up of text-only terminal stuff.
7169
71702004-07-02 Richard M. Stallman <rms@gnu.org>
7171
7172 * files.texi (Saving Buffers): Cleanup write-contents-function.
7173 (Magic File Names): Cleanup file-remote-p.
7174
71752004-07-02 Kai Großjohann <kai@emptydomain.de>
7176
7177 * files.texi (Magic File Names): `file-remote-p' returns an
7178 identifier of the remote system, not just t.
7179
71802004-07-02 David Kastrup <dak@gnu.org>
7181
7182 * searching.texi (Entire Match Data): Add explanation about new
7183 match-data behavior when @var{integers} is non-nil.
7184
71852004-06-24 Richard M. Stallman <rms@gnu.org>
7186
7187 * commands.texi (Misc Events): Describe usr1-signal, usr2-signal event.
7188
7189 * customize.texi (Variable Definitions): Note about doc strings
7190 and :set.
7191
7192 * keymaps.texi (Keymap Terminology): Document `kbd'.
7193 (Changing Key Bindings, Key Binding Commands): Use kbd in examples.
7194
7195 * display.texi (Invisible Text): Setting buffer-invisibility-spec
7196 makes it buffer-local.
7197
7198 * files.texi (Saving Buffers): Correct previous change.
7199
7200 * commands.texi (Accessing Events):
7201 Clarify posn-col-row and posn-actual-col-row.
7202
72032004-06-24 David Ponce <david.ponce@wanadoo.fr>
7204
7205 * commands.texi (Accessing Events): New functions
7206 posn-at-point and posn-at-x-y. Add example to posn-x-y.
7207
72082004-06-23 Luc Teirlinck <teirllm@auburn.edu>
7209
7210 * lists.texi, files.texi, processes.texi, macros.texi, hash.texi:
7211 * frames.texi, buffers.texi, backups.texi, variables.texi:
7212 * loading.texi, eval.texi, functions.texi, control.texi:
7213 * symbols.texi, minibuf.texi: Reposition @anchor's.
7214
7215 * help.texi: Various small changes in addition to the following.
7216 (Describing Characters): Describe PREFIX argument to
7217 `key-description'. Correct and clarify definition of
7218 `text-char-description'. Describe NEED-VECTOR argument to
7219 `read-kbd-macro'.
7220 (Help Functions): Clarify definition of `apropos'.
7221
72222004-06-23 Lars Hansen <larsh@math.ku.dk>
7223
7224 * files.texi (Saving Buffers): Correct description of
7225 `write-contents-functions'.
7226
72272004-06-21 Juanma Barranquero <lektu@terra.es>
7228
7229 * display.texi (Images): Remove redundant @vindex directives.
7230 Rewrite `image-library-alist' doc in active voice.
7231
72322004-06-14 Juanma Barranquero <lektu@terra.es>
7233
7234 * display.texi (Images): Document new delayed library loading,
7235 variable `image-library-alist' and (existing but undocumented)
7236 function `image-type-available-p'.
7237
72382004-06-05 Richard M. Stallman <rms@gnu.org>
7239
7240 * minibuf.texi (Minibuffer Completion): For INITIAL arg,
7241 refer the user to the Initial Input node.
7242 (Text from Minibuffer): Likewise.
7243 (Initial Input): New node. Document this feature
7244 and say it is mostly deprecated.
7245
72462004-05-30 Richard M. Stallman <rms@gnu.org>
7247
7248 * loading.texi (Named Features): Clarify return value
7249 and meaning of NOERROR.
7250
7251 * variables.texi (File Local Variables): Minor cleanup.
7252
72532004-05-30 Michael Albinus <michael.albinus@gmx.de>
7254
7255 * files.texi (Magic File Names): Add `file-remote-p' as operation
7256 of file name handlers.
7257
72582004-05-29 Richard M. Stallman <rms@gnu.org>
7259
7260 * modes.texi (Minor Mode Conventions): (-) has no special meaning
7261 as arg to a minor mode command.
7262
72632004-05-22 Richard M. Stallman <rms@gnu.org>
7264
7265 * syntax.texi (Syntax Class Table): Word syntax not just for English.
7266
7267 * streams.texi (Output Variables): Doc float-output-format.
7268
7269 * searching.texi (Regexp Special): Nested repetition can be infloop.
7270
7271 * eval.texi (Eval): Increasing max-lisp-eval-depth can cause
7272 real stack overflow.
7273
7274 * compile.texi: Minor cleanups.
7275
72762004-05-22 Luc Teirlinck <teirllm@dms.auburn.edu>
7277
7278 * lists.texi (Cons Cells): Explain dotted lists, true lists,
7279 circular lists.
7280 (List Elements): Explain handling of circular and dotted lists.
7281
72822004-05-19 Thien-Thi Nguyen <ttn@gnu.org>
7283
7284 * modes.texi (Search-based Fontification): Fix typo.
7285
72862004-05-10 Juanma Barranquero <lektu@terra.es>
7287
7288 * modes.texi (Mode Line Variables): Fix description of
7289 global-mode-string, which is now after which-func-mode, not the
7290 buffer name.
7291
72922004-05-07 Lars Hansen <larsh@math.ku.dk>
7293
7294 * modes.texi (Desktop Save Mode): Add.
7295 (Modes): Add menu entry Desktop Save Mode.
7296
7297 * hooks.texi: Add desktop-after-read-hook,
7298 desktop-no-desktop-file-hook and desktop-save-hook.
7299
7300 * locals.texi: Add desktop-save-buffer.
7301
73022004-04-30 Jesper Harder <harder@ifa.au.dk>
7303
7304 * display.texi: emacs -> Emacs.
7305
73062004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
7307
7308 * files.texi (Changing Files): Document set-file-times.
7309
73102004-04-23 Juanma Barranquero <lektu@terra.es>
7311
7312 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
7313
73142004-04-18 Jesper Harder <harder@ifa.au.dk>
7315
7316 * tips.texi (Coding Conventions): defopt -> defcustom.
7317
73182004-04-16 Luc Teirlinck <teirllm@auburn.edu>
7319
7320 * sequences.texi: Various clarifications.
7321
73222004-04-14 Luc Teirlinck <teirllm@auburn.edu>
7323
7324 * buffers.texi (Read Only Buffers): Mention optional ARG to
7325 `toggle-read-only'.
7326
73272004-04-14 Nick Roberts <nick@nick.uklinux.net>
7328
7329 * windows.texi (Selecting Windows): Note that get-lru-window
7330 returns a full-width window if possible.
7331
73322004-04-13 Luc Teirlinck <teirllm@auburn.edu>
7333
7334 * buffers.texi: Various changes in addition to:
7335 (Buffer File Name): Add `find-buffer-visiting'.
7336 (Buffer Modification): Mention optional ARG to `not-modified'.
7337 (Indirect Buffers): Mention optional CLONE argument to
7338 `make-indirect-buffer'.
7339
7340 * files.texi: Various changes in addition to:
7341 (Visiting Functions): `find-file-hook' is now a normal hook.
7342 (File Name Expansion): Explain difference between the way that
7343 `expand-file-name' and `file-truename' treat `..'.
7344 (Contents of Directories): Mention optional ID-FORMAT argument to
7345 `directory-files-and-attributes'.
7346 (Format Conversion): Mention new optional CONFIRM argument to
7347 `format-write-file'.
7348
73492004-04-12 Miles Bader <miles@gnu.org>
7350
7351 * macros.texi (Expansion): Add description of `macroexpand-all'.
7352
73532004-04-05 Jesper Harder <harder@ifa.au.dk>
7354
7355 * variables.texi (Variable Aliases):
7356 Mention cyclic-variable-indirection.
7357
7358 * errors.texi (Standard Errors): Ditto.
7359
73602004-04-04 Luc Teirlinck <teirllm@auburn.edu>
7361
7362 * backups.texi: Various small changes in addition to:
7363 (Making Backups): Mention return value of `backup-buffer'.
7364 (Auto-Saving): Mention optional FORCE argument to
7365 `delete-auto-save-file-if-necessary'.
7366 (Reverting): Mention optional PRESERVE-MODES argument to
7367 `revert-buffer'. Correct description of `revert-buffer-function'.
7368
73692004-03-22 Juri Linkov <juri@jurta.org>
7370
7371 * sequences.texi (Sequence Functions): Replace xref to `Vectors'
7372 with `Vector Functions'.
7373
7374 * text.texi (Sorting): Add missing quote.
7375
73762004-03-14 Luc Teirlinck <teirllm@auburn.edu>
7377
7378 * intro.texi (Lisp History): Replace xref to `cl' manual with
7379 inforef.
7380
73812004-03-12 Richard M. Stallman <rms@gnu.org>
7382
7383 * intro.texi (Version Info): Add arg to emacs-version.
7384 (Lisp History): Change xref to CL manual.
7385
73862004-03-09 Luc Teirlinck <teirllm@auburn.edu>
7387
7388 * minibuf.texi (Completion Commands): Add xref to Emacs manual
7389 for Partial Completion mode.
7390
73912004-03-07 Thien-Thi Nguyen <ttn@gnu.org>
7392
7393 * customize.texi: Fix typo. Remove eol whitespace.
7394
73952004-03-04 Richard M. Stallman <rms@gnu.org>
7396
7397 * processes.texi: Fix typos.
7398
7399 * lists.texi (Building Lists): Minor clarification.
7400
7401 * hash.texi (Creating Hash): Correct the meaning of t for WEAK
7402 in make-hash-table.
7403
74042004-02-29 Juanma Barranquero <lektu@terra.es>
7405
7406 * makefile.w32-in (clean, maintainer-clean): Use $(DEL) instead of
7407 rm, and ignore exit code.
7408
74092004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
7410
7411 * display.texi (Defining Faces): Add description for min-colors.
7412 Update example.
7413
74142004-02-23 Luc Teirlinck <teirllm@auburn.edu>
7415
7416 * abbrevs.texi: Various corrections and clarifications in addition
7417 to the following:
7418 (Abbrev Tables): Delete add-abbrev (as suggested by RMS).
7419
74202004-02-22 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
7421
7422 * calendar.texi (Holiday Customizing): Quote arg of holiday-sexp.
7423
74242004-02-21 Luc Teirlinck <teirllm@auburn.edu>
7425
7426 * text.texi: Various small changes in addition to the following:
7427 (User-Level Deletion): Mention optional BACKWARD-ONLY argument
7428 to delete-horizontal-space.
7429 (Kill Functions, Yanking, Low-Level Kill Ring): Clarify and correct
7430 description of yank-handler text property at various places.
7431
7432 * frames.texi (Window System Selections): Add anchor.
7433
7434 * syntax.texi (Syntax Table Functions): Clarify and correct
7435 descriptions of make-syntax-table and copy-syntax-table.
7436 (Motion and Syntax): Clarify SYNTAXES argument to
7437 skip-syntax-forward.
7438 (Parsing Expressions): Mention that the return value of
7439 parse-partial-sexp is currently a list of ten rather than nine
7440 elements.
7441 (Categories): Various corrections and clarifications.
7442
74432004-02-17 Luc Teirlinck <teirllm@auburn.edu>
7444
7445 * markers.texi (Marker Insertion Types): Minor change.
7446
7447 * locals.texi (Standard Buffer-Local Variables):
7448 * commands.texi (Interactive Codes, Using Interactive):
7449 * functions.texi (Related Topics): Fix xrefs.
7450
74512004-02-16 Luc Teirlinck <teirllm@auburn.edu>
7452
7453 * lists.texi (Sets And Lists): Update description of delete-dups.
7454
74552004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
7456
7457 * keymaps.texi (Tool Bar): tool-bar-item => tool-bar-button.
7458
74592004-02-16 Jan Djärv <jan.h.d@swipnet.se>
7460
7461 * frames.texi (Parameter Access): frame-parameters arg is optional.
7462 modify-frame-parameters handles nil for FRAME.
7463 (Window Frame Parameters): menu-bar-lines and tool-bar-lines
7464 are all-or-nothing for certain toolkits.
7465 Mention parameter wait-for-wm.
7466 (Frames and Windows): In frame-first-window and frame-selected-window
7467 the arg is optional.
7468 (Input Focus): In redirect-frame-focus the second arg is optional.
7469 (Window System Selections): Mention selection type CLIPBOARD.
7470 Mention data-type UTF8_STRING.
7471 Mention numbering of cut buffers.
7472 (Resources): Describe x-resource-name.
7473
74742004-02-16 Richard M. Stallman <rms@gnu.org>
7475
7476 * windows.texi (Buffers and Windows): Delete false table
7477 about all-frames.
7478
7479 * syntax.texi (Parsing Expressions): Delete old caveat
7480 about parse-sexp-ignore-comments.
7481
7482 * streams.texi (Output Variables): Add print-quoted.
7483
7484 * lists.texi (Building Lists): Minor cleanup.
7485
7486 * hash.texi (Creating Hash): Correct and clarify doc of WEAK values.
7487
7488 * display.texi (Overlays): Explain overlays use markers.
7489 (Managing Overlays): Explain front-advance and rear-advance
7490 in more detail.
7491
7492 * loading.texi (Unloading): Document unload-feature-special-hooks.
7493 Get rid of fns-NNN.el file.
7494
74952004-02-16 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
7496
7497 * help.texi (Describing Characters): Fix text-char-description
7498 example output.
7499
7500 * edebug.texi (Using Edebug): Fix example.
7501
7502 * debugging.texi (Internals of Debugger): Fix return value.
7503
7504 * files.texi (Changing Files): Fix argname.
7505
7506 * calendar.texi: Fix parens, and default values.
7507
7508 * display.texi, frames.texi, internals.texi, modes.texi: Minor fixes.
7509 * nonascii.texi, objects.texi, os.texi: Minor fixes.
7510 * searching.texi, text.texi, tips.texi, windows.texi: Minor fixes.
7511
7512 * positions.texi (Text Lines): Don't add -1 in current-line.
7513
75142004-02-16 Richard M. Stallman <rms@gnu.org>
7515
7516 * compile.texi (Compiler Errors): if-boundp feature applies to cond.
7517
75182004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
7519
7520 * processes.texi (Low-Level Network): Fix a typo.
7521
75222004-02-12 Kim F. Storm <storm@cua.dk>
7523
7524 * display.texi (Fringes): Use consistent wording.
7525 Note that window-fringe's window arg is optional.
7526 (Scroll Bars): Use consistent wording.
7527
75282004-02-11 Luc Teirlinck <teirllm@auburn.edu>
7529
7530 * tips.texi (Comment Tips): Document the new conventions for
7531 commenting out code.
7532
75332004-02-07 Jan Djärv <jan.h.d@swipnet.se>
7534
7535 * positions.texi (Text Lines): Add missing end defun.
7536
75372004-02-07 Kim F. Storm <storm@cua.dk>
7538
7539 * positions.texi (Text Lines): Add line-number-at-pos.
7540
75412004-02-06 John Paul Wallington <jpw@gnu.org>
7542
7543 * display.texi (Button Properties, Button Buffer Commands):
7544 mouse-2 invokes button, not down-mouse-1.
7545
75462004-02-04 Jason Rumney <jasonr@gnu.org>
7547
7548 * makefile.w32-in: Sync with Makefile.in changes.
7549
75502004-02-03 Luc Teirlinck <teirllm@auburn.edu>
7551
7552 * minibuf.texi (Text from Minibuffer): Various corrections and
7553 clarifications.
7554 (Object from Minibuffer): Correct Lisp description of
7555 read-minibuffer.
7556 (Minibuffer History): Clarify description of cons values for
7557 HISTORY arguments.
7558 (Basic Completion): Various corrections and clarifications.
7559 Add completion-regexp-list.
7560 (Minibuffer Completion): Correct and clarify description of
7561 completing-read.
7562 (Completion Commands): Mention Partial Completion mode.
7563 Various other minor changes.
7564 (High-Level Completion): Various corrections and clarifications.
7565 (Reading File Names): Ditto.
7566 (Minibuffer Misc): Ditto.
7567
75682004-01-26 Luc Teirlinck <teirllm@auburn.edu>
7569
7570 * strings.texi (Text Comparison): assoc-string also matches
7571 elements of alists that are strings instead of conses.
7572 (Formatting Strings): Standardize Texinfo usage. Update index
7573 entries.
7574
75752004-01-20 Luc Teirlinck <teirllm@auburn.edu>
7576
7577 * lists.texi (Sets And Lists): Add delete-dups.
7578
75792004-01-15 Luc Teirlinck <teirllm@auburn.edu>
7580
7581 * edebug.texi (Instrumenting Macro Calls): `declare' is not a
7582 special form.
7583 * macros.texi (Defining Macros): Update description of `declare',
7584 which now is a macro.
7585 (Wrong Time): Fix typos.
7586
75872004-01-14 Luc Teirlinck <teirllm@auburn.edu>
7588
7589 * compile.texi (Compilation Functions): Expand descriptions of
7590 `compile-defun', `byte-compile-file', `byte-recompile-directory'
7591 and `batch-byte-compile'. In particular, mention and describe
7592 all optional arguments.
7593 (Disassembly): Correct and clarify the description of `disassemble'.
7594
75952004-01-11 Luc Teirlinck <teirllm@auburn.edu>
7596
7597 * searching.texi: Various small changes in addition to the
7598 following.
7599 (Regexp Example): Adapt to new value of `sentence-end'.
7600 (Regexp Functions): The PAREN argument to `regexp-opt' can be
7601 `words'.
7602 (Search and Replace): Add usage note for `perform-replace'.
7603 (Entire Match Data): Mention INTEGERS and REUSE arguments to
7604 `match-data'.
7605 (Standard Regexps): Update for new values of `paragraph-start'
7606 and `sentence-end'.
7607
76082004-01-07 Luc Teirlinck <teirllm@auburn.edu>
7609
7610 * files.texi (Saving Buffers): Clarify descriptions of
7611 `write-contents-functions' and `before-save-hook'.
7612 Make the defvar's for `before-save-hook' and `after-save-hook'
7613 into defopt's.
7614
76152004-01-07 Kim F. Storm <storm@cua.dk>
7616
7617 * commands.texi (Click Events): Describe new image and
7618 width/height elements of click events.
7619 (Accessing Events): Add posn-string, posn-image, and
7620 posn-object-width-height. Change posn-object to return either
7621 image or string object.
7622
76232004-01-01 Simon Josefsson <jas@extundo.com>
7624
7625 * hooks.texi (Standard Hooks): Add before-save-hook.
7626 * files.texi (Saving Buffers): Likewise.
7627
76282004-01-03 Richard M. Stallman <rms@gnu.org>
7629
7630 * frames.texi (Frames and Windows): Delete frame-root-window.
7631
76322004-01-03 Luc Teirlinck <teirllm@auburn.edu>
7633
7634 * eval.texi, hash.texi, help.texi, symbols.texi: Add anchors.
7635
7636 * functions.texi: Various small changes in addition to the
7637 following.
7638 (What Is a Function): `functionp' returns nil for macros.
7639 Clarify behavior of this and following functions for symbol arguments.
7640 (Function Documentation): Add `\' in front of (fn @var{arglist})
7641 and explain why.
7642 (Defining Functions): Mention DOCSTRING argument to `defalias'.
7643 Add anchor.
7644 (Mapping Functions): Add anchor. Unquote nil in mapcar* example.
7645
76462004-01-01 Miles Bader <miles@gnu.org>
7647
7648 * display.texi (Buttons): New section.
7649
76502003-12-31 Andreas Schwab <schwab@suse.de>
7651
7652 * numbers.texi (Math Functions): sqrt reports a domain-error
7653 error.
7654 (Float Basics): Use `(/ 0.0 0.0)' instead of `(sqrt -1.0)'.
7655
76562003-12-30 Luc Teirlinck <teirllm@auburn.edu>
7657
7658 * tips.texi (Documentation Tips): Update item on hyperlinks in
7659 documentation strings.
7660
7661 * errors.texi (Standard Errors): Various small corrections and
7662 additions.
7663
7664 * control.texi: Various small changes in addition to the
7665 following.
7666 (Signaling Errors): Provide some more details on how `signal'
7667 constructs the error message. Add anchor to the definition of
7668 `signal'.
7669 (Error Symbols): Describe special treatment of `quit'.
7670 (Cleanups): Rename BODY argument of `unwind-protect' to BODY-FORM
7671 to emphasize that it has to be a single form.
7672
7673 * buffers.texi: Add anchor.
7674
76752003-12-29 Richard M. Stallman <rms@gnu.org>
7676
7677 * windows.texi (Choosing Window): Add same-window-p, special-display-p.
7678 (Window Configurations): Add window-configuration-frame.
7679
7680 * variables.texi (Creating Buffer-Local): Add local-variable-if-set-p.
7681
7682 * text.texi (Examining Properties): Add get-char-property-and-overlay.
7683 Change arg name in get-char-property.
7684 (Special Properties): Update handling of keymap property.
7685
7686 * strings.texi (Modifying Strings): Add clear-string.
7687 (Text Comparison): Add assoc-string and remove
7688 assoc-ignore-case, assoc-ignore-representation.
7689
7690 * os.texi (Time of Day): Add set-time-zone-rule.
7691
7692 * numbers.texi (Math Functions): asin, acos, log, log10
7693 report domain-error errors.
7694
7695 * nonascii.texi (Converting Representations):
7696 Add multibyte-char-to-unibyte and unibyte-char-to-multibyte.
7697 (Encoding and I/O): Add file-name-coding-system.
7698
7699 * modes.texi (Search-based Fontification): Explain that
7700 face specs are symbols with face names as values.
7701
7702 * minibuf.texi (Minibuffer Misc): Add set-minibuffer-window.
7703
7704 * lists.texi (Building Lists): remq moved elsewhere.
7705 (Sets And Lists): remq moved here.
7706 (Association Lists): Refer to assoc-string.
7707
7708 * internals.texi (Garbage Collection): Add memory-use-counts.
7709
7710 * frames.texi (Frames and Windows): Add set-frame-selected-window
7711 and frame-root-window.
7712
7713 * files.texi (Contents of Directories):
7714 Add directory-files-and-attributes.
7715
7716 * display.texi (Refresh Screen): Add force-window-update.
7717 (Invisible Text): Explain about moving point out of invis text.
7718 (Overlay Properties): Add overlay-properties.
7719 (Managing Overlays): Add overlayp.
7720 (GIF Images): Invalid image number displays a hollow box.
7721
7722 * buffers.texi (Buffer Modification): Add restore-buffer-modified-p.
7723 (Killing Buffers): Add buffer-live-p.
7724
77252003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
7726
7727 * display.texi (Fringes): Fix typo "set-buffer-window".
7728
77292003-12-24 Luc Teirlinck <teirllm@auburn.edu>
7730
7731 * display.texi, eval.texi, help.texi, internals.texi, loading.texi:
7732 * nonascii.texi, processes.texi, tips.texi, variables.texi:
7733 Add or change various xrefs and anchors.
7734
7735 * commands.texi: Replace all occurrences of @acronym{CAR} with
7736 @sc{car}, for consistency with the rest of the Elisp manual.
7737 `car' and `cdr' are historically acronyms, but are no longer
7738 widely thought of as such.
7739
7740 * internals.texi (Pure Storage): Mention that `purecopy' does not
7741 copy text properties.
7742 (Object Internals): Now 29 bits are used (in most implementations)
7743 to address Lisp objects.
7744
7745 * variables.texi (Variables with Restricted Values): New node.
7746
7747 * objects.texi (Lisp Data Types): Mention that certain variables
7748 can only take on a restricted set of values and add an xref to
7749 the new node "Variables with Restricted Values".
7750
7751 * eval.texi (Function Indirection): Describe the errors that
7752 `indirect-function' can signal.
7753 (Eval): Clarify the descriptions of `eval-region' and `values'.
7754 Describe `eval-buffer' instead of `eval-current-buffer' and
7755 mention `eval-current-buffer' as an alias for `current-buffer'.
7756 Correct the description and mention all optional arguments.
7757
7758 * nonascii.texi: Various small changes in addition to the
7759 following.
7760 (Converting Representations): Clarify behavior of
7761 `string-make-multibyte' and `string-to-multibyte' for unibyte all
7762 ASCII arguments.
7763 (Character Sets): Document the variable `charset-list' and adapt
7764 the definition of the function `charset-list' accordingly.
7765 (Translation of Characters): Clarify use of generic characters in
7766 `make-translation-table'. Clarify and correct the description of
7767 the use of translation tables in encoding and decoding.
7768 (User-Chosen Coding Systems): Correct and clarify the description
7769 of `select-safe-coding-system'.
7770 (Default Coding Systems): Clarify description of
7771 `file-coding-system-alist'.
7772
77732003-11-30 Luc Teirlinck <teirllm@auburn.edu>
7774
7775 * strings.texi (Text Comparison): Correctly describe when two
7776 strings are `equal'. Combine and clarify descriptions of
7777 `assoc-ignore-case' and `assoc-ignore-representation'.
7778
7779 * objects.texi (Non-ASCII in Strings): Clarify description of
7780 when a string is unibyte or multibyte.
7781 (Bool-Vector Type): Update examples.
7782 (Equality Predicates): Correctly describe when two strings are
7783 `equal'.
7784
77852003-11-29 Luc Teirlinck <teirllm@auburn.edu>
7786
7787 * lists.texi (Building Lists): `append' no longer accepts integer
7788 arguments. Update the description of `number-sequence' to reflect
7789 recent changes.
7790 (Sets And Lists): Describe `member-ignore-case' after `member'.
7791
77922003-11-27 Kim F. Storm <storm@cua.dk>
7793
7794 * commands.texi (Click Events): Click object may be an images.
7795 Describe (dx . dy) element of click positions.
7796 (Accessing Events): Remove duplicate posn-timestamp.
7797 New functions posn-object and posn-object-x-y.
7798
77992003-11-23 Kim F. Storm <storm@cua.dk>
7800
7801 * commands.texi (Click Events): Describe enhancements to event
7802 position lists, including new text-pos and (col . row) items.
7803 Mention left-fringe and right-fringe area events.
7804 (Accessing Events): New functions posn-area and
7805 posn-actual-col-row. Mention posn-timestamp. Mention that
7806 posn-point in non-text area still returns buffer position.
7807 Clarify posn-col-row.
7808
78092003-11-21 Lars Hansen <larsh@math.ku.dk>
7810
7811 * files.texi (File Attributes): Describe new parameter ID-FORMAT.
7812 * anti.texi (File Attributes): Describe removed parameter
7813 ID-FORMAT.
7814
78152003-11-20 Luc Teirlinck <teirllm@auburn.edu>
7816
7817 * positions.texi (Positions): Mention that, if a marker is used as
7818 a position, its buffer is ignored.
7819
7820 * markers.texi (Overview of Markers): Mention it here too.
7821
78222003-11-12 Luc Teirlinck <teirllm@auburn.edu>
7823
7824 * numbers.texi (Numeric Conversions): Not just `floor', but also
7825 `truncate', `ceiling' and `round' accept optional argument DIVISOR.
7826
78272003-11-10 Luc Teirlinck <teirllm@auburn.edu>
7828
7829 * markers.texi (Creating Markers): Specify insertion type of
7830 created markers. Add xref to `Marker Insertion Types'.
7831 Second argument to `copy-marker' is optional.
7832 (Marker Insertion Types): Mention that most markers are created
7833 with insertion type nil.
7834 (The Mark): Correctly describe when `mark' signals an error.
7835 (The Region): Correctly describe when `region-beginning' and
7836 `region-end' signal an error.
7837
78382003-11-08 Luc Teirlinck <teirllm@auburn.edu>
7839
7840 * hash.texi (Creating Hash): Clarify description of `eql'.
7841 `makehash' is obsolete.
7842 (Hash Access): Add Common Lisp notes for `remhash' and `clrhash'.
7843
7844 * positions.texi (Point): Change description of `buffer-end', so
7845 that it is also correct for floating point arguments.
7846 (List Motion): Correct argument lists of `beginning-of-defun' and
7847 `end-of-defun'.
7848 (Excursions): Add xref to `Marker Insertion Types'.
7849 (Narrowing): Argument to `narrow-to-page' is optional.
7850
78512003-11-06 Luc Teirlinck <teirllm@auburn.edu>
7852
7853 * streams.texi (Output Streams): Clarify behavior of point for
7854 marker output streams.
7855
78562003-11-04 Luc Teirlinck <teirllm@auburn.edu>
7857
7858 * variables.texi (Defining Variables): Second argument to
7859 `defconst' is not optional.
7860 (Setting Variables): Mention optional argument APPEND to
7861 `add-to-list'.
7862 (Creating Buffer-Local): Expand description of
7863 `make-variable-buffer-local'.
7864 (Frame-Local Variables): Expand description of
7865 `make-variable-frame-local'.
7866 (Variable Aliases): Correct description of optional argument
7867 DOCSTRING to `defvaralias'. Mention return value of
7868 `defvaralias'.
7869 (File Local Variables): Add xref to `File variables' in Emacs
7870 Manual. Correct description of `hack-local-variables'. Mention
7871 `safe-local-variable' property. Mention optional second argument
7872 to `risky-local-variable-p'.
7873
78742003-11-03 Luc Teirlinck <teirllm@auburn.edu>
7875
7876 * symbols.texi (Symbol Plists): Mention return value of `setplist'.
7877
78782003-11-02 Jesper Harder <harder@ifa.au.dk> (tiny change)
7879
7880 * lispref/anti.texi, lispref/backups.texi, lispref/commands.texi
7881 lispref/customize.texi, lispref/display.texi, lispref/files.texi,
7882 lispref/internals.texi, lispref/keymaps.texi, lispref/loading.texi,
7883 lispref/modes.texi, lispref/nonascii.texi, lispref/numbers.texi,
7884 lispref/objects.texi, lispref/os.texi, lispref/positions.texi,
7885 lispref/processes.texi, lispref/searching.texi,
7886 lispref/sequences.texi, lispref/streams.texi, lispref/strings.texi,
7887 lispref/syntax.texi, lispref/text.texi: Replace @sc{foo} with
7888 @acronym{FOO}.
7889
78902003-10-27 Luc Teirlinck <teirllm@auburn.edu>
7891
7892 * strings.texi (Creating Strings): Argument START to `substring'
7893 can not be `nil'. Expand description of
7894 `substring-no-properties'. Correct description of `split-string',
7895 especially with respect to empty matches. Prevent very bad line
7896 break in definition of `split-string-default-separators'.
7897 (Text Comparison): `string=' and `string<' also accept symbols as
7898 arguments.
7899 (String Conversion): More completely describe argument BASE in
7900 `string-to-number'.
7901 (Formatting Strings): `%s' and `%S' in `format' do require
7902 corresponding object. Clarify behavior of numeric prefix after
7903 `%' in `format'.
7904 (Case Conversion): The argument to `upcase-initials' can be a
7905 character.
7906
79072003-10-27 Kenichi Handa <handa@m17n.org>
7908
7909 * display.texi (Fontsets): Fix texinfo usage.
7910
79112003-10-25 Kenichi Handa <handa@m17n.org>
7912
7913 * display.texi (Fontsets): Add description of the function
7914 set-fontset-font.
7915
79162003-10-23 Luc Teirlinck <teirllm@auburn.edu>
7917
7918 * display.texi (Temporary Displays): Add xref to `Documentation
7919 Tips'.
7920
7921 * functions.texi (Function Safety): Use inforef instead of pxref
7922 for SES.
7923
79242003-10-23 Andreas Schwab <schwab@suse.de>
7925
7926 * Makefile.in (TEX, texinputdir): Don't define.
7927 (TEXI2DVI): Define.
7928 (srcs): Remove $(srcdir)/index.perm and $(srcdir)/index.unperm,
7929 add $(srcdir)/index.texi.
7930 ($(infodir)/elisp): Remove index.texi dependency.
7931 (elisp.dvi): Likewise. Use $(TEXI2DVI).
7932 (index.texi): Remove target.
7933 (dist): Don't link $(srcdir)/permute-index.
7934 (clean): Don't remove index.texi.
7935
7936 * permute-index, index.perm: Remove.
7937 * index.texi: Rename from index.unperm.
7938
79392003-10-22 Luc Teirlinck <teirllm@auburn.edu>
7940
7941 * tips.texi (Documentation Tips): Document new behavior for face
7942 and variable hyperlinks in Help mode.
7943
79442003-10-21 Luc Teirlinck <teirllm@auburn.edu>
7945
7946 * objects.texi (Integer Type): Update for extra bit of integer range.
7947 (Character Type): Ditto.
7948
79492003-10-16 Eli Zaretskii <eliz@gnu.org>
7950
7951 * numbers.texi (Integer Basics): Add index entries for reading
7952 numbers in hex, octal, and binary.
7953
79542003-10-16 Lute Kamstra <lute@gnu.org>
7955
7956 * modes.texi (Mode Line Format): Mention force-mode-line-update's
7957 argument.
7958
79592003-10-13 Luc Teirlinck <teirllm@auburn.edu>
7960
7961 * windows.texi (Choosing Window): Fix typo.
7962 * edebug.texi (Edebug Execution Modes): Fix typo.
7963
79642003-10-13 Richard M. Stallman <rms@gnu.org>
7965
7966 * windows.texi (Basic Windows): A window has fringe settings,
7967 display margins and scroll-bar settings.
7968 (Splitting Windows): Doc split-window return value.
7969 Clean up one-window-p.
7970 (Selecting Windows): Fix typo.
7971 (Cyclic Window Ordering): Explain frame as ALL-FRAMES in next-window.
7972 (Buffers and Windows): In set-window-buffer, explain effect
7973 on fringe settings and scroll bar settings.
7974 (Displaying Buffers): In pop-to-buffer, explain nil as buffer arg.
7975 (Choosing Window): Use defopt for pop-up-frame-function.
7976 For special-display-buffer-names, explain same-window and same-frame.
7977 Clarify window-dedicated-p return value.
7978 (Textual Scrolling): scroll-up and scroll-down can get an error.
7979 (Horizontal Scrolling): Clarify auto-hscroll-mode.
7980 Clarify set-window-hscroll.
7981 (Size of Window): Don't mention tool bar in window-height.
7982 (Coordinates and Windows): Explain what coordinates-in-window-p
7983 returns for fringes and display margins.
7984 (Window Configurations): Explain saving fringes, etc.
7985
7986 * tips.texi (Library Headers): Clean up Documentation.
7987
7988 * syntax.texi (Parsing Expressions): Clean up forward-comment
7989 and parse-sexp-lookup-properties.
7990
7991 * sequences.texi (Sequence Functions): sequencep accepts bool-vectors.
7992
7993 * os.texi (System Environment): Clean up text for load-average errors.
7994
7995 * modes.texi (Hooks): Don't explain local hook details at front.
7996 Clarify run-hooks and run-hook-with-args a little.
7997 Clean up add-hook and remove-hook.
7998
7999 * edebug.texi (Edebug Execution Modes): Clarify t.
8000 Document edebug-sit-for-seconds.
8001 (Coverage Testing): Document C-x X = and =.
8002 (Instrumenting Macro Calls): Fix typo.
8003 (Specification List): Don't index the specification keywords.
8004
80052003-10-10 Kim F. Storm <storm@cua.dk>
8006
8007 * processes.texi (Network): Introduce make-network-process.
8008
80092003-10-09 Luc Teirlinck <teirllm@auburn.edu>
8010
8011 * tips.texi (Library Headers): Fix typo.
8012
80132003-10-07 Juri Linkov <juri@jurta.org>
8014
8015 * modes.texi (Imenu): Mention imenu-create-index-function's
8016 default value. Explain submenus better.
8017
80182003-10-07 Lute Kamstra <lute@gnu.org>
8019
8020 * modes.texi (Faces for Font Lock): Fix typo.
8021 (Hooks): Explain how buffer-local hook variables can refer to
8022 global hook variables.
8023 Various minor clarifications.
8024
80252003-10-06 Lute Kamstra <lute@gnu.org>
8026
8027 * tips.texi (Coding Conventions): Mention naming conventions for
8028 hooks.
8029
80302003-10-05 Luc Teirlinck <teirllm@auburn.edu>
8031
8032 * loading.texi (Library Search): Correct default value of
8033 load-suffixes.
8034 (Named Features): Fix typo.
8035
80362003-10-05 Richard M. Stallman <rms@gnu.org>
8037
8038 * loading.texi (Named Features): In `provide',
8039 say how to test for subfeatures.
8040 (Unloading): In unload-feature, use new var name
8041 unload-feature-special-hooks.
8042
80432003-10-03 Lute Kamstra <lute@gnu.org>
8044
8045 * modes.texi (Major Mode Conventions): Mention third way to set up
8046 Imenu.
8047 (Imenu): A number of small fixes.
8048 Delete documentation of internal variable imenu--index-alist.
8049 Document the return value format of imenu-create-index-function
8050 functions.
8051
80522003-09-30 Richard M. Stallman <rms@gnu.org>
8053
8054 * processes.texi (Network): Say what stopped datagram connections do.
8055
8056 * lists.texi (Association Lists): Clarify `assq-delete-all'.
8057
8058 * display.texi (Overlay Properties): Clarify `evaporate' property.
8059
80602003-09-29 Lute Kamstra <lute@gnu.org>
8061
8062 * modes.texi (Mode Line Data): Explain when symbols in mode-line
8063 constructs should be marked as risky.
8064 Change cons cell into proper list.
8065 (Mode Line Variables): Change cons cell into proper list.
8066
80672003-09-26 Lute Kamstra <lute@gnu.org>
8068
8069 * modes.texi (Mode Line Data): Document the :propertize construct.
8070 (Mode Line Variables): Reorder the descriptions of the variables
8071 to match their order in the default mode-line-format.
8072 Describe the new variables mode-line-position and mode-line-modes.
8073 Update the default values of mode-line-frame-identification,
8074 minor-mode-alist, and default-mode-line-format.
8075 (Properties in Mode): Mention the :propertize construct.
8076
80772003-09-26 Richard M. Stallman <rms@gnu.org>
8078
8079 * buffers.texi, commands.texi, debugging.texi, eval.texi:
8080 * loading.texi, minibuf.texi, text.texi, variables.texi:
8081 Avoid @strong{Note:}.
8082
80832003-09-26 Richard M. Stallman <rms@gnu.org>
8084
8085 * keymaps.texi (Remapping Commands): Fix typo.
8086
80872003-09-23 Luc Teirlinck <teirllm@mail.auburn.edu>
8088
8089 * processes.texi (Low-Level Network): Fix typo.
8090
80912003-09-23 Kim F. Storm <storm@cua.dk>
8092
8093 * processes.texi (Network, Network Servers): Fix typos.
8094 (Low-Level Network): Add timeout value for :server keyword.
8095 Add new option keywords to make-network-process.
8096 Add set-network-process-options.
8097 Explain how to test availability of network options.
8098
80992003-09-19 Richard M. Stallman <rms@gnu.org>
8100
8101 * text.texi (Motion by Indent): Arg to
8102 backward-to-indentation and forward-to-indentation is optional.
8103
8104 * strings.texi (Creating Strings): Add substring-no-properties.
8105
8106 * processes.texi
8107 (Process Information): Add list-processes arg QUERY-ONLY.
8108 Delete process-contact from here.
8109 Add new status values for process-status.
8110 Add process-get, process-put, process-plist, set-process-plist.
8111 (Synchronous Processes): Add call-process-shell-command.
8112 (Signals to Processes): signal-process allows process objects.
8113 (Network): Complete rewrite.
8114 (Network Servers, Datagrams, Low-Level Network): New nodes.
8115
8116 * positions.texi (Word Motion): forward-word, backward-word
8117 arg is optional. Reword.
8118
8119 * abbrevs.texi (Defining Abbrevs): Index no-self-insert.
8120
8121 * variables.texi (Creating Buffer-Local):
8122 Delete duplicate definition of buffer-local-value.
8123 (File Local Variables): Explain about discarding text props.
8124
81252003-09-11 Richard M. Stallman <rms@gnu.org>
8126
8127 * minibuf.texi (Intro to Minibuffers): Explain that the minibuffer
8128 changes variables that record input events.
8129 (Minibuffer Misc): Add minibuffer-selected-window.
8130
8131 * lists.texi (Building Lists): Add copy-tree.
8132
8133 * display.texi (Fontsets): Add char-displayable-p.
8134 (Scroll Bars): New node.
8135
81362003-09-08 Lute Kamstra <lute@gnu.org>
8137
8138 * modes.texi (%-Constructs): Document new `%i' and `%I'
8139 constructs.
8140
81412003-09-03 Peter Runestig <peter@runestig.com>
8142
8143 * makefile.w32-in: New file.
8144
81452003-08-29 Richard M. Stallman <rms@gnu.org>
8146
8147 * display.texi (Overlay Properties): Clarify how priorities
8148 affect use of the properties.
8149
81502003-08-19 Luc Teirlinck <teirllm@mail.auburn.edu>
8151
8152 * customize.texi (Type Keywords): Correct the description of
8153 `:help-echo' in the case where `motion-doc' is a function.
8154
81552003-08-14 John Paul Wallington <jpw@gnu.org>
8156
8157 * modes.texi (Emulating Mode Line): Subsection, not section.
8158
81592003-08-13 Richard M. Stallman <rms@gnu.org>
8160
8161 * elisp.texi (Top): Update subnode lists in menu.
8162
8163 * text.texi (Insertion): Add insert-buffer-substring-no-properties.
8164 (Kill Functions): kill-region has new arg yank-handler.
8165 (Yanking): New node.
8166 (Yank Commands): Add yank-undo-function.
8167 (Low-Level Kill Ring):
8168 kill-new and kill-append have new arg yank-handler.
8169 (Changing Properties): Add remove-list-of-text-properties.
8170 (Atomic Changes): New node.
8171
8172 * symbols.texi (Other Plists): Add lax-plist-get, lax-plist-put.
8173
8174 * streams.texi (Output Variables): Add eval-expression-print-length
8175 and eval-expression-print-level.
8176
8177 * os.texi (Time Conversion): For encode-time, explain limits on year.
8178
8179 * objects.texi (Character Type): Define anchor "modifier bits".
8180
8181 * modes.texi (Emulating Mode Line): New node.
8182 (Search-based Fontification): Font Lock uses font-lock-face property.
8183 (Other Font Lock Variables): Likewise.
8184
8185 * keymaps.texi (Format of Keymaps): Keymaps contain char tables,
8186 not vectors.
8187 (Active Keymaps): Add emulation-mode-map-alists.
8188 (Functions for Key Lookup): key-binding has new arg no-remap.
8189 (Remapping Commands): New node.
8190 (Scanning Keymaps): where-is-internal has new arg no-remap.
8191 (Tool Bar): Add tool-bar-local-item-from-menu.
8192 Clarify when to use tool-bar-add-item-from-menu.
8193
8194 * commands.texi (Interactive Call): commandp has new arg.
8195 (Command Loop Info): Add this-original-command.
8196
81972003-08-06 John Paul Wallington <jpw@gnu.org>
8198
8199 * compile.texi (Compiler Errors): Say `@end defmac' after `@defmac'.
8200
8201 * display.texi (Warning Basics): Fix typo.
8202 (Fringes): Add closing curly bracket and fix typo.
8203
8204 * elisp.texi (Top): Fix typo.
8205
82062003-08-05 Richard M. Stallman <rms@gnu.org>
8207
8208 * elisp.texi: Update lists of subnodes.
8209
8210 * windows.texi (Buffers and Windows): set-window-buffer has new arg.
8211
8212 * variables.texi (Local Variables): Use lc for example variable names.
8213
8214 * tips.texi (Library Headers): Explain where to put -*-.
8215
8216 * strings.texi (Creating Strings): Fix xref for vconcat.
8217
8218 * sequences.texi (Vector Functions):
8219 vconcat no longer allows integer args.
8220
8221 * minibuf.texi (Reading File Names): read-file-name has new
8222 arg PREDICATE. New function read-directory-name.
8223
8224 * macros.texi (Defining Macros): Give definition of `declare'.
8225 (Indenting Macros): New node.
8226
8227 * frames.texi (Parameter Access): Add modify-all-frames-parameters.
8228 (Window Frame Parameters): Make separate table of parameters
8229 that are coupled with specific face attributes.
8230 (Deleting Frames): delete-frame-hooks renamed to
8231 delete-frame-functions.
8232
8233 * files.texi (Magic File Names): Add file-remote-p.
8234 Clarify file-local-copy.
8235
8236 * edebug.texi (Instrumenting Macro Calls): Don't define `declare'
8237 here; instead xref Defining Macros.
8238
8239 * display.texi (Warnings): New node, and subnodes.
8240 (Fringes): New node.
8241
8242 * debugging.texi (Test Coverage): New node.
8243
8244 * compile.texi (Compiler Errors): Explain with-no-warnings
8245 and other ways to suppress warnings.
8246
8247 * commands.texi (Interactive Call): Minor clarification.
8248
8249 * buffers.texi (Buffer File Name): set-visited-file-name
8250 renames the buffer too.
8251
8252 * abbrevs.texi (Abbrev Tables): Add copy-abbrev-table.
8253
82542003-07-24 Markus Rost <rost@math.ohio-state.edu>
8255
8256 * abbrevs.texi (Abbrev Expansion): Use \s syntax in example.
8257
82582003-07-22 Markus Rost <rost@math.ohio-state.edu>
8259
8260 * internals.texi (Garbage Collection): Fix previous change.
8261
82622003-07-22 Richard M. Stallman <rms@gnu.org>
8263
8264 * files.texi (Truenames): Add LIMIT arg to file-chase-links.
8265
8266 * display.texi (Width): Use \s syntax in example.
8267 (Font Selection): Add face-font-rescale-alist.
8268
8269 * modes.texi (Imenu): Add xref to Emacs Manual node on Imenu.
8270 Remove spurious indent in example.
8271
8272 * lists.texi (Building Lists): Add number-sequence.
8273
8274 * internals.texi (Garbage Collection): Add gcs-done, gc-elapsed.
8275
8276 * functions.texi (Function Documentation): Explain how to
8277 show calling convention explicitly in the doc string.
8278
8279 * windows.texi (Selecting Windows): save-selected-window saves
8280 selected window of each frame.
8281 (Window Configurations): Minor change.
8282
8283 * syntax.texi (Syntax Table Functions): Use \s syntax in examples.
8284
8285 * streams.texi (Output Variables): Add print-continuous-numbering
8286 and print-number-table.
8287
8288 * processes.texi (Decoding Output): New node.
8289
8290 * os.texi (Time Conversion): decode-time arg is optional.
8291
8292 * objects.texi (Character Type): Don't use space as example for \.
8293 Make list of char names and \-sequences correspond.
8294 Explain that \s is not used in strings. `\ ' needs space after.
8295
8296 * nonascii.texi (Converting Representations): Add string-to-multibyte.
8297 (Translation of Characters): Add translation-table-for-input.
8298 (Default Coding Systems): Add auto-coding-functions.
8299 (Explicit Encoding): Add decode-coding-inserted-region.
8300 (Locales): Add locale-info.
8301
8302 * minibuf.texi (Basic Completion): Describe test-completion.
8303 Collections can be lists of strings.
8304 Clean up lazy-completion-table.
8305 (Programmed Completion): Mention test-completion.
8306 Clarify why lambda expressions are not accepted.
8307 (Minibuffer Misc): Describe minibufferp.
8308
83092003-07-14 Richard M. Stallman <rms@gnu.org>
8310
8311 * buffers.texi (Killing Buffers): kill-buffer-hook is perm local.
8312
8313 * windows.texi (Selecting Windows): New arg to select-window.
8314 (Selecting Windows): Add with-selected-window.
8315 (Size of Window): Add window-inside-edges, etc.
8316
8317 * internals.texi (Garbage Collection): Add post-gc-hook.
8318
8319 * processes.texi (Subprocess Creation): Add exec-suffixes.
8320
8321 * keymaps.texi (Functions for Key Lookup): Add current-active-maps.
8322 (Scanning Keymaps): Add map-keymaps.
8323 (Defining Menus): Add keymap-prompt.
8324
8325 * numbers.texi (Integer Basics): Add most-positive-fixnum,
8326 most-negative-fixnum.
8327
8328 * compile.texi (Byte Compilation): Explain no-byte-compile.
8329 (Compiler Errors): New node.
8330
8331 * os.texi (User Identification): user-uid, user-real-uid
8332 can return float.
8333
8334 * modes.texi (Major Mode Conventions): Explain about run-mode-hooks
8335 and about derived modes.
8336 (Minor Modes): Add minor-mode-list.
8337 (Defining Minor Modes): Keyword args for define-minor-mode.
8338 (Search-based Fontification): Explain managing other properties.
8339 (Other Font Lock Variables): Add font-lock-extra-managed-props.
8340 (Faces for Font Lock): Add font-lock-preprocessor-face.
8341 (Hooks): Add run-mode-hooks and delay-mode-hooks.
8342
8343 * variables.texi (Creating Buffer-Local): Add buffer-local-value.
8344 (Variable Aliases): Clarify defvaralias.
8345
8346 * loading.texi (Library Search): Add load-suffixes.
8347
8348 * minibuf.texi (Basic Completion): Add lazy-completion-table.
8349 (Programmed Completion): Add dynamic-completion-table.
8350
8351 * files.texi (Changing Files): copy-file allows dir as NEWNAME.
8352 (Magic File Names): Specify precedence order of handlers.
8353
8354 * commands.texi (Command Overview): Emacs server runs pre-command-hook
8355 and post-command-hook.
8356 (Waiting): New calling convention for sit-for.
8357
8358 * text.texi (Special Properties): local-map and keymap properties
8359 apply based on their stickiness.
8360
83612003-07-07 Richard M. Stallman <rms@gnu.org>
8362
8363 * modes.texi (Minor Mode Conventions): Specify only some kinds
8364 of list values as args to minor modes.
8365
8366 * files.texi (File Name Expansion): Warn about iterative use
8367 of substitute-in-file-name.
8368
8369 * advice.texi (Activation of Advice): Clean up previous change.
8370
83712003-07-06 Markus Rost <rost@math.ohio-state.edu>
8372
8373 * advice.texi (Activation of Advice): Note that ad-start-advice is
8374 turned on by default.
8375
83762003-06-30 Richard M. Stallman <rms@gnu.org>
8377
8378 * text.texi (Buffer Contents): Document current-word.
8379 (Change Hooks): Not called for *Messages*.
8380
8381 * functions.texi (Defining Functions): Explain about redefining
8382 primitives.
8383 (Function Safety): Renamed. Minor changes.
8384 Comment out the detailed criteria for what is safe.
8385
83862003-06-22 Andreas Schwab <schwab@suse.de>
8387
8388 * objects.texi (Symbol Type): Fix description of examples.
8389
83902003-06-16 Andreas Schwab <schwab@suse.de>
8391
8392 * hash.texi (Creating Hash): Fix description of :weakness.
8393
83942003-06-13 Kai Großjohann <kai.grossjohann@gmx.net>
8395
8396 * files.texi (Changing Files): copy-file copies file modes, too.
8397
83982003-05-28 Richard M. Stallman <rms@gnu.org>
8399
8400 * strings.texi (Creating Strings): Clarify split-string.
8401
84022003-05-22 Stephen J. Turnbull <stephen@xemacs.org>
8403
8404 * strings.texi (Creating Strings): Update split-string specification
8405 and examples.
8406
84072003-05-19 Richard M. Stallman <rms@gnu.org>
8408
8409 * elisp.texi: Correct invariant section names.
8410
84112003-04-20 Richard M. Stallman <rms@gnu.org>
8412
8413 * os.texi (Timers): Explain about timers and quitting.
8414
84152003-04-19 Richard M. Stallman <rms@gnu.org>
8416
8417 * internals.texi (Writing Emacs Primitives): Strings are
8418 no longer special for GCPROs. Mention GCPRO5, GCPRO6.
8419 Explain GCPRO convention for varargs function args.
8420
84212003-04-16 Richard M. Stallman <rms@gnu.org>
8422
8423 * minibuf.texi (Minibuffer Misc): Document fn minibuffer-message.
8424
84252003-04-08 Richard M. Stallman <rms@gnu.org>
8426
8427 * files.texi (Kinds of Files): Correct return value of file-symlink-p.
8428
84292003-02-13 Kim F. Storm <storm@cua.dk>
8430
8431 * objects.texi (Character Type): New \s escape for space.
8432
84332003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
8434
8435 * os.texi (System Environment): Add cygwin system-type.
8436
84372003-01-25 Richard M. Stallman <rms@gnu.org>
8438
8439 * keymaps.texi: Document that a symbol can act as a keymap.
8440
84412003-01-13 Richard M. Stallman <rms@gnu.org>
8442
8443 * text.texi (Changing Properties): Say string indices are origin-0.
8444
8445 * positions.texi (Screen Lines) <compute-motion>:
8446 Correct order of elts in return value.
8447
8448 * keymaps.texi (Changing Key Bindings) <define-key>: Mention
8449 how to define a default binding.
8450
84512002-12-07 Markus Rost <rost@math.ohio-state.edu>
8452
8453 * loading.texi (Unloading): Fix recent change for load-history.
8454
8455 * customize.texi (Simple Types): Clarify description of custom
8456 type 'number. Describe new custom type 'float.
8457
84582002-12-04 Markus Rost <rost@math.ohio-state.edu>
8459
8460 * variables.texi (File Local Variables): Fix typo.
8461
84622002-10-23 Kai Großjohann <kai.grossjohann@uni-duisburg.de>
8463
8464 From Michael Albinus <Michael.Albinus@alcatel.de>.
8465
8466 * README: Target for Info file is `make info'.
8467
8468 * files.texi (File Name Components): Fix typos in
8469 `file-name-sans-extension'.
8470 (Magic File Names): Complete list of operations for magic file
8471 name handlers.
8472
84732002-09-16 Jonathan Yavner <jyavner@engineer.com>
8474
8475 * variables.texi (File Local Variables): New function
8476 risky-local-variable-p.
8477
84782002-09-15 Jonathan Yavner <jyavner@engineer.com>
8479
8480 * functions.texi (Function safety): New node about unsafep.
8481
84822002-08-05 Per Abrahamsen <abraham@dina.kvl.dk>
8483
8484 * customize.texi (Splicing into Lists): Fix example.
8485 Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>.
8486
84872002-06-17 Juanma Barranquero <lektu@terra.es>
8488
8489 * frames.texi (Display Feature Testing): Fix typo.
8490
84912002-06-12 Andreas Schwab <schwab@suse.de>
8492
8493 * frames.texi (Initial Parameters, Resources): Fix references to
8494 the Emacs manual.
8495
84962002-05-13 Kim F. Storm <storm@cua.dk>
8497
8498 * variables.texi (Intro to Buffer-Local): Updated warning and
8499 example relating to changing buffer inside let.
8500
85012002-03-10 Jan Djärv <jan.h.d@swipnet.se>
8502
8503 * os.texi (Session Management): New node about X Session management.
8504
85052002-01-18 Eli Zaretskii <eliz@is.elta.co.il>
8506
8507 * elisp.texi (VERSION): Set to 2.9. Update the version of Emacs
8508 to which the manual corresponds, and the copyright years.
8509
8510 * Makefile.in (VERSION): Set to 2.9.
8511
85122001-11-29 Eli Zaretskii <eliz@is.elta.co.il>
8513
8514 * elisp.texi: Change the category in @dircategory to "Emacs", to
8515 make it consistent with info/dir.
8516
85172001-11-25 Miles Bader <miles@gnu.org>
8518
8519 * text.texi (Fields): Describe new `limit' arg in
8520 field-beginning/field-end.
8521
85222001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
8523
8524 * permute-index: Don't depend on csh-specific features.
8525 Replace the interpreter name with /bin/sh.
8526
8527 * two-volume-cross-refs.txt: New file.
8528 * two.el: New file.
8529 * spellfile: New file.
8530
85312001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
8532
8533 * permute-index: New file.
8534
8535 * vol1.texi, vol2.texi: Renamed from elisp-vol1.texi and
8536 elisp-vol2.texi, respectively, to avoid file-name clashes in DOS
8537 8+3 restricted namespace.
8538
8539 * Makefile.in (infodir): Define relative to $(srcdir).
8540 ($(infodir)/elisp): Don't chdir into $(srcdir), but add it to the
8541 include directories list via -I switch to makeinfo.
8542 (index.texi): Use cp if both hard and symbolic links fail.
8543
85442001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
8545
8546 * Makefile.in (distclean): Add.
8547
8548 The following changes make ELisp manual part of the Emacs
8549 distribution:
8550
8551 * Makefile.in: Add Copyright notice.
8552 (prefix): Remove.
8553 (infodir): Change value to "../info".
8554 (VPATH): New variable.
8555 (MAKE): Don't define.
8556 (texmacrodir): Don't define.
8557 (texinputdir): Append the existing value of TEXINPUTS.
8558 ($(infodir)/elisp): Instead of just "elisp". Reformat the
8559 command to be compatible with man/Makefile.in, and to put the
8560 output into ../info.
8561 (info): Add target.
8562 (installall): Target removed.
8563
85642001-10-31 Pavel Janík <Pavel@Janik.cz>
8565
8566 * tips.texi (Coding Conventions): Fix typo.
8567
85682001-10-23 Gerd Moellmann <gerd@gnu.org>
8569
8570 * Makefile.in (srcs): Add gpl.texi and doclicense.texi.
8571
85722001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
8573
8574 * files.texi (File Name Components): Update the description of
8575 file-name-sans-extension and file-name-extension, as they now
8576 ignore leading dots.
8577
85782001-10-20 Gerd Moellmann <gerd@gnu.org>
8579
8580 * (Version 21.1 released.)
8581
85822001-10-19 Miles Bader <miles@gnu.org>
8583
8584 * positions.texi (Text Lines): Describe behavior of
8585 `beginning-of-line'/`end-of-line' in the presence of field properties.
8586
85872001-10-17 Gerd Moellmann <gerd@gnu.org>
8588
8589 * Makefile.in (VERSION): Set to 2.8.
8590 (manual): Use `manual-21'.
8591
8592 * elisp.texi (VERSION): Add and use it where the version
8593 number was used. Set it to 2.8.
8594
8595 * intro.texi: Likewise.
8596
85972001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
8598
8599 * files.texi (File Name Completion): Document the significance of
8600 a trailing slash in elements of completion-ignored-extensions.
8601
86022001-10-06 Miles Bader <miles@gnu.org>
8603
8604 * variables.texi (Variable Aliases): It's `@defmac', not `@defmacro'.
8605
86062001-10-04 Gerd Moellmann <gerd@gnu.org>
8607
8608 * variables.texi (Variable Aliases): New node.
8609
86102001-10-04 Gerd Moellmann <gerd@gnu.org>
8611
8612 * Branch for 21.1.
8613
86142001-10-02 Miles Bader <miles@gnu.org>
8615
8616 * minibuf.texi (Minibuffer Misc): Add entries for
8617 `minibuffer-contents', `minibuffer-contents-no-properties', and
8618 `delete-minibuffer-contents'.
8619 Correct description for `minibuffer-prompt-end'.
8620
8621 * text.texi (Property Search): Correct descriptions of
8622 `next-char-property-change' and `previous-char-property-change'.
8623 Add entries for `next-single-char-property-change' and
8624 `previous-single-char-property-change'.
8625 Make operand names a bit more consistent.
8626
86272001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
8628
8629 * frames.texi (Finding All Frames): Document that next-frame and
8630 previous-frame are local to current terminal.
8631
86322001-09-26 Eli Zaretskii <eliz@is.elta.co.il>
8633
8634 * keymaps.texi (Creating Keymaps): Fix the description of the
8635 result of make-keymap.
8636
86372001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
8638
8639 * display.texi (Font Lookup, Attribute Functions)
8640 (Image Descriptors): Add cross-references to the definition of
8641 selected frame.
8642
8643 * buffers.texi (The Buffer List): Add cross-references to the
8644 definition of selected frame.
8645
8646 * frames.texi (Input Focus): Clarify which frame is _the_ selected
8647 frame at any given time.
8648 (Multiple Displays, Size and Position): Add a cross-reference to
8649 the definition of the selected frame.
8650
86512001-09-08 Eli Zaretskii <eliz@is.elta.co.il>
8652
8653 * strings.texi (String Conversion) <string-to-number>: Document
8654 that a float is returned for integers that are too large.
8655
8656 * frames.texi (Mouse Position): Document mouse-position-function.
8657 (Display Feature Testing): Document display-images-p.
8658 (Window Frame Parameters): Document the cursor-type variable.
8659
8660 * numbers.texi (Integer Basics): Document CL style read syntax for
8661 integers in bases other than 10.
8662
8663 * positions.texi (List Motion):
8664 Document open-paren-in-column-0-is-defun-start.
8665
8666 * lists.texi (Sets And Lists): Document member-ignore-case.
8667
8668 * internals.texi (Garbage Collection): Document the used and free
8669 strings report.
8670 (Memory Usage): Document strings-consed.
8671
8672 * os.texi (Time of Day): Document float-time.
8673 (Recording Input): Document that clear-this-command-keys clears
8674 the vector to be returned by recent-keys.
8675
8676 * keymaps.texi (Scanning Keymaps) <where-is-internal>: The
8677 argument keymap can be a list.
8678
8679 * nonascii.texi (User-Chosen Coding Systems)
8680 <select-safe-coding-system>: Document the new argument
8681 accept-default-p and the variable
8682 select-safe-coding-system-accept-default-p. Tell what happens if
8683 buffer-file-coding-system is undecided.
8684 (Default Coding Systems): Document auto-coding-regexp-alist.
8685
8686 * display.texi (The Echo Area) <message>: Document
8687 message-truncate-lines.
8688 (Glyphs): Document that the glyph table is unused on windowed
8689 displays.
8690
8691 * help.texi (Describing Characters) <single-key-description>:
8692 Document the new argument no-angles.
8693 (Accessing Documentation) <documentation-property>: Document that
8694 a non-string property is evaluated.
8695 <documentation>: Document that the function-documentation property
8696 is looked for.
8697
8698 * windows.texi (Selecting Windows): Document some-window.
8699
8700 * text.texi (MD5 Checksum): New node, documents the md5 primitive.
8701
8702 * hooks.texi (Standard Hooks): Add kbd-macro-termination-hook and
8703 apropos-mode-hook.
8704
8705 * commands.texi (Using Interactive): Document interactive-form.
8706 (Keyboard Macros): Document kbd-macro-termination-hook.
8707 (Command Loop Info): Document that clear-this-command-keys clears
8708 the vector to be returned by recent-keys.
8709
87102001-09-04 Werner LEMBERG <wl@gnu.org>
8711
8712 * Makefile.in (srcdir, texinputdir): New variables.
8713 (srcs, index.texi, install): Use $(srcdir).
8714 (.PHONY): Remove elisp.dvi.
8715 (elisp): Use -I switch for makeinfo.
8716 (elisp.dvi): Use $(srcdir) and $(texinputdir).
8717 (installall, dist): Use $(srcdir).
8718 Fix path to texinfo.tex.
8719 (maintainer-clean): Add elisp.dvi and elisp.oaux.
8720
87212001-08-30 Gerd Moellmann <gerd@gnu.org>
8722
8723 * display.texi (Conditional Display): Adjust to API change.
8724
8725 * configure: New file.
8726
87272001-07-30 Gerd Moellmann <gerd@gnu.org>
8728
8729 * commands.texi (Repeat Events): Add description of
8730 double-click-fuzz.
8731
87322001-05-08 Stefan Monnier <monnier@cs.yale.edu>
8733
8734 * syntax.texi (Syntax Class Table): Add the missing designator for
8735 comment and string fences.
8736 (Syntax Properties): Add a xref to syntax table internals.
8737 (Syntax Table Internals): Document string-to-syntax.
8738
87392001-05-07 Gerd Moellmann <gerd@gnu.org>
8740
8741 * Makefile.in (install): Use install-info command line options
8742 like in Emacs' Makefile.in.
8743
87442000-12-09 Miles Bader <miles@gnu.org>
8745
8746 * windows.texi (Window Start): Update documentation for
8747 `pos-visible-in-window-p'.
8748
87492000-11-12 Stefan Monnier <monnier@cs.yale.edu>
8750
8751 * lists.texi (Building Lists): Add footnote to explain how to add
8752 to the end of a list.
8753
87542000-10-25 Gerd Moellmann <gerd@gnu.org>
8755
8756 * files.texi (Visiting Functions): Typos.
8757
87582000-10-25 Kenichi Handa <handa@etl.go.jp>
8759
8760 * files.texi (Visiting Functions): Return value of
8761 find-file-noselect may be a list of buffers if wildcards are used.
8762
87632000-10-24 Miles Bader <miles@lsi.nec.co.jp>
8764
8765 * display.texi (Defining Faces): Document `graphic' display type
8766 in face specs.
8767
87682000-10-18 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8769
8770 * hooks.texi (Standard Hooks): Replace obsolete
8771 `after-make-frame-hook' with `after-make-frame-functions'.
8772
8773 * frames.texi (Creating Frames): Ditto.
8774
8775 * variables.texi (Future Local Variables): Ditto.
8776
87772000-10-16 Gerd Moellmann <gerd@gnu.org>
8778
8779 * display.texi (Other Image Types): Add description of :foreground
8780 and :background properties of mono PBM images.
8781
87822000-08-17 Werner LEMBERG <wl@gnu.org>
8783
8784 * .cvsignore: New file.
8785
87862000-01-05 Gerd Moellmann <gerd@gnu.org>
8787
8788 * tindex.pl: New script.
8789
87901999-12-03 Dave Love <fx@gnu.org>
8791
8792 * Makefile.in (MAKEINFO): New parameter.
8793
87941999-09-17 Richard Stallman <rms@gnu.org>
8795
8796 * Makefile.in (srcs): Add hash.texi.
8797 (VERSION): Update to 20.6.
8798
87991999-09-13 Richard Stallman <rms@gnu.org>
8800
8801 * Makefile.in (index.texi): If cannot make a symlink, make a hard link.
8802
88031998-08-29 Karl Heuer <kwzh@gnu.org>
8804
8805 * configure.in: New file.
8806 * Makefile.in: Renamed from Makefile.
8807 (prefix, infodir): Use value obtained from configure.
8808 (emacslibdir): Obsolete variable deleted.
8809 (dist): Distribute configure.in, configure, Makefile.in.
8810
88111998-06-12 Richard Stallman <rms@psilocin.ai.mit.edu>
8812
8813 * Makefile (INSTALL_INFO): New variable.
8814 (install): Run install-info.
8815
88161998-05-09 Richard Stallman <rms@psilocin.ai.mit.edu>
8817
8818 * Makefile (elisp.dvi): Add missing backslash.
8819
88201998-05-02 Richard Stallman <rms@psilocin.gnu.org>
8821
8822 * Makefile (elisp.dvi): Don't depend on texindex or on elisp.tps.
8823 Run texindex without `./'. Always run texindex on elisp.tp.
8824 (elisp.tps): Target deleted.
8825
88261998-04-05 Richard Stallman <rms@psilocin.gnu.org>
8827
8828 * Makefile (srcs): Add nonascii.texi and customize.texi.
8829 (dist): Start by deleting `temp'.
8830
88311998-02-17 Richard Stallman <rms@psilocin.gnu.org>
8832
8833 * Makefile (makeinfo, texindex): Targets deleted.
8834 (makeinfo.o, texindex.o): Targets deleted.
8835 (clean, dist): Don't do anything with them or with getopt*.
8836
88371998-01-30 Richard Stallman <rms@psilocin.gnu.org>
8838
8839 * Makefile (SHELL): Defined.
8840
88411998-01-27 Richard Stallman <rms@psilocin.gnu.org>
8842
8843 * Makefile (elisp.tps): New target.
8844 (elisp.dvi): Depend on elisp.tps.
8845
88461996-04-03 Karl Heuer <kwzh@gnu.ai.mit.edu>
8847
8848 * README: Update phone number.
8849
8850 * Makefile (elisp): Make this be the default target.
8851 Depend on makeinfo.c instead of makeinfo.
8852 (install): Don't depend on elisp.dvi, since we don't install that.
8853 Use mkinstalldirs.
8854 (dist): Add mkinstalldirs.
8855
88561995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8857
8858 * Makefile (VERSION): Update version number.
8859 (maintainer-clean): Rename from realclean.
8860
88611995-06-07 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8862
8863 * Makefile (realclean): New target.
8864 (elisp): Remove any old elisp-* files first.
8865
88661993-11-23 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
8867
8868 * Makefile (VERSION): New variable.
8869 (dist): Make packaged directory name `elisp-manual-19-$(VERSION)'.
8870 Compressed file suffix should be `.gz', not `.z'.
8871
88721993-11-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8873
8874 * Makefile (elisp): Depend on makeinfo.
8875
88761993-11-19 Noah Friedman (friedman@gnu.ai.mit.edu)
8877
8878 * Makefile (srcs): Add anti.texi.
8879
88801993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8881
8882 * Makefile (infodir, prefix): New vars.
8883 (install): Use infodir.
8884 (emacsinfodir): Deleted.
8885
88861993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8887
8888 * Makefile (srcs): Add calendar.texi.
8889
8890 * Makefile (dist): Copy texindex.c and makeinfo.c.
8891 Limit elisp-* files to those with one or two digits.
8892
88931993-05-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
8894
8895 * Makefile (dist): Changed to use Gzip instead of compress.
8896
88971993-04-23 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
8898
8899 * loading.texi (Unloading): define-function changed back to
8900 defalias. It may not stay this way, but at least it's
8901 consistent with the known-good version of the code patch.
8902
89031993-03-26 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
8904
8905 * modes.texi (Hooks): Document new optional arg of add-hook.
8906
89071993-03-17 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
8908
8909 * variables.texi: Document nil initial value of buffer-local variables.
8910
8911 * tips.texi: Add new section on standard library headers.
8912
89131993-02-27 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
8914
8915 * Makefile (srcs): Add frame.texi to the list of sources.
8916
89171993-02-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
8918
8919 * Makefile (dist): Don't bother excluding autosave files; they'll
8920 never make it into the temp directory anyway, and the hash marks
8921 in the name are problematic for make and the Bourne shell.
8922 (srcs):
8923
89241993-02-12 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
8925
8926 * Makefile (dist): Don't include backup files or autosave files in
8927 the distribution tar file.
8928
89291991-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8930
8931 * Makefile (srcs): Add index.perm.
8932 (elisp.dvi): Remove erroneous shell comment.
8933 Expect output of permute-index in permuted.fns.
8934 Save old elisp.aux in elisp.oaux.
8935 (clean): Add index.texi to be deleted.
8936
89371990-08-11 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
8938
8939 * Makefile (elisp.dvi, index.texi): Use shell if instead of ifdef.
8940
89411990-06-26 David Lawrence (tale@geech)
8942
8943 * files.texi: Noted that completion-ignored-extensions is ignored
8944 when making *Completions*.
8945
89461990-06-08 Jay Fenlason (hack@ai.mit.edu)
8947
8948 * Makefile make dist now depends on elisp.dvi, since it tries
8949 to include it in the dist file.
8950
89511990-03-28 Jim Kingdon (kingdon@mole.ai.mit.edu)
8952
8953 * functions.texinfo (Mapping Functions): Add missing quote.
8954
89551989-06-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
8956
8957 * texinfo.tex (frenchspacing): Use decimal codes for char to be set.
8958 (defunargs): Turn off \hyphenchar of \sl font temporarily.
8959
89601989-05-10 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
8961
8962 * @result{}, @expansion{}, @print{}, @quiv{}, @point{},
8963 and @error{} are the terms now being used. The files in the
8964 directory have been changed to reflect this.
8965
8966 * All instances of @indentedresultt{} have been changed to
8967 ` @result{}', using 5 spaces at the begining of the line.
8968
89691989-04-24 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
8970
8971 * @result{}, @expandsto{}, @prints{}, @quiv{}, @error{}, and the
8972 experimental @indentedresult{}, @indentedexpandsto{} are part of
8973 the texinfo.tex in this directory. These TeX macros are not
8974 stable yet.
8975
89761989-04-17 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
8977
8978 * texinfo.tex: Temporarily added
8979 \let\result=\dblarrow
8980 \def\error{{\it ERROR} \longdblarrow}
8981 We need to do this better soon.
8982
89831989-04-11 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
8984
8985 * Applied Karl Berry's patches to *.texinfo files, but not to
8986 texinfo.tex; those diffs are in `berry-texinfo-tex-diffs'. (Karl's
8987 new title page format is also not applied, since it requires
8988 texinfo.tex changes.)
8989
8990 * Cleaned up `Makefile' and defined the `emacslibdir' directory
8991 for the Project GNU development environment.
8992
8993;; Local Variables:
8994;; coding: utf-8
8995;; End:
8996
8997 Copyright (C) 1998-2011 Free Software Foundation, Inc.
8998
8999 This file is part of GNU Emacs.
9000
9001 GNU Emacs is free software: you can redistribute it and/or modify
9002 it under the terms of the GNU General Public License as published by
9003 the Free Software Foundation, either version 3 of the License, or
9004 (at your option) any later version.
9005
9006 GNU Emacs is distributed in the hope that it will be useful,
9007 but WITHOUT ANY WARRANTY; without even the implied warranty of
9008 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9009 GNU General Public License for more details.
9010
9011 You should have received a copy of the GNU General Public License
9012 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
diff --git a/doc/lispref/ChangeLog.trunk b/doc/lispref/ChangeLog.trunk
new file mode 100644
index 00000000000..5d28a90136e
--- /dev/null
+++ b/doc/lispref/ChangeLog.trunk
@@ -0,0 +1,9032 @@
12011-03-06 Chong Yidong <cyd@stupidchicken.com>
2
3 * package.texi (Packaging, Packaging Basics, Simple Packages)
4 (Multi-file Packages): Expand and clarify.
5 (Package Archives): Temporary placeholder node.
6
7 * elisp.texi (Top): Update node listing.
8
9 * Makefile.in (srcs): Add package.texi.
10
112011-03-05 Chong Yidong <cyd@stupidchicken.com>
12
13 * processes.texi (Synchronous Processes): Minor clarification
14 (Bug#8149).
15
162011-03-03 Glenn Morris <rgm@gnu.org>
17
18 * files.texi (Truenames): Minor clarification. (Bug#2341)
19
202011-03-01 Glenn Morris <rgm@gnu.org>
21
22 * variables.texi (Directory Local Variables):
23 Mention `(subdirs . nil)' alist element.
24
252011-02-28 Glenn Morris <rgm@gnu.org>
26
27 * variables.texi (Directory Local Variables): Mention the optional
28 mtime argument of dir-locals-set-directory-class. (Bug#3577)
29
302011-02-27 Chong Yidong <cyd@stupidchicken.com>
31
32 * minibuf.texi (Minibuffer History): Clarify discussion of
33 minibuffer history lists (Bug#8085).
34
352011-02-19 Eli Zaretskii <eliz@gnu.org>
36
37 * elisp.texi: Sync @dircategory with ../../info/dir.
38
39 * files.texi (Visiting Functions): Document find-file-literally,
40 both the command and the variable.
41
42 * variables.texi (Creating Buffer-Local): Explain the meaning of
43 permanent local variables.
44
45 * files.texi (Visiting Functions): Document find-file-literally,
46 both the command and the variable.
47
48 * variables.texi (Creating Buffer-Local): Explain the meaning of
49 permanent local variables.
50
512011-02-19 Glenn Morris <rgm@gnu.org>
52
53 * keymaps.texi (Remapping Commands): Mention how to undo it.
54
552011-02-09 Reuben Thomas <rrt@sc3d.org>
56
57 * loading.texi (Hooks for Loading): Remove unnecessary advice
58 about eval-after-load (Bug#7986).
59
602011-02-05 Chong Yidong <cyd@stupidchicken.com>
61
62 * commands.texi (Accessing Mouse): Note that a header line is not
63 included in the row of posn-col-row.
64
652011-02-02 Chong Yidong <cyd@stupidchicken.com>
66
67 * modes.texi (Major Mode Conventions): Add face guidelines.
68 (Faces for Font Lock): List faces in order of prominence.
69
702011-02-01 Paul Eggert <eggert@cs.ucla.edu>
71
72 format-time-string now supports subsecond time stamp resolution
73 * os.texi (Time Parsing): Document %N.
74
752011-01-28 Chong Yidong <cyd@stupidchicken.com>
76
77 * vol1.texi (Top):
78 * vol2.texi (Top):
79 * elisp.texi (Top):
80 * display.texi (Display Property): Shorten the menu description of
81 the "Other Display Specs" node (Bug#7816).
82
83 * keymaps.texi (Defining Menus): Add "menu item" and "extended
84 menu item" concept index entries (Bug#7805).
85
862011-01-29 Eli Zaretskii <eliz@gnu.org>
87
88 * makefile.w32-in (texinfodir): New variable.
89 (usermanualdir): Remove as redundant with $(emacsdir).
90 (MAKEINFO): Remove options, leave only program name.
91 (MAKEINFO_OPTS): New variable.
92 (texinputdir, $(infodir)/elisp): Use $(MAKEINFO_OPTS).
93
942011-01-25 Chong Yidong <cyd@stupidchicken.com>
95 Richard Kim <emacs18@gmail.com>
96
97 * loading.texi (Library Search): Document list-load-path-shadows
98 (Bug#7757).
99
1002011-01-25 Chong Yidong <cyd@stupidchicken.com>
101
102 * searching.texi (Regexp Special): Remove outdated discussion of
103 character sets (Bug#7780).
104
105 * frames.texi (Pop-Up Menus): Document where menu title comes
106 from (Bug#7684).
107
1082011-01-25 Glenn Morris <rgm@gnu.org>
109
110 * display.texi (Making Buttons): Mention limitation of text buttons.
111
1122011-01-23 Werner Lemberg <wl@gnu.org>
113
114 * Makefile.in (MAKEINFO): Now controlled by `configure'.
115 (MAKEINFO_OPTS): New variable. Use it where appropriate.
116 (ENVADD): New variable to control texi2dvi and texi2pdf.
117
1182011-01-15 Chong Yidong <cyd@stupidchicken.com>
119
120 * files.texi (Directory Names): Move directory-abbrev-alist doc to
121 Emacs manual.
122
1232011-01-15 Eli Zaretskii <eliz@gnu.org>
124
125 * files.texi (Directory Names): Explain why FROM in
126 directory-abbrev-alist should begin with \`. (Bug#7777)
127
1282011-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
129
130 * loading.texi (Hooks for Loading): Adjust doc of eval-after-load.
131
1322011-01-02 Eli Zaretskii <eliz@gnu.org>
133
134 * modes.texi (Emulating Mode Line): Fix last change.
135
1362011-01-02 Eli Zaretskii <eliz@gnu.org>
137
138 * modes.texi (Emulating Mode Line): Update documentation of
139 format-mode-line according to changes that fixed bug #7587.
140
1412010-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
142
143 * modes.texi (Derived Modes): Mention prog-mode.
144
145 * keymaps.texi (Simple Menu Items, Extended Menu Items): Remove mention
146 of the key-binding-data cache since we don't use it any more.
147
1482010-12-13 Eli Zaretskii <eliz@gnu.org>
149
150 * processes.texi (Shell Arguments):
151 * strings.texi (Creating Strings): Don't mention "shell commands";
152 make it explicit that `split-string-and-unquote' and
153 `combine-and-quote-strings' are mainly for working with arguments
154 to call-process and start-process.
155
156 * processes.texi (Shell Arguments): Fix documentation of
157 `split-string-and-unquote'. Add indexing. (Bug#7563)
158
1592010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
160
161 * modes.texi (Auto-Indentation): New section to document SMIE.
162 (Major Mode Conventions):
163 * text.texi (Mode-Specific Indent): Refer to it.
164
1652010-12-13 Eli Zaretskii <eliz@gnu.org>
166
167 * display.texi (Other Display Specs): Document left-fringe and
168 right-fringe display specs.
169
1702010-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
171
172 * backups.texi (Making Backups):
173 * modes.texi (Example Major Modes): Use recommended coding style.
174 (Major Mode Basics, Derived Modes): Encourge more strongly use of
175 define-derived-mode. Mention completion-at-point-functions.
176
1772010-12-13 Chong Yidong <cyd@stupidchicken.com>
178
179 * nonascii.texi (Converting Representations):
180 Document byte-to-string.
181
1822010-12-08 Glenn Morris <rgm@gnu.org>
183
184 * buffers.texi (Modification Time):
185 verify-visited-file-modtime now defaults to the current buffer.
186
1872010-11-27 Chong Yidong <cyd@stupidchicken.com>
188
189 * nonascii.texi (Converting Representations): Document byte-to-string.
190
191 * strings.texi (Creating Strings): Don't mention semi-obsolete
192 function char-to-string.
193 (String Conversion): Shorten discussion of semi-obsolete function
194 string-to-char. Link to Converting Representations.
195
196 * objects.texi (Symbol Type):
197 * text.texi (Near Point):
198 * help.texi (Help Functions):
199 * functions.texi (Mapping Functions): Use string instead of
200 char-to-string in examples.
201
2022010-11-27 Chong Yidong <cyd@stupidchicken.com>
203
204 * text.texi (Kill Functions, Kill Functions)
205 (Low-Level Kill Ring, Low-Level Kill Ring): Remove obsolete
206 YANK-HANDLER args.
207
208 * symbols.texi (Creating Symbols): Using unintern without an
209 obarray arg is now obsolete.
210
211 * numbers.texi (Float Basics): Document float-e and float-pi.
212
213 * variables.texi (Defining Variables): Change "pi" example to
214 "float-pi".
215
2162010-11-26 Eli Zaretskii <eliz@gnu.org>
217
218 * commands.texi (Click Events): Document the values of X, Y and
219 COL, ROW in the event's position, when the click is on the header
220 or mode line, on the fringes, or in the margins.
221
2222010-11-17 Eli Zaretskii <eliz@gnu.org>
223
224 * customize.texi (Composite Types): Lower-case index entry.
225
226 * loading.texi (How Programs Do Loading):
227 Document load-file-name. (Bug#7346)
228
2292010-11-17 Glenn Morris <rgm@gnu.org>
230
231 * text.texi (Kill Functions, Low-Level Kill Ring): Small fixes.
232
2332010-11-13 Eli Zaretskii <eliz@gnu.org>
234
235 * display.texi (Usual Display): Characters with no fonts are not
236 necessarily displayed as empty boxes.
237
2382010-10-31 Glenn Morris <rgm@gnu.org>
239
240 * maps.texi (Standard Keymaps): Update File menu description.
241
2422010-10-28 Glenn Morris <rgm@gnu.org>
243
244 * Makefile.in (elisp.dvi, elisp.pdf): Also include $emacsdir.
245
2462010-10-24 Eli Zaretskii <eliz@gnu.org>
247
248 * display.texi (Window Systems): Deprecate use of window-system as
249 a predicate.
250
2512010-10-23 Glenn Morris <rgm@gnu.org>
252
253 * help.texi (Documentation Basics): Remove mentions of digest-doc and
254 sorted-doc.
255
2562010-10-15 Eli Zaretskii <eliz@gnu.org>
257
258 * os.texi (Dynamic Libraries): New node, with slightly modified
259 text deleted from "Image Formats".
260 (System Interface): Add @menu entry for "Dynamic Libraries".
261
262 * display.texi (Image Formats): Remove description of
263 image-library-alist. (Renamed in 2010-10-13T14:50:06Z!lekktu@gmail.com.)
264
2652010-10-12 Glenn Morris <rgm@gnu.org>
266
267 * book-spine.texinfo: Rename to book-spine.texi.
268
2692010-10-11 Glenn Morris <rgm@gnu.org>
270
271 * Makefile.in (MAKEINFO): Add explicit -I$srcdir.
272
273 * Makefile.in (DVIPS): New variable.
274 (.PHONY): Add html, ps.
275 (html, elisp.html, ps, elisp.ps): New targets.
276 (clean): Delete html, ps files.
277 ($(infodir)/elisp): Remove unnecessary includes.
278
2792010-10-09 Eli Zaretskii <eliz@gnu.org>
280
281 * makefile.w32-in (emacsdir): New variable.
282 (srcs): Add emacsver.texi.
283 ($(infodir)/elisp, elisp.dvi): Add -I$(emacsdir).
284
2852010-10-09 Glenn Morris <rgm@gnu.org>
286
287 * Makefile.in (VPATH): Remove.
288 (infodir): Make it absolute.
289 (mkinfodir, $(infodir)/elisp, infoclean): No need to cd $srcdir.
290
291 * Makefile.in (dist): Anchor regexps.
292
293 * Makefile.in (srcs): Put elisp.texi first.
294 ($(infodir)/elisp, elisp.dvi, elisp.pdf): Use $<.
295
296 * Makefile.in (infoclean): Remove harmless, long-standing error.
297
298 * Makefile.in ($(infodir)): Delete rule.
299 (mkinfodir): New.
300 ($(infodir)/elisp): Use $mkinfodir instead of infodir.
301
302 * Makefile.in (dist): Remove reference to emacsver.texi.in.
303 Also copy emacsver.texi, and edit $emacsdir.
304
3052010-10-09 Glenn Morris <rgm@gnu.org>
306
307 * Makefile.in (emacsdir): New variable.
308 (MAKEINFO): Add -I $emacsdir.
309 (dist): Copy emacsver.texi.
310 (srcs): Add emacsver.texi.
311
312 * book-spine.texinfo, elisp.texi, vol2.texi, vol1.texi:
313 Set EMACSVER by including emacsver.texi.
314
315 * Makefile.in (.PHONY): Declare info, dvi, pdf, dist.
316
3172010-10-07 Glenn Morris <rgm@gnu.org>
318
319 * Makefile.in (version): New, set by configure.
320 (clean): Delete dist tar file.
321 (dist): Use version in tar name.
322
3232010-10-06 Glenn Morris <rgm@gnu.org>
324
325 * Makefile.in: Rearrange to more closely resemble doc/emacs/Makefile.
326 (INSTALL_INFO): Remove unused variable.
327 (mostlyclean, infoclean, dist): New rules.
328 (clean): Delete dvi and pdf files.
329 (maintainer-clean): Remove elisp.oaux, use infoclean.
330 ($(infodir)): Add parallel build workaround.
331
3322010-10-04 Glenn Morris <rgm@gnu.org>
333
334 * Makefile.in (dvi, pdf, $(infodir)): New targets.
335 ($(infodir)/elisp): Ensure target directory exists. Use $@.
336 Fix -I typo.
337 (clean): No 'make.out' or 'core' files.
338 (.PHONY): Declare clean rules.
339 (maintainer-clean): Delete pdf file. Guard against cd failures.
340
3412010-10-03 Glenn Morris <rgm@gnu.org>
342
343 * files.texi (File Name Components): Remove ignored section about
344 deleted variable directory-sep-char.
345
3462010-10-03 Michael Albinus <michael.albinus@gmx.de>
347
348 * files.texi (Magic File Names): New defopt
349 remote-file-name-inhibit-cache.
350
3512010-10-02 Glenn Morris <rgm@gnu.org>
352
353 * os.texi (Killing Emacs): Hook now runs in batch mode.
354
3552010-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
356
357 * text.texi (Special Properties): Clarify when modification-hooks run.
358
3592010-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
360
361 * syntax.texi (Syntax Flags): Document new `c' flag.
362
3632010-09-09 Glenn Morris <rgm@gnu.org>
364
365 * display.texi (ImageMagick Images): General cleanup.
366
3672010-09-06 Alexander Klimov <alserkli@inbox.ru> (tiny change)
368
369 * files.texi (Directory Names): Use \` rather than ^.
370
3712010-09-02 Jan Djärv <jan.h.d@swipnet.se>
372
373 * text.texi (Low-Level Kill Ring):
374 * frames.texi (Window System Selections): Remove cut buffer
375 documentation.
376
3772010-08-28 Eli Zaretskii <eliz@gnu.org>
378
379 * display.texi (Fringe Size/Pos): Add a cross-reference to "Layout
380 Parameters", where the default fringe width is described.
381
382 * frames.texi (Window Frame Parameters, Basic Parameters)
383 (Position Parameters, Layout Parameters, Management Parameters)
384 (Cursor Parameters, Font and Color Parameters): Add indexing for
385 frame parameters. (Bug#6929)
386
3872010-08-25 Tom Tromey <tromey@redhat.com>
388
389 * vol2.texi (Top): Update.
390 * vol1.texi (Top): Update.
391 * tips.texi (Library Headers): Mention Package-Version and
392 Package-Requires.
393 * package.texi: New file.
394 * os.texi (System Interface): Update pointers.
395 * elisp.texi (Top): Link to new nodes. Include package.texi.
396 * anti.texi (Antinews): Update pointers.
397
3982010-08-25 Eli Zaretskii <eliz@gnu.org>
399
400 * processes.texi (Filter Functions): Fix last change.
401
4022010-08-24 Markus Triska <triska@gmx.at>
403
404 * processes.texi (Filter Functions): Use `buffer-live-p' instead
405 of `buffer-name' in the main text as well as in the example
406 (Bug#3098).
407
4082010-08-22 Chong Yidong <cyd@stupidchicken.com>
409
410 * nonascii.texi (Text Representations):
411 * loading.texi (Loading Non-ASCII):
412 * compile.texi (Byte Compilation): Don't mention obsolete
413 --unibyte command-line argument.
414
4152010-08-22 Chong Yidong <cyd@stupidchicken.com>
416
417 * modes.texi (Defining Minor Modes): Doc fix (Bug#6880).
418
4192010-08-22 Chong Yidong <cyd@stupidchicken.com>
420
421 * objects.texi (Bool-Vector Type): Minor definition tweak (Bug#6878).
422
4232010-08-20 Eli Zaretskii <eliz@gnu.org>
424
425 * commands.texi (Misc Events): Add cross-references to where
426 POSITION of a mouse event is described in detail.
427
4282010-08-08 Christoph <cschol2112@googlemail.com>
429
430 * control.texi (Handling Errors) <error-message-string>: Fix arg name.
431
4322010-08-08 Juanma Barranquero <lekktu@gmail.com>
433
434 * modes.texi (Defining Minor Modes): Use C-backspace, not C-delete.
435 Suggested by Štěpán Němec <stepnem@gmail.com>.
436
4372010-08-08 Juanma Barranquero <lekktu@gmail.com>
438
439 * minibuf.texi (High-Level Completion): Document args of
440 `read-buffer-function' (bug#5625).
441
4422010-07-29 Jan Djärv <jan.h.d@swipnet.se>
443
444 * frames.texi (Layout Parameters): Add doc for tool-bar-position.
445
4462010-07-29 Michael Albinus <michael.albinus@gmx.de>
447
448 * processes.texi (Process Information): Explain process property
449 `remote-tty'.
450
4512010-07-27 Juanma Barranquero <lekktu@gmail.com>
452
453 * modes.texi (Defining Minor Modes): Use C-delete in examples,
454 instead of "\C-\^?" (bug#6334).
455
456 * text.texi (Special Properties): Fix typo.
457
4582010-07-09 Eli Zaretskii <eliz@gnu.org>
459
460 * internals.texi (Writing Emacs Primitives): Adapt to ANSI C
461 calling sequences, which are now the standard.
462
4632010-06-24 Chong Yidong <cyd@stupidchicken.com>
464
465 * text.texi (Undo): Clarify command loop behavior (Bug#2433).
466
467 * commands.texi (Command Overview): Mention undo-boundary call.
468
4692010-06-23 Glenn Morris <rgm@gnu.org>
470
471 * abbrevs.texi, commands.texi, compile.texi, debugging.texi:
472 * display.texi, edebug.texi, elisp.texi, eval.texi, files.texi:
473 * frames.texi, functions.texi, internals.texi, keymaps.texi:
474 * loading.texi, minibuf.texi, numbers.texi, os.texi, processes.texi:
475 * searching.texi, sequences.texi, strings.texi, syntax.texi:
476 * text.texi, tips.texi, vol1.texi, vol2.texi, windows.texi:
477 Untabify Texinfo files.
478
4792010-06-20 Chong Yidong <cyd@stupidchicken.com>
480
481 * modes.texi (Minor Mode Conventions): Fix typo (Bug#6477).
482
4832010-06-19 Chong Yidong <cyd@stupidchicken.com>
484
485 * errors.texi (Standard Errors): Remove unnecessary markup (Bug#6461).
486
4872010-06-02 Chong Yidong <cyd@stupidchicken.com>
488
489 * searching.texi (Regexp Special): Remove obsolete information
490 about matching non-ASCII characters, and suggest using char
491 classes (Bug#6283).
492
4932010-05-30 Juanma Barranquero <lekktu@gmail.com>
494
495 * minibuf.texi (Basic Completion): Add missing "@end defun".
496
4972010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
498
499 * minibuf.texi (Basic Completion): Document completion-boundaries.
500 (Programmed Completion): Document the new fourth method for boundaries.
501
5022010-05-22 Chong Yidong <cyd@stupidchicken.com>
503
504 * display.texi (Image Cache): Update documentation about image caching.
505
5062010-05-08 Štěpán Němec <stepnem@gmail.com> (tiny change)
507
508 * windows.texi (Textual Scrolling):
509 * tips.texi (Coding Conventions):
510 * minibuf.texi (Minibuffer History):
511 * maps.texi (Standard Keymaps):
512 * loading.texi (Where Defined):
513 * edebug.texi (Instrumenting): Fix typos.
514
5152010-05-08 Chong Yidong <cyd@stupidchicken.com>
516
517 * keymaps.texi (Menu Bar): Document :advertised-binding property.
518
519 * functions.texi (Obsolete Functions):
520 Document set-advertised-calling-convention.
521
522 * minibuf.texi (Basic Completion): Document completion-in-region.
523 (Programmed Completion): Document completion-annotate-function.
524
525 * commands.texi (Reading One Event): Document read-key.
526 (Distinguish Interactive): Document KIND arg to
527 called-interactively-p. Delete obsolete interactive-p.
528
529 * elisp.texi (Top): Update node description.
530
5312010-05-08 Eli Zaretskii <eliz@gnu.org>
532
533 * nonascii.texi (Character Properties):
534 Document unicode-category-table. Add an index entry for Unicode
535 general category.
536
5372010-05-07 Chong Yidong <cyd@stupidchicken.com>
538
539 * Version 23.2 released.
540
5412010-04-20 Juanma Barranquero <lekktu@gmail.com>
542
543 * locals.texi (Standard Buffer-Local Variables):
544 Remove @ignore'd reference to `direction-reversed'.
545
5462010-04-14 Juri Linkov <juri@jurta.org>
547
548 Fix @deffn without category.
549
550 * abbrevs.texi (Abbrev Expansion): Replace @deffn with @defun
551 for `abbrev-insert'.
552
553 * buffers.texi (Indirect Buffers): Add category `Command'
554 to @deffn of `clone-indirect-buffer'.
555
556 * windows.texi (Cyclic Window Ordering): Replace @deffn with @defun
557 for `next-window' and `previous-window'. Add category `Command'
558 to @deffn of `pop-to-buffer'.
559
5602010-04-01 Chong Yidong <cyd@stupidchicken.com>
561
562 * nonascii.texi (Text Representations): Don't mark
563 enable-multibyte-characters as a user option.
564
5652010-03-31 Eli Zaretskii <eliz@gnu.org>
566
567 * control.texi (Handling Errors): How to re-throw a signal caught
568 by condition-case.
569
5702010-03-26 Chong Yidong <cyd@stupidchicken.com>
571
572 * loading.texi (Hooks for Loading): Document after-load-functions.
573 Copyedits.
574
5752010-03-24 Arni Magnusson <arnima@hafro.is> (tiny change)
576
577 * frames.texi (Cursor Parameters): Fix typo. (Bug#5760)
578
5792010-03-24 Chong Yidong <cyd@stupidchicken.com>
580
581 * processes.texi (Network Processes): Document seqpacket type.
582
5832010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
584
585 * os.texi (System Environment): Do not mention lynxos.
586
5872010-03-10 Chong Yidong <cyd@stupidchicken.com>
588
589 * Branch for 23.2.
590
5912010-03-06 Chong Yidong <cyd@stupidchicken.com>
592
593 * objects.texi (Integer Type): Take note of the read syntax
594 exception for numbers that cannot fit in the integer type.
595
5962010-03-03 Glenn Morris <rgm@gnu.org>
597
598 * numbers.texi (Integer Basics, Bitwise Operations):
599 * objects.texi (Integer Type): Update for integers now being 30-bit.
600
6012010-02-27 Chong Yidong <cyd@stupidchicken.com>
602
603 * display.texi (Low-Level Font): Document :otf font-spec property.
604
6052010-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
606
607 * display.texi (Line Height): Avoid obsolete special default variables
608 like default-major-mode.
609
6102010-01-28 Alan Mackenzie <acm@muc.de>
611
612 * display.texi (Auto Faces): Say fontification-functions is called
613 whether or not Font Lock is enabled. Tidy up the wording a bit.
614
6152010-01-17 Chong Yidong <cyd@stupidchicken.com>
616
617 * elisp.texi: Remove duplicate edition information (Bug#5407).
618
6192010-01-17 Juanma Barranquero <lekktu@gmail.com>
620
621 * two.el (volume-header-toc-markup): Fix typos in docstring.
622
6232010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
624
625 Avoid dubious uses of save-excursions.
626 * positions.texi (Excursions): Recommend the use of
627 save-current-buffer if applicable.
628 * text.texi (Clickable Text): Fix the example code which used
629 save-excursion in a naive way which sometimes preserves point and
630 sometimes not.
631 * variables.texi (Creating Buffer-Local):
632 * os.texi (Session Management):
633 * display.texi (GIF Images):
634 * control.texi (Cleanups): Use (save|with)-current-buffer.
635
6362010-01-02 Eli Zaretskii <eliz@gnu.org>
637
638 * modes.texi (Example Major Modes): Fix indentation. (Bug#5195)
639
6402010-01-02 Chong Yidong <cyd@stupidchicken.com>
641
642 * nonascii.texi (Text Representations, Character Codes)
643 (Converting Representations, Explicit Encoding)
644 (Translation of Characters): Use hex notation consistently.
645 (Character Sets): Fix map-charset-chars doc (Bug#5197).
646
6472010-01-01 Chong Yidong <cyd@stupidchicken.com>
648
649 * loading.texi (Where Defined): Make it clearer that these are
650 loaded files (Bug#5068).
651
6522009-12-29 Chong Yidong <cyd@stupidchicken.com>
653
654 * minibuf.texi (Completion Styles): Document `initials' style.
655
6562009-12-25 Chong Yidong <cyd@stupidchicken.com>
657
658 * frames.texi (Resources): Describe inhibit-x-resources.
659 (Size Parameters): Copyedit.
660
661 * hash.texi (Creating Hash):
662 * objects.texi (Hash Table Type): Document the new hash table
663 printed representation.
664
665 * minibuf.texi (Basic Completion): 4th arg to all-completions is
666 obsolete.
667
668 * processes.texi (Process Buffers):
669 Document process-kill-buffer-query-function.
670
6712009-12-05 Glenn Morris <rgm@gnu.org>
672
673 * hooks.texi (Standard Hooks): Remove diary-display-hook, replaced by
674 diary-display-function, and no longer recommended to be a hook.
675 Update for changes in the names of calendar and diary hooks.
676 diary-print-entries-hook has changed section.
677
6782009-11-28 Eli Zaretskii <eliz@gnu.org>
679
680 * text.texi (Special Properties): More accurate description of
681 what the `cursor' property does.
682
6832009-11-26 Kevin Ryde <user42@zip.com.au>
684
685 * commands.texi (Misc Events): vindex mouse-wheel-up-event and
686 mouse-wheel-down-event, the closest thing to a definition for them.
687 * os.texi (Startup Summary): vindex inhibit-startup-message and
688 inhibit-splash-screen.
689 (Command-Line Arguments): vindex argv.
690 (Suspending Emacs): vindex suspend-tty-functions and
691 resume-tty-functions. Don't want to index every hook, but having
692 the programming ones is helpful.
693
6942009-11-14 Chong Yidong <cyd@stupidchicken.com>
695
696 * commands.texi (Motion Events): Fix typo (Bug#4907).
697
6982009-11-08 Chong Yidong <cyd@stupidchicken.com>
699
700 * searching.texi (Char Classes): Note that [:upper:] and [:lower:]
701 are affected by case-fold-search (Bug#4483).
702
7032009-11-02 Chong Yidong <cyd@stupidchicken.com>
704
705 * minibuf.texi (Reading File Names): Note that read-file-name may
706 use a graphical file dialog.
707
7082009-10-31 Glenn Morris <rgm@gnu.org>
709
710 * nonascii.texi (User-Chosen Coding Systems): Minor reword. (Bug#4817)
711
7122009-10-16 Kevin Ryde <user42@zip.com.au>
713
714 * files.texi (Magic File Names): Add @vindex file-name-handler-alist,
715 in particular so `info-lookup-symbol' can find its docs.
716
7172009-10-16 Chong Yidong <cyd@stupidchicken.com>
718
719 * variables.texi (Constant Variables): Distinguish from defconst
720 variables.
721 (Defining Variables): Add cindex.
722
7232009-10-15 Chong Yidong <cyd@stupidchicken.com>
724
725 * os.texi (Time of Day): Clarify that the microsecond part is
726 ignored (Bug#4637).
727
7282009-10-11 Glenn Morris <rgm@gnu.org>
729
730 * frames.texi (Size and Position): Clarify what is included in the frame
731 height. (Bug#4535)
732
7332009-10-10 Glenn Morris <rgm@gnu.org>
734
735 * windows.texi (Size of Window): The relationship between window and
736 frame heights is not so simple. (Bug#4535)
737 Mention window-full-height-p.
738
7392009-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
740
741 * positions.texi (Text Lines): Remove goto-line, since it shouldn't be
742 used from Lisp.
743
7442009-10-07 Eli Zaretskii <eliz@gnu.org>
745
746 * files.texi (Directory Names) <abbreviate-file-name>:
747 Document that root home directories are not replaced with "~".
748
7492009-10-06 Eli Zaretskii <eliz@gnu.org>
750
751 * text.texi (Special Properties): Document the meaning of the
752 `cursor' text property whose value is an integer.
753
7542009-10-05 Michael Albinus <michael.albinus@gmx.de>
755
756 * files.texi (Magic File Names): Add `copy-directory'.
757
7582009-10-05 Eli Zaretskii <eliz@gnu.org>
759
760 * files.texi (File Attributes): Fix description of file
761 attributes. (Bug#4638) Update attributes of files.texi example to
762 be more representative.
763
7642009-10-05 Michael Albinus <michael.albinus@gmx.de>
765
766 * files.texi (Create/Delete Dirs): New command copy-directory.
767
7682009-10-04 Juanma Barranquero <lekktu@gmail.com>
769
770 * anti.texi (Antinews):
771 * macros.texi (Indenting Macros):
772 * strings.texi (Creating Strings, Case Conversion):
773 Remove duplicate words.
774
7752009-10-01 Michael Albinus <michael.albinus@gmx.de>
776
777 * files.texi (Create/Delete Dirs): delete-directory has an
778 optional parameter RECURSIVE.
779
7802009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
781
782 * buffers.texi (Swapping Text): Minor clarification.
783
7842009-10-01 Glenn Morris <rgm@gnu.org>
785
786 * functions.texi (Declaring Functions): Mention that we also search for
787 ".m" files in the src/ directory.
788
7892009-09-25 David Engster <deng@randomsample.de>
790
791 * display.texi (Managing Overlays): Document copy-overlay (Bug#4549).
792
7932009-09-22 Glenn Morris <rgm@gnu.org>
794
795 * internals.texi (Building Emacs): Mention preloaded-file-list.
796
7972009-09-14 Alan Mackenzie <acm@muc.de>
798
799 * os.texi (Terminal Output): Put "@code{}" around "stdout".
800
8012009-09-13 Chong Yidong <cyd@stupidchicken.com>
802
803 * functions.texi (Anonymous Functions): Rearrange discussion,
804 giving usage of unquoted lambda forms first. Mention that
805 `function' and `#'' are no longer required (Bug#4290).
806
8072009-09-11 Alan Mackenzie <acm@muc.de>
808
809 * os.texi (Terminal Output): Document `send-string-to-terminal' in
810 batch mode.
811
8122009-09-01 Glenn Morris <rgm@gnu.org>
813
814 * display.texi (Face Functions): Mention define-obsolete-face-alias.
815
8162009-08-26 Ulrich Mueller <ulm@gentoo.org>
817
818 * nonascii.texi (Character Codes): Fix typos.
819
8202009-08-25 Michael Albinus <michael.albinus@gmx.de>
821
822 * processes.texi (Synchronous Processes): New defvar
823 process-file-side-effects.
824
8252009-08-25 Glenn Morris <rgm@gnu.org>
826
827 * display.texi (Fontsets): Fix typo.
828
829 * files.texi (Format Conversion Round-Trip): Mention nil regexp.
830
8312009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
832
833 * processes.texi (Asynchronous Processes): Adjust arglist of
834 start-process-shell-command and start-file-process-shell-command.
835
8362009-08-15 Chong Yidong <cyd@stupidchicken.com>
837
838 * advice.texi (Argument Access in Advice): Note that argument
839 positions are zero-based (Bug#3932).
840
841 * commands.texi (Distinguish Interactive): Minor copyedit.
842
843 * display.texi (Face Attributes): Add xref to Displaying Faces for
844 explanation of "underlying face".
845
846 * customize.texi (Common Keywords): Add xref to Loading.
847
848 * loading.texi (How Programs Do Loading): Add xref to Lisp
849 Libraries node in the Emacs manual.
850
8512009-08-13 Chong Yidong <cyd@stupidchicken.com>
852
853 * objects.texi (Meta-Char Syntax): Add xref to Strings of Events.
854
8552009-07-18 Chong Yidong <cyd@stupidchicken.com>
856
857 * processes.texi (Shell Arguments): Copyedits.
858
8592009-07-18 Glenn Morris <rgm@gnu.org>
860
861 * loading.texi (Repeated Loading): Fix typo.
862
8632009-07-16 Richard Stallman <rms@gnu.org>
864
865 * buffers.texi (Swapping Text): Recommend setting
866 write-region-annotate-functions and buffer-saved-size.
867
868 * backups.texi (Auto-Saving): Document buffer-saved-size = -2.
869
8702009-07-15 Glenn Morris <rgm@gnu.org>
871
872 * edebug.texi: Minor re-phrasings throughout.
873 (Edebug Execution Modes): Sit-for affects continue mode too.
874 (Jumping): Use `forward-sexp' rather than its keybinding.
875 (Edebug Misc): Fix Q binding.
876 (Edebug Eval): Remove cl version.
877 (Printing in Edebug): Clarify print-length etc.
878 (Instrumenting Macro Calls): Defopt edebug-eval-macro-args.
879 (Specification List): Remove edebug-unwrap findex entry.
880 (Specification Examples): defmacro is actually not the same as defun.
881 Escape "`" in example.
882
8832009-07-15 Chong Yidong <cyd@stupidchicken.com>
884
885 * markers.texi (The Mark): Document optional arg to
886 deactivate-mark.
887
8882009-07-11 Kevin Ryde <user42@zip.com.au>
889
890 * hooks.texi (Standard Hooks): Fix cross-references.
891
892 * loading.texi (Named Features): Refer to eval-after-load.
893
8942009-07-11 Glenn Morris <rgm@gnu.org>
895
896 * Makefile.in (TEXI2PDF): New.
897 (elisp.pdf): New target.
898
899 * searching.texi (Regexp Backslash): Fix typo.
900
901 * elisp.texi (Top): Display copyright notice at start of non-TeX.
902
9032009-07-10 Glenn Morris <rgm@gnu.org>
904
905 * elisp.texi, vol1.texi, vol2.texi: Update @detailmenu.
906
907 * customize.texi (Customization Types):
908 * display.texi (Abstract Display):
909 * objects.texi (Character Type, String Type):
910 Merge in some menu descriptions from elisp.texi.
911
912 * hash.texi (Hash Tables):
913 * modes.texi (Multiline Font Lock):
914 End menu description with period.
915
9162009-07-09 Glenn Morris <rgm@gnu.org>
917
918 * back.texi: Don't hard-code texinfo location.
919
920 * two-volume.make (texinfodir): New, with location of texinfo.tex.
921 (tex): Add texinfodir to TEXINPUTS.
922 (elisp1med-init, elisp2med-init): Use texinfodir.
923
924 * Makefile.in (texinfodir): Rename from usermanualdir, and update.
925 (clean): Add two-volume.make intermediate files.
926
927 * elisp.texi, vol1.texi, vol2.texi:
928 Use a DATE variable with the publication date, and update it.
929 Fix antinews menu description.
930
931 * vol1.texi, vol2.texi: Update VERSION to match elisp.texi.
932 Update the detailed node listing to match elisp.texi.
933
934 * README: Update edition to match elisp.texi.
935
936 * objects.texi (General Escape Syntax):
937 * nonascii.texi (Character Sets):
938 Use consistent case for "Unicode Standard".
939
940 * anti.texi (Antinews):
941 * customize.texi (Variable Definitions):
942 * functions.texi (Declaring Functions):
943 * nonascii.texi (Character Properties):
944 * processes.texi (Serial Ports):
945 * text.texi (Special Properties):
946 * tips.texi (Coding Conventions):
947 Minor rearrangements to improve TeX line-filling.
948
949 * commands.texi (Using Interactive): Fix cross-reference.
950
9512009-07-01 Jan Djärv <jan.h.d@swipnet.se>
952
953 * frames.texi (Management Parameters): Mention sticky.
954
9552009-07-01 Andreas Schwab <aschwab@redhat.com>
956
957 * help.texi (Help Functions): Fix description of help-buffer and
958 help-setup-xref to use @defun instead of @deffn.
959
9602009-07-01 Jan Djärv <jan.h.d@swipnet.se>
961
962 * frames.texi (Size Parameters): Mention maximized for fullscreen.
963
9642009-06-24 Chong Yidong <cyd@stupidchicken.com>
965
966 * display.texi (Window Systems): Add ns to the list.
967
9682009-06-21 Chong Yidong <cyd@stupidchicken.com>
969
970 * Branch for 23.1.
971
9722009-06-17 Martin Rudalics <rudalics@gmx.at>
973
974 * windows.texi (Dedicated Windows): Fix typo.
975 (Resizing Windows): Replace @defun by @deffn.
976
9772009-06-17 Glenn Morris <rgm@gnu.org>
978
979 * variables.texi (Directory Local Variables):
980 Update for 2009-04-11 name-change of dir-locals-directory-alist.
981
9822009-06-09 Kenichi Handa <handa@m17n.org>
983
984 * nonascii.texi (Character Sets): State clearly that FROM and TO
985 are codepoints of CHARSET.
986
9872009-06-07 Chong Yidong <cyd@stupidchicken.com>
988
989 * minibuf.texi (Reading File Names): Fix introductory text.
990 Suggested by stan@derbycityprints.com.
991 (High-Level Completion): Fix typo.
992
9932009-05-28 Chong Yidong <cyd@stupidchicken.com>
994
995 * frames.texi (Text Terminal Colors): Multi-tty is already
996 implemented, but tty-local colors are not.
997
9982009-05-27 Chong Yidong <cyd@stupidchicken.com>
999
1000 * hooks.texi (Standard Hooks): Remove mention of obsolete
1001 redisplay-end-trigger-functions.
1002
1003 * internals.texi (Window Internals): Remove mention of obsolete
1004 redisplay-end-trigger-functions.
1005
10062009-05-21 Martin Rudalics <rudalics@gmx.at>
1007
1008 * abbrevs.texi (Abbrev Mode): abbrev-mode is an option.
1009
1010 * backups.texi (Making Backups): backup-directory-alist and
1011 make-backup-file-name-function are options.
1012 (Auto-Saving): auto-save-list-file-prefix is an option.
1013
1014 * buffers.texi (Killing Buffers): buffer-offer-save is an
1015 option.
1016
1017 * display.texi (Refresh Screen): no-redraw-on-reenter is an
1018 option.
1019 (Echo Area Customization): echo-keystrokes is an option.
1020 (Selective Display): selective-display-ellipses is an option.
1021 (Temporary Displays): temp-buffer-show-function is an option.
1022 (Face Attributes): underline-minimum-offset and x-bitmap-file-path
1023 are options.
1024 (Font Selection): face-font-family-alternatives,
1025 face-font-selection-order, face-font-registry-alternatives, and
1026 scalable-fonts-allowed are options.
1027 (Fringe Indicators): indicate-buffer-boundaries is an option.
1028 (Fringe Cursors): overflow-newline-into-fringe is an option.
1029 (Scroll Bars): scroll-bar-mode is an option.
1030
1031 * eval.texi (Eval): max-lisp-eval-depth is an option.
1032
1033 * files.texi (Visiting Functions): find-file-hook is an option.
1034 (Directory Names): directory-abbrev-alist is an option.
1035 (Unique File Names): temporary-file-directory and
1036 small-temporary-file-directory are options.
1037
1038 * frames.texi (Initial Parameters): initial-frame-alist,
1039 minibuffer-frame-alist and default-frame-alist are options.
1040 (Cursor Parameters): blink-cursor-alist and
1041 cursor-in-non-selected-windows ar options.
1042 (Window System Selections): selection-coding-system is an
1043 option.
1044 (Display Feature Testing): display-mm-dimensions-alist is an
1045 option.
1046
1047 * help.texi (Help Functions): help-char and help-event-list are
1048 options.
1049
1050 * keymaps.texi (Functions for Key Lookup): meta-prefix-char is
1051 an option.
1052
1053 * minibuf.texi (Minibuffer History): history-length and
1054 history-delete-duplicates are options.
1055 (High-Level Completion): read-buffer-function and
1056 read-buffer-completion-ignore-case are options.
1057 (Reading File Names): read-file-name-completion-ignore-case is
1058 an option.
1059
1060 * modes.texi (Mode Line Top): mode-line-format is an option.
1061 (Mode Line Variables): mode-line-position and mode-line-modes
1062 are options.
1063
1064 * nonascii.texi (Text Representations):
1065 enable-multibyte-characters is an option.
1066 (Default Coding Systems): auto-coding-regexp-alist,
1067 file-coding-system-alist, auto-coding-alist and
1068 auto-coding-functions are options.
1069 (Specifying Coding Systems): inhibit-eol-conversion is an
1070 option.
1071
1072 * os.texi (Init File): site-run-file is an option.
1073 (System Environment): mail-host-address is an option.
1074 (User Identification): user-mail-address is an option.
1075 (Terminal Output): baud-rate is an option.
1076
1077 * positions.texi (Word Motion): words-include-escapes is an
1078 option.
1079
1080 * searching.texi (Standard Regexps): page-delimiter,
1081 paragraph-separate, paragraph-separate and sentence-end are
1082 options.
1083
1084 * text.texi (Margins): left-margin and fill-nobreak-predicate
1085 are options.
1086
1087 * variables.texi (Local Variables): max-specpdl-size is an
1088 option.
1089
1090 * windows.texi (Choosing Window):
1091 split-window-preferred-function, special-display-function and
1092 display-buffer-function are options.
1093
10942009-05-20 Chong Yidong <cyd@stupidchicken.com>
1095
1096 Fix errors spotted by Martin Rudalics.
1097
1098 * syntax.texi (Position Parse): Document rationale for ignored
1099 arguments to syntax-ppss-flush-cache.
1100
1101 * processes.texi (Input to Processes): Mark PROCESS arg to
1102 process-running-child-p as optional.
1103 (Network Options): Document NO-ERROR arg to
1104 set-network-process-option.
1105
1106 * buffers.texi (Indirect Buffers): Mark clone-indirect-buffer as a
1107 command.
1108
1109 * searching.texi (POSIX Regexps): Mark posix-search-forward and
1110 posix-search-backward as commands.
1111
1112 * os.texi (Killing Emacs): Mark kill-emacs as a command.
1113 (Suspending Emacs): Mark suspend-emacs as a command.
1114 (Processor Run Time): Mark emacs-uptime and emacs-init-time as
1115 commands.
1116 (Terminal Output): Remove obsolete function baud-rate.
1117 Document TERMINAL arg for send-string-to-terminal.
1118
1119 * nonascii.texi (Terminal I/O Encoding): Document TERMINAL arg for
1120 terminal-coding-system and set-terminal-coding-system.
1121 (Explicit Encoding): Mark DESTINATION arg of decode-coding-region
1122 as optional.
1123 (Character Sets): Document RESTRICTION arg of char-charset.
1124 (Character Codes): Mark POS argument to get-byte as optional.
1125
1126 * minibuf.texi (Minibuffer Misc): Document ARGS arg for
1127 minibuffer-message.
1128
1129 * files.texi (Create/Delete Dirs): Mark make-directory and
1130 delete-directory as commands.
1131
1132 * abbrevs.texi (Abbrev Tables): Fix arglist for make-abbrev-table.
1133
1134 * text.texi (Base 64): Mark base64-decode-string and
1135 base64-encode-string as commands.
1136 (Columns): Mark move-to-column as a command.
1137 (Mode-Specific Indent): Document RIGID arg to
1138 indent-for-tab-command.
1139 (Region Indent): Mark TO-COLUMN arg to indent-region as optional.
1140 Mark indent-code-rigidly as a command.
1141 (Substitution): Mark translate-region as a command.
1142
1143 * frames.texi (Size and Position): Remove obsolete functions
1144 screen-height and screen-width.
1145
11462009-05-19 Chong Yidong <cyd@stupidchicken.com>
1147
1148 * windows.texi (Cyclic Window Ordering, Cyclic Window Ordering)
1149 (Displaying Buffers, Resizing Windows): Correct mistakes;
1150 next-window, previous-window, and pop-to-buffer are not commands,
1151 and fit-window-to-buffer" is a command. (Pointed out by Martin
1152 Rudalics.)
1153
11542009-05-17 Richard M Stallman <rms@gnu.org>
1155
1156 * modes.texi (Precalculated Fontification): Clarify text.
1157
11582009-05-17 Martin Rudalics <rudalics@gmx.at>
1159
1160 * windows.texi (Selecting Windows): Clarify descriptions of
1161 with-selected-window and get-lru-window.
1162 (Cyclic Window Ordering): Refer to particular frame when talking
1163 about how splitting affects the ordering.
1164 (Displaying Buffers): Fix descriptions of switch-to-buffer and
1165 switch-to-buffer-other-window. Explain how setting of
1166 display-buffer-reuse-frames affects pop-to-buffer.
1167 (Choosing Window): Clarify some details in descriptions of
1168 display-buffer-reuse-frames, pop-up-frames, and
1169 pop-up-frame-function.
1170 (Dedicated Windows): Clarify some details.
1171 (Textual Scrolling): Replace term vscroll by term vertical
1172 scroll position.
1173 (Vertical Scrolling): Fix typo.
1174 (Window Hooks): Relate text on jit-lock-register to window
1175 scrolling and size changes.
1176
11772009-05-14 Chong Yidong <cyd@stupidchicken.com>
1178
1179 * frames.texi (Initial Parameters): Clarify what the initial
1180 minibuffer frame is.
1181 (Buffer Parameters): Note that the minibuffer parameter can not be
1182 altered.
1183
1184 * anti.texi (Antinews): Copyedits. Rearrange some entries.
1185 Document display-buffer changes.
1186
11872009-05-13 Chong Yidong <cyd@stupidchicken.com>
1188
1189 * anti.texi (Antinews): Rewrite for Emacs 22.
1190
1191 * abbrevs.texi (Abbrevs): Add xref to Creating Symbols when
1192 obarrays are first mentioned. Define "system abbrev" more
1193 prominently, and add it to the index.
1194 (Abbrev Mode, Abbrev Tables, Defining Abbrevs, Abbrev Properties):
1195 Copyedits.
1196 (Abbrev Expansion): Document abbrev-insert.
1197
11982009-05-12 Chong Yidong <cyd@stupidchicken.com>
1199
1200 * frames.texi (Font and Color Parameters): Rename from Color
1201 Parameters. Document font-backend parameter.
1202
1203 * vol2.texi (Top): Update node listing.
1204 * vol1.texi (Top): Update node listing.
1205 * elisp.texi (Top): Update node listing.
1206
12072009-05-11 Martin Rudalics <rudalics@gmx.at>
1208
1209 * windows.texi (Choosing Window): Don't explicitly refer to
1210 split-window-sensibly's window argument in descriptions of
1211 split-height-threshold and split-width-threshold.
1212
12132009-05-10 Martin Rudalics <rudalics@gmx.at>
1214
1215 * windows.texi (Choosing Window): Fix rewrite of window
1216 splitting section.
1217
12182009-05-09 Eli Zaretskii <eliz@gnu.org>
1219
1220 * nonascii.texi (Default Coding Systems): Document
1221 find-auto-coding, set-auto-coding, and auto-coding-alist.
1222 Add indexing.
1223 (Lisp and Coding Systems): Add index entries.
1224
12252009-05-09 Martin Rudalics <rudalics@gmx.at>
1226
1227 * windows.texi (Choosing Window): Describe split-window-sensibly
1228 and rewrite section on window splitting accordingly.
1229 (Textual Scrolling): Replace `...' by @code{...}.
1230
12312009-05-04 Chong Yidong <cyd@stupidchicken.com>
1232
1233 * hooks.texi (Standard Hooks): Add abbrev-expand-functions.
1234 Remove obsoleted pre-abbrev-expand-hook.
1235
1236 * locals.texi (Standard Buffer-Local Variables): Consolidate table
1237 entries.
1238
1239 * internals.texi (Object Internals): Don't assume 32-bit machines
1240 are the norm.
1241 (Buffer Internals): Consolidate table entries for readability.
1242 (Window Internals): Synch field names to window.h.
1243 (Process Internals): Synch field names to process.h.
1244
12452009-04-29 Chong Yidong <cyd@stupidchicken.com>
1246
1247 * variables.texi (File Local Variables): Note that read-circle is
1248 bound to nil when reading file-local variables.
1249
1250 * streams.texi (Input Functions): Document read-circle.
1251 (Output Variables): Add xref to Circular Objects.
1252
12532009-04-25 Chong Yidong <cyd@stupidchicken.com>
1254
1255 * tips.texi (Coding Conventions): Copyedits. Add xref to Named
1256 Features and Coding System Basics. Node that "p" stands for
1257 "predicate". Recommend utf-8-emacs instead of emacs-mule.
1258 (Key Binding Conventions): Emacs does use S-down-mouse-1, for
1259 mouse-appearance-menu.
1260 (Programming Tips): Add xref to Progress.
1261
12622009-04-22 Chong Yidong <cyd@stupidchicken.com>
1263
1264 * os.texi (Command-Line Arguments):
1265 Document command-line-args-left.
1266 (Suspending Emacs): Adapt text to multi-tty case. Document use of
1267 terminal objects for tty arguments.
1268 (Startup Summary): Add xref to Session Management.
1269 (Session Management): Mention emacs-session-restore. Copyedits.
1270
12712009-04-20 Chong Yidong <cyd@stupidchicken.com>
1272
1273 * os.texi (Startup Summary): Copyedits. The init file is not
1274 necessarily named .emacs now. Document initial-buffer-choice and
1275 initial-scratch-message. Note where Emacs exits in batch mode.
1276 Document inhibit-splash-screen as an alias.
1277 (Init File): Be neutral about which init file name to use.
1278
12792009-04-16 Chong Yidong <cyd@stupidchicken.com>
1280
1281 * os.texi (System Interface): Fix Texinfo usage.
1282
12832009-04-15 Chong Yidong <cyd@stupidchicken.com>
1284
1285 * searching.texi (Regexp Backslash): Also refer to shy groups as
1286 non-capturing or unnumbered groups.
1287 (Regexp Functions): Add cross-reference to Regexp Backslash.
1288
1289 * display.texi (Truncation): Overlays can use line-prefix and
1290 wrap-prefix too.
1291 (Overlay Properties): Document wrap-prefix and line-prefix.
1292 (Face Attributes): Document underline-minimum-offset.
1293 (Face Remapping): Copyedits.
1294 (Low-Level Font): Copyedits.
1295 (Image Cache): Note that the image cache is shared between frames.
1296 (Line Height): Emphasize that line-spacing only takes effect on
1297 graphical terminals.
1298
12992009-04-13 Chong Yidong <cyd@stupidchicken.com>
1300
1301 * display.texi (Refresh Screen): Note that a passage about screen
1302 refreshing is text terminal only.
1303 (Forcing Redisplay): Delete misleading comment---sit-for calls
1304 redisplay, not the other way around.
1305 (Truncation): Note new values of truncate-partial-width-windows.
1306 Copyedits.
1307 (Invisible Text): Document invisible-p.
1308
13092009-04-11 Eli Zaretskii <eliz@gnu.org>
1310
1311 * display.texi (Overlays): Overlays don't scale well. See
1312 http://lists.gnu.org/archive/html/emacs-devel/2009-04/msg00243.html.
1313
13142009-04-10 Chong Yidong <cyd@stupidchicken.com>
1315
1316 * syntax.texi (Syntax Table Functions): Document cons cell
1317 argument for modify-syntax-entry.
1318 (Categories): Document cons cell argument for
1319 modify-category-entry.
1320
1321 * searching.texi (String Search): Document word-search-forward-lax
1322 and word-search-backward-lax.
1323 (Searching and Case): Describe isearch behavior more precisely.
1324
1325 * keymaps.texi (Tool Bar): Mention that some platforms do not
1326 support multi-line toolbars. Suggested by Stephen Eglen.
1327
1328 * frames.texi (Layout Parameters): Mention that Nextstep also
1329 allows only one tool-bar line. Suggested by Stephen Eglen.
1330
1331 * nonascii.texi (Text Representations): Copyedits.
1332 (Coding System Basics): Also mention utf-8-emacs.
1333 (Converting Representations, Selecting a Representation)
1334 (Scanning Charsets, Translation of Characters, Encoding and I/O):
1335 Copyedits.
1336 (Character Codes): Mention role of codepoints 1114112 to 4194175.
1337
13382009-04-09 Chong Yidong <cyd@stupidchicken.com>
1339
1340 * text.texi (Yank Commands): Note that yank uses push-mark.
1341 (Filling): Clarify REGION argument of fill-paragraph.
1342 Document fill-forward-paragraph-function.
1343 (Special Properties): Remove "new in Emacs 22" declaration.
1344 (Clickable Text): Merge with Links and Mouse-1 node.
1345
1346 * display.texi (Button Properties, Button Buffer Commands):
1347 Change xref to Clickable Text.
1348
1349 * tips.texi (Key Binding Conventions): Change xref to Clickable
1350 Text.
1351
1352 * elisp.texi (Top): Update node listing.
1353
13542009-04-05 Chong Yidong <cyd@stupidchicken.com>
1355
1356 * markers.texi (The Mark): Copyedits. Improve description of
1357 handle-shift-selection.
1358 (The Region): Move use-region-p here from The Mark.
1359
1360 * positions.texi (Screen Lines): Document (cols . lines) argument
1361 for vertical-motion.
1362
13632009-04-04 Chong Yidong <cyd@stupidchicken.com>
1364
1365 * frames.texi (Frames): Clean up introduction. Document `ns'
1366 return value for framep.
1367 (Creating Frames): Note how the terminal is chosen.
1368 (Multiple Terminals, Multiple Displays): Merge into a single node.
1369 (Color Parameters): Fix typo.
1370
1371 * variables.texi (Local Variables, Buffer-Local Variables)
1372 (Creating Buffer-Local): Change link to Multiple Terminals.
1373
1374 * os.texi (X11 Keysyms): Change link to Multiple Terminals.
1375
1376 * keymaps.texi (Controlling Active Maps): Change link to Multiple
1377 Terminals.
1378
1379 * commands.texi (Command Loop Info, Keyboard Macros): Change link
1380 to Multiple Terminals.
1381
1382 * elisp.texi (Top): Update node listing.
1383 * vol2.texi (Top): Update node listing.
1384 * vol1.texi (Top): Update node listing.
1385
1386 * buffers.texi (Current Buffer): Note that the append-to-buffer
1387 example is no longer in synch with the latest code. Tie the two
1388 examples together.
1389
1390 * files.texi (File Attributes): Move note about MS-DOS from
1391 Changing Files to File Attributes.
1392 (Create/Delete Dirs): Note that mkdir is an alias for this.
1393
13942009-04-01 Markus Triska <triska@gmx.at>
1395
1396 * processes.texi (Filter Functions): Suggest how to handle output
1397 batches.
1398
13992009-03-30 Chong Yidong <cyd@stupidchicken.com>
1400
1401 * help.texi (Accessing Documentation): Update example to use
1402 help-setup-xref and with-help-window.
1403 (Help Functions): Remove print-help-return-message, which is
1404 semi-obsolete due to with-help-window. Document help-buffer and
1405 help-setup-xref.
1406
14072009-03-29 Chong Yidong <cyd@stupidchicken.com>
1408
1409 * help.texi (Accessing Documentation, Help Functions):
1410 Remove information about long-obsolete Emacs versions.
1411
1412 * modes.texi (Mode Line Variables): The default values of the mode
1413 line variables are now more complicated.
1414
14152009-03-28 Chong Yidong <cyd@stupidchicken.com>
1416
1417 * modes.texi (Major Mode Conventions): Note that specialness is
1418 inherited.
1419 (Derived Modes): Note that define-derive-mode sets the mode-class
1420 property.
1421
1422 * keymaps.texi (Prefix Keys): The M-g prefix key is now named
1423 goto-map. Add search-map to the list.
1424
14252009-03-27 Eli Zaretskii <eliz@gnu.org>
1426
1427 * os.texi (System Environment): Update the list of system-type
1428 values.
1429
1430 * markers.texi (The Mark) <handle-shift-selection>: Update for
1431 removal of the optional argument DEACTIVATE.
1432
14332009-03-25 Chong Yidong <cyd@stupidchicken.com>
1434
1435 * commands.texi (Focus Events): Most X window managers don't use
1436 focus-follows-mouse nowadays.
1437
14382009-03-24 Chong Yidong <cyd@stupidchicken.com>
1439
1440 * commands.texi (Defining Commands): Clarify introduction.
1441 (Using Interactive): Not that interactive can be put in a symbol
1442 property.
1443 (Interactive Call): Note that a symbol with a non-nil
1444 interactive-form property satisfies commandp.
1445
14462009-03-23 Juanma Barranquero <lekktu@gmail.com>
1447
1448 * minibuf.texi (Intro to Minibuffers): Fix typos.
1449
14502009-03-23 Chong Yidong <cyd@stupidchicken.com>
1451
1452 * minibuf.texi (Intro to Minibuffers): Remove long-obsolete info
1453 about minibuffers in old Emacs versions. Copyedits.
1454 Emphasize that enable-recursive-minibuffers defaults to nil.
1455 (Text from Minibuffer): Simplify introduction.
1456
14572009-03-22 Alan Mackenzie <acm@muc.de>
1458
1459 * commands.texi (Using Interactive): Clarify string argument to
1460 `interactive' - even promptless elements need \n separators.
1461
14622009-03-18 Chong Yidong <cyd@stupidchicken.com>
1463
1464 * minibuf.texi (Completion Styles): New node.
1465
1466 * elisp.texi (Top): Update node listing.
1467
14682009-03-17 Chong Yidong <cyd@stupidchicken.com>
1469
1470 * minibuf.texi (Basic Completion): Note that
1471 read-file-name-completion-ignore-case and
1472 read-buffer-completion-ignore-case can override
1473 completion-ignore-case.
1474 (Minibuffer Completion): Document completing-read changes.
1475 (Completion Commands): Avoid mentioning partial completion mode.
1476 Document minibuffer-completion-confirm changes, and
1477 minibuffer-confirm-exit-commands.
1478 (High-Level Completion): Document new require-match behavior for
1479 read-buffer. Document read-buffer-completion-ignore-case.
1480 (Reading File Names): Document new require-match behavior for
1481 read-file-name.
1482
14832009-03-14 Chong Yidong <cyd@stupidchicken.com>
1484
1485 * debugging.texi (Error Debugging): Don't mislead the reader into
1486 thinking that debug-on-error enters debugger for C-f at EOB.
1487 (Error Debugging): Setting debug-on-init within the init file
1488 works, and has for some time.
1489
14902009-03-13 Kenichi Handa <handa@m17n.org>
1491
1492 * display.texi (Fontsets): Update the description.
1493
14942009-03-13 Chong Yidong <cyd@stupidchicken.com>
1495
1496 * advice.texi (Advising Primitives): Link to What Is a Function.
1497
14982009-03-12 Chong Yidong <cyd@stupidchicken.com>
1499
1500 * compile.texi (Speed of Byte-Code): Update example.
1501 (Disassembly): Update examples.
1502
1503 * loading.texi (Repeated Loading): Simplify examples.
1504
1505 * customize.texi (Common Keywords): It's not necessary to use :tag
1506 to remove hyphens, as custom-unlispify-tag-name does it
1507 automatically.
1508 (Variable Definitions): Link to File Local Variables.
1509 Document customized-value symbol property.
1510 (Customization Types): Move menu to end of node.
1511
15122009-03-10 Chong Yidong <cyd@stupidchicken.com>
1513
1514 * macros.texi (Compiling Macros): Omit misleading sentence, which
1515 implied that macros can only be used in the same file they are
1516 defined.
1517 (Backquote): Remove obsolete information about Emacs 19.
1518
15192009-03-05 John Foerch <jjfoerch@earthlink.net> (tiny change)
1520
1521 * display.texi (Display Margins): Fix paren typo.
1522
15232009-02-27 Chong Yidong <cyd@stupidchicken.com>
1524
1525 * elisp.texi (Top): Update node listing.
1526
1527 * variables.texi (Variables): Clarify introduction.
1528 (Global Variables): Mention that setq is a special form.
1529 (Local Variables): Use active voice.
1530 (Tips for Defining): Mention marking variables as safe.
1531 (Buffer-Local Variables): Mention terminal-local and frame-local
1532 variables together.
1533 (File Local Variables): Copyedits.
1534 (Frame-Local Variables): Note that they are not really useful.
1535 (Future Local Variables): Node deleted.
1536
1537 * objects.texi (General Escape Syntax): Update explanation of
1538 unicode escape syntax.
1539
15402009-02-23 Chong Yidong <cyd@stupidchicken.com>
1541
1542 * control.texi (Control Structures): Add cindex entry for "textual
1543 order".
1544
1545 * eval.texi (Intro Eval): Copyedits. Standardize on "form"
1546 instead of "expression" throughout.
1547 (Function Indirection): Copyedits. Use active voice.
1548 (Eval): The default value of max-lisp-eval-depth is now 400.
1549
15502009-02-23 Miles Bader <miles@gnu.org>
1551
1552 * processes.texi (System Processes): Rename `system-process-attributes'
1553 to `process-attributes'.
1554
15552009-02-22 Chong Yidong <cyd@stupidchicken.com>
1556
1557 * symbols.texi (Property Lists): Emphasize that property lists are
1558 not restricted to symbol cells.
1559 (Other Plists): Copyedit.
1560
1561 * sequences.texi (Sequences Arrays Vectors): Make introduction
1562 more concise.
1563 (Arrays): Mention char-tables and bool-vectors too.
1564 (Vectors): Don't repeat information given in Arrays node. Link to
1565 nodes that explain the vector usage examples.
1566 (Char-Tables): Note that char-table elements can have arbitrary
1567 type. Explain effect of omitted char-table-extra-slots property.
1568 Link to Property Lists node.
1569
15702009-02-22 Chong Yidong <cyd@stupidchicken.com>
1571
1572 * lists.texi (Building Lists): Remove obsolete Emacs 20 usage of
1573 `append'.
1574 (List Elements): Copyedits.
1575
1576 * sequences.texi (Vector Functions): Remove obsolete Emacs 20 use
1577 of `vconcat'.
1578
1579 * strings.texi (Creating Strings): Copyedits. Remove obsolete
1580 Emacs 20 usage of `concat'.
1581 (Case Conversion): Copyedits.
1582
15832009-02-21 Chong Yidong <cyd@stupidchicken.com>
1584
1585 * objects.texi (Lisp Data Types, Syntax for Strings, Buffer Type):
1586 Minor edits.
1587 (Frame Configuration Type): Emphasize that it is not primitive.
1588 (Font Type): New node.
1589 (Type Predicates): Add fontp; type-of now recognizes font object
1590 types.
1591
1592 * intro.texi (Version Info): Update version numbers in examples.
1593 (Acknowledgements): List more contributors.
1594
1595 * elisp.texi: Bump version number to 3.0.
1596 (Top): Link to Font Type node.
1597
15982009-02-20 Juanma Barranquero <lekktu@gmail.com>
1599
1600 * modes.texi (Major Mode Conventions): Remove duplicate words.
1601 (Customizing Keywords): Fix typo.
1602
16032009-02-14 Eli Zaretskii <eliz@gnu.org>
1604
1605 * nonascii.texi (User-Chosen Coding Systems): Document that
1606 select-safe-coding-system suggests raw-text if there are raw bytes
1607 in the region.
1608 (Explicit Encoding): Warn not to use `undecided' when encoding.
1609
16102009-02-11 Glenn Morris <rgm@gnu.org>
1611
1612 * frames.texi (Visibility of Frames): Mention the effect multiple
1613 workspaces/desktops can have on visibility.
1614
16152009-02-07 Eli Zaretskii <eliz@gnu.org>
1616
1617 * text.texi (Commands for Insertion):
1618 * commands.texi (Event Mod):
1619 * keymaps.texi (Searching Keymaps):
1620 * nonascii.texi (Translation of Characters):
1621 Reinstate documentation of translation-table-for-input.
1622 (Explicit Encoding): Document the `charset' text property produced
1623 by decode-coding-region and decode-coding-string.
1624
16252009-01-27 Alan Mackenzie <acm@muc.de>
1626
1627 * modes.texi (Search-based Fontification): Correct a typo.
1628
16292009-01-25 Juanma Barranquero <lekktu@gmail.com>
1630
1631 * abbrevs.texi (Abbrev Table Properties): Fix typo.
1632 Reported by Seweryn Kokot <sewkokot@gmail.com>. (Bug#2039)
1633
16342009-01-24 Eli Zaretskii <eliz@gnu.org>
1635
1636 * display.texi (Window Systems): Document the value of
1637 `initial-window-system' under --daemon.
1638
1639 * os.texi (System Environment): Remove description of the
1640 `environment' function which has been deleted.
1641
16422009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
1643
1644 * frames.texi (Multiple Displays): Remove documentation for
1645 removed function make-frame-on-tty.
1646
16472009-01-22 Chong Yidong <cyd@stupidchicken.com>
1648
1649 * files.texi (Format Conversion Piecemeal): Clarify behavior of
1650 write-region-annotate-functions.
1651 Document write-region-post-annotation-function.
1652
16532009-01-19 Chong Yidong <cyd@stupidchicken.com>
1654
1655 * display.texi (Font Lookup): Document WIDTH argument of
1656 x-list-fonts.
1657
16582009-01-17 Eli Zaretskii <eliz@gnu.org>
1659
1660 * maps.texi (Standard Keymaps): Rename function-key-map to
1661 local-function-key-map.
1662
1663 * keymaps.texi (Translation Keymaps): Rename function-key-map to
1664 local-function-key-map.
1665
1666 * nonascii.texi (Terminal I/O Encoding): `keyboard-coding-system'
1667 and `set-keyboard-coding-system' now accept an optional terminal
1668 argument.
1669
1670 * commands.texi (Event Mod): `keyboard-translate-table' is now
1671 terminal-local.
1672 (Function Keys): Rename function-key-map to
1673 local-function-key-map.
1674
1675 * elisp.texi (Top): Make @detailmenu be consistent with changes in
1676 frames.texi.
1677
1678 * hooks.texi (Standard Hooks): Document `delete-frame-functions'
1679 `delete-terminal-functions', `suspend-tty-functions' and
1680 `resume-tty-functions'.
1681
1682 * frames.texi (Frames): Document `frame-terminal' and
1683 `terminal-live-p'.
1684 (Multiple Displays): Document `make-frame-on-tty'.
1685 (Multiple Terminals): Document `terminal-list', `delete-terminal',
1686 `terminal-name', and `get-device-terminal'.
1687 (Terminal Parameters): Document `terminal-parameters',
1688 `terminal-parameter', and `set-terminal-parameter'.
1689
1690 * os.texi (System Environment): Document `environment' and
1691 `initial-environment'.
1692 (Suspending Emacs): Update for multi-tty; document
1693 `suspend-tty', `resume-tty', and `controlling-tty-p'.
1694
1695 * nonascii.texi (Coding System Basics): More accurate description
1696 of `raw-text'.
1697
16982009-01-12 Juanma Barranquero <lekktu@gmail.com>
1699
1700 * display.texi (Low-Level Font): Fix typo.
1701
17022009-01-10 Chong Yidong <cyd@stupidchicken.com>
1703
1704 * elisp.texi (Top): Update node listing.
1705
1706 * display.texi (PostScript Images): Node deleted.
1707
17082009-01-10 Eli Zaretskii <eliz@gnu.org>
1709
1710 * processes.texi (Decoding Output): Document that null bytes force
1711 no-conversion for reading process output.
1712
1713 * files.texi (Reading from Files): Document that null bytes force
1714 no-conversion when visiting files.
1715
1716 * processes.texi (Serial Ports): Improve wording, suggested by RMS.
1717
1718 * nonascii.texi (Lisp and Coding Systems):
1719 Document inhibit-null-byte-detection and inhibit-iso-escape-detection.
1720 (Character Properties): Improve wording.
1721
17222009-01-09 Chong Yidong <cyd@stupidchicken.com>
1723
1724 * display.texi (Font Lookup): Remove obsolete function
1725 x-font-family-list. x-list-fonts accepts Fontconfig/GTK syntax.
1726 (Low-Level Font): Rename from Fonts, move to end of Faces section.
1727 (Font Selection): Reorder order of variable descriptions.
1728 Minor clarifications.
1729
1730 * elisp.texi (Top): Update node listing.
1731
17322009-01-09 Glenn Morris <rgm@gnu.org>
1733
1734 * commands.texi (Command Loop Info): Say that last-command-char and
1735 last-input-char are obsolete aliases.
1736
1737 * edebug.texi (Edebug Recursive Edit): Remove separate references to
1738 last-input-char and last-command-char, since they are just aliases for
1739 last-input-event and last-command-event.
1740
1741 * minibuf.texi (Minibuffer Commands): Use last-command-event rather than
1742 last-command-char.
1743
17442009-01-08 Chong Yidong <cyd@stupidchicken.com>
1745
1746 * elisp.texi: Update node listing.
1747
1748 * display.texi (Faces): Put Font Selection node after Auto Faces.
1749 (Face Attributes): Don't link to Font Lookup.
1750 Document font-family-list.
1751 (Fonts): New node.
1752
17532009-01-08 Jason Rumney <jasonr@gnu.org>
1754
1755 * frames.texi (Pointer Shape): Clarify that only X supports
1756 changing the standard pointer shapes. (Bug#1485)
1757
17582009-01-08 Chong Yidong <cyd@stupidchicken.com>
1759
1760 * display.texi (Attribute Functions): Note that a function value
1761 :height is relative, and that compatibility functions work by
1762 calling set-face-attribute.
1763 (Displaying Faces): Reorder list in order of increasing priority.
1764 (Face Remapping): New node. Content moved here from Displaying
1765 Faces.
1766 (Glyphs): Link to Face Functions.
1767
17682009-01-08 Chong Yidong <cyd@stupidchicken.com>
1769
1770 * display.texi (Faces): Don't discuss face id here. facep does
1771 not return t.
1772 (Defining Faces): Minor clarification.
1773 (Face Attributes): Rearrange items to match docstring of
1774 set-face-attribute. Add :foundry attribute. Document new role of
1775 :font attribute. Texinfo usage fix.
1776 (Attribute Functions): Copyedits.
1777 (Face Functions): Note that face number is seldom used.
1778
17792009-01-05 Richard M Stallman <rms@gnu.org>
1780
1781 * strings.texi (Predicates for Strings): Minor clarification.
1782
1783 * functions.texi (Function Safety): Texinfo usage fix.
1784
17852009-01-04 Eduard Wiebe <usenet@pusto.de> (tiny patch)
1786
1787 * objects.texi (General Escape Syntax): Fix typo.
1788
17892009-01-03 Martin Rudalics <rudalics@gmx.at>
1790
1791 * windows.texi (Choosing Window): Say that pop-up-frame-alist
1792 works via the default value of pop-up-frame-function.
1793
17942009-01-02 Eli Zaretskii <eliz@gnu.org>
1795
1796 * processes.texi (System Processes): Document the `time' and
1797 `ctime' attributes of `system-process-attributes'.
1798
17992009-01-01 Chong Yidong <cyd@stupidchicken.com>
1800
1801 * display.texi (Face Attributes): Clarify :height attribute.
1802
18032008-12-31 Martin Rudalics <rudalics@gmx.at>
1804
1805 * buffers.texi (The Buffer List): Clarify what moves a buffer to
1806 the front of the buffer list. Add entries for `last-buffer' and
1807 `unbury-buffer'.
1808
18092008-12-27 Eli Zaretskii <eliz@gnu.org>
1810
1811 * elisp.texi (Top): Add @detailmenu items for "Multiple Terminals"
1812 and its subsections.
1813
1814 * frames.texi (Multiple Terminals, Low-level Terminal)
1815 (Terminal Parameters, Frames on Other TTY devices): New sections.
1816 (Frames): Add an xref to "Multiple Terminals".
1817
1818 * elisp.texi (Top): Add @detailmenu item for "Terminal Type".
1819
1820 * objects.texi (Terminal Type): New node.
1821 (Editing Types): Add it to the menu.
1822
1823 * elisp.texi (Top): Add a @detailmenu item for "Directory Local
1824 Variables".
1825
1826 * variables.texi (Directory Local Variables): New node.
1827 (Variables): Add a menu item for it.
1828
1829 * loading.texi (Autoload): Document `generate-autoload-cookie' and
1830 `generated-autoload-file'.
1831
18322008-12-20 Eli Zaretskii <eliz@gnu.org>
1833
1834 * os.texi (Startup Summary): Add xref to documentation of
1835 `initial-window-system'.
1836
1837 * display.texi (Window Systems): Document `window-system' the
1838 function. The variable `window-system' is now frame-local.
1839 Document `initial-window-system'.
1840
18412008-12-19 Martin Rudalics <rudalics@gmx.at>
1842
1843 * windows.texi (Windows): Rewrite description of
1844 fit-window-to-buffer.
1845
18462008-12-13 Glenn Morris <rgm@gnu.org>
1847
1848 * modes.texi (Font Lock Basics): Fix level description. (Bug#1534)
1849 (Levels of Font Lock): Refer to font-lock-maximum-decoration.
1850
18512008-12-12 Glenn Morris <rgm@gnu.org>
1852
1853 * debugging.texi (Error Debugging): Refer forwards to
1854 eval-expression-debug-on-error.
1855
18562008-12-05 Eli Zaretskii <eliz@gnu.org>
1857
1858 * strings.texi (String Basics): Only unibyte strings that
1859 represent key sequences hold 8-bit raw bytes.
1860
1861 * nonascii.texi (Coding System Basics): Rewrite @ignore'd
1862 paragraph to speak about `undecided'.
1863 (Character Properties): Don't explain the meaning of each
1864 property; instead, identify their Unicode Standard names.
1865 (Character Sets): Document `map-charset-chars'.
1866
18672008-12-02 Glenn Morris <rgm@gnu.org>
1868
1869 * files.texi (Format Conversion Round-Trip): Rewrite format-write-file
1870 section yet again.
1871
18722008-11-29 Eli Zaretskii <eliz@gnu.org>
1873
1874 * nonascii.texi (Character Properties): New Section.
1875 (Specifying Coding Systems): Document
1876 `coding-system-priority-list', `set-coding-system-priority', and
1877 `with-coding-priority'.
1878 (Lisp and Coding Systems): Document `check-coding-systems-region'
1879 and `coding-system-charset-list'.
1880 (Coding System Basics): Document `coding-system-aliases'.
1881
1882 * elisp.texi (Top): Add a @detailmenu entry for "Character
1883 Properties".
1884
1885 * objects.texi (Character Type): Correct the range of Emacs
1886 characters. Add an @xref to "Character Codes".
1887
1888 * strings.texi (String Basics): Add an @xref to "Character Codes".
1889
1890 * numbers.texi (Integer Basics): Add an @xref to `max-char'.
1891
1892 * nonascii.texi (Explicit Encoding): Update for Emacs 23.
1893 (Character Codes): Document `max-char'.
1894
18952008-11-28 Eli Zaretskii <eliz@gnu.org>
1896
1897 * nonascii.texi (Text Representations, Converting Representations)
1898 (Character Sets, Scanning Charsets, Translation of Characters):
1899 Make text more accurate.
1900
19012008-11-28 Glenn Morris <rgm@gnu.org>
1902
1903 * files.texi (Format Conversion Round-Trip): Improve previous change.
1904
19052008-11-26 Chong Yidong <cyd@stupidchicken.com>
1906
1907 * modes.texi (Auto Major Mode): Fix example.
1908
19092008-11-25 Glenn Morris <rgm@gnu.org>
1910
1911 * control.texi (Signaling Errors): Fix `wrong-type-argument' name.
1912
1913 * files.texi (Format Conversion Round-Trip):
1914 Use active voice for previous change.
1915
19162008-11-25 Chong Yidong <cyd@stupidchicken.com>
1917
1918 * os.texi (Processor Run Time):
1919 * processes.texi (Transaction Queues):
1920 * markers.texi (The Mark):
1921 * windows.texi (Choosing Window, Selecting Windows):
1922 * files.texi (Changing Files, Magic File Names):
1923 * commands.texi (Key Sequence Input):
1924 * functions.texi (Declaring Functions):
1925 * strings.texi (Predicates for Strings):
1926 * intro.texi (nil and t): Fix typos (pointed out by Drew Adams).
1927
19282008-11-24 Chong Yidong <cyd@stupidchicken.com>
1929
1930 * help.texi (Accessing Documentation): Update example.
1931
1932 * variables.texi (Defining Variables): Note that `*' is not
1933 necessary if defcustom is used.
1934
19352008-11-22 Eli Zaretskii <eliz@gnu.org>
1936
1937 * elisp.texi (Top): Remove "Chars and Bytes" and "Splitting
1938 Characters" from @detailmenu.
1939
1940 * nonascii.texi (Character Codes, Character Sets)
1941 (Scanning Charsets, Translation of Characters): Update for Emacs 23.
1942 (Chars and Bytes, Splitting Characters): Sections removed.
1943
19442008-11-22 Lute Kamstra <lute@gnu.org>
1945
1946 * positions.texi (Text Lines): Update goto-line documentation.
1947
19482008-11-21 Martin Rudalics <rudalics@gmx.at>
1949
1950 * frames.texi (Frames): Fix typo, add cross references, reword.
1951 (Initial Parameters): Reword special-display-frame-alist text.
1952 (Frames and Windows): Reword. Describe argument norecord for
1953 set-frame-selected-window.
1954 (Input Focus): Describe argument norecord for select-frame.
1955 Remove comment on MS-Windows behavior for focus-follows-mouse.
1956 (Raising and Lowering): Mention windows-frames dichotomy in
1957 metaphor.
1958
1959 * windows.texi (Displaying Buffers, Vertical Scrolling)
1960 (Horizontal Scrolling): Fix indenting and rewording issues
1961 introduced with 2008-11-07 change.
1962
19632008-11-20 Glenn Morris <rgm@gnu.org>
1964
1965 * files.texi (Format Conversion Round-Trip): Mention `preserve'
1966 element of `format-alist'.
1967
19682008-11-19 Glenn Morris <rgm@gnu.org>
1969
1970 * doclicense.texi: Update to FDL 1.3.
1971 * elisp.texi, vol1.texi, vol2.texi: Relicense under FDL 1.3 or later.
1972
19732008-11-18 Chong Yidong <cyd@stupidchicken.com>
1974
1975 * windows.texi (Window Hooks): Remove *-end-trigger-functions
1976 vars, which are obsolete. Mention jit-lock-register.
1977
1978 * modes.texi (Other Font Lock Variables):
1979 Document jit-lock-register and jit-lock-unregister.
1980
1981 * frames.texi (Color Parameters): Document alpha parameter.
1982
19832008-11-16 Martin Rudalics <rudalics@gmx.at>
1984
1985 * windows.texi (Splitting Windows, Deleting Windows)
1986 (Selecting Windows, Cyclic Window Ordering)
1987 (Buffers and Windows, Displaying Buffers, Choosing Window)
1988 (Dedicated Windows, Window Point, Window Start and End)
1989 (Textual Scrolling, Vertical Scrolling, Horizontal Scrolling)
1990 (Size of Window, Resizing Windows, Window Configurations)
1991 (Window Parameters): Avoid @var at beginning of sentences and
1992 reword accordingly.
1993
19942008-11-11 Lute Kamstra <lute@gnu.org>
1995
1996 * files.texi (File Name Components): Fix file-name-extension
1997 documentation.
1998
19992008-11-11 Juanma Barranquero <lekktu@gmail.com>
2000
2001 * frames.texi (Basic Parameters): Remove display-environment-variable
2002 and term-environment-variable.
2003
20042008-11-08 Eli Zaretskii <eliz@gnu.org>
2005
2006 * windows.texi (Basic Windows, Splitting Windows)
2007 (Deleting Windows, Selecting Windows, Cyclic Window Ordering)
2008 (Buffers and Windows, Displaying Buffers, Dedicated Windows)
2009 (Resizing Windows, Window Configurations, Window Parameters):
2010 Fix wording and markup.
2011
20122008-11-07 Martin Rudalics <rudalics@gmx.at>
2013
2014 * windows.texi (Windows): Update entries.
2015 (Basic Windows): Remove listing of attributes. Reword.
2016 (Splitting Windows, Deleting Windows): Reword.
2017 (Selecting Windows, Cyclic Window Ordering): Reword with special
2018 emphasis on order of recently selected windows and buffer list.
2019 (Buffers and Windows, Choosing Window): Reword with special
2020 emphasis on dedicated windows.
2021 (Displaying Buffers): Reword. For switch-to-buffer mention that
2022 it may fall back on pop-to-buffer. For other-window try to
2023 explain how it treats the cyclic ordering of windows.
2024 (Dedicated Windows): New node and section discussing dedicated
2025 windows and associated functions.
2026 (Window Point): Add entry for window-point-insertion-type. Reword.
2027 (Window Start and End): Rename node and section title. Reword.
2028 (Textual Scrolling, Vertical Scrolling, Horizontal Scrolling):
2029 Minor rewording.
2030 (Size of Window): Reword, in particular text on window-width.
2031 (Resizing Windows): Reword. Add text on balancing windows.
2032 (Window Configurations): Reword. Mention window parameters.
2033 (Window Parameters): New node and section on window parameters.
2034 (Window Hooks): Reword. Mention that
2035 window-configuration-change-hook is run "buffer-locally".
2036 * elisp.texi (Top): Update Windows entries in @detailmenu
2037 section.
2038
20392008-11-04 Juanma Barranquero <lekktu@gmail.com>
2040
2041 * searching.texi (Regexp Search): Fix typo.
2042
20432008-11-03 Seweryn Kokot <sewkokot@gmail.com> (tiny change)
2044
2045 * searching.texi (Regexp Search): Document GREEDY arg.
2046 (Simple Match Data): Fix return value.
2047
20482008-11-01 Eli Zaretskii <eliz@gnu.org>
2049
2050 * nonascii.texi (Text Representations): Rewrite to make consistent
2051 with Emacs 23 internal representation of characters.
2052 Document `unibyte-string'.
2053
20542008-10-28 Chong Yidong <cyd@stupidchicken.com>
2055
2056 * processes.texi (Process Information): Note that process-status
2057 does not accept buffer names.
2058
20592008-10-27 Seweryn Kokot <sewkokot@gmail.com> (tiny change)
2060
2061 * positions.texi (Skipping Characters): Correct return value of
2062 skip-chars-forward.
2063
20642008-10-25 Martin Rudalics <rudalics@gmx.at>
2065
2066 * windows.texi (Deleting Windows): Update documentation of
2067 delete-windows-on.
2068 (Buffers and Windows): Update documentations of
2069 get-buffer-window and get-buffer-window-list.
2070 (Displaying Buffers): Update documentation of
2071 replace-buffer-in-windows.
2072
2073 * buffers.texi (Current Buffer): Reword set-buffer and
2074 with-current-buffer documentations.
2075 (Creating Buffers): Reword documentation of get-buffer-create.
2076
20772008-10-23 Martin Rudalics <rudalics@gmx.at>
2078
2079 * buffers.texi (Current Buffer): Reword documentation of
2080 set-buffer.
2081 (Buffer Names): Reword documentation of buffer-name.
2082 (The Buffer List): For bury-buffer explain what happens with the
2083 buffer's window.
2084 (Creating Buffers): Say that get-buffer-create's arg is called
2085 buffer-or-name.
2086
20872008-10-22 Chong Yidong <cyd@stupidchicken.com>
2088
2089 * advice.texi (Computed Advice): Explain what DEFINITION is.
2090
2091 * nonascii.texi (Character Codes): Remove obsolete function
2092 char-valid-p, and document characterp instead.
2093
20942008-10-22 Martin Rudalics <rudalics@gmx.at>
2095
2096 * windows.texi (Displaying Buffers): Reword documentation of
2097 pop-to-buffer.
2098 (Choosing Window): Rewrite documentation of display-buffer and
2099 its options.
2100
2101 * buffers.texi (Killing Buffers): Update documentation of
2102 kill-buffer.
2103
21042008-10-21 Eli Zaretskii <eliz@gnu.org>
2105
2106 * processes.texi (Serial Ports): Fix wording and improve markup.
2107
2108 * searching.texi (Regexp Search): Document `string-match-p' and
2109 `looking-at-p'.
2110 (POSIX Regexps): Add an xref for "non-greedy".
2111 (Regexp Special): Add @cindex entry for "non-greedy".
2112
2113 * display.texi (Attribute Functions): Document `face-all-attributes'.
2114 (Image Cache) <image-refresh>: Minor wording fixes.
2115
2116 * frames.texi (Color Names): Add an xref to `read-color'.
2117
2118 * minibuf.texi (High-Level Completion): Document `read-color'.
2119
2120 * elisp.texi (Top): Add "Swapping Text" to @detailmenu.
2121
2122 * positions.texi (Narrowing): Add an xref to "Swapping Text".
2123
2124 * buffers.texi (Swapping Text): New section, documents
2125 `buffer-swap-text'.
2126
21272008-10-21 Martin Rudalics <rudalics@gmx.at>
2128
2129 * windows.texi (Resizing Windows): Minor wording fix.
2130
21312008-10-20 Eli Zaretskii <eliz@gnu.org>
2132
2133 * processes.texi (Shell Arguments): Document `split-string-and-unquote'
2134 and `combine-and-quote-strings'.
2135
2136 * strings.texi (Creating Strings): Add xrefs for them.
2137
21382008-10-19 Eli Zaretskii <eliz@gnu.org>
2139
2140 * elisp.texi (Top): Make descriptive text for "Reading File Names"
2141 match the corresponding menu in minibuf.texi.
2142
2143 * minibuf.texi (Reading File Names): Document `read-shell-command'
2144 and `minibuffer-local-shell-command-map'.
2145
21462008-10-19 Martin Rudalics <rudalics@gmx.at>
2147
2148 * windows.texi (Resizing Windows): Remove var{} around "window" in
2149 documentation of enlarge-window.
2150 Rewrite documentation of window-min-height and window-min-width.
2151
21522008-10-19 Eli Zaretskii <eliz@gnu.org>
2153
2154 * functions.texi (Calling Functions): Document `apply-partially'.
2155
2156 * hooks.texi (Standard Hooks): Mention
2157 `before-hack-local-variables-hook' and `hack-local-variables-hook'.
2158
2159 * variables.texi (File Local Variables): Document
2160 `file-local-variables-alist', `before-hack-local-variables-hook'
2161 and `hack-local-variables-hook'.
2162
2163 * processes.texi (Synchronous Processes): Document `process-lines'.
2164
2165 * customize.texi (Variable Definitions):
2166 Document `custom-reevaluate-setting'.
2167
21682008-10-18 Martin Rudalics <rudalics@gmx.at>
2169
2170 * windows.texi (Choosing Window, Deleting Windows)
2171 (Displaying Buffers): Expand documentation of dedicated windows.
2172
21732008-10-18 Eli Zaretskii <eliz@gnu.org>
2174
2175 * files.texi (Changing Files): Document symbolic input of file
2176 modes to `set-file-modes'. Document `read-file-modes' and
2177 `file-modes-symbolic-to-number'.
2178
2179 * maps.texi (Standard Keymaps): Document `multi-query-replace-map'
2180 and `search-map'.
2181
2182 * searching.texi (Search and Replace):
2183 Document `replace-search-function' and `replace-re-search-function'.
2184 Document `multi-query-replace-map'.
2185
2186 * minibuf.texi (Text from Minibuffer): Document `read-regexp'.
2187 (Completion Commands, Reading File Names):
2188 Rename `minibuffer-local-must-match-filename-map' to
2189 `minibuffer-local-filename-must-match-map'.
2190 (Minibuffer Completion): The `require-match' argument to
2191 `completing-read' can now have the value `confirm-only'.
2192
2193 * windows.texi (Displaying Buffers): Minor wording fix.
2194 (Choosing Window): `split-height-threshold' can now be nil.
2195 Document `split-width-threshold'. `pop-up-frames' can have the
2196 value `graphic-only'.
2197
21982008-10-17 Eli Zaretskii <eliz@gnu.org>
2199
2200 * os.texi (Startup Summary): Document `before-init-time' and
2201 `after-init-time'. Document `initial-window-system' and
2202 `window-system-initialization-alist'. Document reading the
2203 abbrevs file. Document the call to `server-start' under --daemon.
2204 Rearrange a bit to be consistent with the code flow.
2205 (Processor Run Time): Document `emacs-uptime' and `emacs-init-time'.
2206 (Time Parsing): Document `format-seconds'.
2207
22082008-10-17 Martin Rudalics <rudalics@gmx.at>
2209
2210 * windows.texi (Basic Windows, Splitting Windows): Fix whitespace
2211 and reword.
2212
22132008-10-16 Eli Zaretskii <eliz@gnu.org>
2214
2215 * markers.texi (The Mark): Document use-region-p.
2216
22172008-10-15 Eli Zaretskii <eliz@gnu.org>
2218
2219 * internals.texi (Writing Emacs Primitives): The interactive spec
2220 of a primitive can be a Lisp form.
2221
2222 * markers.texi (The Mark): Document the `lambda' and `(only . OLD)'
2223 values of transient-mark-mode. Document handle-shift-selection.
2224
2225 * commands.texi (Using Interactive, Interactive Codes): Document `^'.
2226 (Interactive Examples): Show an example of `^'.
2227 (Key Sequence Input): Document this-command-keys-shift-translated.
2228 (Defining Commands, Using Interactive): The interactive-form of a
2229 function can be added via its symbol's property.
2230
2231 * positions.texi (List Motion): beginning-of-defun-function can
2232 now accept an argument.
2233
2234 * text.texi (Low-Level Kill Ring): interprogram-paste-function can
2235 now return a list of strings.
2236
2237 * control.texi (Handling Errors): Document ignore-errors.
2238
2239 * frames.texi (Creating Frames): Document frame-inherited-parameters.
2240 (Parameter Access): Document set-frame-parameter.
2241
2242 * variables.texi (Creating Buffer-Local): Add an xref to "Setting
2243 Hooks" for the effect of kill-all-local-variables on local hook
2244 functions.
2245
2246 * modes.texi (Major Mode Conventions, Mode Line Variables):
2247 `mode-name' need not be a string. xref to "Mode Line Data" for
2248 details, and to "Emulating Mode Line" for computing a string
2249 value.
2250
22512008-10-14 Eli Zaretskii <eliz@gnu.org>
2252
2253 * processes.texi (System Processes): New section.
2254 (Processes, Signals to Processes): Add xrefs to it.
2255
2256 * objects.texi (Editing Types): A `process' is a subprocess of
2257 Emacs, not just any process running on the OS.
2258
2259 * elisp.texi (Top): Adjust the @detailmenu for the above two
2260 changes.
2261
2262 * sequences.texi (Char-Tables): Remove documentation of
2263 set-char-table-default, which has no effect since Emacs 23.
2264 <char-table-range, set-char-table-range>: Don't mention generic
2265 characters and charsets. Add a cons cell as a possible argument.
2266
2267 * nonascii.texi (Splitting Characters)
2268 (Translation of Characters): Don't mention generic characters.
2269
2270 * display.texi (Fontsets): Don't mention generic characters.
2271
2272 * sequences.texi (Char-Tables): `map-char-table' can now call its
2273 argument FUNCTION with a cons cell as KEY.
2274
22752008-10-13 Eli Zaretskii <eliz@gnu.org>
2276
2277 * objects.texi (Primitive Function Type): Move "@cindex special
2278 forms" from here...
2279
2280 * eval.texi (Special Forms): ...to here.
2281
2282 * functions.texi (What Is a Function): `functionp' returns nil for
2283 special forms. Add an xref.
2284
2285 * elisp.texi (Top): Add a @detailmenu entry for "Frame-Local
2286 Variables".
2287
2288 * variables.texi (Frame-Local Variables): New section.
2289 (Buffer-Local Variables): Add an xref to it.
2290 (Intro to Buffer-Local, Creating Buffer-Local): A variable cannot
2291 have both frame-local and buffer-local binding.
2292
2293 * frames.texi (Frames): Mention multiple tty frames.
2294 (Frame Parameters, Parameter Access): Mention frame-local variable
2295 bindings.
2296
22972008-09-20 Glenn Morris <rgm@gnu.org>
2298
2299 * display.texi (Defining Faces): Recommend against face variables.
2300
23012008-09-16 Juanma Barranquero <lekktu@gmail.com>
2302
2303 * display.texi (Echo Area Customization): Fix typo.
2304
23052008-09-09 Juanma Barranquero <lekktu@gmail.com>
2306
2307 * loading.texi (Where Defined): Add `defface' item.
2308
23092008-09-06 Martin Rudalics <rudalics@gmx.at>
2310
2311 * loading.texi (Where Defined): Fix description of symbol-file.
2312
23132008-08-26 Jason Rumney <jasonr@gnu.org>
2314
2315 * display.texi (TIFF Images): New section describing :index property.
2316
23172008-08-23 Chong Yidong <cyd@stupidchicken.com>
2318
2319 * display.texi (Temporary Displays): Remove unnecessary comment
2320 about usage of temp-buffer-show-hook.
2321
23222008-08-05 Chong Yidong <cyd@stupidchicken.com>
2323
2324 * symbols.texi (Other Plists): Fix incorrect example.
2325 Suggested by Florian Beck.
2326
23272008-07-31 Juanma Barranquero <lekktu@gmail.com>
2328
2329 * os.texi: Fix previous change.
2330
23312008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
2332
2333 * os.texi:
2334 * intro.texi:
2335 * files.texi: Remove VMS support.
2336
23372008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2338
2339 * os.texi:
2340 * frames.texi:
2341 * display.texi: Remove mentions of Mac Carbon.
2342
23432008-07-01 Miles Bader <miles@gnu.org>
2344
2345 * text.texi (Special Properties):
2346 * display.texi (Truncation): Add wrap-prefix and line-prefix.
2347
23482008-06-28 Johan Bockgård <bojohan@gnu.org>
2349
2350 * display.texi (Other Image Types): Fix copy/paste error; say
2351 "PBM", not "XBM".
2352
23532008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
2354
2355 * os.texi: Remove references to obsolete systems.
2356
23572008-06-20 Eli Zaretskii <eliz@gnu.org>
2358
2359 * makefile.w32-in (distclean): Remove makefile.
2360
23612008-06-17 Glenn Morris <rgm@gnu.org>
2362
2363 * Makefile.in (emacsver, miscmanualdir, VERSION, manual, install)
2364 (elisp, dist): Remove rules and variables that are obsolete now
2365 the lisp manual is no longer distributed separately.
2366
23672008-06-16 Glenn Morris <rgm@gnu.org>
2368
2369 * configure, configure.in, mkinstalldirs: Remove unused files.
2370
2371 * book-spine.texinfo: Set version to 23.0.60.
2372 * vol1.texi (EMACSVER):
2373 * vol2.texi (EMACSVER): Set to 23.0.60.
2374
2375 * elisp.texi, vol1.texi, vol2.texi: Update Back-Cover Text
2376 as per maintain.info.
2377
23782008-06-15 Glenn Morris <rgm@gnu.org>
2379
2380 * makefile.w32-in (manual): Use "23" rather than "21".
2381
2382 * Makefile.in (emacsver): New, set by configure.
2383 (manual): Use emacsver.
2384
2385 * intro.texi: Report bugs using M-x report-emacs-bug.
2386
2387 * elisp.texi (EMACSVER): Remove duplicate, outdated setting.
2388
23892008-06-13 Daniel Engeler <engeler@gmail.com>
2390
2391 * elisp.texi, internals.texi, processes.texi: Add documentation
2392 about serial port access.
2393
23942008-06-05 Miles Bader <miles@gnu.org>
2395
2396 * display.texi (Displaying Faces): Update to reflect function
2397 renamings in face-remap.el.
2398
23992008-06-05 Juanma Barranquero <lekktu@gmail.com>
2400
2401 * display.texi (Fontsets): Fix typos.
2402
24032008-06-03 Miles Bader <miles@gnu.org>
2404
2405 * display.texi (Displaying Faces): Add add-relative-face-remapping,
2406 remove-relative-face-remapping, set-base-face-remapping,
2407 and set-default-base-face-remapping.
2408
24092008-06-01 Miles Bader <miles@gnu.org>
2410
2411 * display.texi (Displaying Faces): Add face-remapping-alist.
2412
24132008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
2414
2415 * tips.texi (Coding Conventions): Do not encourage the use of "-flag"
2416 variable names.
2417
24182008-05-03 Eric S. Raymond <esr@golux>
2419
2420 * keymaps.texi: Clarify that (current-local-map) and
2421 (current-global-map) return references, not copies.
2422
24232008-05-02 Juri Linkov <juri@jurta.org>
2424
2425 * minibuf.texi (Text from Minibuffer): Document a list of
2426 default values for `read-from-minibuffer'.
2427
24282008-04-24 Juanma Barranquero <lekktu@gmail.com>
2429
2430 * nonascii.texi (Translation of Characters): Fix previous change.
2431
24322008-04-20 Chong Yidong <cyd@stupidchicken.com>
2433
2434 * display.texi (Overlay Properties): Clarify role of underlying
2435 textprop and overlay keymaps for display strings.
2436
2437 * keymaps.texi (Active Keymaps): Ditto.
2438
24392008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2440
2441 * minibuf.texi (Programmed Completion):
2442 Replace dynamic-completion-table with the new completion-table-dynamic.
2443
24442008-04-07 Chong Yidong <cyd@stupidchicken.com>
2445
2446 * intro.texi (Some Terms): Change "fonts in this manual" index
2447 entry to "typographic conventions".
2448
24492008-04-05 Eli Zaretskii <eliz@gnu.org>
2450
2451 * objects.texi (Text Props and Strings): Add indexing for read
2452 syntax of text properties.
2453
24542008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2455
2456 * processes.texi (Decoding Output): Remove process-filter-multibyte
2457 functions.
2458
24592008-03-15 Martin Rudalics <rudalics@gmx.at>
2460
2461 * display.texi (Finding Overlays): Say that empty overlays at
2462 the end of the buffer are reported too.
2463
24642008-03-13 Glenn Morris <rgm@gnu.org>
2465
2466 * elisp.texi (EMACSVER): Set to 23.0.60.
2467
24682008-02-26 Chong Yidong <cyd@stupidchicken.com>
2469
2470 * strings.texi (Formatting Strings): Treat - and 0 as flag characters.
2471
24722008-02-22 Glenn Morris <rgm@gnu.org>
2473
2474 * frames.texi (Position Parameters): Clarify the description of
2475 `left' and `top', using information from "Geometry".
2476 (Geometry): Give a pointer to "Position Parameters", rather than
2477 repeating information.
2478
24792008-02-11 Glenn Morris <rgm@gnu.org>
2480
2481 * objects.texi (Equality Predicates): No longer talk about "two"
2482 functions.
2483
24842008-02-11 Lawrence Mitchell <wence@gmx.li> (tiny change)
2485
2486 * objects.texi (Equality Predicates): Add defun for
2487 equal-including-properties.
2488
24892008-02-10 Glenn Morris <rgm@gnu.org>
2490
2491 * objects.texi (Equality Predicates):
2492 Mention equal-including-properties.
2493
24942008-02-07 Richard Stallman <rms@gnu.org>
2495
2496 * windows.texi (Window Start): Mention the feature of moving
2497 window-start to start of line.
2498
24992008-02-07 Jan Djärv <jan.h.d@swipnet.se>
2500
2501 * keymaps.texi (Tool Bar): Document rtl property.
2502
25032008-01-27 Thien-Thi Nguyen <ttn@gnuvola.org>
2504
2505 * display.texi (Button Types):
2506 For define-button-type, clarify type of NAME.
2507
25082008-01-19 Martin Rudalics <rudalics@gmx.at>
2509
2510 * buffers.texi (Buffer Modification): Fix typo.
2511
25122008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
2513
2514 * os.texi (System Environment): Remove references to OSes that are
2515 not supported anymore.
2516
25172008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
2518
2519 * os.texi (System Environment): Remove mention for Masscomp.
2520
25212008-01-04 Richard Stallman <rms@gnu.org>
2522
2523 * display.texi (Faces): Don't talk about internal face vector as arg
2524 to facep.
2525
2526 * customize.texi (Type Keywords): Fix previous change.
2527
2528 * text.texi (Links and Mouse-1): Fix xref for commands.texi change.
2529 * elisp.texi (Top): Fix menu for commands.texi change.
2530
25312007-12-30 Richard Stallman <rms@gnu.org>
2532
2533 * commands.texi (Accessing Mouse): Rename from Accessing Events.
2534 (Accessing Scroll): New node broken out of Accessing Mouse.
2535
25362007-12-28 Richard Stallman <rms@gnu.org>
2537
2538 * frames.texi (Size Parameters): Fix typo.
2539 (Basic Parameters): For `title', refer to title bar.
2540 (Size and Position): Explain meaning of frame pixel width and height.
2541
25422007-12-23 Richard Stallman <rms@gnu.org>
2543
2544 * customize.texi (Type Keywords): Uncomment :validate and clarify it.
2545 Improve some of the commented-out keywords' text too.
2546
25472007-12-14 Martin Rudalics <rudalics@gmx.at>
2548
2549 * nonascii.texi (Encoding and I/O): Reword to avoid saying
2550 "visit the current buffer".
2551
2552 * os.texi (System Interface): Fix typo.
2553
25542007-12-04 Richard Stallman <rms@gnu.org>
2555
2556 * objects.texi (Symbol Type): Fix typo.
2557
25582007-12-03 Richard Stallman <rms@gnu.org>
2559
2560 * hooks.texi (Standard Hooks): Add link to Hooks for Loading.
2561
25622007-12-01 Glenn Morris <rgm@gnu.org>
2563
2564 * functions.texi (Declaring Functions): Improve previous change.
2565
25662007-11-30 Glenn Morris <rgm@gnu.org>
2567
2568 * functions.texi (Declaring Functions): Add optional fourth
2569 argument of declare-function, and setting third argument to `t'.
2570
25712007-11-29 Richard Stallman <rms@gnu.org>
2572
2573 * customize.texi (Composite Types): Document `group' type.
2574
25752007-11-29 Glenn Morris <rgm@gnu.org>
2576
2577 * functions.texi (Declaring Functions): Add findex.
2578 Mention `external' files.
2579
25802007-11-26 Juanma Barranquero <lekktu@gmail.com>
2581
2582 * functions.texi (Declaring Functions): Fix directive.
2583
25842007-11-25 Richard Stallman <rms@gnu.org>
2585
2586 * help.texi (Help Functions): Clean up last change.
2587
2588 * advice.texi (Preactivation, Activation of Advice): Minor cleanup.
2589
2590 * loading.texi (Named Features): Minor cleanup.
2591
2592 * macros.texi (Eval During Expansion): Minor cleanup.
2593
2594 * variables.texi (Variable Aliases): Minor cleanup.
2595
25962007-11-24 Richard Stallman <rms@gnu.org>
2597
2598 * functions.texi (Declaring Functions): Clarify previous change.
2599
2600 * compile.texi (Compiler Errors): Clarify previous change.
2601
26022007-11-24 Richard Stallman <rms@gnu.org>
2603
2604 * display.texi (Refresh Screen, Forcing Redisplay):
2605 Clarify the text and move items around.
2606
26072007-11-24 Glenn Morris <rgm@gnu.org>
2608
2609 * functions.texi (Declaring Functions): New section.
2610 * compile.texi (Compiler Errors): Mention declaring functions,
2611 defvar with no initvalue, and byte-compile-warnings.
2612
26132007-11-15 Martin Rudalics <rudalics@gmx.at>
2614
2615 * vol1.texi (Top): Remove Frame-Local Variables from Node Listing.
2616 * vol2.texi (Top): Remove Frame-Local Variables from Node Listing.
2617
26182007-11-13 Martin Rudalics <rudalics@gmx.at>
2619
2620 * help.texi (Help Functions): Document new macro `with-help-window'.
2621
26222007-11-10 Paul Pogonyshev <pogonyshev@gmx.net>
2623
2624 * searching.texi (Replacing Match): Describe new
2625 `match-substitute-replacement'.
2626
26272007-10-31 Richard Stallman <rms@gnu.org>
2628
2629 * strings.texi (Creating Strings): Null strings from concat not unique.
2630
26312007-10-26 Richard Stallman <rms@gnu.org>
2632
2633 * objects.texi (Equality Predicates): Null strings are uniquified.
2634
2635 * minibuf.texi: Minor clarifications in previous change.
2636
26372007-10-25 Glenn Morris <rgm@gnu.org>
2638
2639 * customize.texi (Variable Definitions): Add :risky and :safe keywords.
2640
26412007-10-24 Richard Stallman <rms@gnu.org>
2642
2643 * elisp.texi (Top): Delete Frame-Local Variables from subnode menu.
2644
2645 * variables.texi (Frame-Local Variables): Node deleted.
2646 (Variables): Delete Frame-Local Variables from menu.
2647 (Local Variables, Buffer-Local Variables, Intro to Buffer-Local)
2648 (Default Value): Don't mention frame-local vars.
2649
2650 * os.texi (Idle Timers): current-idle-time returns nil if not idle.
2651
2652 * loading.texi (Unloading): Document FEATURE-unload-function
2653 instead of FEATURE-unload-hook.
2654
2655 * frames.texi (Multiple Displays): Don't mention frame-local vars.
2656
26572007-10-22 Juri Linkov <juri@jurta.org>
2658
2659 * minibuf.texi (Text from Minibuffer, Minibuffer Completion)
2660 (High-Level Completion): Document a list of default value strings
2661 in the DEFAULT argument, for which minibuffer functions return the
2662 first element.
2663
26642007-10-17 Juri Linkov <juri@jurta.org>
2665
2666 * text.texi (Filling): Update arguments of fill-paragraph.
2667 fill-paragraph operates on the active region in Transient Mark mode.
2668 Remove fill-paragraph-or-region.
2669
26702007-10-13 Karl Berry <karl@gnu.org>
2671
2672 * elisp.texi (@dircategory): Move to after @copying,
2673 since we want @copying as close as possible to the beginning of
2674 the output.
2675
26762007-10-12 Richard Stallman <rms@gnu.org>
2677
2678 * elisp.texi (Top): Add Distinguish Interactive to subnode menu.
2679
2680 * commands.texi (Distinguish Interactive): New node,
2681 broken out from Interactive Call and rewritten.
2682 (Command Loop): Put Distinguish Interactive in menu.
2683
26842007-10-09 Richard Stallman <rms@gnu.org>
2685
2686 * text.texi (Examining Properties): Mention overlay priority.
2687
2688 * display.texi (Display Margins): Correct the description
2689 of margin display specifications.
2690 (Replacing Specs): New subnode broken out of Display Property.
2691
26922007-10-06 Juri Linkov <juri@jurta.org>
2693
2694 * text.texi (Filling): Document fill-paragraph-or-region.
2695
26962007-10-05 Juanma Barranquero <lekktu@gmail.com>
2697
2698 * display.texi (Auto Faces): Fix typo.
2699
27002007-10-02 Richard Stallman <rms@gnu.org>
2701
2702 * display.texi (Display Property): Explain some display specs
2703 don't let you move point in.
2704
2705 * frames.texi (Cursor Parameters):
2706 Describe cursor-in-non-selected-windows here. Explain more values.
2707
2708 * windows.texi (Basic Windows): Don't describe
2709 cursor-in-non-selected-windows here.
2710
27112007-10-01 Eli Zaretskii <eliz@gnu.org>
2712
2713 * processes.texi (Misc Network): Note that these functions are
2714 supported only on some systems.
2715
27162007-10-01 Richard Stallman <rms@gnu.org>
2717
2718 * display.texi (Overlay Properties): Explain nil as priority.
2719 Explain that conflicts are unpredictable if not resolved by
2720 priorities.
2721
27222007-09-23 Richard Stallman <rms@gnu.org>
2723
2724 * macros.texi (Backquote): Minor clarification.
2725
27262007-09-19 Richard Stallman <rms@gnu.org>
2727
2728 * display.texi (Display Property): Explain multiple display specs.
2729 Clarify when they work in parallel and when one overrides.
2730 Fix error in example.
2731
27322007-09-06 Glenn Morris <rgm@gnu.org>
2733
2734 Move from lispref/ to doc/lispref/. Change all setfilename
2735 commands to use ../../info.
2736 * Makefile.in (infodir): Go up one more level.
2737 (usermanualdir): Change from ../man to ../emacs.
2738 (miscmanualdir): New.
2739 (dist): Use new variable miscmanualdir.
2740 * makefile.w32-in (infodir, texinputdir): Go up one more level.
2741 (usermanualdir): Change from ../man to ../emacs.
2742
27432007-08-30 Martin Rudalics <rudalics@gmx.at>
2744
2745 * commands.texi (Command Loop Info): Advise against changing
2746 most variables described here. Explain new variable
2747 last-repeatable-command.
2748
27492007-08-29 Glenn Morris <rgm@gnu.org>
2750
2751 * elisp.texi (EMACSVER): Increase to 23.0.50.
2752
27532007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
2754
2755 * frames.texi (Basic Parameters): Add display-environment-variable
2756 and term-environment-variable.
2757
27582007-08-28 Juri Linkov <juri@jurta.org>
2759
2760 * display.texi (Image Formats, Other Image Types): Add SVG.
2761
27622007-08-28 Juri Linkov <juri@jurta.org>
2763
2764 * display.texi (Images): Move formats-related text to new node
2765 "Image Formats".
2766 (Image Formats): New node.
2767
27682007-08-27 Richard Stallman <rms@gnu.org>
2769
2770 * windows.texi (Window Configurations): Clarify what
2771 a window configuration saves.
2772
27732007-08-25 Richard Stallman <rms@gnu.org>
2774
2775 * display.texi (Images): Delete redundant @findex.
2776
27772007-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
2778
2779 * text.texi (Change Hooks): (after|before)-change-functions are no
2780 longer bound to nil while running; rather inhibit-modification-hooks
2781 is t.
2782
27832007-08-16 Richard Stallman <rms@gnu.org>
2784
2785 * processes.texi (Asynchronous Processes):
2786 Clarify doc of start-file-process.
2787
27882007-08-08 Martin Rudalics <rudalics@gmx.at>
2789
2790 * modes.texi (Example Major Modes): Fix typo.
2791
27922007-08-08 Glenn Morris <rgm@gnu.org>
2793
2794 * intro.texi (nil and t): Do not use `iff' in documentation.
2795
2796 * tips.texi (Documentation Tips): Recommend against `iff'.
2797
27982007-08-07 Chong Yidong <cyd@stupidchicken.com>
2799
2800 * display.texi (Image Cache): Document image-refresh.
2801
28022007-08-06 Martin Rudalics <rudalics@gmx.at>
2803
2804 * windows.texi (Size of Window): Document window-full-width-p.
2805
28062007-07-25 Glenn Morris <rgm@gnu.org>
2807
2808 * gpl.texi (GPL): Replace license with GPLv3.
2809
2810 * Relicense all FSF files to GPLv3 or later.
2811
28122007-07-24 Michael Albinus <michael.albinus@gmx.de>
2813
2814 * processes.texi (Synchronous Processes):
2815 Add `process-file-shell-command'.
2816 (Asynchronous Processes): Mention restricted use of
2817 `process-filter' and `process-sentinel' in
2818 `start-file-process'. Add `start-file-process-shell-command'.
2819
28202007-07-17 Michael Albinus <michael.albinus@gmx.de>
2821
2822 * files.texi (Magic File Names): Introduce optional parameter
2823 IDENTIFICATION for `file-remote-p'.
2824
28252007-07-16 Richard Stallman <rms@gnu.org>
2826
2827 * display.texi (Defining Faces): Fix previous change.
2828
28292007-07-14 Richard Stallman <rms@gnu.org>
2830
2831 * control.texi (Handling Errors): Document `debug' in handler list.
2832
28332007-07-10 Richard Stallman <rms@gnu.org>
2834
2835 * display.texi (Defining Faces): Explain C-M-x feature for defface.
2836
28372007-07-09 Richard Stallman <rms@gnu.org>
2838
2839 * files.texi (Magic File Names): Rewrite previous change.
2840
28412007-07-08 Michael Albinus <michael.albinus@gmx.de>
2842
2843 * files.texi (Magic File Names): Introduce optional parameter
2844 CONNECTED for `file-remote-p'.
2845
28462007-07-07 Michael Albinus <michael.albinus@gmx.de>
2847
2848 * processes.texi (Asynchronous Processes):
2849 * files.texi (Magic File Names): Add `start-file-process'.
2850
28512007-06-27 Richard Stallman <rms@gnu.org>
2852
2853 * files.texi (Format Conversion Piecemeal):
2854 Clarify `after-insert-file-functions' calling convention.
2855
28562007-06-27 Michael Albinus <michael.albinus@gmx.de>
2857
2858 * files.texi (Magic File Names): Remove `dired-call-process'.
2859 Add `process-file'.
2860
28612007-06-27 Kenichi Handa <handa@m17n.org>
2862
2863 * text.texi (Special Properties): Fix description about
2864 `composition' property.
2865
28662007-06-26 Kenichi Handa <handa@m17n.org>
2867
2868 * nonascii.texi (Default Coding Systems): Document about the
2869 return value `undecided'.
2870
28712007-06-25 David Kastrup <dak@gnu.org>
2872
2873 * keymaps.texi (Active Keymaps): Document new POSITION argument of
2874 `current-active-maps'.
2875
28762007-06-24 Karl Berry <karl@gnu.org>
2877
2878 * elisp.texi, vol1.texi, vol2.texi: New Back-Cover Text.
2879
28802007-06-15 Juanma Barranquero <lekktu@gmail.com>
2881
2882 * display.texi (Overlay Arrow): Doc fix.
2883
28842007-06-14 Karl Berry <karl@tug.org>
2885
2886 * anti.texi (Antinews): Typo.
2887
28882007-06-14 Chong Yidong <cyd@stupidchicken.com>
2889
2890 * display.texi (Image Cache): Document image-refresh.
2891
28922007-06-12 Karl Berry <karl@gnu.org>
2893
2894 * vol1.texi, vol2.texi, two-volume-cross-refs.txt: Update.
2895 * two-volume.make: New file.
2896 * .cvsignore: Ignore two-volume files.
2897
28982007-06-12 Tom Tromey <tromey@redhat.com>
2899
2900 * os.texi (Init File): Document user-emacs-directory.
2901
29022007-06-03 Nick Roberts <nickrob@snap.net.nz>
2903
2904 * commands.texi (Click Events): Describe width and height when
2905 object is nil.
2906
29072007-05-30 Nick Roberts <nickrob@snap.net.nz>
2908
2909 * commands.texi (Click Events): Layout more logically.
2910 Describe width and height.
2911 (Drag Events, Motion Events): Update to new format for position.
2912
29132007-06-02 Richard Stallman <rms@gnu.org>
2914
2915 * frames.texi (Color Parameters): Add xref to (emacs)Standard Faces.
2916
29172007-06-02 Chong Yidong <cyd@stupidchicken.com>
2918
2919 * Version 22.1 released.
2920
29212007-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
2922
2923 * text.texi (Special Properties): Correct meaning of fontified face.
2924
29252007-05-30 Richard Stallman <rms@gnu.org>
2926
2927 * text.texi (Special Properties): Add link to Adjusting Point.
2928
29292007-05-12 Richard Stallman <rms@gnu.org>
2930
2931 * text.texi (Margins): indent-to-left-margin is not the default.
2932 (Mode-Specific Indent): For indent-line-function, the default
2933 is indent-relative.
2934
2935 * modes.texi (Example Major Modes): Explain last line of text-mode
2936 is redundant.
2937
29382007-05-10 Richard Stallman <rms@gnu.org>
2939
2940 * keymaps.texi (Scanning Keymaps): Update where-is-internal example.
2941
2942 * help.texi (Keys in Documentation): Add reference to
2943 Documentation Tips.
2944
2945 * files.texi (Format Conversion): TO-FN gets three arguments.
2946
2947 * modes.texi (Auto Major Mode): Document file-start-mode-alist.
2948
29492007-05-10 Thien-Thi Nguyen <ttn@gnuvola.org>
2950
2951 * elisp.texi (Top): Remove "Saving Properties" from detailed menu.
2952 * files.texi (Format Conversion): Expand intro; add menu.
2953 (Format Conversion Overview, Format Conversion Round-Trip)
2954 (Format Conversion Piecemeal): New nodes/subsections.
2955 * hooks.texi: Xref "Format Conversion" , not "Saving Properties".
2956 * text.texi (Text Properties): Remove "Saving Properties" from menu.
2957 (Saving Properties): Delete node/subsection.
2958
29592007-05-07 Karl Berry <karl@gnu.org>
2960
2961 * elisp.texi (EMACSVER): Back to 22.
2962
29632007-05-06 Richard Stallman <rms@gnu.org>
2964
2965 * processes.texi (Accepting Output): Revert most of previous change.
2966
29672007-05-05 Richard Stallman <rms@gnu.org>
2968
2969 * processes.texi (Accepting Output): accept-process-output
2970 uses microseconds, not milliseconds. But that arg is obsolete.
2971
29722007-05-04 Karl Berry <karl@tug.org>
2973
2974 * elisp.texi (EMACSVER) [smallbook]: 22.1, not 22.
2975
29762007-05-04 Eli Zaretskii <eliz@gnu.org>
2977
2978 * tips.texi (Documentation Tips): Rearrange items to place the
2979 more important ones first. Add an index entry for hyperlinks.
2980
29812007-05-03 Karl Berry <karl@gnu.org>
2982
2983 * elisp.texi (\urlcolor, \linkcolor) [smallbook]: \Black for printing.
2984 (EMACSVER) [smallbook]: 22 for printed version.
2985
2986 * control.texi (Signaling Errors) <signal>: texinfo.tex is fixed,
2987 so restore anchor to normal position after defun. Found by Kevin Ryde.
2988
29892007-04-26 Glenn Morris <rgm@gnu.org>
2990
2991 * elisp.texi (EMACSVER): Increase to 22.1.50.
2992
29932007-04-28 Karl Berry <karl@gnu.org>
2994
2995 * elisp.texi: Improve line breaks on copyright page,
2996 similar layout to emacs manual, 8.5x11 by default.
2997
29982007-04-24 Richard Stallman <rms@gnu.org>
2999
3000 * text.texi (Special Properties): Add xref to Overlay Properties.
3001
3002 * display.texi (Overlay Properties): Add xref to Special Properties.
3003
30042007-04-22 Richard Stallman <rms@gnu.org>
3005
3006 * keymaps.texi (Extended Menu Items): Move the info about
3007 format with cached keyboard binding.
3008
30092007-04-21 Richard Stallman <rms@gnu.org>
3010
3011 * text.texi (Special Properties): Clarify previous change.
3012
3013 * files.texi (File Name Expansion): Clarify previous change.
3014
3015 * display.texi (Attribute Functions): Fix example for
3016 face-attribute-relative-p.
3017
30182007-04-19 Kenichi Handa <handa@m17n.org>
3019
3020 * text.texi (Special Properties): Document composition property.
3021
30222007-04-19 Glenn Morris <rgm@gnu.org>
3023
3024 * files.texi (File Name Expansion): Mention "superroot".
3025
30262007-04-15 Chong Yidong <cyd@stupidchicken.com>
3027
3028 * frames.texi (Multiple Displays): Add note about "multi-monitor"
3029 setups.
3030 (Display Feature Testing): Note that display refers to all
3031 physical monitors for multi-monitor setups.
3032
30332007-04-14 Richard Stallman <rms@gnu.org>
3034
3035 * lists.texi (Sets And Lists): Clarify `delete' examples.
3036 Remove spurious xref to same node.
3037 Clarify xref for add-to-list.
3038
30392007-04-12 Nick Roberts <nickrob@snap.net.nz>
3040
3041 * keymaps.texi (Format of Keymaps): Remove spurious ")" from
3042 value of lisp-mode-map.
3043
30442007-04-11 Karl Berry <karl@gnu.org>
3045
3046 * anti.texi (Antinews):
3047 * display.texi (Overlay Properties, Defining Images):
3048 * processes.texi (Synchronous Processes, Sentinels):
3049 * syntax.texi (Syntax Table Internals):
3050 * searching.texi (Regexp Special):
3051 * nonascii.texi (Default Coding Systems):
3052 * text.texi (Special Properties):
3053 * minibuf.texi (Basic Completion): Wording to improve breaks in
3054 8.5x11 format.
3055 * elisp.texi (smallbook): New @set to more easily switch between
3056 smallbook and 8.5x11.
3057
30582007-04-11 Richard Stallman <rms@gnu.org>
3059
3060 * text.texi (Lazy Properties): Minor fix.
3061
30622007-04-08 Karl Berry <karl@gnu.org>
3063
3064 * symbols.texi (Plists and Alists): Period after "vs" in index entries.
3065 * macros.texi (Backquote): Downcase Backquote in index entries for
3066 consistency.
3067
30682007-04-08 Richard Stallman <rms@gnu.org>
3069
3070 * text.texi (Adaptive Fill): Just describe default,
3071 don't show it (since it contains non-ASCII chars).
3072
30732007-04-07 Karl Berry <karl@gnu.org>
3074
3075 * text.texi (Adaptive Fill) [@iftex]: Omit binary characters in
3076 adaptive-fill-regexp's value, since they are not in the standard
3077 TeX fonts.
3078
30792007-04-07 Guanpeng Xu <herberteuler@hotmail.com>
3080
3081 * display.texi (Defining Faces): Fix example.
3082
30832007-04-07 Karl Berry <karl@gnu.org>
3084
3085 * display.texi (Button Buffer Commands): Improve page break.
3086
30872007-04-07 Richard Stallman <rms@gnu.org>
3088
3089 * advice.texi (Activation of Advice): Remove redundant index entry.
3090
3091 * backups.texi: Improve index entries. Remove redundant ones.
3092
3093 * compile.texi (Byte Compilation): Improve index entry.
3094
3095 * hash.texi (Creating Hash): Improve index entry.
3096
3097 * symbols.texi (Definitions): Improve index entry.
3098
3099 * edebug.texi: Improve index entries. Remove redundant/useless ones.
3100
3101 * maps.texi (Standard Keymaps): Remove useless index entry.
3102
3103 * help.texi (Documentation Basics): Remove redundant index entries.
3104
3105 * customize.texi: Improve index entries.
3106 Remove redundant/useless ones.
3107
3108 * locals.texi (Standard Buffer-Local Variables): Clarify intro text.
3109
3110 * streams.texi (Output Variables): Improve index entry.
3111
3112 * abbrevs.texi (Abbrevs): Remove useless index entry.
3113
3114 * macros.texi (Expansion): Remove useless index entry.
3115
3116 * text.texi: Improve index entries. Remove redundant/useless ones.
3117 (Text Properties, Examining Properties)
3118 (Special Properties): Use "property category" instead of "category"
3119 to refer to the `category' property.
3120
3121 * positions.texi: Improve index entries. Remove useless one.
3122
3123 * lists.texi: Improve index entries. Remove redundant/useless ones.
3124
3125 * os.texi: Improve index entries.
3126 (Timers): Fix previous change.
3127
3128 * buffers.texi: Improve index entries.
3129 (Modification Time): Get rid of term "obsolete buffer".
3130
3131 * debugging.texi: Improve index entries.
3132 (Test Coverage): Add xref to other test coverage ftr.
3133
3134 * eval.texi: Improve index entry. Remove redundant ones.
3135
3136 * numbers.texi: Improve index entries. Remove redundant/useless ones.
3137
3138 * files.texi: Improve index entries. Remove redundant/useless ones.
3139
3140 * objects.texi: Improve index entries.
3141
3142 * processes.texi: Improve index entries.
3143
3144 * modes.texi: Improve index entry. Remove redundant one.
3145
3146 * nonascii.texi: Improve index entries.
3147
3148 * internals.texi: Improve index entries.
3149
3150 * syntax.texi: Improve index entries.
3151
3152 * keymaps.texi (Active Keymaps): Improve index entries.
3153
3154 * commands.texi: Improve index entries. Remove redundant/useless ones.
3155
3156 * frames.texi: Improve index entries. Remove redundant/useless ones.
3157
3158 * markers.texi: Improve index entries. Remove redundant ones.
3159
3160 * tips.texi: Improve index entries.
3161
3162 * loading.texi (Unloading): Improve index entry.
3163
3164 * variables.texi: Improve index entries. Remove redundant one.
3165
3166 * sequences.texi: Improve index entry.
3167
3168 * display.texi: Improve index entries. Remove redundant ones.
3169
3170 * windows.texi: Improve index entries.
3171
3172 * searching.texi: Improve index entries. Remove redundant one.
3173
3174 * strings.texi (Case Tables): Improve last change.
3175
31762007-04-04 Chong Yidong <cyd@stupidchicken.com>
3177
3178 * strings.texi (Case Tables): Document with-case-table and
3179 ascii-case-table.
3180
31812007-04-03 Karl Berry <karl@gnu.org>
3182
3183 * processes.texi (Network): Reword to improve page break.
3184
31852007-04-03 Eli Zaretskii <eliz@gnu.org>
3186
3187 * functions.texi (Inline Functions): Describe more disadvantages
3188 of defsubst, and make advice against it stronger.
3189
31902007-04-02 Karl Berry <karl@gnu.org>
3191
3192 * backups.texi (Backup Names): Avoid widow words.
3193 * modes.texi (Example Major Modes): Align last comment.
3194
31952007-04-01 Chong Yidong <cyd@stupidchicken.com>
3196
3197 * keymaps.texi (Remapping Commands): Document new arg to
3198 command-remapping.
3199
32002007-04-01 Karl Berry <karl@gnu.org>
3201
3202 * processes.texi (Low-Level Network): Typo.
3203 * loading.texi (Hooks for Loading): Avoid double "the".
3204 * keymaps.texi (Key Sequences): No double "and".
3205 (Changing Key Bindings): Shorten to improve line break.
3206
32072007-03-31 Glenn Morris <rgm@gnu.org>
3208
3209 * os.texi (Timers): Fix description of run-at-time TIME formats.
3210
32112007-03-31 Richard Stallman <rms@gnu.org>
3212
3213 * display.texi (Invisible Text): Correct buffer-invisibility-spec
3214 regarding ellipsis.
3215
32162007-03-31 Eli Zaretskii <eliz@gnu.org>
3217
3218 * intro.texi (nil and t):
3219 * symbols.texi (Plists and Alists):
3220 * variables.texi (Variable Aliases, Constant Variables):
3221 * functions.texi (Defining Functions):
3222 * advice.texi (Advising Primitives):
3223 * debugging.texi (Syntax Errors, Compilation Errors):
3224 * minibuf.texi (Minibuffer Windows):
3225 * commands.texi (Adjusting Point):
3226 * modes.texi (Syntactic Font Lock, Faces for Font Lock)
3227 (Auto Major Mode, Major Mode Conventions):
3228 * help.texi (Describing Characters):
3229 * files.texi (Create/Delete Dirs, Information about Files)
3230 (File Locks, Writing to Files, Reading from Files)
3231 (Saving Buffers):
3232 * windows.texi (Resizing Windows, Cyclic Window Ordering):
3233 * frames.texi (Finding All Frames):
3234 * positions.texi (Buffer End, Motion):
3235 * markers.texi (The Region):
3236 * text.texi (Deletion, Near Point):
3237 * display.texi (Displaying Messages, Truncation):
3238 * os.texi (Processor Run Time):
3239 * tips.texi (Key Binding Conventions, Programming Tips)
3240 (Warning Tips, Documentation Tips, Comment Tips):
3241 * internals.texi (Memory Usage): Improve indexing.
3242
3243 * variables.texi (Frame-Local Variables):
3244 * functions.texi (Argument List):
3245 * loading.texi (Library Search):
3246 * streams.texi (Output Variables):
3247 * keymaps.texi (Translation Keymaps, Searching Keymaps):
3248 * searching.texi (Replacing Match, Search and Replace):
3249 * processes.texi (Byte Packing, Decoding Output)
3250 (Accepting Output, Network Servers, Shell Arguments):
3251 * display.texi (Abstract Display, Image Cache, Scroll Bars):
3252 * windows.texi (Window Point, Window Start):
3253 * frames.texi (Management Parameters, Frame Parameters, Frame Titles):
3254 * commands.texi (Reading Input, Keyboard Events):
3255 * minibuf.texi (Reading File Names, Minibuffer Completion)
3256 (Recursive Mini):
3257 * positions.texi (List Motion):
3258 * hash.texi (Hash Tables, Creating Hash, Defining Hash):
3259 * numbers.texi (Arithmetic Operations, Math Functions)
3260 (Predicates on Numbers, Comparison of Numbers):
3261 (Numeric Conversions):
3262 * locals.texi (Standard Buffer-Local Variables):
3263 * maps.texi (Standard Keymaps):
3264 * os.texi (User Identification, System Environment, Recording Input)
3265 (X11 Keysyms):
3266 * nonascii.texi (Non-ASCII Characters, Splitting Characters):
3267 * backups.texi (Backups and Auto-Saving):
3268 * customize.texi (Customization, Group Definitions)
3269 (Variable Definitions):
3270 * compile.texi (Byte Compilation): Improve index entries.
3271
32722007-03-31 Karl Berry <karl@gnu.org>
3273
3274 * macros.texi (Defining Macros): Avoid widow syllable.
3275
32762007-03-31 Eli Zaretskii <eliz@gnu.org>
3277
3278 * elisp.texi (Top): Postscript -> PostScript.
3279
3280 * display.texi (Images, Postscript Images): Postscript -> PostScript.
3281
32822007-03-31 Markus Triska <markus.triska@gmx.at>
3283
3284 * internals.texi (Writing Emacs Primitives): Untabify `For'.
3285
32862007-03-30 Karl Berry <karl@gnu.org>
3287
3288 * lists.texi (List-related Predicates): Remove spurious @need.
3289 (Setcdr): Use @smallexample to improve page break.
3290 (Association Lists) <assoc>: Reword to improve page break.
3291
3292 * strings.texi (String Conversion): Insert blank line to improve
3293 page break.
3294
3295 * numbers.texi (Random Numbers): Use @minus{}.
3296 (Math Functions): Use @minus{}.
3297
3298 * intro.texi (Acknowledgements): Avoid line breaks before middle
3299 initials.
3300
33012007-03-24 Eli Zaretskii <eliz@gnu.org>
3302
3303 * errors.texi (Standard Errors): Add an index entry.
3304
33052007-03-19 Richard Stallman <rms@gnu.org>
3306
3307 * os.texi (Recording Input): recent-keys now gives 300 keys.
3308
33092007-03-12 Glenn Morris <rgm@gnu.org>
3310
3311 * os.texi: Replace "daylight savings" with "daylight saving"
3312 throughout.
3313
33142007-03-05 Richard Stallman <rms@gnu.org>
3315
3316 * variables.texi (File Local Variables):
3317 Update enable-local-variables values.
3318
33192007-03-04 Richard Stallman <rms@gnu.org>
3320
3321 * syntax.texi (Control Parsing): Minor clarification.
3322
3323 * strings.texi (Formatting Strings): Clarify width, precision, flags.
3324
3325 * sequences.texi (Sequence Functions): Move string-bytes away,
3326 add xref.
3327
3328 * nonascii.texi (Text Representations): Move string-bytes here.
3329
3330 * modes.texi (Major Mode Conventions): Fundamental mode is exception.
3331
3332 * minibuf.texi (Basic Completion): Minor clarification.
3333
3334 * markers.texi (The Mark): Clarify existence vs activation of mark.
3335 Other cleanup.
3336
3337 * display.texi (Finding Overlays): Write better example.
3338
3339 * compile.texi (Eval During Compile): Clarify putting macros
3340 in eval-when-compile.
3341
33422007-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br> (tiny change)
3343
3344 * loading.texi (How Programs Do Loading): Fix anchor position at
3345 load-read-function definition doc.
3346
33472007-02-21 Kim F. Storm <storm@cua.dk>
3348
3349 * strings.texi (Text Comparison): Mention that assoc-string
3350 converts symbols to strings before testing.
3351
33522007-02-17 Kim F. Storm <storm@cua.dk>
3353
3354 * processes.texi (Bindat Spec): Vector types can have optional
3355 element type.
3356 (Bindat Examples): Fix example. Add vector with element type.
3357
33582007-02-16 Andreas Schwab <schwab@suse.de>
3359
3360 * strings.texi (Formatting Strings): Document '+' flag.
3361
33622007-02-15 Juanma Barranquero <lekktu@gmail.com>
3363
3364 * strings.texi (Modifying Strings): Clarify that `clear-string'
3365 always converts the string to unibyte.
3366
33672007-02-14 Kim F. Storm <storm@cua.dk>
3368
3369 * display.texi (Glyphs): Add make-glyph-code, glyph-char, glyph-face.
3370 Rewrite glyph code description to refer to these functions.
3371 Remove details of encoding face number and char into integer code.
3372
33732007-02-03 Alan Mackenzie <acm@muc.de>
3374
3375 * loading.texi (Hooks for Loading): Make the description of
3376 `eval-after-load' more detailed, and amend the description of
3377 after-load-alist, in accordance with changes from 2006-05.
3378
33792007-02-03 Chong Yidong <cyd@stupidchicken.com>
3380
3381 * modes.texi (Defining Minor Modes): Document that a :require
3382 keyword or similar may be required to make saved customization
3383 variables work.
3384
33852007-02-03 Eli Zaretskii <eliz@gnu.org>
3386
3387 * elisp.texi (Top): Make the detailed menu headers compliant with
3388 Texinfo guidelines and with what texnfo-upd.el expects.
3389 Add comments to prevent people from inadvertently modifying the key
3390 parts needed by `texinfo-multiple-files-update'.
3391
33922007-02-02 Eli Zaretskii <eliz@gnu.org>
3393
3394 * elisp.texi (Top): Update the top-level menus.
3395
3396 * syntax.texi (Categories): Add index entries.
3397
33982007-02-01 Juanma Barranquero <lekktu@gmail.com>
3399
3400 * display.texi (Attribute Functions): Fix name and description of
3401 the UNDERLINE arg of `set-face-underline-p'.
3402
34032007-01-29 Eli Zaretskii <eliz@gnu.org>
3404
3405 * elisp.texi (Top): Add "Standard Errors", "Standard Buffer-Local
3406 Variables", and "Standard Keymaps" to the detailed menu.
3407
3408 * variables.texi (Future Local Variables): Add index entry.
3409
34102007-01-28 Richard Stallman <rms@gnu.org>
3411
3412 * tips.texi (Coding Conventions): Clarify the tip about macros
3413 that define a function or a variable.
3414
3415 * files.texi (File Attributes): UID and GID can be floats.
3416 (Magic File Names): Explain why deferring all operations to
3417 the standard handler does not work.
3418
34192007-01-23 Martin Rudalics <rudalics@gmx.at>
3420
3421 * backups.texi (Reverting): Use "buffer" instead of "file"
3422 when talking about major and minor modes.
3423
34242007-01-21 Richard Stallman <rms@gnu.org>
3425
3426 * help.texi (Documentation): Add xref to Documentation Tips.
3427
34282007-01-14 Juanma Barranquero <lekktu@gmail.com>
3429
3430 * tips.texi (Coding Conventions): Fix typos.
3431
34322007-01-05 Richard Stallman <rms@gnu.org>
3433
3434 * modes.texi (Defining Minor Modes): Fix previous change.
3435
34362007-01-03 Richard Stallman <rms@gnu.org>
3437
3438 * customize.texi (Variable Definitions, Customization Types):
3439 Don't use * in doc string for defcustom.
3440
34412007-01-02 Richard Stallman <rms@gnu.org>
3442
3443 * variables.texi (Variable Aliases): Clarify that aliases vars
3444 always have the same value.
3445
3446 * processes.texi (Bindat Spec): Fix Texinfo usage.
3447
3448 * modes.texi (Defining Minor Modes): Explain effect of command
3449 defined with define-global-minor-mode on new buffers.
3450
34512006-12-30 Kim F. Storm <storm@cua.dk>
3452
3453 * keymaps.texi (Tool Bar): Describe `grow-only' value of
3454 `auto-resize-tool-bars'.
3455
34562006-12-30 Richard Stallman <rms@gnu.org>
3457
3458 * keymaps.texi (Active Keymaps): Fix previous change.
3459
34602006-12-30 Nick Roberts <nickrob@snap.net.nz>
3461
3462 * keymaps.texi (Active Keymaps): Make xref to lookup-key.
3463
34642006-12-30 Kim F. Storm <storm@cua.dk>
3465
3466 * processes.texi (Bindat Spec): Clarify using field names in
3467 length specifications.
3468
34692006-12-29 Kim F. Storm <storm@cua.dk>
3470
3471 * processes.texi (Bindat Spec): Explain eval forms and lengths better.
3472 Add count and index variables for eval forms in repeat blocks.
3473
34742006-12-24 Richard Stallman <rms@gnu.org>
3475
3476 * customize.texi (Variable Definitions):
3477 Document new name custom-add-frequent-value.
3478
34792006-12-19 Kim F. Storm <storm@cua.dk>
3480
3481 * commands.texi (Misc Events): User signals now result in sigusr1
3482 and sigusr2 events which are handled through special-event-map.
3483 (Special Events): User signals and drag-n-drop are special.
3484
34852006-12-17 Richard Stallman <rms@gnu.org>
3486
3487 * loading.texi (Named Features): Explain subfeatures better.
3488
3489 * customize.texi: Use "option" only for user options.
3490 For the keyword values inside defcustom etc, say "keywords".
3491 For :options value's elements, say "elements".
3492 :group should not be omitted.
3493
3494 * syntax.texi (Parsing Expressions): Split up node.
3495 (Motion via Parsing, Position Parse, Parser State)
3496 (Low-Level Parsing, Control Parsing): New subnodes.
3497 (Parser State): Document syntax-ppss-toplevel-pos.
3498
3499 * positions.texi (List Motion): Punctuation fix.
3500
3501 * files.texi (File Name Completion): Document PREDICATE arg
3502 to file-name-completion.
3503
35042006-12-16 Eli Zaretskii <eliz@gnu.org>
3505
3506 * internals.texi (Building Emacs, Writing Emacs Primitives):
3507 Add index entries.
3508
35092006-12-11 Richard Stallman <rms@gnu.org>
3510
3511 * modes.texi (Font Lock Basics): Explain how nil for font-lock-defaults
3512 affects face menu. Explain how to make it non-nil without enabling
3513 any fontification.
3514
35152006-12-10 Chong Yidong <cyd@stupidchicken.com>
3516
3517 * modes.texi (Font Lock Basics): Document nil value of
3518 font-lock-defaults.
3519
35202006-12-10 Glenn Morris <rgm@gnu.org>
3521
3522 * abbrevs.texi (Defining Abbrevs): Mention `define-abbrev' 'force
3523 value for system-flag argument. Abbrev tables may not be empty
3524 when major modes are loaded.
3525
35262006-12-08 Juanma Barranquero <lekktu@gmail.com>
3527
3528 * makefile.w32-in (maintainer-clean): Partially revert last
3529 change; delete "elisp-?" and "elisp-??" instead of "elisp-*"
3530 to protect elisp-covers.texi.
3531
35322006-12-07 Juanma Barranquero <lekktu@gmail.com>
3533
3534 * makefile.w32-in (maintainer-clean): Depend on `distclean'.
3535 Don't remove elisp* info files; they are already deleted by the
3536 `clean' and `distclean' targets, and they are in the $(infodir)
3537 directory, not the current one.
3538
35392006-12-04 Kim F. Storm <storm@cua.dk>
3540
3541 * commands.texi (Misc Events): Update signal events.
3542 (Event Examples): Add signal example.
3543
35442006-11-29 Richard Stallman <rms@gnu.org>
3545
3546 * frames.texi (Visibility of Frames): Explain visible windows
3547 can be covered by others. Add xref for raise-frame.
3548
35492006-11-28 Richard Stallman <rms@gnu.org>
3550
3551 * searching.texi (Regexp Special): Update when ^ is special.
3552
35532006-11-27 Eli Zaretskii <eliz@gnu.org>
3554
3555 * customize.texi (Customization, Common Keywords)
3556 (Group Definitions, Variable Definitions, Composite Types)
3557 (Type Keywords, Customization Types): Add index entries for
3558 various customization keywords.
3559
35602006-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
3561
3562 * modes.texi (Multiline Font Lock): Rephrase some parts for clarity.
3563
35642006-11-10 Jan Djärv <jan.h.d@swipnet.se>
3565
3566 * frames.texi (Window System Selections): Remove clipboard from
3567 description of selection-coding-system.
3568
35692006-11-06 Richard Stallman <rms@gnu.org>
3570
3571 * lists.texi (List Variables): Document COMPARE-FN.
3572
3573 * keymaps.texi: Avoid use of "binding" to mean a relation;
3574 use it only to refer to the meaning associated with a key.
3575 (Keymaps): Change menu node description.
3576
3577 * elisp.texi (Top): Change menu node description.
3578
3579 * display.texi (Managing Overlays): Document overlay-recenter.
3580
35812006-10-29 Chong Yidong <cyd@stupidchicken.com>
3582
3583 * Makefile.in: Use relative paths to avoid advertising filesystem
3584 contents during compilation.
3585
35862006-10-23 Kim F. Storm <storm@cua.dk>
3587
3588 * commands.texi (Event Input Misc): Update unread-command-events.
3589
35902006-10-23 Nick Roberts <nickrob@snap.net.nz>
3591
3592 * lists.texi (Sets And Lists): Fix typos.
3593
35942006-10-18 Juanma Barranquero <lekktu@gmail.com>
3595
3596 * control.texi (Processing of Errors): Use @var for an argument,
3597 not @code.
3598
35992006-10-16 Richard Stallman <rms@gnu.org>
3600
3601 * edebug.texi (Edebug Recursive Edit): Minor cleanup.
3602
3603 * keymaps.texi (Format of Keymaps): Show all the keymap element
3604 patterns that result from menu items.
3605 (Key Lookup): Minor cleanups.
3606
3607 * modes.texi (Precalculated Fontification): Don't say that
3608 not setting font-lock-defaults avoids loading font-lock.
3609
3610 * help.texi (Documentation): Move xref to Emacs Manual here.
3611 (Documentation Basics): From here.
3612 Also doc emacs-lisp-docstring-fill-column.
3613
3614 * elisp.texi: Update version and ISBN.
3615
3616 * commands.texi (Interactive Call): Clarify KEYS arg to
3617 call-interactively is a vector.
3618 (Command Loop Info): Delete anchor in this-command-keys.
3619 Add anchor in this-command-keys-vector.
3620 (Recursive Editing): Document how recursive-edit
3621 handles the current buffer.
3622
36232006-10-13 Chong Yidong <cyd@stupidchicken.com>
3624
3625 * frames.texi (Frame Titles): %c and %l are ignored in
3626 frame-title-format.
3627
36282006-10-11 Richard Stallman <rms@gnu.org>
3629
3630 * keymaps.texi (Key Sequences): Clarify use of kbd.
3631
36322006-10-10 Kim F. Storm <storm@cua.dk>
3633
3634 * lists.texi (Sets And Lists): Add memql.
3635
36362006-10-03 Richard Stallman <rms@gnu.org>
3637
3638 * searching.texi (Char Classes): Document :multibyte: and :unibyte:.
3639 Clarify :ascii: and :nonascii:.
3640
36412006-09-29 Juri Linkov <juri@jurta.org>
3642
3643 * modes.texi (%-Constructs): Reorder coding systems in the
3644 documentation of %z to the real order displayed in the modeline.
3645
36462006-09-25 Richard Stallman <rms@gnu.org>
3647
3648 * os.texi (Timers): Describe timer-max-repeats.
3649
36502006-09-25 Chong Yidong <cyd@stupidchicken.com>
3651
3652 * os.texi (Timers): Mention with-local-quit.
3653
36542006-09-24 Richard Stallman <rms@gnu.org>
3655
3656 * searching.texi (Searching and Matching): Mention property search.
3657
3658 * commands.texi (Command Loop Info): Explain how read-event affects
3659 this-command-keys.
3660
36612006-09-20 Richard Stallman <rms@gnu.org>
3662
3663 * os.texi (Timers): Clarify about REPEAT when timer is delayed.
3664
3665 * windows.texi (Window Start): Minor cleanups.
3666
36672006-09-20 Kim F. Storm <storm@cua.dk>
3668
3669 * windows.texi (Window Start): pos-visible-in-window-p allows
3670 specifying t for position to mean "end of window".
3671 Add window-line-height.
3672
3673 * anti.texi (Antinews): Mention window-line-height.
3674
36752006-09-19 David Kastrup <dak@gnu.org>
3676
3677 * keymaps.texi (Searching Keymaps): Small clarification.
3678
36792006-09-18 Richard Stallman <rms@gnu.org>
3680
3681 * keymaps.texi (Creating Keymaps): Explain that keymap prompt strings
3682 cause keyboard menus.
3683 (Menu Keymaps): Likewise.
3684 (Defining Menus, Keyboard Menus): Clarify.
3685
3686 * text.texi (Fields): Clarify explanation of constrain-to-field.
3687
36882006-09-16 Eli Zaretskii <eliz@gnu.org>
3689
3690 * variables.texi (Tips for Defining): Fix a typo.
3691
36922006-09-15 Richard Stallman <rms@gnu.org>
3693
3694 * keymaps.texi (Remapping Commands, Searching Keymaps)
3695 (Active Keymaps): Clean up previous change.
3696
36972006-09-15 Jay Belanger <belanger@truman.edu>
3698
3699 * gpl.texi: Replace "Library Public License" by "Lesser Public
3700 License" throughout.
3701
37022006-09-15 David Kastrup <dak@gnu.org>
3703
3704 * keymaps.texi (Active Keymaps): Adapt description to use
3705 `get-char-property' instead `get-text-property'. Explain how
3706 mouse events change this. Explain the new optional argument of
3707 `key-binding' and its mouse-dependent lookup.
3708 (Searching Keymaps): Adapt description similarly.
3709 (Remapping Commands): Explain the new optional argument of
3710 `command-remapping'.
3711
37122006-09-14 Richard Stallman <rms@gnu.org>
3713
3714 * keymaps.texi (Searching Keymaps): Clarification.
3715 (Active Keymaps): Refer to Searching Keymaps instead of duplication.
3716
37172006-09-13 Richard Stallman <rms@gnu.org>
3718
3719 * objects.texi (Character Type): Node split.
3720 Add xref to Describing Characters.
3721 (Basic Char Syntax, General Escape Syntax)
3722 (Ctl-Char Syntax, Meta-Char Syntax): New subnodes.
3723
37242006-09-11 Richard Stallman <rms@gnu.org>
3725
3726 * display.texi (Display Table Format): Wording clarification.
3727 (Glyphs): Clarifications.
3728
37292006-09-10 Chong Yidong <cyd@stupidchicken.com>
3730
3731 * keymaps.texi (Active Keymaps): Mention that key-binding checks
3732 local maps.
3733
37342006-09-10 Kim F. Storm <storm@cua.dk>
3735
3736 * display.texi (Forcing Redisplay): Document return value of
3737 function redisplay.
3738
37392006-09-09 Richard Stallman <rms@gnu.org>
3740
3741 * windows.texi (Window Hooks): Explain limits of
3742 window-scroll-functions.
3743
3744 * display.texi (Fringe Indicators): Update for last change in
3745 indicate-buffer-boundaries.
3746
37472006-09-08 Richard Stallman <rms@gnu.org>
3748
3749 * processes.texi (Bindat Spec): Suggest names ending in -bindat-spec.
3750
37512006-09-06 Kim F. Storm <storm@cua.dk>
3752
3753 * frames.texi (Display Feature Testing): display-mm-dimensions-alist.
3754
3755 * windows.texi (Window Start): Update pos-visible-in-window-p.
3756
37572006-09-04 Richard Stallman <rms@gnu.org>
3758
3759 * processes.texi (Accepting Output): Explain SECONDS=0 for
3760 accept-process-output.
3761
3762 * os.texi (Idle Timers): Explain why timer functions should not
3763 loop until (input-pending-p).
3764
37652006-09-02 Eli Zaretskii <eliz@gnu.org>
3766
3767 * makefile.w32-in (usermanualdir): New variable.
3768 (elisp.dvi): Use it.
3769
37702006-09-01 Eli Zaretskii <eliz@gnu.org>
3771
3772 * buffers.texi (Buffer Modification): Fix last change.
3773
37742006-09-01 Chong Yidong <cyd@stupidchicken.com>
3775
3776 * buffers.texi (Buffer Modification):
3777 Document buffer-chars-modified-tick.
3778
37792006-08-31 Richard Stallman <rms@gnu.org>
3780
3781 * modes.texi (Syntactic Font Lock): Mention specific faces once again.
3782
37832006-08-31 Richard Bielawski <RBielawski@moneygram.com> (tiny change)
3784
3785 * modes.texi (Syntactic Font Lock):
3786 Mention font-lock-syntactic-face-function
3787 instead of specific faces.
3788
37892006-08-29 Chong Yidong <cyd@stupidchicken.com>
3790
3791 * display.texi (Images): Add xrref to display-images-p.
3792
37932006-08-28 Kenichi Handa <handa@m17n.org>
3794
3795 * nonascii.texi (Lisp and Coding Systems): Fix description of
3796 detect-coding-region.
3797
37982006-08-27 Michael Olson <mwolson@gnu.org>
3799
3800 * processes.texi (Transaction Queues): Remove stray quote
3801 character.
3802
38032006-08-25 Richard Stallman <rms@gnu.org>
3804
3805 * os.texi (Idle Timers): run-with-idle-timer allows Lisp time value.
3806 Add xref.
3807
38082006-08-24 Chong Yidong <cyd@stupidchicken.com>
3809
3810 * os.texi (Timers): Avoid waiting inside timers.
3811
38122006-08-21 Lute Kamstra <lute@gnu.org>
3813
3814 * Makefile.in: Use ../man/texinfo.tex to build elisp.dvi.
3815
38162006-08-20 Richard Stallman <rms@gnu.org>
3817
3818 * os.texi (Idle Timers): New node, split out from Timers.
3819 Document current-idle-time.
3820 * commands.texi (Reading One Event): Update xref.
3821 * elisp.texi (Top): Update subnode menu.
3822
38232006-08-16 Richard Stallman <rms@gnu.org>
3824
3825 * keymaps.texi (Extended Menu Items): Show format of cached
3826 bindings in extended menu items.
3827
3828 * customize.texi (Variable Definitions): Explain when the
3829 standard value expression is evaluated.
3830
38312006-08-15 Chong Yidong <cyd@stupidchicken.com>
3832
3833 * commands.texi (Reading One Event): Explain idleness in
3834 `read-event'.
3835
38362006-08-12 Chong Yidong <cyd@stupidchicken.com>
3837
3838 * text.texi (Near Point): Say "cursor" not "terminal cursor".
3839 (Commands for Insertion): Remove split-line since it's not
3840 relevant for Lisp programming.
3841 (Yank Commands): Rewrite introduction.
3842 (Undo): Clarify.
3843 (Maintaining Undo): Clarify. Document undo-ask-before-discard.
3844 (Filling): Remove redundant comment. Clarify return value of
3845 current-justification.
3846 (Margins): Minor clarifications.
3847 (Adaptive Fill): Update default value of adaptive-fill-regexp.
3848 (Sorting): Update definition of sort-lines.
3849 (Columns): Clarify behavior of sort-columns.
3850 (Indent Tabs): Link to Tab Stops in Emacs manual.
3851 (Special Properties): Clarify.
3852 (Clickable Text): Mention Buttons package.
3853
38542006-08-12 Kevin Ryde <user42@zip.com.au>
3855
3856 * os.texi (Time Parsing): Add %z to description of
3857 format-time-string, as per docstring. Add cross reference to
3858 glibc manual for strftime.
3859
38602006-08-08 Richard Stallman <rms@gnu.org>
3861
3862 * modes.texi: Clean up wording in previous change.
3863
38642006-08-07 Chong Yidong <cyd@stupidchicken.com>
3865
3866 * modes.texi (Hooks): Clarify.
3867 (Major Mode Basics): Mention define-derived-mode explicitly.
3868 (Major Mode Conventions): Rebinding RET is OK for some modes.
3869 Mention change-major-mode-hook and after-change-major-mode-hook.
3870 (Example Major Modes): Move to end of Modes section.
3871 (Mode Line Basics): Clarify.
3872 (Mode Line Data): Mention help-echo and local-map in strings.
3873 Explain reason for treatment of non-risky variables.
3874 (Properties in Mode): Clarify.
3875 (Faces for Font Lock): Add font-lock-negation-char-face.
3876
38772006-08-04 Eli Zaretskii <eliz@gnu.org>
3878
3879 * strings.texi (Formatting Strings): Warn against arbitrary
3880 strings as first arg to `format'.
3881
38822006-07-31 Thien-Thi Nguyen <ttn@gnu.org>
3883
3884 * text.texi (Clickable Text): Mention `help-echo' text property.
3885 Update intro, examples and associated explanations.
3886
38872006-07-31 Richard Stallman <rms@gnu.org>
3888
3889 * commands.texi: Update xrefs.
3890 (Event Mod): New node, cut out from old Translating Input.
3891
3892 * maps.texi: Update xrefs.
3893
3894 * keymaps.texi (Translation Keymaps): New node.
3895 Update xrefs from Translating Input to Translation Keymaps.
3896
3897 * elisp.texi (Top): Update subnode menu.
3898
3899 * display.texi (Face Functions): Fix explanations of FRAME=t or nil.
3900
3901 * os.texi (System Interface): Fix menu descriptions of some nodes.
3902 (Translating Input): Node deleted.
3903
39042006-07-31 Nick Roberts <nickrob@snap.net.nz>
3905
3906 * modes.texi (Minor Mode Conventions): Update xref for add-to-list.
3907
3908 * lists.texi (Sets And Lists): Likewise.
3909
39102006-07-30 Thien-Thi Nguyen <ttn@gnu.org>
3911
3912 * text.texi (Fields): Mention POS
3913 requirement when narrowing is in effect.
3914
39152006-07-28 Richard Stallman <rms@gnu.org>
3916
3917 * display.texi (Face Attributes): Simplify wording.
3918 (Attribute Functions): Clarify meaning of new-frame default
3919 attribute settings.
3920
3921 * customize.texi (Common Keywords): Document how to use
3922 :package-version in a package not in Emacs.
3923
39242006-07-28 Kim F. Storm <storm@cua.dk>
3925
3926 * commands.texi (Reading One Event): Fix last change.
3927
39282006-07-26 Chong Yidong <cyd@stupidchicken.com>
3929
3930 * commands.texi (Reading One Event): Document SECONDS argument for
3931 read-event, read-char, and read-char-exclusive.
3932
39332006-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
3934
3935 * modes.texi (Multiline Font Lock): Can't use jit-lock-defer-multiline
3936 to ensure correct identification.
3937
39382006-07-24 Richard Stallman <rms@gnu.org>
3939
3940 * text.texi (Clickable Text): Clarify.
3941
3942 * sequences.texi (Vector Functions): Delete duplicate xref.
3943
3944 * objects.texi (Function Type): Clarify.
3945
3946 * modes.texi (Keymaps and Minor Modes): List punct chars for minor
3947 modes.
3948
3949 * lists.texi (List Variables): New node.
3950 Material moved from other nodes.
3951
3952 * variables.texi (Setting Variables): add-to-list and
3953 add-to-ordered-list moved to List Variables node.
3954
39552006-07-23 Thien-Thi Nguyen <ttn@gnu.org>
3956
3957 * text.texi (Links and Mouse-1):
3958 For mouse-on-link-p, expand on arg POS.
3959
39602006-07-21 Kim F. Storm <storm@cua.dk>
3961
3962 * display.texi (Forcing Redisplay): Don't mention systems which
3963 don't support sub-second timers for redisplay-preemption-period.
3964
3965 * os.texi (Terminal Output): Clarify text vs graphical terminal.
3966
39672006-07-21 Eli Zaretskii <eliz@gnu.org>
3968
3969 * frames.texi (Input Focus): Document that focus-follows-mouse has
3970 no effect on MS-Windows.
3971
39722006-07-18 Richard Stallman <rms@gnu.org>
3973
3974 * display.texi (Forcing Redisplay): Cleanups in previous change.
3975
3976 * processes.texi (Low-Level Network): Make menu more convenient.
3977
39782006-07-18 Kim F. Storm <storm@cua.dk>
3979
3980 * display.texi (Forcing Redisplay): redisplay-preemption-period
3981 only used on window systems. Add xref to Terminal Output.
3982
3983 * os.texi (Terminal Output): baud-rate only controls preemption on
3984 non-window systems. Add xref to Forcing Redisplay.
3985
3986 * processes.texi (Low-Level Network): Rename node "Make Network"
3987 to "Network Processes".
3988
39892006-07-18 Karl Berry <karl@gnu.org>
3990
3991 * variables.texi, functions.texi, customize.texi, loading.texi:
3992 * edebug.texi, minibuf.texi: Fix page breaks through chapter 20.
3993
39942006-07-17 Chong Yidong <cyd@stupidchicken.com>
3995
3996 * commands.texi (Waiting): Document batch-mode sit-for behavior.
3997
39982006-07-17 Richard Stallman <rms@gnu.org>
3999
4000 * eval.texi, elisp.texi, text.texi: Use real doublequote inside menus.
4001 Put period and comma inside quotes.
4002
4003 * loading.texi, markers.texi: Use real doublequote inside menus.
4004
4005 * windows.texi: Put point and comma inside quotes.
4006 (Textual Scrolling): Use @samp for error message.
4007
4008 * variables.texi, tips.texi, syntax.texi, symbols.texi:
4009 * strings.texi, streams.texi, processes.texi, os.texi:
4010 * objects.texi, numbers.texi, modes.texi, minibuf.texi:
4011 * lists.texi, keymaps.texi, intro.texi, hash.texi, internals.texi:
4012 * gpl.texi, functions.texi, files.texi, frames.texi, doclicense.texi:
4013 * display.texi, control.texi, commands.texi, buffers.texi, anti.texi:
4014 Put point and comma inside quotes.
4015
4016 * control.texi (Processing of Errors): Add command-error-function.
4017
4018 * variables.texi (File Local Variables): Clarify that
4019 file local variables make buffer-local bindings.
4020
4021 * modes.texi (Syntactic Font Lock): Give default for
4022 font-lock-syntax-table.
4023
40242006-07-17 Nick Roberts <nickrob@snap.net.nz>
4025
4026 * text.texi (Special Properties): Clean up previous change.
4027
40282006-07-16 Karl Berry <karl@gnu.org>
4029
4030 * objects.texi, numbers.texi, strings.texi, lists.texi, hash.texi:
4031 * control.texi: Fix bad page breaks through chapter 10 (control).
4032
4033 * anti.texi (Antinews): Reorder face-attribute fns to avoid
4034 underfull hbox.
4035
40362006-07-15 Nick Roberts <nickrob@snap.net.nz>
4037
4038 * text.texi (Special Properties): Describe fontified text property
4039 in relation to a character (not text).
4040
40412006-07-15 Kim F. Storm <storm@cua.dk>
4042
4043 * maps.texi (Standard Keymaps): Add xref for minibuffer maps.
4044 Add apropos-mode-map, custom-mode-map, esc-map, global-map,
4045 grep-mode-map, help-map, help-mode-map, kmacro-map, and tool-bar-map.
4046
4047 * anti.texi (Antinews): Mention redisplay function.
4048 The kbd macro existed, but was not documented, before 22.x.
4049 Function pos-visible-in-window-p is not new in 22.x, just enhanced.
4050
40512006-07-14 Nick Roberts <nickrob@snap.net.nz>
4052
4053 * display.texi (Displaying Messages): Add anchor.
4054
4055 * frames.texi (Dialog Boxes): Use it.
4056
40572006-07-12 Richard Stallman <rms@gnu.org>
4058
4059 * objects.texi (Frame Type): Explain nature of frames better.
4060
4061 * frames.texi (Frames): Explain nature of frames better.
4062
40632006-07-12 Ken Manheimer <ken.manheimer@gmail.com>
4064
4065 * tips.texi (Coding Conventions): Explain why use cl at compile time.
4066
40672006-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4068
4069 * frames.texi (Window System Selections): Mention scrap support for Mac.
4070 Default value of x-select-enable-clipboard is t on Mac.
4071
4072 * os.texi (Getting Out): Suspending is not allowed on Mac, either.
4073
40742006-07-11 Kim F. Storm <storm@cua.dk>
4075
4076 * display.texi (Forcing Redisplay): Add `redisplay' function.
4077 Don't mention (sit-for -1) -- use (redisplay t) instead.
4078
4079 * commands.texi (Waiting): (sit-for -1) is no longer special.
4080 (sit-for 0) is equivalent to (redisplay).
4081 Iconifying/deiconifying no longer makes sit-for return.
4082
40832006-07-10 Nick Roberts <nickrob@snap.net.nz>
4084
4085 * display.texi (Buttons): Fix typo.
4086
4087 * index.texi, elisp.texi (New Symbols): Comment node out.
4088
40892006-07-09 Richard Stallman <rms@gnu.org>
4090
4091 * display.texi (Truncation): Clean up previous change.
4092
40932006-07-08 Richard Stallman <rms@gnu.org>
4094
4095 * commands.texi (Interactive Call): Use 3 as prefix in example
4096 for execute-extended-command.
4097
4098 * display.texi (Attribute Functions): Move paragraph about
4099 compatibility with Emacs < 21.
4100
41012006-07-09 Kim F. Storm <storm@cua.dk>
4102
4103 * display.texi (Refresh Screen): Clarify force-window-update.
4104 (Truncation): "Normally" indicated by fringe arrows.
4105
41062006-07-08 Eli Zaretskii <eliz@gnu.org>
4107
4108 * windows.texi (Textual Scrolling, Resizing Windows):
4109 * variables.texi (Constant Variables):
4110 * text.texi (Buffer Contents, Deletion, Changing Properties)
4111 (Property Search, Special Properties, Sticky Properties)
4112 (Links and Mouse-1, Fields, Change Hooks):
4113 * syntax.texi (Syntax Table Functions, Parsing Expressions)
4114 (Categories):
4115 * symbols.texi (Other Plists):
4116 * streams.texi (Output Variables):
4117 * processes.texi (Input to Processes, Query Before Exit):
4118 * positions.texi (Word Motion, Text Lines, List Motion):
4119 * os.texi (Init File, System Environment, Sound Output)
4120 (Session Management):
4121 * nonascii.texi (Text Representations, Character Sets)
4122 (Chars and Bytes, Locales):
4123 * modes.texi (Defining Minor Modes, Header Lines):
4124 * minibuf.texi (Minibuffer Contents):
4125 * markers.texi (Information from Markers):
4126 * lists.texi (List Elements, Building Lists, Association Lists):
4127 * keymaps.texi (Tool Bar):
4128 * hash.texi (Creating Hash, Hash Access, Defining Hash, Other Hash):
4129 * functions.texi (What Is a Function, Mapping Functions):
4130 * frames.texi (Creating Frames, Parameter Access, Pointer Shape)
4131 (Color Names, Text Terminal Colors, Display Feature Testing):
4132 * files.texi (Visiting Functions, File Name Components)
4133 (Unique File Names, Contents of Directories):
4134 * display.texi (Forcing Redisplay, Displaying Messages)
4135 (Temporary Displays, Font Selection, Auto Faces)
4136 (Font Lookup, Fringe Indicators, Display Margins)
4137 (Image Descriptors, Showing Images, Image Cache, Button Types)
4138 (Making Buttons, Manipulating Buttons, Button Buffer Commands)
4139 (Display Table Format, Glyphs):
4140 * control.texi (Iteration):
4141 * commands.texi (Command Loop Info, Adjusting Point):
4142 * backups.texi (Making Backups, Auto-Saving):
4143 Remove @tindex entries.
4144
41452006-07-07 Kim F. Storm <storm@cua.dk>
4146
4147 * display.texi (Fringe Cursors): Fix typo.
4148 (Customizing Bitmaps): Fix define-fringe-bitmap entry.
4149 (Overlay Arrow): Default is overlay-arrow fringe indicator.
4150
41512006-07-05 Richard Stallman <rms@gnu.org>
4152
4153 * text.texi (Buffer Contents): Add example of text props
4154 in result of buffer-substring.
4155 (Text Properties): Explain better about use of specific property names.
4156 (Property Search): Some cleanups; reorder some functions.
4157
4158 * keymaps.texi (Changing Key Bindings): Cleanup.
4159 Add xref to Key Binding Conventions.
4160
4161 * display.texi (Attribute Functions): Add examples for
4162 face-attribute-relative-p.
4163
4164 * tips.texi (Coding Conventions): Cleanup last change.
4165
41662006-07-05 Karl Berry <karl@gnu.org>
4167
4168 * elisp.texi: Use @fonttextsize 10pt, a la emacs.texi.
4169 Remove @setchapternewpage odd.
4170 Result is 1013 pages, down from 1100.
4171
4172 * anti.texi, customize.texi, display.texi, internals.texi:
4173 * minibuf.texi, modes.texi, tips.texi:
4174 Fix overfull/underfull boxes.
4175
41762006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
4177
4178 * edebug.texi (Instrumenting):
4179 Add Edebug-specific findex for eval-buffer.
4180 * loading.texi (Loading):
4181 Replace eval-current-buffer with eval-buffer.
4182
41832006-06-30 Nick Roberts <nickrob@snap.net.nz>
4184
4185 * locals.texi (Standard Buffer-Local Variables): Update the list
4186 of variables.
4187
41882006-06-26 Nick Roberts <nickrob@snap.net.nz>
4189
4190 * files.texi (File Name Completion): Point user to the node
4191 "Reading File Names".
4192
41932006-06-24 Eli Zaretskii <eliz@gnu.org>
4194
4195 * files.texi (Contents of Directories): Document case-insensitive
4196 behavior on respective filesystems.
4197
4198 * objects.texi (Character Type): Document that Emacs signals an
4199 error for unsupported Unicode characters specified as \uNNNN.
4200
42012006-06-19 Richard Stallman <rms@gnu.org>
4202
4203 * processes.texi (Bindat Spec): Clarify previous change.
4204
42052006-06-16 Richard Stallman <rms@gnu.org>
4206
4207 * tips.texi (Coding Conventions): Better explain conventions
4208 for definition constructs.
4209
4210 * text.texi (Special Properties): String value of `read-only'
4211 serves as the error message.
4212
4213 * objects.texi (Character Type): Clarify prev. change.
4214 (Non-ASCII in Strings): Mention \u and \U.
4215
4216 * commands.texi (Using Interactive): Explain problem of
4217 markers, etc., in command-history.
4218
42192006-06-14 Kim F. Storm <storm@cua.dk>
4220
4221 * commands.texi (Waiting): Negative arg to sit-for forces
4222 redisplay even if input is pending.
4223
4224 * display.texi (Forcing Redisplay): Use (sit-for -1) to force a
4225 redisplay. Remove incorrect example of binding redisplay-dont-pause
4226 around (sit-for 0).
4227
42282006-06-13 Richard Stallman <rms@gnu.org>
4229
4230 * display.texi (Forcing Redisplay): Clarify previous change.
4231
42322006-06-13 Romain Francoise <romain@orebokech.com>
4233
4234 * display.texi (Forcing Redisplay): Fix typo.
4235
42362006-06-13 Kim F. Storm <storm@cua.dk>
4237
4238 * display.texi (Forcing Redisplay): Add redisplay-preemption-period.
4239
42402006-06-10 Luc Teirlinck <teirllm@auburn.edu>
4241
4242 * tips.texi (Coding Conventions): Add `@end itemize'.
4243
42442006-06-10 Richard Stallman <rms@gnu.org>
4245
4246 * tips.texi (Coding Conventions): Explain use of coding systems
4247 to ensure one decoding for strings.
4248
42492006-06-09 Aidan Kehoe <kehoea@parhasard.net>
4250
4251 * objects.texi (Character Type): Describe the \uABCD and \U00ABCDEF
4252 syntax.
4253
42542006-06-07 Eli Zaretskii <eliz@gnu.org>
4255
4256 * display.texi (Font Selection): Remove description of
4257 clear-face-cache.
4258
4259 * compile.texi (Eval During Compile): Fix a typo. Add index
4260 entries for possible uses of eval-when-compile.
4261
42622006-06-04 Thien-Thi Nguyen <ttn@gnu.org>
4263
4264 * display.texi (Abstract Display): Fix typo.
4265
42662006-06-03 Eli Zaretskii <eliz@gnu.org>
4267
4268 * minibuf.texi (Minibuffer History) <history-add-new-input>:
4269 Reword variable's description.
4270
42712006-06-01 Richard Stallman <rms@gnu.org>
4272
4273 * windows.texi (Splitting Windows): Clarify splitting nonselected
4274 window.
4275
42762006-05-31 Juri Linkov <juri@jurta.org>
4277
4278 * minibuf.texi (Minibuffer History): Add history-add-new-input.
4279
42802006-05-30 Richard Stallman <rms@gnu.org>
4281
4282 * display.texi (Line Height): Fix errors in description of
4283 default line height and line-height property.
4284
4285 * nonascii.texi (Default Coding Systems): Further clarification.
4286
42872006-05-29 Luc Teirlinck <teirllm@auburn.edu>
4288
4289 * internals.texi (Pure Storage): Mention that an overflow in pure
4290 space causes a memory leak.
4291 (Garbage Collection): If there was an overflow in pure space,
4292 `garbage-collect' returns nil.
4293
42942006-05-30 Eli Zaretskii <eliz@gnu.org>
4295
4296 * nonascii.texi (Default Coding Systems): Fix it some more.
4297
42982006-05-29 Eli Zaretskii <eliz@gnu.org>
4299
4300 * nonascii.texi (Default Coding Systems): Fix last change.
4301
43022006-05-29 Kenichi Handa <handa@m17n.org>
4303
4304 * nonascii.texi (find-operation-coding-system): Describe the new
4305 argument format (FILENAME . BUFFER).
4306
43072006-05-28 Richard Stallman <rms@gnu.org>
4308
4309 * tips.texi (Coding Conventions): Better explain reasons not to
4310 advise other packages or use `eval-after-load'.
4311
43122006-05-29 Kim F. Storm <storm@cua.dk>
4313
4314 * processes.texi (Bindat Functions): Rename `pos' and `raw-data' to
4315 `bindat-idx' and `bindat-raw' for clarity.
4316
43172006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
4318
4319 * processes.texi (Bindat Spec): Expand on `repeat' handler.
4320
4321 * display.texi (Display): Add "Abstract Display" to menu.
4322 (Abstract Display, Abstract Display Functions)
4323 (Abstract Display Example): New nodes.
4324 * elisp.texi (Top): Add "Abstract Display" to menu.
4325
43262006-05-27 Chong Yidong <cyd@stupidchicken.com>
4327
4328 * keymaps.texi (Key Sequences): Link to input events definition.
4329 (Format of Keymaps): Delete material duplicated in Keymap Basics.
4330
4331 * files.texi (Changing Files): Document updated argument list for
4332 copy-file.
4333
43342006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
4335
4336 * processes.texi (Bindat Functions): Explain term "total length".
4337 Use it in bindat-length and bindat-pack descriptions.
4338
43392006-05-26 Eli Zaretskii <eliz@gnu.org>
4340
4341 * tips.texi (Coding Conventions): Advise against using
4342 eval-after-load in packages. Add an index entry.
4343
43442006-05-25 Juri Linkov <juri@jurta.org>
4345
4346 * minibuf.texi (Text from Minibuffer): Undocument keep-all.
4347
4348 * modes.texi (%-Constructs): Add %e, %z, %Z.
4349
43502006-05-25 Richard Stallman <rms@gnu.org>
4351
4352 * elisp.texi (Top): Update subnode menu.
4353
4354 * keymaps.texi (Keymap Basics): New node, split out of Key Sequences.
4355 (Keymaps): Update menu.
4356
43572006-05-25 Chong Yidong <cyd@stupidchicken.com>
4358
4359 * keymaps.texi (Key Sequences): Some clarifications.
4360
43612006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
4362
4363 * processes.texi (Bindat Functions): Say "unibyte string"
4364 explicitly for bindat-unpack and bindat-pack descriptions.
4365 (Bindat Examples): Don't call `string-make-unibyte' in example.
4366
43672006-05-25 Chong Yidong <cyd@stupidchicken.com>
4368
4369 * keymaps.texi (Key Sequences): Rename from Keymap Terminology.
4370 Explain string and vector representations of key sequences.
4371
4372 * keymaps.texi (Changing Key Bindings):
4373 * commands.texi (Interactive Codes):
4374 * help.texi (Describing Characters): Refer to it.
4375
43762006-05-23 Luc Teirlinck <teirllm@auburn.edu>
4377
4378 * frames.texi (Pointer Shape): @end table -> @end defvar.
4379
43802006-05-22 Richard Stallman <rms@gnu.org>
4381
4382 * elisp.texi (Top): Update subnode menus.
4383
4384 * frames.texi (Pointer Shape): Node renamed from Pointer Shapes.
4385 Contents rewritten; material from old Pointer Shape node moved here.
4386
4387 * display.texi (Pointer Shape): Node deleted.
4388 (Image Descriptors): Minor cleanup.
4389
43902006-05-21 Richard Stallman <rms@gnu.org>
4391
4392 * syntax.texi (Parsing Expressions): Update info on which STATE
4393 elements are ignored.
4394
43952006-05-19 Luc Teirlinck <teirllm@auburn.edu>
4396
4397 * hooks.texi (Standard Hooks): Correct typo.
4398
4399 * gpl.texi (GPL): ifinfo -> ifnottex.
4400
44012006-05-19 Michael Ernst <mernst@alum.mit.edu> (tiny change)
4402
4403 * searching.texi (Simple Match Data): Warn about match data being
4404 set anew by every search.
4405
44062006-05-17 Richard Stallman <rms@gnu.org>
4407
4408 * minibuf.texi (Minibuffer History): Clarify.
4409
4410 * searching.texi (Regexp Special): Clarify nested regexp warning.
4411
44122006-05-16 Kim F. Storm <storm@cua.dk>
4413
4414 * minibuf.texi (Minibuffer History): Update add-to-history.
4415
44162006-05-15 Oliver Scholz <epameinondas@gmx.de> (tiny change)
4417
4418 * nonascii.texi (Explicit Encoding):
4419 Fix typo (encoding<->decoding).
4420
44212006-05-14 Richard Stallman <rms@gnu.org>
4422
4423 * buffers.texi (Creating Buffers): Cleanup.
4424
4425 * files.texi (Visiting Functions): Rewrite in find-file-noselect.
4426
44272006-05-13 Eli Zaretskii <eliz@gnu.org>
4428
4429 * buffers.texi (Current Buffer): Document that with-temp-buffer
4430 disables undo.
4431
4432 * os.texi (Terminal-Specific): More accurate description of how
4433 Emacs searches for the terminal-specific libraries.
4434
44352006-05-12 Eli Zaretskii <eliz@gnu.org>
4436
4437 * hooks.texi (Standard Hooks) [iftex]: Convert @xref's to
4438 emacs-xtra to @inforef's.
4439
4440 * text.texi (Undo): Document that undo is turned off in buffers
4441 whose names begin with a space.
4442
4443 * buffers.texi (Buffer Names): Add index entries for buffers whose
4444 names begin with a space.
4445 (Creating Buffers): Document that undo is turned off in buffers
4446 whose names begin with a space.
4447
4448 * files.texi (Visiting Functions, Reading from Files)
4449 (Saving Buffers): Mention code and EOL conversions by file I/O
4450 primitives and subroutines.
4451
4452 * nonascii.texi (Lisp and Coding Systems): Document
4453 coding-system-eol-type. Add index entries for eol conversion.
4454
4455 * display.texi (Defining Faces): Mention `mac', and add an xref to
4456 where window-system is described.
4457
44582006-05-10 Richard Stallman <rms@gnu.org>
4459
4460 * internals.texi (Writing Emacs Primitives): Clarify GCPRO rules.
4461
44622006-05-10 Reiner Steib <Reiner.Steib@gmx.de>
4463
4464 * variables.texi (File Local Variables): Recommend to quote lambda
4465 expressions in safe-local-variable property.
4466
44672006-05-09 Richard Stallman <rms@gnu.org>
4468
4469 * variables.texi (File Local Variables):
4470 Document safe-local-eval-forms and safe-local-eval-function.
4471
44722006-05-07 Kim F. Storm <storm@cua.dk>
4473
4474 * minibuf.texi (Minibuffer History): Remove keep-dups arg
4475 from add-to-history.
4476
44772006-05-07 Romain Francoise <romain@orebokech.com>
4478
4479 * commands.texi (Event Input Misc):
4480 * compile.texi (Eval During Compile):
4481 * internals.texi (Buffer Internals):
4482 * minibuf.texi (Initial Input):
4483 * nonascii.texi (Scanning Charsets):
4484 * numbers.texi (Comparison of Numbers):
4485 * windows.texi (Textual Scrolling, Vertical Scrolling):
4486 Fix various typos.
4487
44882006-05-06 Eli Zaretskii <eliz@gnu.org>
4489
4490 * hooks.texi (Standard Hooks): Replace inforef to emacs-xtra by
4491 conditional xref's to either emacs or emacs-xtra, depending on
4492 @iftex/@ifnottex.
4493
4494 * minibuf.texi (Minibuffer History): Document add-to-history.
4495
44962006-05-05 Eli Zaretskii <eliz@gnu.org>
4497
4498 * internals.texi (Pure Storage): Mention the pure overflow message
4499 at startup.
4500
45012006-05-05 Johan Bockgård <bojohan@dd.chalmers.se>
4502
4503 * keymaps.texi (Active Keymaps): Fix pseudo-Lisp syntax.
4504 (Searching Keymaps): Fix pseudo-Lisp description of keymap
4505 search.
4506
45072006-05-01 Richard Stallman <rms@gnu.org>
4508
4509 * intro.texi (nil and t): Clarify.
4510
4511 * variables.texi (File Local Variables): Suggest using booleanp.
4512
45132006-05-01 Juanma Barranquero <lekktu@gmail.com>
4514
4515 * objects.texi (Type Predicates): Fix typos.
4516
45172006-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
4518
4519 * intro.texi (nil and t): Add booleanp.
4520
4521 * objects.texi (Type Predicates): Add links for booleanp and
4522 string-or-null-p.
4523
45242006-04-29 Richard Stallman <rms@gnu.org>
4525
4526 * modes.texi (Multiline Font Lock): Rename from
4527 Multi line Font Lock Elements. Much clarification.
4528 (Font Lock Multiline, Region to Fontify): Much clarification.
4529
45302006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4531
4532 * variables.texi (File Local Variables): Remove the special case t for
4533 safe-local-variable.
4534
45352006-04-26 Richard Stallman <rms@gnu.org>
4536
4537 * syntax.texi (Parsing Expressions): Minor cleanup.
4538
45392006-04-18 Richard Stallman <rms@gnu.org>
4540
4541 * tips.texi (Coding Conventions): Explain when the package's
4542 prefix should appear later on (not at the start of the name).
4543
4544 * searching.texi (String Search): Clarify effect of NOERROR.
4545
4546 * modes.texi (Imenu): Clarify what special items do.
4547
4548 * hooks.texi (Standard Hooks): Delete text about old hook names.
4549
45502006-04-17 Romain Francoise <romain@orebokech.com>
4551
4552 * variables.texi (Local Variables): Update the default value of
4553 `max-specpdl-size'.
4554
45552006-04-15 Michael Olson <mwolson@gnu.org>
4556
4557 * processes.texi (Transaction Queues): Mention the new optional
4558 `delay-question' argument for `tq-enqueue'.
4559
45602006-04-13 Bill Wohler <wohler@newt.com>
4561
4562 * customize.texi (Common Keywords): Use dotted notation for
4563 :package-version value. Specify its values. Improve documentation
4564 for customize-package-emacs-version-alist.
4565
45662006-04-12 Bill Wohler <wohler@newt.com>
4567
4568 * customize.texi (Common Keywords): Move description of
4569 customize-package-emacs-version-alist to @defvar.
4570
45712006-04-10 Bill Wohler <wohler@newt.com>
4572
4573 * customize.texi (Common Keywords): Add :package-version.
4574
45752006-04-10 Kim F. Storm <storm@cua.dk>
4576
4577 * text.texi (Buffer Contents): Add NOPROPS arg to
4578 filter-buffer-substring.
4579
45802006-04-08 Kevin Ryde <user42@zip.com.au>
4581
4582 * os.texi (Command-Line Arguments): Update xref to emacs manual
4583 "Command Arguments" -> "Emacs Invocation", per change there.
4584
45852006-04-08 Thien-Thi Nguyen <ttn@gnu.org>
4586
4587 * display.texi (Other Display Specs): Arrange a @code{DOTTED-LIST} to
4588 be on one line to help makeinfo not render two spaces after the dot.
4589
45902006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
4591
4592 * strings.texi (Predicates for Strings): Add string-or-null-p.
4593
45942006-03-28 Kim F. Storm <storm@cua.dk>
4595
4596 * processes.texi (Accepting Output): Remove obsolete (and incorrect)
4597 remarks about systems that don't support fractional seconds.
4598
45992006-03-25 Karl Berry <karl@gnu.org>
4600
4601 * elisp.texi: Use @copyright{} instead of (C), and do not indent
4602 the year list.
4603
46042006-03-21 Nick Roberts <nickrob@snap.net.nz>
4605
4606 * display.texi (Fringe Indicators): Fix typos.
4607
46082006-03-19 Luc Teirlinck <teirllm@auburn.edu>
4609
4610 * tips.texi (Documentation Tips): One can now also write `program'
4611 in front of a quoted symbol in a docstring to prevent making a
4612 hyperlink.
4613
46142006-03-19 Alan Mackenzie <acm@muc.de>
4615
4616 * text.texi (Special Properties): Clarify `fontified' property.
4617
46182006-03-16 Richard Stallman <rms@gnu.org>
4619
4620 * display.texi (Defining Images): Minor cleanup.
4621
46222006-03-16 Bill Wohler <wohler@newt.com>
4623
4624 * display.texi (Defining Images): In image-load-path-for-library,
4625 prefer user's images.
4626
46272006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4628
4629 * modes.texi (Region to Fontify): Remove font-lock-lines-before.
4630
46312006-03-15 Bill Wohler <wohler@newt.com>
4632
4633 * display.texi (Defining Images): Fix example in
4634 image-load-path-for-library by not recommending that one binds
4635 image-load-path. Just defvar it to placate compiler and only use
4636 it if previously defined.
4637
46382006-03-14 Bill Wohler <wohler@newt.com>
4639
4640 * display.texi (Defining Images): In image-load-path-for-library,
4641 always return list of directories. Update example.
4642
46432006-03-14 Alan Mackenzie <acm@muc.de>
4644
4645 * modes.texi: New node, "Region to Fontify" (for Font Lock).
4646 This describes font-lock-extend-region-function.
4647 ("Other Font Lock Variables"): Move "font-lock-lines-before" to
4648 the new node "Region to Fontify".
4649
46502006-03-13 Richard Stallman <rms@gnu.org>
4651
4652 * display.texi (Invisible Text): The impossible position is
4653 now before the invisible text, not after.
4654 (Defining Images): Clean up last change.
4655
46562006-03-11 Bill Wohler <wohler@newt.com>
4657
4658 * display.texi (Defining Images): Add image-load-path-for-library.
4659
46602006-03-11 Luc Teirlinck <teirllm@auburn.edu>
4661
4662 * text.texi (Adaptive Fill): Fix Texinfo usage.
4663
4664 * strings.texi (Creating Strings): Fix Texinfo usage.
4665
4666 * searching.texi (Regexp Special): Use @samp for regular
4667 expressions that are not in Lisp syntax.
4668
46692006-03-08 Luc Teirlinck <teirllm@auburn.edu>
4670
4671 * searching.texi (Regexp Special): Put remark between parentheses
4672 to avoid misreading.
4673
46742006-03-07 Luc Teirlinck <teirllm@auburn.edu>
4675
4676 * searching.texi (Syntax of Regexps): More accurately describe
4677 which characters are special in which situations.
4678 (Regexp Special): Recommend _not_ to quote `]' or `-' when they
4679 are not special. Describe in detail when `[' and `]' are special.
4680 (Regexp Backslash): Plenty of regexps with unbalanced square
4681 brackets are valid, so reword that statement.
4682
46832006-03-02 Kim F. Storm <storm@cua.dk>
4684
4685 * keymaps.texi (Tool Bar): Add tool-bar-border.
4686
46872006-02-28 Luc Teirlinck <teirllm@auburn.edu>
4688
4689 * loading.texi (Load Suffixes): Rephrase last paragraph. Fix typos.
4690
46912006-02-27 Luc Teirlinck <teirllm@auburn.edu>
4692
4693 * elisp.texi (Top): Include "Load Suffixes" in the detailed menu.
4694
4695 * files.texi (Locating Files): Suggest additional values for the
4696 SUFFIXES arg of `locate-file'. Update pxref.
4697
4698 * loading.texi (Loading): Include new node "Load Suffixes" in menu.
4699 (How Programs Do Loading): Discuss the effects of Auto Compression
4700 mode on `load'.
4701 (Load Suffixes): New node.
4702 (Library Search): Delete description of `load-suffixes'; it was
4703 moved to "Load Suffixes".
4704 (Autoload, Named Features): Mention `load-suffixes'.
4705
47062006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
4707
4708 * display.texi (Fringe Indicators, Fringe Cursors): Fix typos.
4709
4710 * windows.texi (Window Tree): Fix typo.
4711
47122006-02-20 Kim F. Storm <storm@cua.dk>
4713
4714 * display.texi (Fringe Indicators): New section.
4715 Move indicate-empty-lines, indicate-buffer-boundaries, and
4716 default-indicate-buffer-boundaries here.
4717 Add fringe-indicator-alist and default-fringes-indicator-alist.
4718 Add list of logical fringe indicator symbols.
4719 Update list of standard bitmap names.
4720 (Fringe Cursors): New section.
4721 Move overflow-newline-into-fringe here.
4722 Add fringe-cursor-alist and default-fringes-cursor-alist.
4723 Add list of fringe cursor symbols.
4724
47252006-02-20 Juanma Barranquero <lekktu@gmail.com>
4726
4727 * commands.texi (Using Interactive): Fix reference to node
4728 "Minibuffers".
4729
47302006-02-19 Richard M. Stallman <rms@gnu.org>
4731
4732 * minibuf.texi (High-Level Completion):
4733 Add xref to read-input-method-name.
4734
4735 * files.texi (Relative File Names): Move file-relative-name here.
4736 (File Name Expansion): From here. Minor clarifications.
4737
4738 * commands.texi (Using Interactive): Add xrefs about reading input.
4739 Clarify remarks about that moving point and mark.
4740 Put string case before list case.
4741
47422006-02-16 Johan Bockgård <bojohan@dd.chalmers.se>
4743
4744 * display.texi (Other Display Specs, Image Descriptors):
4745 Revert erroneous changes. The previous description of
4746 image-descriptors as `(image . PROPS)' was correct.
4747
47482006-02-14 Richard M. Stallman <rms@gnu.org>
4749
4750 * variables.texi (File Local Variables): Clarifications.
4751
47522006-02-14 Juanma Barranquero <lekktu@gmail.com>
4753
4754 * variables.texi (File Local Variables): Use @code for a cons
4755 cell, not @var.
4756
47572006-02-13 Chong Yidong <cyd@stupidchicken.com>
4758
4759 * variables.texi (File Local Variables): Document new file local
4760 variable behavior.
4761
47622006-02-10 Kim F. Storm <storm@cua.dk>
4763
4764 * eval.texi (Function Indirection): Add NOERROR to indirect-function.
4765
47662006-02-08 Juanma Barranquero <lekktu@gmail.com>
4767
4768 * modes.texi (%-Constructs): Remove obsolete info about
4769 `global-mode-string'.
4770
47712006-02-07 Richard M. Stallman <rms@gnu.org>
4772
4773 * commands.texi (Prefix Command Arguments): Minor cleanup.
4774
4775 * display.texi: "Graphical display", not window system.
4776
4777 * functions.texi (What Is a Function): Fix xref.
4778
4779 * keymaps.texi (Key Lookup): Clarify wrt commands vs other functions.
4780 (Changing Key Bindings): Clarify when remapping is better than
4781 substitute-key-definition.
4782
47832006-02-02 Richard M. Stallman <rms@gnu.org>
4784
4785 * minibuf.texi (Basic Completion): Completion alists are risky.
4786
4787 * keymaps.texi (Active Keymaps): Clarifications.
4788 (Searching Keymaps): New node.
4789 (Keymaps): Update menu.
4790
4791 * frames.texi (Layout Parameters): Minor clarification.
4792 (Drag and Drop): New node.
4793 (Frames): Update menu.
4794
47952006-01-29 Chong Yidong <cyd@stupidchicken.com>
4796
4797 * display.texi (Other Display Specs, Image Descriptors):
4798 Image description is a list, not a cons cell.
4799
48002006-01-28 Luc Teirlinck <teirllm@auburn.edu>
4801
4802 * lists.texi (Cons Cells): Minor correction (the cdr of a dotted
4803 list is not necessarily a list).
4804
48052006-01-27 Eli Zaretskii <eliz@gnu.org>
4806
4807 * frames.texi (Layout Parameters): border-width and
4808 internal-border-width belong to the frame, not the window.
4809
48102006-01-19 Richard M. Stallman <rms@gnu.org>
4811
4812 * nonascii.texi (Translation of Characters): Search cmds use
4813 translation-table-for-input. Automatically made local.
4814
4815 * markers.texi (Overview of Markers): Count insertion type
4816 as one of a marker's attributes.
4817
4818 * keymaps.texi (Controlling Active Maps): New node, split out of
4819 Active Keymaps.
4820 (Keymaps): Menu updated.
4821 (Active Keymaps): Give pseudocode to explain how the active
4822 maps are searched. current-active-maps and key-binding moved here.
4823 (Functions for Key Lookup): current-active-maps and key-binding moved.
4824 Clarifications.
4825 (Searching the Keymaps): New subnode.
4826
4827 * elisp.texi (Top): Menu clarification.
4828
4829 * display.texi (Other Display Specs): Delete duplicate entry for
4830 just a string as display spec. Move text about recursive display
4831 specs on such a string.
4832
4833 * commands.texi (Key Sequence Input): Clarify.
4834 Move num-nonmacro-input-events out.
4835 (Reading One Event): num-nonmacro-input-events moved here.
4836
48372006-01-14 Nick Roberts <nickrob@snap.net.nz>
4838
4839 * advice.texi (Simple Advice): Update example to fit argument
4840 change in previous-line.
4841
48422006-01-05 Richard M. Stallman <rms@gnu.org>
4843
4844 * markers.texi (The Mark): Fix in `mark'.
4845
48462006-01-04 Richard M. Stallman <rms@gnu.org>
4847
4848 * processes.texi (Misc Network, Make Network): Minor cleanups.
4849
48502006-01-04 Kim F. Storm <storm@cua.dk>
4851
4852 * processes.texi (Make Network): Add IPv6 addresses and handling.
4853 (Network Feature Testing): Mention (:family ipv6).
4854 (Misc Network): Add IPv6 formats to format-network-address.
4855
48562005-12-30 Richard M. Stallman <rms@gnu.org>
4857
4858 * text.texi (Changing Properties):
4859 Don't use return value of set-text-properties.
4860
48612005-12-29 Luc Teirlinck <teirllm@auburn.edu>
4862
4863 * modes.texi (Mode Line Format): Correct typo in menu.
4864
48652005-12-29 Richard M. Stallman <rms@gnu.org>
4866
4867 * modes.texi (Mode Line Top): New node.
4868 (Mode Line Data): Some text moved to new node.
4869 Explain the data structure more concretely.
4870 (Mode Line Basics): Clarifications.
4871 (Mode Line Variables): Clarify intro paragraph.
4872 (%-Constructs): Clarify intro paragraph.
4873 (Mode Line Format): Update menu.
4874
48752005-12-28 Luc Teirlinck <teirllm@auburn.edu>
4876
4877 * minibuf.texi (Basic Completion): Update lazy-completion-table
4878 examples for removal of ARGS argument.
4879
48802005-12-23 Richard M. Stallman <rms@gnu.org>
4881
4882 * text.texi (Undo): Restore some explanation from the version
4883 that was deleted.
4884
48852005-12-23 Eli Zaretskii <eliz@gnu.org>
4886
4887 * text.texi (Undo): Remove duplicate descriptions of `apply
4888 funname' and `apply delta' elements of the undo list.
4889
48902005-12-20 Richard M. Stallman <rms@gnu.org>
4891
4892 * help.texi (Help Functions): Update documentation of `apropos'.
4893
48942005-12-20 Luc Teirlinck <teirllm@auburn.edu>
4895
4896 * customize.texi (Type Keywords): Delete xref to "Text help-echo",
4897 because it is confusing. If the :help-echo keyword is a function,
4898 it is not directly used as the :help-echo overlay property, as the
4899 xref seems to suggest (it does not take the appropriate args).
4900
49012005-12-19 Luc Teirlinck <teirllm@auburn.edu>
4902
4903 * customize.texi (Common Keywords): Fix Texinfo usage.
4904 (Group Definitions, Variable Definitions): Update for new
4905 conventions for using `*' in docstrings.
4906
4907 * tips.texi (Documentation Tips): Update for new conventions for
4908 using `*' in docstrings.
4909
49102005-12-16 Richard M. Stallman <rms@gnu.org>
4911
4912 * minibuf.texi (Minibuffer Contents): Minor cleanup.
4913
49142005-12-16 Juri Linkov <juri@jurta.org>
4915
4916 * minibuf.texi (Minibuffer Contents): Add minibuffer-completion-contents.
4917
49182005-12-14 Romain Francoise <romain@orebokech.com>
4919
4920 * modes.texi (Customizing Keywords): Rename `append' to `how'.
4921 Fix typo.
4922
49232005-12-11 Juri Linkov <juri@jurta.org>
4924
4925 * minibuf.texi (Completion Commands): Add mention of read-file-name
4926 for filename completion keymaps.
4927 (Reading File Names): Add mention of filename completion keymaps
4928 for read-file-name and xref to `Completion Commands'.
4929
49302005-12-10 Richard M. Stallman <rms@gnu.org>
4931
4932 * customize.texi (Common Keywords): State caveats for use of :tag.
4933
49342005-12-08 Richard M. Stallman <rms@gnu.org>
4935
4936 * minibuf.texi (Intro to Minibuffers): Replace list of local maps
4937 with xrefs and better explanation.
4938 (Completion Commands): Add the filename completion maps.
4939
4940 * objects.texi (Character Type): Clarify that \s is not space
4941 if a dash follows.
4942
49432005-12-05 Richard M. Stallman <rms@gnu.org>
4944
4945 * windows.texi (Resizing Windows): Delete preserve-before args.
4946
49472005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
4948
4949 * keymaps.texi (Format of Keymaps): Remove mention of a quirk
4950 in full keymaps, since the quirk has been fixed.
4951
49522005-12-03 Eli Zaretskii <eliz@gnu.org>
4953
4954 * hooks.texi (Standard Hooks): Add index entries.
4955 Mention `compilation-finish-functions'.
4956
49572005-11-27 Richard M. Stallman <rms@gnu.org>
4958
4959 * windows.texi (Resizing Windows): Add adjust-window-trailing-edge.
4960
49612005-11-21 Juri Linkov <juri@jurta.org>
4962
4963 * customize.texi (Common Keywords): Update links types
4964 custom-manual and url-link. Add link types emacs-library-link,
4965 file-link, function-link, variable-link, custom-group-link.
4966
49672005-11-20 Chong Yidong <cyd@stupidchicken.com>
4968
4969 * display.texi: Revert 2005-11-20 change.
4970
49712005-11-20 Thien-Thi Nguyen <ttn@gnu.org>
4972
4973 * processes.texi (Bindat Functions):
4974 Say "third" to refer to zero-based index "2".
4975
49762005-11-18 Luc Teirlinck <teirllm@auburn.edu>
4977
4978 * loading.texi (Library Search): Update the default value of
4979 `load-suffixes'.
4980
49812005-11-17 Chong Yidong <cyd@stupidchicken.com>
4982
4983 * display.texi (Attribute Functions): Mention :ignore-defface.
4984
49852005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4986
4987 * modes.texi (Minor Mode Conventions): Use custom-set-minor-mode.
4988 (Minor Mode Conventions): Mention the use of a hook.
4989
49902005-11-06 Richard M. Stallman <rms@gnu.org>
4991
4992 * files.texi (Magic File Names): find-file-name-handler checks the
4993 `operations' property of the handler.
4994
49952005-11-03 Richard M. Stallman <rms@gnu.org>
4996
4997 * variables.texi (Frame-Local Variables): Small clarification.
4998
49992005-10-29 Chong Yidong <cyd@stupidchicken.com>
5000
5001 * os.texi (Init File): Document ~/.emacs.d/init.el.
5002
50032005-10-29 Richard M. Stallman <rms@gnu.org>
5004
5005 * internals.texi (Garbage Collection): Document memory-full.
5006
50072005-10-28 Bill Wohler <wohler@newt.com>
5008
5009 * tips.texi (Documentation Tips): Help mode now creates hyperlinks
5010 for URLs.
5011
50122005-10-28 Richard M. Stallman <rms@gnu.org>
5013
5014 * minibuf.texi (Completion Commands): Clean up prev change.
5015
50162005-10-26 Kevin Ryde <user42@zip.com.au>
5017
5018 * compile.texi (Eval During Compile): Explain recommended uses
5019 of eval-when-compile and eval-and-compile.
5020
50212005-10-27 Masatake YAMATO <jet@gyve.org>
5022
5023 * minibuf.texi (Completion Commands):
5024 Write about new optional argument for `display-completion-list'.
5025
50262005-10-23 Richard M. Stallman <rms@gnu.org>
5027
5028 * display.texi (Overlay Arrow): Clarify about local bindings of
5029 overlay-arrow-position.
5030
50312005-10-22 Eli Zaretskii <eliz@gnu.org>
5032
5033 * internals.texi (Building Emacs): Fix last change.
5034
50352005-10-22 Richard M. Stallman <rms@gnu.org>
5036
5037 * internals.texi (Building Emacs): Document eval-at-startup.
5038
50392005-10-21 Richard M. Stallman <rms@gnu.org>
5040
5041 * loading.texi (Where Defined): load-history contains abs file names.
5042 symbol-file returns abs file names.
5043
50442005-10-19 Kim F. Storm <storm@cua.dk>
5045
5046 * display.texi (Showing Images): Add max-image-size integer value.
5047
50482005-10-18 Chong Yidong <cyd@stupidchicken.com>
5049
5050 * display.texi (Showing Images): Document max-image-size.
5051
50522005-10-17 Richard M. Stallman <rms@gnu.org>
5053
5054 * commands.texi (Quitting): Minor clarification.
5055
5056 * processes.texi (Sentinels): Clarify about output and quitting.
5057 (Filter Functions): Mention with-local-quit.
5058
50592005-10-17 Juri Linkov <juri@jurta.org>
5060
5061 * buffers.texi (Current Buffer):
5062 * commands.texi (Event Input Misc):
5063 * compile.texi (Eval During Compile, Compiler Errors):
5064 * customize.texi (Group Definitions):
5065 * display.texi (Progress, Defining Faces):
5066 * files.texi (Writing to Files):
5067 * modes.texi (Mode Hooks, Defining Minor Modes):
5068 * streams.texi (Output Functions):
5069 * syntax.texi (Syntax Table Functions):
5070 * text.texi (Change Hooks):
5071 Replace `...' with `@dots{}' in `@defmac' and `@defspec'.
5072
5073 * commands.texi (Quitting): Replace arg `forms' with `body' in
5074 `with-local-quit'.
5075
5076 * positions.texi (Excursions): Replace arg `forms' with `body' in
5077 `save-excursion'.
5078
50792005-10-08 Kim F. Storm <storm@cua.dk>
5080
5081 * windows.texi (Window Tree): Rename window-split-tree to window-tree.
5082 Rename manual section accordingly.
5083
50842005-10-04 Kim F. Storm <storm@cua.dk>
5085
5086 * windows.texi (Window Split Tree): New section describing
5087 new function window-split-tree function.
5088
50892005-10-03 Nick Roberts <nickrob@snap.net.nz>
5090
5091 * display.texi (Fringe Size/Pos): Simplify and add detail.
5092
50932005-09-30 Romain Francoise <romain@orebokech.com>
5094
5095 * minibuf.texi (High-Level Completion): Explain that the prompt
5096 given to `read-buffer' should end with a colon and a space.
5097 Update usage examples.
5098
50992005-09-29 Juri Linkov <juri@jurta.org>
5100
5101 * display.texi (Displaying Messages): Rename argument name
5102 `string' to `format-string' in functions `message', `message-box',
5103 `message-or-box'.
5104
51052005-09-26 Chong Yidong <cyd@stupidchicken.com>
5106
5107 * errors.texi (Standard Errors): Correct xrefs.
5108
51092005-09-18 Chong Yidong <cyd@stupidchicken.com>
5110
5111 * display.texi (Defining Images): Update documentation for
5112 `image-load-path'.
5113
51142005-09-17 Richard M. Stallman <rms@gnu.org>
5115
5116 * display.texi (Defining Images): Clean up previous change.
5117
51182005-09-16 Romain Francoise <romain@orebokech.com>
5119
5120 * elisp.texi: Specify GFDL version 1.2.
5121
5122 * doclicense.texi (GNU Free Documentation License): Update to
5123 version 1.2.
5124
51252005-09-15 Chong Yidong <cyd@stupidchicken.com>
5126
5127 * display.texi (Defining Images): Document `image-load-path'.
5128
51292005-09-15 Richard M. Stallman <rms@gnu.org>
5130
5131 * objects.texi (Printed Representation): Minor cleanup.
5132 (Box Diagrams): Minor fix.
5133 (Cons Cell Type): Move (...) index item here.
5134 (Box Diagrams): From here.
5135 (Array Type): Minor fix.
5136 (Type Predicates): Delete index "predicates".
5137 (Hash Table Type): Clarify xref.
5138 (Dotted Pair Notation): Minor fix.
5139
51402005-09-10 Chong Yidong <cyd@stupidchicken.com>
5141
5142 * files.texi (Saving Buffers): Fix typo.
5143
51442005-09-08 Richard M. Stallman <rms@gnu.org>
5145
5146 * tips.texi (Programming Tips): Correct the "default" prompt spec.
5147
51482005-09-08 Chong Yidong <cyd@stupidchicken.com>
5149
5150 * locals.texi (Standard Buffer-Local Variables): Don't include
5151 mode variables for minor modes.
5152 Fix xrefs for buffer-display-count, buffer-display-table,
5153 buffer-offer-save, buffer-saved-size, cache-long-line-scans,
5154 enable-multibyte-characters, fill-column, header-line-format,
5155 left-fringe-width, left-margin, and right-fringe-width.
5156
5157 * hooks.texi (Standard Hooks): All hooks should conform to the
5158 standard naming convention now.
5159 Fix xref for `echo-area-clear-hook'.
5160
5161 * display.texi (Usual Display): Note that indicate-empty-lines and
5162 tab-width are buffer-local.
5163
5164 * files.texi (Saving Buffers): Add xref to `Killing Buffers'.
5165
5166 * modes.texi (Mode Help): Note that major-mode is buffer-local.
5167
5168 * nonascii.texi (Encoding and I/O): Note that
5169 buffer-file-coding-system is buffer-local.
5170
5171 * positions.texi (List Motion): Note that defun-prompt-regexp is
5172 buffer-local.
5173
5174 * text.texi (Auto Filling): Note that auto-fill-function is
5175 buffer-local.
5176 (Undo): Note that buffer-undo-list is buffer-local.
5177
5178 * windows.texi (Buffers and Windows):
5179 Document buffer-display-count.
5180
51812005-09-06 Richard M. Stallman <rms@gnu.org>
5182
5183 * tips.texi (Coding Conventions): Sometimes it is ok to put the
5184 package prefix elsewhere than at the start of the name.
5185
51862005-09-03 Richard M. Stallman <rms@gnu.org>
5187
5188 * tips.texi (Programming Tips): Add conventions for minibuffer
5189 questions and prompts.
5190
51912005-09-03 Joshua Varner <jlvarner@gmail.com> (tiny change)
5192
5193 * intro.texi (nil and t): Minor cleanup.
5194 Delete spurious mention of keyword symbols.
5195 (Evaluation Notation): Add index entry.
5196 (A Sample Function Description): Minor cleanup.
5197 (A Sample Variable Description): Not all vars can be set.
5198
51992005-09-03 Thien-Thi Nguyen <ttn@gnu.org>
5200
5201 * text.texi (Buffer Contents): Use "\n" in examples' result strings.
5202
5203 (Insertion): Document precise type of `insert-char' arg COUNT.
5204
52052005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
5206
5207 * modes.texi (Other Font Lock Variables): Sync the default of
5208 font-lock-lines-before.
5209
52102005-08-31 Michael Albinus <michael.albinus@gmx.de>
5211
5212 * files.texi (Magic File Names): Add `make-auto-save-file-name'.
5213
52142005-08-29 Richard M. Stallman <rms@gnu.org>
5215
5216 * elisp.texi (Top): Update subnode menu.
5217
5218 * searching.texi (Searching and Matching): Move node.
5219 Rearrange contents and add overall explanation.
5220 (Searching and Case): Move node.
5221 (Searching and Matching): Update menu.
5222
52232005-08-27 Eli Zaretskii <eliz@gnu.org>
5224
5225 * os.texi (Startup Summary): Fix the description of the initial
5226 startup message display.
5227
52282005-08-25 Richard M. Stallman <rms@gnu.org>
5229
5230 * searching.texi (Search and Replace): Add replace-regexp-in-string.
5231
52322005-08-25 Emilio C. Lopes <eclig@gmx.net>
5233
5234 * display.texi (Finding Overlays): Fix `find-overlay-prop' in
5235 `next-overlay-change' example.
5236
52372005-08-22 Juri Linkov <juri@jurta.org>
5238
5239 * display.texi (Attribute Functions): Add set-face-inverse-video-p.
5240 Fix invert-face. Fix args of face-background.
5241
5242 * display.texi (Standard Faces): Delete node.
5243 (Faces): Add xref to `(emacs)Standard Faces'.
5244 (Displaying Faces): Fix xref to `Standard Faces'.
5245
5246 * modes.texi (Mode Line Data): Fix xref to Standard Faces.
5247
52482005-08-20 Alan Mackenzie <acm@muc.de>
5249
5250 * buffers.texi (The Buffer List): Clarify the manipulation of the
5251 buffer list.
5252
52532005-08-14 Richard M. Stallman <rms@gnu.org>
5254
5255 * modes.texi (Auto Major Mode): interpreter-mode-alist key is not
5256 a regexp.
5257
52582005-08-11 Richard M. Stallman <rms@gnu.org>
5259
5260 * elisp.texi (Top): Update subnode lists.
5261
5262 * display.texi (Inverse Video): Node deleted.
5263
5264 * tips.texi (Key Binding Conventions, Programming Tips, Warning Tips):
5265 New nodes split out of Coding Conventions.
5266
5267 * searching.texi (Regular Expressions): Document re-builder.
5268
5269 * os.texi (Time Parsing): New node split out of Time Conversion.
5270
5271 * processes.texi (Misc Network, Network Feature Testing)
5272 (Network Options, Make Network): New nodes split out of
5273 Low-Level Network.
5274
52752005-08-09 Richard M. Stallman <rms@gnu.org>
5276
5277 * frames.texi (Geometry): New node, split from Size and Position.
5278 (Frame Parameters): Refer to Geometry.
5279
5280 * buffers.texi (The Buffer List): Fix xrefs.
5281
5282 * windows.texi (Splitting Windows): Fix xref.
5283
5284 * frames.texi (Layout Parameters): Add xref.
5285
5286 * display.texi (Line Height, Scroll Bars): Fix xrefs.
5287
5288 * keymaps.texi (Menu Bar): Fix xref.
5289
5290 * locals.texi (Standard Buffer-Local Variables): Fix xref.
5291
5292 * modes.texi (%-Constructs): Fix xref.
5293
5294 * frames.texi (Window Frame Parameters): Node split up.
5295 (Basic Parameters, Position Parameters, Size Parameters)
5296 (Layout Parameters, Buffer Parameters, Management Parameters)
5297 (Cursor Parameters, Color Parameters): New subnodes.
5298
52992005-08-09 Luc Teirlinck <teirllm@auburn.edu>
5300
5301 * positions.texi (Screen Lines): Update xref for previous change
5302 in minibuf.texi.
5303
5304 * minibuf.texi (Intro to Minibuffers): Update pxref for previous
5305 change in minibuf.texi.
5306
53072005-08-09 Richard M. Stallman <rms@gnu.org>
5308
5309 * tips.texi (Coding Conventions): Minor cleanup.
5310
5311 * modes.texi (Defining Minor Modes): Explain when init-value
5312 can be non-nil.
5313
5314 * elisp.texi (Top): Update submenu for Minibuffer.
5315
5316 * minibuf.texi (Minibuffer Misc): Node split up.
5317 (Minibuffer Commands, Minibuffer Windows, Minibuffer Contents)
5318 (Recursive Mini): New nodes split out from Minibuffer Misc.
5319 (Minibuffer Misc): Document max-mini-window-height.
5320
5321 * hash.texi (Defining Hash): Delete stray paren in example.
5322
5323 * display.texi (Echo Area Customization): Don't define
5324 max-mini-window-height here; xref instead.
5325
5326 * commands.texi (Event Input Misc): Update while-no-input.
5327
5328 * advice.texi (Advising Functions): Explain when to use advice
5329 and when to use a hook.
5330
53312005-07-30 Eli Zaretskii <eliz@gnu.org>
5332
5333 * makefile.w32-in (info): Don't run install-info.
5334 ($(infodir)/dir): New target, produced by running install-info.
5335
53362005-07-27 Luc Teirlinck <teirllm@auburn.edu>
5337
5338 * modes.texi (Defining Minor Modes): The keyword for the initial
5339 value is :init-value, not :initial-value.
5340
53412005-07-23 Eli Zaretskii <eliz@gnu.org>
5342
5343 * loading.texi (Autoload): Make the `doctor' example be consistent
5344 with what's in current loaddefs.el. Describe the "fn" magic in
5345 the usage portion of the doc string.
5346
53472005-07-22 Richard M. Stallman <rms@gnu.org>
5348
5349 * internals.texi (Garbage Collection): Clarify previous change.
5350
53512005-07-21 Stefan Monnier <monnier@iro.umontreal.ca>
5352
5353 * internals.texi (Garbage Collection): Add gc-cons-percentage.
5354
53552005-07-18 Juri Linkov <juri@jurta.org>
5356
5357 * commands.texi (Accessing Events):
5358 * frames.texi (Text Terminal Colors, Resources):
5359 * markers.texi (The Mark):
5360 * modes.texi (Defining Minor Modes):
5361 Delete duplicate duplicate words.
5362
53632005-07-16 Richard M. Stallman <rms@gnu.org>
5364
5365 * display.texi (Managing Overlays): Clarify make-overlay
5366 args for insertion types.
5367
53682005-07-13 Luc Teirlinck <teirllm@auburn.edu>
5369
5370 * customize.texi (Variable Definitions):
5371 Add `custom-initialize-safe-set' and `custom-initialize-safe-default'.
5372 `standard-value' is a list too.
5373 (Defining New Types): Use @key{RET} instead of @key{ret}.
5374
53752005-07-13 Francis Litterio <franl@world.std.com> (tiny change)
5376
5377 * os.texi (Translating Input): Fix typo.
5378
53792005-07-08 Richard M. Stallman <rms@gnu.org>
5380
5381 * README: Update edition number and size estimate.
5382
5383 * elisp.texi (VERSION): Set to 2.9.
5384
53852005-07-07 Richard M. Stallman <rms@gnu.org>
5386
5387 * book-spine.texinfo: Update Emacs version.
5388
5389 * display.texi (Inverse Video): Delete mode-line-inverse-video.
5390
53912005-07-06 Richard M. Stallman <rms@gnu.org>
5392
5393 * searching.texi (Regexp Search): Clarify what re-search-forward
5394 does when the search fails.
5395
53962005-07-05 Lute Kamstra <lute@gnu.org>
5397
5398 * Update FSF's address in GPL notices.
5399
5400 * doclicense.texi (GNU Free Documentation License):
5401 * gpl.texi (GPL):
5402 * tips.texi (Coding Conventions, Library Headers):
5403 * vol1.texi:
5404 * vol2.texi: Update FSF's address.
5405
54062005-07-04 Richard M. Stallman <rms@gnu.org>
5407
5408 * hooks.texi (Standard Hooks): Add occur-hook.
5409
54102005-07-03 Luc Teirlinck <teirllm@auburn.edu>
5411
5412 * display.texi (The Echo Area): Correct menu.
5413
54142005-07-03 Richard M. Stallman <rms@gnu.org>
5415
5416 * elisp.texi (Top): Update subnode menu for Display.
5417
5418 * display.texi (Displaying Messages): New node, with most
5419 of what was in The Echo Area.
5420 (Progress): Move under The Echo Area.
5421 (Logging Messages): New node with new text.
5422 (Echo Area Customization): New node, the rest of what was
5423 in The Echo Area. Document message-truncate-lines with @defvar.
5424 (Display): Update menu.
5425
5426 * windows.texi (Textual Scrolling): Doc 3 values for
5427 scroll-preserve-screen-position.
5428
5429 * text.texi (Special Properties): Change hook functions
5430 should bind inhibit-modification-hooks around altering buffer text.
5431
5432 * keymaps.texi (Key Binding Commands): Call binding BINDING
5433 rather than DEFINITION.
5434
54352005-06-29 Juanma Barranquero <lekktu@gmail.com>
5436
5437 * variables.texi (Defining Variables): `user-variable-p' returns t
5438 for aliases of user options, nil for alias loops.
5439
54402005-06-28 Richard M. Stallman <rms@gnu.org>
5441
5442 * keymaps.texi (Creating Keymaps): Put make-sparse-keymap before
5443 make-keymap.
5444
54452005-06-27 Luc Teirlinck <teirllm@auburn.edu>
5446
5447 * variables.texi (Setting Variables): Correct and clarify
5448 description of `add-to-ordered-list'.
5449
54502005-06-26 Richard M. Stallman <rms@gnu.org>
5451
5452 * display.texi (Faces): Minor cleanup.
5453
54542005-06-25 Luc Teirlinck <teirllm@auburn.edu>
5455
5456 * display.texi (Faces): `facep' returns t for strings that are
5457 face names.
5458
54592005-06-25 Richard M. Stallman <rms@gnu.org>
5460
5461 * objects.texi (Equality Predicates): Clarify meaning of equal.
5462
5463 * windows.texi (Selecting Windows): save-selected-window
5464 and with-selected-window save and restore the current buffer.
5465
54662005-06-24 Richard M. Stallman <rms@gnu.org>
5467
5468 * numbers.texi (Float Basics): Explain how to test for NaN,
5469 and printing the sign of NaNs.
5470
54712005-06-24 Eli Zaretskii <eliz@gnu.org>
5472
5473 * makefile.w32-in (MAKEINFO): Use --force.
5474
54752005-06-23 Richard M. Stallman <rms@gnu.org>
5476
5477 * display.texi (Face Functions): Correct Texinfo usage.
5478
54792005-06-23 Luc Teirlinck <teirllm@auburn.edu>
5480
5481 * lists.texi (Rings): `ring-elements' now returns the elements of
5482 RING in order.
5483
54842005-06-23 Juanma Barranquero <lekktu@gmail.com>
5485
5486 * markers.texi (The Mark): Texinfo usage fix.
5487
54882005-06-23 Kim F. Storm <storm@cua.dk>
5489
5490 * searching.texi (Entire Match Data): Remove evaporate option for
5491 match-data. Do not mention evaporate option for set-match-data.
5492
54932005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
5494
5495 * display.texi (Face Functions): Mention face aliases.
5496
54972005-06-21 Richard M. Stallman <rms@gnu.org>
5498
5499 * anti.texi (Antinews): Texinfo usage fix.
5500
55012005-06-21 Karl Berry <karl@gnu.org>
5502
5503 * elisp.texi: Use @copying.
5504
5505 * elisp.texi: Put @summarycontents and @contents before the Top
5506 node, instead of the end of the file, so that the contents appear
5507 in the right place in the dvi/pdf output.
5508
55092005-06-21 Juri Linkov <juri@jurta.org>
5510
5511 * display.texi (Defining Faces): Add `customized-face'.
5512
55132005-06-20 Kim F. Storm <storm@cua.dk>
5514
5515 * variables.texi (Setting Variables): Any type of element can be
5516 given order in add-to-ordered-list. Compare elements with eq.
5517
5518 * lists.texi (Rearrangement): Sort predicate may just return non-nil.
5519
55202005-06-20 Karl Berry <karl@gnu.org>
5521
5522 * syntax.texi (Syntax Flags): Make last column very slightly wider
5523 to avoid "generic comment" breaking on two lines and causing an
5524 underfull box.
5525
55262005-06-19 Luc Teirlinck <teirllm@auburn.edu>
5527
5528 * lists.texi (Rings): Various minor clarifications and corrections.
5529
55302005-06-18 Richard M. Stallman <rms@gnu.org>
5531
5532 * functions.texi (Obsolete Functions): Simplify.
5533
5534 * variables.texi (Variable Aliases): Simplify.
5535
5536 * anti.texi, backups.texi, compile.texi, customization.texi:
5537 * debugging.texi, display.texi, edebug.texi, errors.texi, frames.texi:
5538 * functions.texi, help.texi, keymaps.texi, modes.texi, nonascii.texi:
5539 * os.texi, processes.texi, searching.texi, strings.texi, text.texi:
5540 * variables.texi: Fix formatting ugliness.
5541
5542 * elisp.texi: Add links to Rings and Byte Packing.
5543 Update version and copyright years.
5544
5545 * minibuf.texi: Fix formatting ugliness.
5546 (Completion Commands): Move keymap vars to the end
5547 and vars completing-read binds to the top.
5548
55492005-06-17 Luc Teirlinck <teirllm@auburn.edu>
5550
5551 * processes.texi: Fix typos.
5552 (Bindat Spec): Correct Texinfo error.
5553 (Byte Packing): Fix ungrammatical sentence.
5554
55552005-06-17 Thien-Thi Nguyen <ttn@gnu.org>
5556
5557 * lists.texi (Rings): New node.
5558 (Lists): Add it to menu.
5559
5560 * processes.texi (Byte Packing): New node.
5561 (Processes): Add it to menu.
5562
55632005-06-17 Richard M. Stallman <rms@gnu.org>
5564
5565 * syntax.texi (Parsing Expressions): Fix texinfo usage.
5566
5567 * help.texi (Documentation Basics): Explain the xref to
5568 Documentation Tips.
5569
5570 * debugging.texi (Debugger Commands): Minor fix.
5571
55722005-06-16 Luc Teirlinck <teirllm@auburn.edu>
5573
5574 * edebug.texi (Instrumenting): Eliminate duplicate link.
5575 (Specification List): Replace references to "below", referring to
5576 a later node, with one @ref to that node.
5577
5578 * os.texi (Timers): Timers should save and restore the match data
5579 if they change it.
5580
5581 * debugging.texi (Debugger Commands): Mention that the Lisp
5582 debugger can not step through primitive functions.
5583
55842005-06-16 Juanma Barranquero <lekktu@gmail.com>
5585
5586 * functions.texi (Obsolete Functions): Update argument names of
5587 `make-obsolete' and `define-obsolete-function-alias'.
5588
5589 * variables.texi (Variable Aliases): Update argument names of
5590 `defvaralias', `make-obsolete-variable' and
5591 `define-obsolete-variable-alias'.
5592
55932005-06-15 Kim F. Storm <storm@cua.dk>
5594
5595 * searching.texi (Entire Match Data): Rephrase warnings about
5596 evaporate arg to match-data and set-match-data.
5597
55982005-06-14 Luc Teirlinck <teirllm@auburn.edu>
5599
5600 * elisp.texi (Top): Update detailed menu.
5601
5602 * edebug.texi (Edebug): Update menu.
5603 (Instrumenting): Update xrefs.
5604 (Edebug Execution Modes): Correct xref.
5605 (Jumping): Clarify description of `h' command.
5606 Eliminate redundant @ref.
5607 (Breaks): New node.
5608 (Breakpoints): Is now a subsubsection.
5609 (Global Break Condition): Mention `C-x X X'.
5610 (Edebug Views): Clarify `v' and `p'. Mention `C-x X w'.
5611 (Trace Buffer): Clarify STRING arg of `edebug-tracing'.
5612 (Edebug Display Update): Correct pxref.
5613 (Edebug and Macros): New node.
5614 (Instrumenting Macro Calls): Is now a subsubsection.
5615 Neither arg of `def-edebug-spec' is evaluated.
5616 (Instrumenting Macro Calls): Mention `edebug-eval-macro-args'.
5617 (Specification Examples): Fix typo.
5618
56192005-06-14 Lute Kamstra <lute@gnu.org>
5620
5621 * debugging.texi (Function Debugging): Primitives can break on
5622 entry too.
5623
56242005-06-14 Kim F. Storm <storm@cua.dk>
5625
5626 * variables.texi (Setting Variables): Add add-to-ordered-list.
5627
56282005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
5629
5630 * syntax.texi (Parsing Expressions): Document aux functions and vars of
5631 syntax-ppss: syntax-ppss-flush-cache and syntax-begin-function.
5632
56332005-06-13 Lute Kamstra <lute@gnu.org>
5634
5635 * text.texi (Special Properties): Fix cross reference.
5636
56372005-06-11 Luc Teirlinck <teirllm@auburn.edu>
5638
5639 * debugging.texi (Function Debugging): Delete mention of empty
5640 string argument to `cancel-debug-on-entry'. Delete inaccurate
5641 description of the return value of that command.
5642
56432005-06-11 Alan Mackenzie <acm@muc.de>
5644
5645 * text.texi (Adaptive Fill): Amplify the description of
5646 fill-context-prefix.
5647
56482005-06-10 Luc Teirlinck <teirllm@auburn.edu>
5649
5650 * syntax.texi (Parsing Expressions): Fix Texinfo error.
5651
56522005-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
5653
5654 * syntax.texi (Parsing Expressions): Document syntax-ppss.
5655
56562005-06-10 Luc Teirlinck <teirllm@auburn.edu>
5657
5658 * debugging.texi (Error Debugging): Minor rewording.
5659 (Function Debugging): FUNCTION-NAME arg to `cancel-debug-on-entry'
5660 is optional.
5661
56622005-06-10 Lute Kamstra <lute@gnu.org>
5663
5664 * elisp.texi: Use EMACSVER to refer to the current version of Emacs.
5665 (Top): Give it a title. Correct version number. Give the
5666 detailed node listing a more prominent header.
5667 * intro.texi: Don't set VERSION here a second time.
5668 Mention Emacs's version too.
5669 * anti.texi (Antinews): Use EMACSVER to refer to the current
5670 version of Emacs.
5671
56722005-06-09 Kim F. Storm <storm@cua.dk>
5673
5674 * searching.texi (Entire Match Data): Explain new `reseat' argument to
5675 match-data and set-match-data.
5676
56772005-06-08 Richard M. Stallman <rms@gnu.org>
5678
5679 * searching.texi (Entire Match Data): Clarify when match-data
5680 returns markers and when integers.
5681
5682 * display.texi (Defining Faces): Explain that face name should not
5683 end in `-face'.
5684
5685 * modes.texi (Mode Line Data): Minor cleanup.
5686 (Customizing Keywords): Node split out of Search-based Fontification.
5687 Add example of using font-lock-add-keywords from a hook.
5688 Clarify when MODE should be non-nil, and when nil.
5689
56902005-06-06 Richard M. Stallman <rms@gnu.org>
5691
5692 * modes.texi (Mode Line Data): Explain what happens when the car
5693 of a list is a void symbol.
5694 (Search-based Fontification): Explain MODE arg to
5695 font-lock-add-keywords and warn about calls from major modes.
5696
56972005-06-08 Juri Linkov <juri@jurta.org>
5698
5699 * display.texi (Standard Faces): Add `shadow' face.
5700
57012005-05-29 Luc Teirlinck <teirllm@auburn.edu>
5702
5703 * modes.texi (Major Mode Conventions): A derived mode only needs
5704 to put the call to the parent mode inside `delay-mode-hooks'.
5705
57062005-05-29 Richard M. Stallman <rms@gnu.org>
5707
5708 * modes.texi (Mode Hooks): Explain that after-change-major-mode-hook is
5709 new, and what that implies. Clarify.
5710
5711 * files.texi (Locating Files): Clean up the text.
5712
5713 * frames.texi (Window Frame Parameters): Document user-size.
5714 Shorten entry for top by referring to left.
5715
57162005-05-26 Richard M. Stallman <rms@gnu.org>
5717
5718 * modes.texi (Mode Hooks): Explain that after-change-major-mode-hook
5719 is new, and what the implications are. Other clarifications.
5720
57212005-05-24 Richard M. Stallman <rms@gnu.org>
5722
5723 * frames.texi (Dialog Boxes): Minor fixes.
5724
57252005-05-25 Masatake YAMATO <jet@gyve.org>
5726
5727 * display.texi (Standard Faces): Write about `mode-line-highlight'.
5728
57292005-05-24 Luc Teirlinck <teirllm@auburn.edu>
5730
5731 * frames.texi (Dialog Boxes): HEADER argument to `x-popup-dialog'
5732 is optional.
5733
57342005-05-24 Nick Roberts <nickrob@snap.net.nz>
5735
5736 * frames.texi (Dialog Boxes): Describe new optional argument.
5737
57382005-05-23 Lute Kamstra <lute@gnu.org>
5739
5740 * modes.texi (Font Lock Basics, Syntactic Font Lock): Recommend
5741 syntax-begin-function over font-lock-beginning-of-syntax-function.
5742
57432005-05-21 Luc Teirlinck <teirllm@auburn.edu>
5744
5745 * minibuf.texi (Reading File Names): Update description of
5746 `read-directory-name'.
5747
5748 * modes.texi (Derived Modes): Clarify :group keyword.
5749
57502005-05-21 Eli Zaretskii <eliz@gnu.org>
5751
5752 * files.texi (Locating Files): New subsection.
5753 Describe locate-file and executable-find.
5754
57552005-05-21 Kevin Ryde <user42@zip.com.au>
5756
5757 * frames.texi (Initial Parameters): Update cross reference to
5758 "Emacs Invocation".
5759
57602005-05-19 Luc Teirlinck <teirllm@auburn.edu>
5761
5762 * keymaps.texi (Active Keymaps): Add anchor.
5763
5764 * modes.texi (Hooks): Delete confusing and unnecessary sentence.
5765 (Major Mode Conventions): Refer to `Auto Major Mode' in more
5766 appropriate place.
5767 (Derived Modes): Small clarifications.
5768 (Minor Mode Conventions, Keymaps and Minor Modes):
5769 Replace references to nodes with references to anchors.
5770 (Mode Line Data): Warn that `(:eval FORM)' should not load any files.
5771 Clarify description of lists whose first element is an integer.
5772 (Mode Line Variables): Add anchor.
5773 (%-Constructs): Clarify description of integer after %.
5774 (Emulating Mode Line): Describe nil value for FACE.
5775
57762005-05-18 Luc Teirlinck <teirllm@auburn.edu>
5777
5778 * modes.texi (Derived Modes): Correct references to non-existing
5779 variable standard-syntax-table.
5780
57812005-05-17 Lute Kamstra <lute@gnu.org>
5782
5783 * modes.texi (Defining Minor Modes): Mention the mode hook.
5784
57852005-05-15 Kim F. Storm <storm@cua.dk>
5786
5787 * processes.texi (Network): Remove open-network-stream-nowait.
5788 (Network Servers): Remove open-network-stream-server.
5789
57902005-05-15 Luc Teirlinck <teirllm@auburn.edu>
5791
5792 * elisp.texi (Top): Update detailed menu.
5793
5794 * variables.texi: Reorder nodes.
5795 (Variables): Update menu.
5796 (File Local Variables): Do not refer to the `-*-' line as
5797 a "local variables list". Add pxref.
5798
57992005-05-14 Luc Teirlinck <teirllm@auburn.edu>
5800
5801 * elisp.texi (Top): Update detailed menu for node changes.
5802
5803 * modes.texi (Modes): Update Menu.
5804 (Hooks): Move to beginning of chapter.
5805 Most minor modes run mode hooks too.
5806 `add-hook' can handle void hooks or hooks whose value is a single
5807 function.
5808 (Major Modes): Update Menu.
5809 (Major Mode Basics): New node, split off from `Major Modes'.
5810 (Major Mode Conventions): Correct xref. Explain how to handle
5811 auto-mode-alist if the major mode command has an autoload cookie.
5812 (Auto Major Mode): Major update. Add magic-mode-alist.
5813 (Derived Modes): Major update.
5814 (Mode Line Format): Update Menu.
5815 (Mode Line Basics): New node, split off from `Mode Line Format'.
5816
5817 * loading.texi (Autoload): Mention `autoload cookie' as synonym
5818 for `magic autoload comment'. Add index entries and anchor.
5819
58202005-05-14 Richard M. Stallman <rms@gnu.org>
5821
5822 * tips.texi (Coding Conventions): Explain how important it is
5823 that just loading certain files not change Emacs behavior.
5824
5825 * modes.texi (Defining Minor Modes): Define define-global-minor-mode.
5826
58272005-05-12 Lute Kamstra <lute@gnu.org>
5828
5829 * modes.texi (Generic Modes): Update.
5830 (Major Modes): Refer to node "Generic Modes".
5831
5832 * elisp.texi (Top): Update to the current structure of the manual.
5833 * processes.texi (Processes): Add menu description.
5834 * customize.texi (Customization): Add menu descriptions.
5835
58362005-05-11 Thien-Thi Nguyen <ttn@gnu.org>
5837
5838 * processes.texi (Signals to Processes)
5839 (Low-Level Network): Fix typos.
5840
58412005-05-11 Lute Kamstra <lute@gnu.org>
5842
5843 * elisp.texi (Top): Add some nodes from the chapter "Major and
5844 Minor Modes" to the detailed node listing.
5845
58462005-05-10 Richard M. Stallman <rms@gnu.org>
5847
5848 * keymaps.texi (Extended Menu Items): Menu item filter functions
5849 can be called at any time.
5850
58512005-05-08 Luc Teirlinck <teirllm@auburn.edu>
5852
5853 * variables.texi (File Local Variables): `(hack-local-variables t)'
5854 now also checks whether a mode is specified in the local variables
5855 list.
5856
58572005-05-05 Kevin Ryde <user42@zip.com.au>
5858
5859 * display.texi (The Echo Area): Correct format function cross
5860 reference.
5861
58622005-05-05 Luc Teirlinck <teirllm@auburn.edu>
5863
5864 * variables.texi (Variable Aliases): Change description of
5865 `define-obsolete-variable-alias'.
5866
5867 * functions.texi (Functions): Add "Obsolete Functions" to menu.
5868 (Defining Functions): Add xref.
5869 (Obsolete Functions): New node.
5870 (Function Safety): Standardize capitalization of section title.
5871
5872 * frames.texi (Pop-Up Menus): Complete description of `x-popup-menu'.
5873 (Dialog Boxes): Complete description of `x-popup-dialog'.
5874
58752005-05-04 Richard M. Stallman <rms@gnu.org>
5876
5877 * commands.texi (Interactive Codes): Fix Texinfo usage.
5878 Document U more clearly.
5879
58802005-05-01 Luc Teirlinck <teirllm@auburn.edu>
5881
5882 * variables.texi (Variable Aliases): `make-obsolete-variable' is a
5883 function and not a macro.
5884
5885 * frames.texi (Pop-Up Menus): Correct and clarify description of
5886 `x-popup-menu'.
5887 (Dialog Boxes): Clarify description of `x-popup-dialog'.
5888
58892005-05-01 Richard M. Stallman <rms@gnu.org>
5890
5891 * edebug.texi (Checking Whether to Stop): Fix previous change.
5892
58932005-05-01 Luc Teirlinck <teirllm@auburn.edu>
5894
5895 * display.texi: Fix typos and Texinfo usage.
5896
5897 * edebug.texi (Checking Whether to Stop): executing-macro ->
5898 executing-kbd-macro.
5899
59002005-05-01 Richard M. Stallman <rms@gnu.org>
5901
5902 * display.texi (Invisible Text): Correct add-to-invisibility-spec.
5903
59042005-04-30 Richard M. Stallman <rms@gnu.org>
5905
5906 * files.texi (Magic File Names): Document `operations' property.
5907
59082005-04-29 Lute Kamstra <lute@gnu.org>
5909
5910 * modes.texi (Generic Modes): New node.
5911 (Major Modes): Add it to the menu.
5912 (Derived Modes): Add "derived mode" to concept index.
5913
59142005-04-28 Lute Kamstra <lute@gnu.org>
5915
5916 * modes.texi (Defining Minor Modes): Fix previous change.
5917 (Font Lock Mode): Simplify.
5918 (Font Lock Basics): Say that font-lock-defaults is buffer-local
5919 when set and that some parts are optional. Add cross references.
5920 (Search-based Fontification): Say how to specify font-lock-keywords.
5921 Add cross references. Add font-lock-multiline to index.
5922 Move font-lock-keywords-case-fold-search here from node "Other Font
5923 Lock Variables". Document font-lock-add-keywords and
5924 font-lock-remove-keywords.
5925 (Other Font Lock Variables): Move font-lock-keywords-only,
5926 font-lock-syntax-table, font-lock-beginning-of-syntax-function,
5927 and font-lock-syntactic-face-function to node "Syntactic Font
5928 Lock". Move font-lock-keywords-case-fold-search to node
5929 "Search-based Fontification". Document font-lock-inhibit-thing-lock
5930 and font-lock-{,un}fontify-{buffer,region}-function.
5931 (Precalculated Fontification): Remove reference to deleted variable
5932 font-lock-core-only.
5933 (Faces for Font Lock): Add font-lock-comment-delimiter-face.
5934 (Syntactic Font Lock): Add intro. Move font-lock-keywords-only,
5935 font-lock-syntax-table, font-lock-beginning-of-syntax-function,
5936 and font-lock-syntactic-face-function here from node "Other Font
5937 Lock Variables". Move font-lock-syntactic-keywords to "Setting
5938 Syntax Properties". Add cross references.
5939 (Setting Syntax Properties): New node.
5940 Move font-lock-syntactic-keywords here from "Syntactic Font Lock".
5941 * syntax.texi (Syntax Properties): Add cross reference.
5942 * hooks.texi (Standard Hooks): Add Font-Lock hooks.
5943
59442005-04-26 Richard M. Stallman <rms@gnu.org>
5945
5946 * display.texi (Defining Faces):
5947 Document `default' elements of defface spec.
5948
5949 * modes.texi (Major Mode Conventions): Explain customizing ElDoc mode.
5950
5951 * variables.texi (Variable Aliases): Clarify text.
5952
59532005-04-25 Chong Yidong <cyd@stupidchicken.com>
5954
5955 * windows.texi (Window Hooks): Remove reference to obsolete Lazy Lock.
5956
59572005-04-25 Luc Teirlinck <teirllm@auburn.edu>
5958
5959 * hooks.texi (Standard Hooks): Most minor modes have mode hooks too.
5960
59612005-04-24 Eli Zaretskii <eliz@gnu.org>
5962
5963 * syntax.texi (Syntax Table Internals): Elaborate documentation of
5964 syntax-after and syntax-class.
5965
5966 * files.texi (Changing Files): Fix last change's cross-reference.
5967 (Unique File Names): Don't mention "numbers" in the documentation
5968 of make-temp-file and make-temp-name.
5969
59702005-04-23 Richard M. Stallman <rms@gnu.org>
5971
5972 * files.texi (Changing Files): Document MUSTBENEW arg in copy-file.
5973
59742005-04-22 Nick Roberts <nickrob@snap.net.nz>
5975
5976 * windows.texi (Cyclic Window Ordering): Clarify window-list.
5977
59782005-04-22 Nick Roberts <nickrob@snap.net.nz>
5979
5980 * variables.texi (Variable Aliases): Describe make-obsolete-variable
5981 and define-obsolete-variable-alias.
5982
59832005-04-22 Kim F. Storm <storm@cua.dk>
5984
5985 * symbols.texi (Symbol Plists): Remove safe-get, as get is now safe.
5986 (Other Plists): Remove safe-plist-get, as plist-get is now safe.
5987
59882005-04-21 Lute Kamstra <lute@gnu.org>
5989
5990 * lists.texi (Association Lists): Document rassq-delete-all.
5991
59922005-04-19 Richard M. Stallman <rms@gnu.org>
5993
5994 * modes.texi (Search-based Fontification): Explain that
5995 facespec is an expression to be evaluated.
5996
59972005-04-19 Kevin Ryde <user42@zip.com.au>
5998
5999 * streams.texi (Output Functions): Fix xref.
6000 * strings.texi (String Conversion): Fix xref.
6001
60022005-04-19 Kim F. Storm <storm@cua.dk>
6003
6004 * symbols.texi (Symbol Plists): Add safe-get.
6005 Mention that `get' may signal an error.
6006
60072005-04-18 Nick Roberts <nickrob@snap.net.nz>
6008
6009 * customize.texi (Variable Definitions): Replace tooltip-mode
6010 example with save-place.
6011
60122005-04-17 Richard M. Stallman <rms@gnu.org>
6013
6014 * buffers.texi (Indirect Buffers): Clarify.
6015
6016 * positions.texi (Positions): Clarify converting marker to integer.
6017
6018 * strings.texi (String Basics): Mention string-match; clarify.
6019
60202005-04-08 Lute Kamstra <lute@gnu.org>
6021
6022 * modes.texi (Search-based Fontification): Fix cross references.
6023 Use consistent terminology. Document anchored highlighting.
6024
60252005-04-05 Lute Kamstra <lute@gnu.org>
6026
6027 * modes.texi (Defining Minor Modes): Document :group keyword
6028 argument and its default value.
6029
60302005-04-03 Lute Kamstra <lute@gnu.org>
6031
6032 * hooks.texi (Standard Hooks): Add some hooks. Add cross
6033 references and/or descriptions. Delete major mode hooks; mention
6034 them as a category instead. Rename or delete obsolete hooks.
6035
60362005-04-02 Richard M. Stallman <rms@gnu.org>
6037
6038 * nonascii.texi (Coding System Basics): Another wording cleanup.
6039
60402005-04-01 Richard M. Stallman <rms@gnu.org>
6041
6042 * nonascii.texi (Coding System Basics): Clarify previous change.
6043
60442005-04-01 Kenichi Handa <handa@m17n.org>
6045
6046 * nonascii.texi (Coding System Basics): Describe about roundtrip
6047 identity of coding systems.
6048
60492005-03-29 Chong Yidong <cyd@stupidchicken.com>
6050
6051 * text.texi (Buffer Contents): Add filter-buffer-substring and
6052 buffer-substring-filters.
6053
60542005-03-26 Chong Yidong <cyd@stupidchicken.com>
6055
6056 * anti.texi (Antinews): Mention `G' interactive code.
6057
6058 * tips.texi (Compilation Tips): Mention benchmark.el.
6059
60602005-03-27 Luc Teirlinck <teirllm@auburn.edu>
6061
6062 * modes.texi (Other Font Lock Variables): `font-lock-fontify-block'
6063 is now bound to M-o M-o.
6064
6065 * keymaps.texi (Prefix Keys): `facemenu-keymap' is now on M-o.
6066
60672005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
6068
6069 * calendar.texi: Delete file (and move contents to emacs-xtra.texi
6070 in the Emacs Manual).
6071 * Makefile.in (srcs): Remove calendar.texi.
6072 * makefile.w32-in (srcs): Remove calendar.texi.
6073 * display.texi (Display): Change name of next node.
6074 * os.texi (System In): Change name of previous node.
6075 * elisp.texi (Top): Remove Calendar references.
6076 * vol1.texi (Top): Remove Calendar references.
6077 * vol2.texi (Top): Remove Calendar references.
6078
60792005-03-25 Richard M. Stallman <rms@gnu.org>
6080
6081 * display.texi (Standard Faces, Fringe Bitmaps, Customizing Bitmaps):
6082 Cleanup previous change.
6083
60842005-03-25 Chong Yidong <cyd@stupidchicken.com>
6085
6086 * display.texi (Face Attributes): Faces earlier in an :inherit
6087 list take precedence.
6088 (Scroll Bars): Fix description of vertical-scroll-bars.
6089 Document frame-current-scroll-bars and window-current-scroll-bars.
6090
6091 * markers.texi (The Mark): Document temporary Transient Mark mode.
6092
6093 * minibuf.texi (Reading File Names):
6094 Document read-file-name-completion-ignore-case.
6095
6096 * positions.texi (Screen Lines): Document nil for width argument
6097 to compute-motion.
6098
60992005-03-23 Kim F. Storm <storm@cua.dk>
6100
6101 * display.texi (Standard Faces): Other faces used in the fringe
6102 implicitly inherits from the fringe face.
6103 (Fringe Bitmaps): FACE in right-fringe and left-fringe display
6104 properties implicitly inherits from fringe face.
6105 (Customizing Bitmaps): Likewise for set-fringe-bitmap-face.
6106
61072005-03-20 Chong Yidong <cyd@stupidchicken.com>
6108
6109 * display.texi (Invisible Text): State default value of
6110 line-move-ignore-invisible.
6111 (Managing Overlays): Document remove-overlays.
6112 (Standard Faces): Document escape-glyph face.
6113
6114 * minibuf.texi (Reading File Names): Document read-file-name-function.
6115
6116 * modes.texi (Other Font Lock Variables):
6117 Document font-lock-lines-before.
6118
6119 * positions.texi (Skipping Characters): skip-chars-forward allows
6120 character classes.
6121
61222005-03-18 Lute Kamstra <lute@gnu.org>
6123
6124 * edebug.texi (Instrumenting Macro Calls): Fix another typo.
6125
61262005-03-17 Richard M. Stallman <rms@gnu.org>
6127
6128 * text.texi (Undo): Document extensible undo entries.
6129
6130 * searching.texi (String Search, Regexp Search): Cleanups.
6131
6132 * nonascii.texi (Character Codes): Minor fix.
6133
6134 * display.texi (Display Property): Explain the significance
6135 of having text properties that are eq.
6136 (Other Display Specs): Explain string as display spec.
6137
6138 * commands.texi (Interactive Codes): Document G option.
6139
61402005-03-17 Chong Yidong <cyd@stupidchicken.com>
6141
6142 * text.texi (Filling): Add sentence-end-without-period and
6143 sentence-end-without-space.
6144 (Changing Properties): Minor fix.
6145
6146 * anti.texi: Total rewrite.
6147
61482005-03-15 Lute Kamstra <lute@gnu.org>
6149
6150 * edebug.texi (Instrumenting Macro Calls): Fix typos.
6151
61522005-03-08 Kim F. Storm <storm@cua.dk>
6153
6154 * display.texi (Specified Space): Property :width is support on
6155 non-graphic terminals, :height is not.
6156
61572005-03-07 Richard M. Stallman <rms@gnu.org>
6158
6159 * display.texi (Overlay Arrow, Fringe Bitmaps, Customizing Bitmaps):
6160 Now subnodes of Fringes.
6161 (Overlay Arrow): Document overlay-arrow-variable-list.
6162 (Fringe Size/Pos): New node, broken out of Fringes.
6163 (Display): Explain clearing vs redisplay better.
6164 (Truncation): Clarify use of bitmaps.
6165 (The Echo Area): Clarify the uses of the echo area.
6166 Add max-mini-window-height.
6167 (Progress): Clarify.
6168 (Invisible Text): Explain that main loop moves point out.
6169 (Selective Display): Say "hidden", not "invisible".
6170 (Managing Overlays): Move up. Describe relation to Undo here.
6171 (Overlay Properties): Clarify intro.
6172 (Finding Overlays): Explain return values when nothing found.
6173 (Width): truncate-string-to-width has added arg.
6174 (Displaying Faces): Clarify and update mode line face handling.
6175 (Face Functions): Minor cleanup.
6176 (Conditional Display): Merge into Other Display Specs.
6177 (Pixel Specification, Other Display Specs): Minor cleanups.
6178 (Images, Image Descriptors): Minor cleanups.
6179 (GIF Images): Patents have expired.
6180 (Showing Images): Explain default text for insert-image.
6181 (Manipulating Button Types): Merge into Manipulating Buttons.
6182 (Making Buttons): Explain return values.
6183 (Button Buffer Commands): Add xref.
6184 (Inverse Video): Update mode-line-inverse-video.
6185 (Display Table Format): Clarify.
6186 (Active Display Table): Give defaults for window-display-table.
6187
6188 * calendar.texi (Calendar Customizing): calendar-holiday-marker
6189 and calendar-today-marker are strings, not chars.
6190 (Holiday Customizing): Minor fix.
6191
6192 * internals.texi (Writing Emacs Primitives): Update `or' example.
6193 Update limit on # args of subr.
6194
6195 * edebug.texi (Using Edebug): Arrow is in fringe.
6196 (Instrumenting): Arg to eval-defun works without loading edebug.
6197 (Edebug Execution Modes): Add xref.
6198
6199 * customize.texi (Common Keywords): Clarify :require.
6200 Mention :version here.
6201 (Variable Definitions, Group Definitions): Not here.
6202 (Variable Definitions): Clarify symbol arg to :initialize and :set fns.
6203
62042005-03-07 Chong Yidong <cyd@stupidchicken.com>
6205 * nonascii.texi (Text Representations): Clarify position-bytes.
6206 (Character Sets): Add list-charset-chars.
6207 (Scanning Charsets): Add charset-after.
6208 (Encoding and I/O): Minor fix.
6209
62102005-03-06 Richard M. Stallman <rms@gnu.org>
6211
6212 * windows.texi (Vertical Scrolling): Get rid of "Emacs 21".
6213 (Resizing Windows): Likewise.
6214
6215 * text.texi (Change Hooks): Get rid of "Emacs 21".
6216
6217 * strings.texi (Formatting Strings): Get rid of "Emacs 21".
6218
6219 * streams.texi (Output Variables): Get rid of "Emacs 21".
6220
6221 * searching.texi (Regexp Special, Char Classes): Get rid of "Emacs 21".
6222
6223 * os.texi (Translating Input): Replace flow-control example
6224 with a less obsolete example that uses `keyboard-translate'.
6225
6226 * objects.texi (Hash Table Type, Circular Objects):
6227 Get rid of "Emacs 21".
6228
6229 * modes.texi (Mode Line Format): Get rid of "Emacs 21".
6230 (Mode Line Data, Properties in Mode, Header Lines): Likewise.
6231
6232 * minibuf.texi (Minibuffer Misc): Get rid of "Emacs 21".
6233
6234 * lists.texi (List Elements, Building Lists): Get rid of "Emacs 21".
6235
6236 * keymaps.texi (Menu Separators, Tool Bar): Get rid of "Emacs 21".
6237 (Menu Bar): Fix when menu-bar-update-hook is called.
6238
6239 * hash.texi (Hash Tables): Get rid of "Emacs 21".
6240
6241 * frames.texi (Text Terminal Colors): Get rid of "Emacs 21",
6242 and make it read better.
6243
6244 * files.texi (Writing to Files): Get rid of "Emacs 21".
6245 (Unique File Names): Likewise.
6246
6247 * elisp.texi: Update Emacs version to 22.
6248
6249 * display.texi (Forcing Redisplay): Get rid of "Emacs 21".
6250 (Overlay Properties, Face Attributes): Likewise.
6251 (Managing Overlays): Fix punctuation.
6252 (Attribute Functions): Clarify set-face-font; get rid of
6253 info about old Emacs versions.
6254 (Auto Faces, Font Lookup, Display Property, Images):
6255 Get rid of "Emacs 21".
6256
6257 * calendar.texi (Calendar Customizing): Get rid of "Emacs 21".
6258
62592005-03-05 Richard M. Stallman <rms@gnu.org>
6260
6261 * debugging.texi (Error Debugging): Remove stack-trace-on-error.
6262
62632005-03-04 Lute Kamstra <lute@gnu.org>
6264
6265 * debugging.texi (Error Debugging): Document stack-trace-on-error.
6266
62672005-03-03 Lute Kamstra <lute@gnu.org>
6268
6269 * edebug.texi (Instrumenting Macro Calls): Fix typo.
6270
62712005-03-01 Lute Kamstra <lute@gnu.org>
6272
6273 * debugging.texi (Debugger Commands): Update `j'.
6274
62752005-02-28 Lute Kamstra <lute@gnu.org>
6276
6277 * debugging.texi (Debugging): Fix typo.
6278 (Error Debugging): Document eval-expression-debug-on-error.
6279 (Function Debugging): Update example.
6280 (Using Debugger): Mention starred stack frames.
6281 (Debugger Commands): Document `j' and `l'.
6282 (Invoking the Debugger): `d' and `j' exit recursive edit too.
6283 Update the messages that the debugger displays.
6284 (Internals of Debugger): Add cross reference. Update example.
6285 (Excess Open): Minor improvement.
6286 (Excess Close): Minor improvement.
6287
62882005-02-26 Richard M. Stallman <rms@gnu.org>
6289
6290 * tips.texi (Coding Conventions): Clarify.
6291 Put all the major mode key reservations together.
6292 Mention the Mouse-1 => Mouse-2 conventions.
6293
6294 * syntax.texi (Syntax Class Table): Clarify.
6295 (Syntax Table Functions): syntax-after moved from here.
6296 (Syntax Table Internals): syntax-after moved to here.
6297 (Parsing Expressions): Update info on number of values
6298 and what's meaningful in the STATE argument.
6299 (Categories): Fix typo.
6300
6301 * sequences.texi (Arrays): Cleanup.
6302 (Char-Tables): Clarify.
6303
6304 * processes.texi (Deleting Processes): Cleanups, add xref.
6305 (Subprocess Creation): Explain nil in exec-path. Cleanup.
6306 (Process Information): set-process-coding-system, some args optional.
6307 (Input to Processes): Explain various types for PROCESS args.
6308 Rename them from PROCESS-NAME to PROCESS.
6309 (Signals to Processes): Likewise.
6310 (Decoding Output): Cleanup.
6311 (Query Before Exit): Clarify.
6312
6313 * os.texi (Startup Summary): Correct the options; add missing ones.
6314 (Terminal Output, Batch Mode): Clarify.
6315 (Flow Control): Node deleted.
6316
6317 * markers.texi (The Mark): Clarify.
6318
6319 * macros.texi (Expansion): Cleanup.
6320 (Indenting Macros): indent-spec allows ints, not floats.
6321
6322 * keymaps.texi (Keymaps): Clarify.
6323 (Format of Keymaps): Update lisp-mode-map example.
6324 (Active Keymaps, Key Lookup): Clarify.
6325 (Changing Key Bindings): Add xref to `kbd'.
6326 (Key Binding Commands, Simple Menu Items): Clarify.
6327 (Mouse Menus, Menu Bar): Clarify.
6328 (Menu Example): Replace print example with menu-bar-replace-menu.
6329
6330 * help.texi (Documentation Basics): Add function-documentation prop.
6331
6332 * elisp.texi (Top): Don't refer to Flow Control node.
6333
6334 * commands.texi (Command Overview): Improve xrefs.
6335 (Adjusting Point): Adjusting point applies to intangible and invis.
6336 (Key Sequence Input): Doc extra read-key-sequence args.
6337 Likewise for read-key-sequence-vector.
6338
6339 * backups.texi (Rename or Copy): Minor fix.
6340 (Numbered Backups): For version-control, say the default.
6341 (Auto-Saving): make-auto-save-file-name example is simplified.
6342
6343 * advice.texi (Advising Functions): Don't imply one part of Emacs
6344 should advise another part. Markup changes.
6345 (Defining Advice): Move transitional para.
6346 (Activation of Advice): Cleanup.
6347 Explain if COMPILE is nil or negative.
6348
6349 * abbrevs.texi (Abbrev Expansion): Clarify, fix typo.
6350
63512005-02-24 Lute Kamstra <lute@gnu.org>
6352
6353 * modes.texi (Defining Minor Modes): Explain that INIT-VALUE,
6354 LIGHTER, and KEYMAP can be omitted when KEYWORD-ARGS are used.
6355
63562005-02-23 Lute Kamstra <lute@gnu.org>
6357
6358 * modes.texi (Defining Minor Modes): define-minor-mode can be used
6359 to define global minor modes as well.
6360
6361 * display.texi (Managing Overlays): overlay-buffer returns nil for
6362 deleted overlays.
6363
63642005-02-22 Kim F. Storm <storm@cua.dk>
6365
6366 * minibuf.texi (Basic Completion): Allow symbols in addition to
6367 strings in try-completion and all-completions.
6368
63692005-02-14 Lute Kamstra <lute@gnu.org>
6370
6371 * elisp.texi (Top): Remove reference to deleted node.
6372
6373 * lists.texi (Lists): Remove reference to deleted node.
6374 (Cons Cells): Fix typo.
6375
6376 * loading.texi (Where Defined): Fix typo.
6377
63782005-02-14 Richard M. Stallman <rms@gnu.org>
6379
6380 * variables.texi (Creating Buffer-Local): change-major-mode-hook
6381 is useful for discarding some minor modes.
6382
6383 * symbols.texi (Symbol Components): Reorder examples.
6384
6385 * streams.texi (Input Functions): State standard-input default.
6386 (Output Variables): State standard-output default.
6387
6388 * objects.texi (Printed Representation): Clarify read syntax vs print.
6389 (Floating Point Type): Explain meaning better.
6390 (Symbol Type): Explain uniqueness better.
6391 (Cons Cell Type): Explain empty list sooner. CAR and CDR later.
6392 List examples sooner.
6393 (Box Diagrams): New subnode broken out.
6394 Some examples moved from old Lists as Boxes node.
6395 (Dotted Pair Notation): Clarify intro.
6396 (Array Type): Clarify.
6397 (Type Predicates): Add hash-table-p.
6398
6399 * numbers.texi (Integer Basics): Clarify radix explanation.
6400 (Predicates on Numbers): Minor clarification.
6401 (Comparison of Numbers): Minor clarification. Clarify eql.
6402 Typos in min, max.
6403 (Math Functions): Clarify overflow in expt.
6404
6405 * minibuf.texi (Text from Minibuffer): Minor clarification.
6406 Mention arrow keys.
6407
6408 * loading.texi (Autoload): defun's doc string overrides autoload's
6409 doc string.
6410 (Repeated Loading): Modernize "add to list" examples.
6411 (Where Defined): Finish updating table of load-history elts.
6412
6413 * lists.texi (List-related Predicates): Minor wording improvement.
6414 (Lists as Boxes): Node deleted.
6415 (Building Lists): Explain trivial cases of number-sequence.
6416
6417 * hash.texi (Hash Tables): Add desc to menu items.
6418 (Creating Hash): Explain "full" means "make larger".
6419 (Hash Access): Any object can be a key.
6420 State value of maphash.
6421
6422 * functions.texi (What Is a Function): Wording cleanup.
6423 (Function Documentation): Minor cleanup.
6424 Explain purpose of calling convention at end of doc string.
6425 (Function Names): Wording cleanup.
6426 (Calling Functions): Wording cleanup.
6427 Explain better how funcall calls the function.
6428 (Function Cells): Delete example of saving and redefining function.
6429
6430 * control.texi (Combining Conditions): Wording cleanup.
6431 (Iteration): dolist and dotimes bind VAR locally.
6432 (Cleanups): Xref to Atomic Changes.
6433
6434 * compile.texi (Byte Compilation): Delete 19.29 info.
6435 (Compilation Functions): Macros' difficulties don't affect defsubst.
6436 (Docs and Compilation): Delete 19.29 info.
6437
64382005-02-10 Richard M. Stallman <rms@gnu.org>
6439
6440 * objects.texi (Symbol Type): Minor correction.
6441
64422005-02-06 Lute Kamstra <lute@gnu.org>
6443
6444 * modes.texi (Example Major Modes): Fix typos.
6445
64462005-02-06 Richard M. Stallman <rms@gnu.org>
6447
6448 * text.texi (Margins): fill-nobreak-predicate can be one function.
6449
6450 * strings.texi (Modifying Strings): clear-string can make unibyte.
6451 (Formatting Strings): format gives error if values missing.
6452
6453 * positions.texi (Character Motion): Mention default arg
6454 for forward-char. backward-char refers to forward-char.
6455 (Word Motion): Mention default arg for forward-word.
6456 (Buffer End Motion): Mention default arg for beginning-of-buffer.
6457 Simplify end-of-buffer.
6458 (Text Lines): Mention default arg for forward-line.
6459 (List Motion): Mention default arg for beginning/end-of-defun.
6460 (Skipping Characters): Minor fixes in explaining character-set.
6461
6462 * modes.texi (Major Mode Conventions): Mention "system abbrevs".
6463 Mode inheritance applies only when default-major-mode is nil.
6464 Clarifications.
6465 (Example Major Modes): Update Text mode and Lisp mode examples.
6466 (Minor Mode Conventions): Mention define-minor-mode at top.
6467 (Defining Minor Modes): In Hungry example, don't define C-M-DEL.
6468 (Mode Line Format): Update mode line face display info.
6469 (Properties in Mode): Mention effect of risky vars.
6470 (Imenu): Define imenu-add-to-menubar.
6471 (Font Lock Mode): Add descriptions to menu lines.
6472 (Faces for Font Lock): Add font-lock-doc-face.
6473
64742005-02-05 Lute Kamstra <lute@gnu.org>
6475
6476 * text.texi (Maintaining Undo): Remove obsolete function.
6477
64782005-02-05 Eli Zaretskii <eliz@gnu.org>
6479
6480 * frames.texi (Color Names): Add pointer to the X docs about RGB
6481 color specifications. Improve indexing.
6482 (Text Terminal Colors): Replace the description of RGB values by
6483 an xref to "Color Names".
6484
64852005-02-03 Richard M. Stallman <rms@gnu.org>
6486
6487 * windows.texi (Basic Windows): Add cursor-in-non-selected-windows.
6488 Clarify.
6489 (Selecting Windows): Clarify save-selected-window.
6490 (Cyclic Window Ordering): Clarify walk-windows.
6491 (Window Point): Clarify.
6492 (Window Start): Add comment to example.
6493 (Resizing Windows): Add `interactive' specs in examples.
6494 Document fit-window-to-buffer.
6495
6496 * text.texi (User-Level Deletion): just-one-space takes numeric arg.
6497 (Undo, Maintaining Undo): Clarify last change.
6498 (Sorting): In sort-numeric-fields, explain about octal and hex.
6499 Mention sort-numeric-base.
6500 (Format Properties): Add xref for hard newlines.
6501
6502 * frames.texi (Window Frame Parameters): Explain pixel=char on tty.
6503 (Pop-Up Menus): Fix typo.
6504 (Color Names): Explain all types of color names.
6505 Explain color-values on B&W terminal.
6506 (Text Terminal Colors): Explain "rgb values" are lists. Fix arg names.
6507
6508 * files.texi (File Locks): Not supported on MS systems.
6509 (Testing Accessibility): Clarify.
6510
6511 * edebug.texi (Printing in Edebug): Fix edebug-print-circle.
6512 (Coverage Testing): Fix typo.
6513
6514 * commands.texi (Misc Events): Remove stray space.
6515
6516 * buffers.texi (Buffer Names): Clarify generate-new-buffer-name.
6517 (Modification Time): Clarify when visited-file-modtime returns 0.
6518 (The Buffer List): Clarify bury-buffer.
6519 (Killing Buffers): Clarify.
6520 (Indirect Buffers): Add clone-indirect-buffer.
6521
65222005-02-02 Matt Hodges <MPHodges@member.fsf.org>
6523
6524 * edebug.texi (Printing in Edebug): Fix default value of
6525 edebug-print-circle.
6526 (Coverage Testing): Fix displayed frequency count data.
6527
65282005-02-02 Luc Teirlinck <teirllm@auburn.edu>
6529
6530 * text.texi (Maintaining Undo): Add `undo-outer-limit'.
6531
65322005-02-02 Kim F. Storm <storm@cua.dk>
6533
6534 * text.texi (Undo) <buffer-undo-list>: Describe `apply' elements.
6535
65362005-01-29 Eli Zaretskii <eliz@gnu.org>
6537
6538 * commands.texi (Misc Events): Describe the help-echo event.
6539
6540 * text.texi (Special Properties) <help-echo>: Use `pos'
6541 consistently in description of the help-echo property.
6542 Use @code{nil} instead of @var{nil}.
6543
6544 * display.texi (Overlay Properties): Fix the index entry for
6545 help-echo overlay property.
6546
6547 * customize.texi (Type Keywords): Uncomment the xref to the
6548 help-echo property documentation.
6549
65502005-01-23 Kim F. Storm <storm@cua.dk>
6551
6552 * windows.texi (Window Start): Fix `pos-visible-in-window-p'
6553 return value. Third element FULLY replaced by PARTIAL which
6554 specifies number of invisible pixels if row is only partially visible.
6555 (Textual Scrolling): Mention auto-window-vscroll.
6556 (Vertical Scrolling): New defvar auto-window-vscroll.
6557
65582005-01-16 Luc Teirlinck <teirllm@auburn.edu>
6559
6560 * keymaps.texi (Changing Key Bindings): `suppress-keymap' now uses
6561 command remapping.
6562
65632005-01-15 Richard M. Stallman <rms@gnu.org>
6564
6565 * display.texi (Defining Images): Mention DATA-P arg of create-image.
6566
65672005-01-14 Kim F. Storm <storm@cua.dk>
6568
6569 * commands.texi (Accessing Events): Add WHOLE arg to posn-at-x-y.
6570
6571 * text.texi (Links and Mouse-1): Fix string and vector item.
6572
65732005-01-13 Richard M. Stallman <rms@gnu.org>
6574
6575 * keymaps.texi (Active Keymaps): Rewrite the text, and update the
6576 descriptions of overriding-local-map and overriding-terminal-local-map.
6577
6578 * text.texi (Links and Mouse-1): Clarify text.
6579
65802005-01-13 Kim F. Storm <storm@cua.dk>
6581
6582 * modes.texi (Emulating Mode Line): Update format-mode-line entry.
6583
65842005-01-13 Francis Litterio <franl@world.std.com> (tiny change)
6585
6586 * keymaps.texi (Active Keymaps): Fix overriding-local-map description.
6587
65882005-01-12 Kim F. Storm <storm@cua.dk>
6589
6590 * text.texi (Links and Mouse-1): Rename section from Enabling
6591 Mouse-1 to Following Links. Change xrefs.
6592 Add examples for define-button-type and define-widget.
6593
6594 * display.texi (Button Properties, Button Buffer Commands):
6595 Clarify mouse-1 and follow-link functionality.
6596
65972005-01-12 Richard M. Stallman <rms@gnu.org>
6598
6599 * text.texi (Enabling Mouse-1 to Follow Links): Redo prev. change.
6600
6601 * display.texi (Beeping): Fix Texinfo usage.
6602
6603 * modes.texi (Emulating Mode Line): Doc FACE arg in format-header-line.
6604
66052005-01-11 Kim F. Storm <storm@cua.dk>
6606
6607 * display.texi (Button Properties, Button Buffer Commands):
6608 Mention mouse-1 binding. Add follow-link keyword.
6609
6610 * text.texi (Text Properties): Add "Enable Mouse-1" to submenu.
6611 (Enabling Mouse-1 to Follow Links): New subsection.
6612
66132005-01-06 Richard M. Stallman <rms@gnu.org>
6614
6615 * text.texi (Special Properties): Minor change.
6616
6617 * os.texi (Timers): Clarify previous change.
6618
6619 * modes.texi (Emulating Mode Line): format-mode-line requires 1 arg.
6620
66212005-01-01 Luc Teirlinck <teirllm@auburn.edu>
6622
6623 * display.texi (Face Attributes): Correct xref to renamed node.
6624
66252005-01-01 Richard M. Stallman <rms@gnu.org>
6626
6627 * display.texi (Face Attributes): Describe hex color specs.
6628
66292004-12-31 Richard M. Stallman <rms@gnu.org>
6630
6631 * os.texi (Timers): Update previous change.
6632
66332004-12-30 Kim F. Storm <storm@cua.dk>
6634
6635 * display.texi (Line Height): Total line-height is now specified
6636 in line-height property of form (HEIGHT TOTAL). Swap (FACE . RATIO)
6637 in cons cells. (nil . RATIO) is relative to actual line height.
6638 Use line-height `t' instead of `0' to get minimum height.
6639
66402004-12-29 Richard M. Stallman <rms@gnu.org>
6641
6642 * os.texi (Timers): Discuss timers vs editing the buffer and undo.
6643
66442004-12-28 Richard M. Stallman <rms@gnu.org>
6645
6646 * commands.texi (Quitting): Clarify value of with-local-quit.
6647
6648 * elisp.texi (Top): Fix previous change.
6649
6650 * loading.texi (Loading): Fix previous change.
6651
66522004-12-27 Richard M. Stallman <rms@gnu.org>
6653
6654 * Makefile.in (MAKEINFO): Specify --force.
6655
6656 * buffers.texi (Killing Buffers): Add buffer-save-without-query.
6657
6658 * modes.texi (Emulating Mode Line): Document format's BUFFER arg.
6659
6660 * display.texi (Line Height): Further clarify.
6661
6662 * elisp.texi (Top): Update Loading submenu.
6663
6664 * loading.texi (Where Defined): New node.
6665 (Unloading): load-history moved to Where Defined.
6666
66672004-12-21 Richard M. Stallman <rms@gnu.org>
6668
6669 * commands.texi (Event Input Misc): Add while-no-input.
6670
66712004-12-11 Richard M. Stallman <rms@gnu.org>
6672
6673 * display.texi (Line Height): Rewrite text for clarity.
6674
66752004-12-11 Kim F. Storm <storm@cua.dk>
6676
6677 * display.texi (Display): Add node "Line Height" to menu.
6678 (Line Height): New node. Move full description of line-spacing
6679 and line-height text properties here from text.texi.
6680 (Scroll Bars): Add vertical-scroll-bar variable.
6681
6682 * frames.texi (Window Frame Parameters): Remove line-height defvar.
6683
6684 * locals.texi (Standard Buffer-Local Variables): Fix xref for
6685 line-spacing and vertical-scroll-bar.
6686
6687 * text.texi (Special Properties): Just mention line-spacing and
6688 line-height here, add xref to new "Line Height" node.
6689
66902004-12-09 Thien-Thi Nguyen <ttn@gnu.org>
6691
6692 * frames.texi (Window Frame Parameters): New @defvar for `line-spacing'.
6693
6694 * locals.texi (Standard Buffer-Local Variables):
6695 Add @xref for `line-spacing'.
6696
66972004-12-05 Richard M. Stallman <rms@gnu.org>
6698
6699 * Makefile.in (maintainer-clean): Remove the info files
6700 in $(infodir) where they are created.
6701
67022004-12-03 Richard M. Stallman <rms@gnu.org>
6703
6704 * windows.texi (Selecting Windows): get-lru-window and
6705 get-largest-window don't consider dedicated windows.
6706
6707 * text.texi (Undo): Document undo-in-progress.
6708
67092004-11-26 Richard M. Stallman <rms@gnu.org>
6710
6711 * locals.texi (Standard Buffer-Local Variables): Undo prev change.
6712 Remove a few vars that are not always buffer-local.
6713
67142004-11-24 Luc Teirlinck <teirllm@auburn.edu>
6715
6716 * locals.texi (Standard Buffer-Local Variables): Comment out
6717 xref's to non-existent node `Yet to be written'.
6718
67192004-11-24 Richard M. Stallman <rms@gnu.org>
6720
6721 * processes.texi (Synchronous Processes): Grammar fix.
6722
6723 * numbers.texi (Comparison of Numbers): Add eql.
6724
6725 * locals.texi (Standard Buffer-Local Variables): Add many vars.
6726
6727 * intro.texi (Printing Notation): Fix previous change.
6728
6729 * display.texi (Customizing Bitmaps): Move indicate-buffer-boundaries
6730 and default-indicate-buffer-boundaries from here.
6731 (Usual Display): To here.
6732 (Scroll Bars): Add scroll-bar-mode and scroll-bar-width.
6733 (Usual Display): Move tab-width up.
6734
6735 * customize.texi (Variable Definitions):
6736 Replace show-paren-mode example with tooltip-mode.
6737 (Simple Types, Composite Types, Defining New Types):
6738 Minor cleanups.
6739
67402004-11-21 Jesper Harder <harder@ifa.au.dk>
6741
6742 * processes.texi (Synchronous Processes, Output from Processes):
6743 Markup fix.
6744
67452004-11-20 Richard M. Stallman <rms@gnu.org>
6746
6747 * positions.texi (Skipping Characters): skip-chars-forward
6748 now handles char classes.
6749
6750 * intro.texi (Printing Notation): Avoid confusion of `print'
6751 when explaining @print.
6752
6753 * macros.texi (Argument Evaluation): Fix 1st `for' expansion example.
6754
6755 * display.texi (Display Table Format): Minor fix.
6756
6757 * streams.texi (Output Functions): Fix print example.
6758
6759 * Makefile.in (elisp): New target.
6760 (dist): Depend on $(infodir)/elisp, not elisp.
6761 Copy the info files from $(infodir).
6762
6763 * minibuf.texi (Text from Minibuffer): Document KEEP-ALL arg in
6764 read-from-minibuffer.
6765
6766 * searching.texi (Regexp Search): Rename that to search-spaces-regexp.
6767
67682004-11-19 Richard M. Stallman <rms@gnu.org>
6769
6770 * searching.texi (Regexp Search): Add search-whitespace-regexp.
6771
67722004-11-19 CHENG Gao <chenggao@gmail.com> (tiny change)
6773
6774 * tips.texi (Coding Conventions): Fix typo.
6775
67762004-11-16 Richard M. Stallman <rms@gnu.org>
6777
6778 * tips.texi (Coding Conventions): Separate defvar and require
6779 methods to avoid warnings. Use require only when there are many
6780 functions and variables from that package.
6781
6782 * minibuf.texi (Minibuffer Completion): When ignoring case,
6783 predicate must not be case-sensitive.
6784
6785 * debugging.texi (Function Debugging, Explicit Debug): Clarified.
6786 (Test Coverage): Don't talk about "splotches". Clarified.
6787
67882004-11-16 Thien-Thi Nguyen <ttn@gnu.org>
6789
6790 * frames.texi (Window Frame Parameters): Fix typo.
6791
67922004-11-15 Kim F. Storm <storm@cua.dk>
6793
6794 * symbols.texi (Other Plists): Note that plist-get may signal error.
6795 Add safe-plist-get.
6796
67972004-11-15 Thien-Thi Nguyen <ttn@gnu.org>
6798
6799 * modes.texi (Font Lock Basics): Fix typo.
6800
68012004-11-08 Richard M. Stallman <rms@gnu.org>
6802
6803 * syntax.texi (Syntax Table Functions): Add syntax-after.
6804
68052004-11-06 Lars Brinkhoff <lars@nocrew.org>
6806
6807 * os.texi (Processor Run Time): New section documenting
6808 get-internal-run-time.
6809
68102004-11-06 Eli Zaretskii <eliz@gnu.org>
6811
6812 * Makefile.in (install, maintainer-clean): Don't use "elisp-*" as
6813 it nukes elisp-cover.texi.
6814 (dist): Change elisp-[0-9] to elisp-[1-9], as there could be no
6815 elisp-0 etc.
6816
68172004-11-05 Luc Teirlinck <teirllm@auburn.edu>
6818
6819 * commands.texi (Keyboard Macros): Document `append' return value
6820 of `defining-kbd-macro'.
6821
68222004-11-01 Richard M. Stallman <rms@gnu.org>
6823
6824 * commands.texi (Interactive Call): Add called-interactively-p.
6825
68262004-10-29 Simon Josefsson <jas@extundo.com>
6827
6828 * minibuf.texi (Reading a Password): Revert.
6829
68302004-10-28 Richard M. Stallman <rms@gnu.org>
6831
6832 * frames.texi (Display Feature Testing): Explain about "vendor".
6833
68342004-10-27 Richard M. Stallman <rms@gnu.org>
6835
6836 * commands.texi (Interactive Codes): `N' uses numeric prefix,
6837 not raw. Clarify `n'.
6838 (Interactive Call): Rewrite interactive-p, focusing on when
6839 and how to use it.
6840 (Misc Events): Clarify previous change.
6841
6842 * advice.texi (Simple Advice): Clarify what job the example does.
6843 (Around-Advice): Clarify ad-do-it.
6844 (Activation of Advice): An option of ad-default-compilation-action
6845 is `never', not `nil'.
6846
68472004-10-26 Kim F. Storm <storm@cua.dk>
6848
6849 * commands.texi (Interactive Codes): Add U code letter.
6850
68512004-10-25 Simon Josefsson <jas@extundo.com>
6852
6853 * minibuf.texi (Reading a Password): Add.
6854
68552004-10-24 Jason Rumney <jasonr@gnu.org>
6856
6857 * commands.texi (Misc Events): Remove mouse-wheel. Add wheel-up
6858 and wheel-down.
6859
68602004-10-24 Kai Grossjohann <kai.grossjohann@gmx.net>
6861
6862 * processes.texi (Synchronous Processes): Document process-file.
6863
68642004-10-22 Kenichi Handa <handa@m17n.org>
6865
6866 * text.texi (translate-region): Document that it accepts also a
6867 char-table.
6868
68692004-10-22 David Ponce <david@dponce.com>
6870
6871 * windows.texi (Resizing Windows): Document the `preserve-before'
6872 argument of the functions `enlarge-window' and `shrink-window'.
6873
68742004-10-19 Jason Rumney <jasonr@gnu.org>
6875
6876 * makefile.w32-in (elisp): Change order of arguments to makeinfo.
6877
68782004-10-09 Luc Teirlinck <teirllm@auburn.edu>
6879
6880 * text.texi (Filling): Add anchor for definition of
6881 `sentence-end-double-space'.
6882
6883 * searching.texi (Regexp Example): Update description of how
6884 Emacs currently recognizes the end of a sentence.
6885 (Standard Regexps): Update definition of the variable
6886 `sentence-end'. Add definition of the function `sentence-end'.
6887
68882004-10-08 Paul Pogonyshev <pogonyshev@gmx.net>
6889
6890 * display.texi (Progress): New node.
6891
68922004-10-05 Kim F. Storm <storm@cua.dk>
6893
6894 * display.texi (Fringe Bitmaps): Update fringe-bitmaps-at-pos.
6895
68962004-09-29 Kim F. Storm <storm@cua.dk>
6897
6898 * display.texi (Fringe Bitmaps): Use symbols rather than numbers
6899 to identify bitmaps. Remove -fringe-bitmap suffix for standard
6900 fringe bitmap symbols, as they now have their own namespace.
6901 (Customizing Bitmaps) <define-fringe-bitmap>: Clarify bit ordering
6902 vs. pixels. Signal error if no free bitmap slots.
6903 (Pixel Specification): Change IMAGE to @var{image}.
6904
69052004-09-28 Richard M. Stallman <rms@gnu.org>
6906
6907 * text.texi (Special Properties): Clarify line-spacing and line-height.
6908
6909 * searching.texi (Regexp Search): Add looking-back.
6910
69112004-09-25 Luc Teirlinck <teirllm@auburn.edu>
6912
6913 * display.texi: Correct typos.
6914 (Image Descriptors): Correct xref's.
6915
69162004-09-25 Richard M. Stallman <rms@gnu.org>
6917
6918 * text.texi (Special Properties): Cleanups in `cursor'.
6919 Rewrites in `line-height' and `line-spacing'; exchange them.
6920
6921 * display.texi (Fringes): Rewrite previous change.
6922 (Fringe Bitmaps): Merge text from Display Fringe Bitmaps. Rewrite.
6923 (Display Fringe Bitmaps): Node deleted, text moved.
6924 (Customizing Bitmaps): Split off from Fringe Bitmaps. Rewrite.
6925 (Scroll Bars): Clarify set-window-scroll-bars.
6926 (Pointer Shape): Rewrite.
6927 (Specified Space): Clarify :align-to, etc.
6928 (Pixel Specification): Use @var. Clarify new text.
6929 (Other Display Specs): Clarify `slice'.
6930 (Image Descriptors): Cleanups.
6931 (Showing Images): Cleanups.
6932
69332004-09-24 Luc Teirlinck <teirllm@auburn.edu>
6934
6935 * hooks.texi (Standard Hooks): Add `after-change-major-mode-hook'.
6936
6937 * modes.texi: Various minor changes in addition to:
6938 (Major Mode Conventions): Final call to `run-mode-hooks' should
6939 not be inside the `delay-mode-hooks' form.
6940 (Mode Hooks): New node.
6941 (Hooks): Delete obsolete example.
6942 Move definitions of `run-mode-hooks' and `delay-mode-hooks' to new
6943 node "Mode Hooks".
6944
69452004-09-22 Luc Teirlinck <teirllm@auburn.edu>
6946
6947 * display.texi: Correct various typos.
6948 (Display): Rename node "Pointer Shapes" to "Pointer
6949 Shape". (There is already a node called "Pointer Shapes" in
6950 frames.texi.)
6951 (Images): Remove non-existent node "Image Slices" from menu.
6952
69532004-09-23 Kim F. Storm <storm@cua.dk>
6954
6955 * text.texi (Special Properties): Add `cursor', `pointer',
6956 `line-height', and `line-spacing' properties.
6957
6958 * display.texi (Display): Add 'Fringe Bitmaps' and 'Pointer
6959 Shapes' to menu.
6960 (Standard Faces): Doc fix for fringe face.
6961 (Fringes): Add `overflow-newline-into-fringe' and
6962 'indicate-buffer-boundaries'.
6963 (Fringe Bitmaps, Pointer Shapes): New nodes.
6964 (Display Property): Add 'Pixel Specification' and 'Display Fringe
6965 Bitmaps' to menu.
6966 (Specified Space): Describe pixel width and height.
6967 (Pixel Specification): New node.
6968 (Other Display Specs): Add `slice' property.
6969 (Display Fringe Bitmaps): New node.
6970 (Images): Add 'Image Slices' to menu.
6971 (Image Descriptors): Add `:pointer' and `:map' properties.
6972 (Showing Images): Add slice arg to `insert-image'.
6973 Add 'insert-sliced-image'.
6974
69752004-09-20 Richard M. Stallman <rms@gnu.org>
6976
6977 * commands.texi (Key Sequence Input):
6978 Clarify downcasing in read-key-sequence.
6979
69802004-09-08 Juri Linkov <juri@jurta.org>
6981
6982 * minibuf.texi (Minibuffer History): Add `history-delete-duplicates'.
6983
69842004-09-07 Luc Teirlinck <teirllm@auburn.edu>
6985
6986 * locals.texi (Standard Buffer-Local Variables):
6987 Add `buffer-auto-save-file-format'.
6988 * internals.texi (Buffer Internals): Describe new
6989 auto_save_file_format field of the buffer structure.
6990 * files.texi (Format Conversion): `auto-save-file-format' has been
6991 renamed `buffer-auto-save-file-format'.
6992
69932004-08-27 Luc Teirlinck <teirllm@auburn.edu>
6994
6995 * abbrevs.texi (Abbrev Expansion): `abbrev-start-location' can be
6996 an integer or a marker.
6997 (Abbrev Expansion): Replace example for `pre-abbrev-expand-hook'.
6998
69992004-08-22 Richard M. Stallman <rms@gnu.org>
7000
7001 * modes.texi (Major Mode Conventions): Discuss rebinding of
7002 standard key bindings.
7003
70042004-08-18 Kim F. Storm <storm@cua.dk>
7005
7006 * processes.texi (Accepting Output): Add `just-this-one' arg to
7007 `accept-process-output'.
7008 (Output from Processes): New var `process-adaptive-read-buffering'.
7009
70102004-08-10 Luc Teirlinck <teirllm@auburn.edu>
7011
7012 * keymaps.texi: Various changes in addition to:
7013 (Keymap Terminology): `kbd' uses same syntax as Edit Macro mode.
7014 Give more varied examples for `kbd'.
7015 (Creating Keymaps): Char tables have slots for all characters
7016 without modifiers.
7017 (Active Keymaps): `overriding-local-map' and
7018 `overriding-terminal-local-map' also override text property and
7019 overlay keymaps.
7020 (Functions for Key Lookup): Mention OLP arg to `current-active-maps'.
7021 (Scanning Keymaps): `accessible-keymaps' uses `[]' instead of `""'
7022 to denote a prefix of no events.
7023 `map-keymap' includes parent's bindings _recursively_.
7024 Clarify and correct description of `where-is-internal'.
7025 Mention BUFFER-OR-NAME arg to `describe-bindings'.
7026 (Menu Example): For menus intended for use with the keyboard, the
7027 menu items should be bound to characters or real function keys.
7028
70292004-08-08 Luc Teirlinck <teirllm@auburn.edu>
7030
7031 * objects.texi (Character Type): Reposition `@anchor' to prevent
7032 double space inside sentence in Info.
7033
7034 * hooks.texi (Standard Hooks): `disabled-command-hook' has been
7035 renamed to `disabled-command-function'.
7036 * commands.texi (Key Sequence Input): Remove unnecessary anchor.
7037 (Command Loop Info): Replace reference to it.
7038 (Disabling Commands): `disabled-command-hook' has been renamed to
7039 `disabled-command-function'.
7040
70412004-08-07 Luc Teirlinck <teirllm@auburn.edu>
7042
7043 * os.texi (Translating Input): Only non-prefix bindings in
7044 `key-translation-map' override actual key bindings. Warn about
7045 possible indirect effect of actual key bindings on non-prefix
7046 bindings in `key-translation-map'.
7047
70482004-08-06 Luc Teirlinck <teirllm@auburn.edu>
7049
7050 * minibuf.texi (High-Level Completion): Add anchor for definition
7051 of `read-variable'.
7052
7053 * commands.texi: Various changes in addition to:
7054 (Using Interactive): Clarify description of `interactive-form'.
7055 (Interactive Call): Mention default for KEYS argument to
7056 `call-interactively'.
7057 (Command Loop Info): Clarify description of `this-command-keys'.
7058 Mention KEEP-RECORD argument to `clear-this-command-keys'.
7059 Value of `last-event-frame' can be `macro'.
7060 (Repeat Events): `double-click-fuzz' is also used to distinguish
7061 clicks and drags.
7062 (Classifying Events): Clarify descriptions of `event-modifiers'
7063 `event-basic-type' and `event-convert-list'.
7064 (Accessing Events): `posn-timestamp' takes POSITION argument.
7065 (Quoted Character Input): Clarify description of
7066 `read-quoted-char' and fix example.
7067 (Quitting): Add `with-local-quit'.
7068 (Disabling Commands): Correct and clarify descriptions of
7069 `enable-command' and `disable-command'.
7070 Mention what happens if `disabled-command-hook' is nil.
7071 (Keyboard Macros): Mention LOOPFUNC arg to `execute-kbd-macro'.
7072 Describe `executing-kbd-macro' instead of obsolete `executing-macro'.
7073
70742004-07-24 Luc Teirlinck <teirllm@auburn.edu>
7075
7076 * frames.texi: Various changes in addition to:
7077 (Creating Frames): Expand and clarify description of `make-frame'.
7078 (Window Frame Parameters): Either none or both of the `icon-left'
7079 and `icon-top' parameters must be specified. Put descriptions of
7080 `menu-bar-lines' and `toolbar-lines' closer together and change
7081 them accordingly.
7082 (Frame Titles): `multiple-frames' is not guaranteed to be accurate
7083 except while processing `frame-title-format' or `icon-title-format'.
7084 (Deleting Frames): Correct description of `delete-frame'.
7085 Non-nil return values of `frame-live-p' are like those of `framep'.
7086 (Frames and Windows): Mention return value of
7087 `set-frame-selected-window'.
7088 (Visibility of Frames): Mention `force' argument to
7089 `make-frame-invisible'. `frame-visible-p' returns t for all
7090 frames on text-only terminals.
7091 (Frame Configurations): Restoring a frame configuration does not
7092 restore deleted frames.
7093 (Window System Selections): `x-set-selection' returns DATA.
7094 (Resources): Add example.
7095 (Display Feature Testing): Clarify descriptions of
7096 `display-pixel-height', `display-pixel-width', `x-server-version'
7097 and `x-server-vendor'.
7098
7099 * windows.texi (Choosing Window): Add anchor.
7100 * minibuf.texi (Minibuffer Misc): Add anchor.
7101
71022004-07-23 John Paul Wallington <jpw@gnu.org>
7103
7104 * macros.texi (Defining Macros): Declaration keyword for setting
7105 Edebug spec is `debug' not `edebug'.
7106
71072004-07-19 Luc Teirlinck <teirllm@auburn.edu>
7108
7109 * windows.texi: Various small changes in addition to:
7110 (Window Point): Mention return value of `set-window-point'.
7111 (Window Start): `pos-visible-in-window-p' disregards horizontal
7112 scrolling. Explain return value if PARTIALLY is non-nil.
7113 (Vertical Scrolling): Mention PIXELS-P argument to `window-vscroll'
7114 and `set-window-vscroll'.
7115 (Size of Window): The argument WINDOW to `window-inside-edges',
7116 `window-pixel-edges' and `window-inside-pixel-edges' is optional.
7117 (Resizing Windows): Explain return value of
7118 `shrink-window-if-larger-than-buffer'.
7119 `window-size-fixed' automatically becomes buffer local when set.
7120 (Window Configurations): Explain return value of
7121 `set-window-configuration'.
7122
7123 * minibuf.texi (Minibuffer Misc): Add anchor for
7124 `minibuffer-scroll-window'.
7125
7126 * positions.texi (Text Lines): Add anchor for `count-lines'.
7127
71282004-07-17 Richard M. Stallman <rms@gnu.org>
7129
7130 * display.texi (Overlay Properties): Adding `evaporate' prop
7131 deletes empty overlay immediately.
7132
7133 * abbrevs.texi (Abbrev Expansion): Clarify pre-abbrev-expand-hook,
7134 fix example.
7135
71362004-07-16 Jim Blandy <jimb@redhat.com>
7137
7138 * searching.texi (Regexp Backslash): Document new \_< and \_>
7139 operators.
7140
71412004-07-16 Juanma Barranquero <lektu@terra.es>
7142
7143 * display.texi (Images): Fix Texinfo usage.
7144
71452004-07-14 Luc Teirlinck <teirllm@auburn.edu>
7146
7147 * buffers.texi (Modification Time): `visited-file-modtime' now
7148 returns a list of two integers, instead of a cons.
7149
71502004-07-13 Luc Teirlinck <teirllm@auburn.edu>
7151
7152 * windows.texi: Various changes in addition to:
7153 (Splitting Windows): Add `split-window-keep-point'.
7154
71552004-07-09 Richard M. Stallman <rms@gnu.org>
7156
7157 * frames.texi (Input Focus): Minor fix.
7158
71592004-07-07 Luc Teirlinck <teirllm@auburn.edu>
7160
7161 * frames.texi (Input Focus): Clarify descriptions of
7162 `select-frame-set-input-focus' and `select-frame'.
7163
71642004-07-06 Luc Teirlinck <teirllm@auburn.edu>
7165
7166 * os.texi: Various small changes in addition to:
7167 (Killing Emacs): Expand and clarify description of
7168 `kill-emacs-query-functions' and `kill-emacs-hook'.
7169 (System Environment): Expand and clarify description of `getenv'
7170 and `setenv'.
7171 (Timers): Clarify description of `run-at-time'.
7172 (Translating Input): Correct description of
7173 `extra-keyboard-modifiers'.
7174 (Flow Control): Correct description of `enable-flow-control'.
7175
71762004-07-06 Thien-Thi Nguyen <ttn@gnu.org>
7177
7178 * os.texi: Update copyright.
7179 (Session Management): Grammar fix.
7180 Clarify which Emacs does the restarting.
7181 Use @samp for *scratch* buffer.
7182
71832004-07-04 Alan Mackenzie <acm@muc.de>
7184
7185 * frames.texi (Input Focus): Add documentation for
7186 `select-frame-set-input-focus'. Replace refs to non-existent
7187 `switch-frame' with `select-frame'. Minor corrections and tidying
7188 up of text-only terminal stuff.
7189
71902004-07-02 Richard M. Stallman <rms@gnu.org>
7191
7192 * files.texi (Saving Buffers): Cleanup write-contents-function.
7193 (Magic File Names): Cleanup file-remote-p.
7194
71952004-07-02 Kai Großjohann <kai@emptydomain.de>
7196
7197 * files.texi (Magic File Names): `file-remote-p' returns an
7198 identifier of the remote system, not just t.
7199
72002004-07-02 David Kastrup <dak@gnu.org>
7201
7202 * searching.texi (Entire Match Data): Add explanation about new
7203 match-data behavior when @var{integers} is non-nil.
7204
72052004-06-24 Richard M. Stallman <rms@gnu.org>
7206
7207 * commands.texi (Misc Events): Describe usr1-signal, usr2-signal event.
7208
7209 * customize.texi (Variable Definitions): Note about doc strings
7210 and :set.
7211
7212 * keymaps.texi (Keymap Terminology): Document `kbd'.
7213 (Changing Key Bindings, Key Binding Commands): Use kbd in examples.
7214
7215 * display.texi (Invisible Text): Setting buffer-invisibility-spec
7216 makes it buffer-local.
7217
7218 * files.texi (Saving Buffers): Correct previous change.
7219
7220 * commands.texi (Accessing Events):
7221 Clarify posn-col-row and posn-actual-col-row.
7222
72232004-06-24 David Ponce <david.ponce@wanadoo.fr>
7224
7225 * commands.texi (Accessing Events): New functions
7226 posn-at-point and posn-at-x-y. Add example to posn-x-y.
7227
72282004-06-23 Luc Teirlinck <teirllm@auburn.edu>
7229
7230 * lists.texi, files.texi, processes.texi, macros.texi, hash.texi:
7231 * frames.texi, buffers.texi, backups.texi, variables.texi:
7232 * loading.texi, eval.texi, functions.texi, control.texi:
7233 * symbols.texi, minibuf.texi: Reposition @anchor's.
7234
7235 * help.texi: Various small changes in addition to the following.
7236 (Describing Characters): Describe PREFIX argument to
7237 `key-description'. Correct and clarify definition of
7238 `text-char-description'. Describe NEED-VECTOR argument to
7239 `read-kbd-macro'.
7240 (Help Functions): Clarify definition of `apropos'.
7241
72422004-06-23 Lars Hansen <larsh@math.ku.dk>
7243
7244 * files.texi (Saving Buffers): Correct description of
7245 `write-contents-functions'.
7246
72472004-06-21 Juanma Barranquero <lektu@terra.es>
7248
7249 * display.texi (Images): Remove redundant @vindex directives.
7250 Rewrite `image-library-alist' doc in active voice.
7251
72522004-06-14 Juanma Barranquero <lektu@terra.es>
7253
7254 * display.texi (Images): Document new delayed library loading,
7255 variable `image-library-alist' and (existing but undocumented)
7256 function `image-type-available-p'.
7257
72582004-06-05 Richard M. Stallman <rms@gnu.org>
7259
7260 * minibuf.texi (Minibuffer Completion): For INITIAL arg,
7261 refer the user to the Initial Input node.
7262 (Text from Minibuffer): Likewise.
7263 (Initial Input): New node. Document this feature
7264 and say it is mostly deprecated.
7265
72662004-05-30 Richard M. Stallman <rms@gnu.org>
7267
7268 * loading.texi (Named Features): Clarify return value
7269 and meaning of NOERROR.
7270
7271 * variables.texi (File Local Variables): Minor cleanup.
7272
72732004-05-30 Michael Albinus <michael.albinus@gmx.de>
7274
7275 * files.texi (Magic File Names): Add `file-remote-p' as operation
7276 of file name handlers.
7277
72782004-05-29 Richard M. Stallman <rms@gnu.org>
7279
7280 * modes.texi (Minor Mode Conventions): (-) has no special meaning
7281 as arg to a minor mode command.
7282
72832004-05-22 Richard M. Stallman <rms@gnu.org>
7284
7285 * syntax.texi (Syntax Class Table): Word syntax not just for English.
7286
7287 * streams.texi (Output Variables): Doc float-output-format.
7288
7289 * searching.texi (Regexp Special): Nested repetition can be infloop.
7290
7291 * eval.texi (Eval): Increasing max-lisp-eval-depth can cause
7292 real stack overflow.
7293
7294 * compile.texi: Minor cleanups.
7295
72962004-05-22 Luc Teirlinck <teirllm@dms.auburn.edu>
7297
7298 * lists.texi (Cons Cells): Explain dotted lists, true lists,
7299 circular lists.
7300 (List Elements): Explain handling of circular and dotted lists.
7301
73022004-05-19 Thien-Thi Nguyen <ttn@gnu.org>
7303
7304 * modes.texi (Search-based Fontification): Fix typo.
7305
73062004-05-10 Juanma Barranquero <lektu@terra.es>
7307
7308 * modes.texi (Mode Line Variables): Fix description of
7309 global-mode-string, which is now after which-func-mode, not the
7310 buffer name.
7311
73122004-05-07 Lars Hansen <larsh@math.ku.dk>
7313
7314 * modes.texi (Desktop Save Mode): Add.
7315 (Modes): Add menu entry Desktop Save Mode.
7316
7317 * hooks.texi: Add desktop-after-read-hook,
7318 desktop-no-desktop-file-hook and desktop-save-hook.
7319
7320 * locals.texi: Add desktop-save-buffer.
7321
73222004-04-30 Jesper Harder <harder@ifa.au.dk>
7323
7324 * display.texi: emacs -> Emacs.
7325
73262004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
7327
7328 * files.texi (Changing Files): Document set-file-times.
7329
73302004-04-23 Juanma Barranquero <lektu@terra.es>
7331
7332 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
7333
73342004-04-18 Jesper Harder <harder@ifa.au.dk>
7335
7336 * tips.texi (Coding Conventions): defopt -> defcustom.
7337
73382004-04-16 Luc Teirlinck <teirllm@auburn.edu>
7339
7340 * sequences.texi: Various clarifications.
7341
73422004-04-14 Luc Teirlinck <teirllm@auburn.edu>
7343
7344 * buffers.texi (Read Only Buffers): Mention optional ARG to
7345 `toggle-read-only'.
7346
73472004-04-14 Nick Roberts <nick@nick.uklinux.net>
7348
7349 * windows.texi (Selecting Windows): Note that get-lru-window
7350 returns a full-width window if possible.
7351
73522004-04-13 Luc Teirlinck <teirllm@auburn.edu>
7353
7354 * buffers.texi: Various changes in addition to:
7355 (Buffer File Name): Add `find-buffer-visiting'.
7356 (Buffer Modification): Mention optional ARG to `not-modified'.
7357 (Indirect Buffers): Mention optional CLONE argument to
7358 `make-indirect-buffer'.
7359
7360 * files.texi: Various changes in addition to:
7361 (Visiting Functions): `find-file-hook' is now a normal hook.
7362 (File Name Expansion): Explain difference between the way that
7363 `expand-file-name' and `file-truename' treat `..'.
7364 (Contents of Directories): Mention optional ID-FORMAT argument to
7365 `directory-files-and-attributes'.
7366 (Format Conversion): Mention new optional CONFIRM argument to
7367 `format-write-file'.
7368
73692004-04-12 Miles Bader <miles@gnu.org>
7370
7371 * macros.texi (Expansion): Add description of `macroexpand-all'.
7372
73732004-04-05 Jesper Harder <harder@ifa.au.dk>
7374
7375 * variables.texi (Variable Aliases):
7376 Mention cyclic-variable-indirection.
7377
7378 * errors.texi (Standard Errors): Ditto.
7379
73802004-04-04 Luc Teirlinck <teirllm@auburn.edu>
7381
7382 * backups.texi: Various small changes in addition to:
7383 (Making Backups): Mention return value of `backup-buffer'.
7384 (Auto-Saving): Mention optional FORCE argument to
7385 `delete-auto-save-file-if-necessary'.
7386 (Reverting): Mention optional PRESERVE-MODES argument to
7387 `revert-buffer'. Correct description of `revert-buffer-function'.
7388
73892004-03-22 Juri Linkov <juri@jurta.org>
7390
7391 * sequences.texi (Sequence Functions): Replace xref to `Vectors'
7392 with `Vector Functions'.
7393
7394 * text.texi (Sorting): Add missing quote.
7395
73962004-03-14 Luc Teirlinck <teirllm@auburn.edu>
7397
7398 * intro.texi (Lisp History): Replace xref to `cl' manual with
7399 inforef.
7400
74012004-03-12 Richard M. Stallman <rms@gnu.org>
7402
7403 * intro.texi (Version Info): Add arg to emacs-version.
7404 (Lisp History): Change xref to CL manual.
7405
74062004-03-09 Luc Teirlinck <teirllm@auburn.edu>
7407
7408 * minibuf.texi (Completion Commands): Add xref to Emacs manual
7409 for Partial Completion mode.
7410
74112004-03-07 Thien-Thi Nguyen <ttn@gnu.org>
7412
7413 * customize.texi: Fix typo. Remove eol whitespace.
7414
74152004-03-04 Richard M. Stallman <rms@gnu.org>
7416
7417 * processes.texi: Fix typos.
7418
7419 * lists.texi (Building Lists): Minor clarification.
7420
7421 * hash.texi (Creating Hash): Correct the meaning of t for WEAK
7422 in make-hash-table.
7423
74242004-02-29 Juanma Barranquero <lektu@terra.es>
7425
7426 * makefile.w32-in (clean, maintainer-clean): Use $(DEL) instead of
7427 rm, and ignore exit code.
7428
74292004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
7430
7431 * display.texi (Defining Faces): Add description for min-colors.
7432 Update example.
7433
74342004-02-23 Luc Teirlinck <teirllm@auburn.edu>
7435
7436 * abbrevs.texi: Various corrections and clarifications in addition
7437 to the following:
7438 (Abbrev Tables): Delete add-abbrev (as suggested by RMS).
7439
74402004-02-22 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
7441
7442 * calendar.texi (Holiday Customizing): Quote arg of holiday-sexp.
7443
74442004-02-21 Luc Teirlinck <teirllm@auburn.edu>
7445
7446 * text.texi: Various small changes in addition to the following:
7447 (User-Level Deletion): Mention optional BACKWARD-ONLY argument
7448 to delete-horizontal-space.
7449 (Kill Functions, Yanking, Low-Level Kill Ring): Clarify and correct
7450 description of yank-handler text property at various places.
7451
7452 * frames.texi (Window System Selections): Add anchor.
7453
7454 * syntax.texi (Syntax Table Functions): Clarify and correct
7455 descriptions of make-syntax-table and copy-syntax-table.
7456 (Motion and Syntax): Clarify SYNTAXES argument to
7457 skip-syntax-forward.
7458 (Parsing Expressions): Mention that the return value of
7459 parse-partial-sexp is currently a list of ten rather than nine
7460 elements.
7461 (Categories): Various corrections and clarifications.
7462
74632004-02-17 Luc Teirlinck <teirllm@auburn.edu>
7464
7465 * markers.texi (Marker Insertion Types): Minor change.
7466
7467 * locals.texi (Standard Buffer-Local Variables):
7468 * commands.texi (Interactive Codes, Using Interactive):
7469 * functions.texi (Related Topics): Fix xrefs.
7470
74712004-02-16 Luc Teirlinck <teirllm@auburn.edu>
7472
7473 * lists.texi (Sets And Lists): Update description of delete-dups.
7474
74752004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
7476
7477 * keymaps.texi (Tool Bar): tool-bar-item => tool-bar-button.
7478
74792004-02-16 Jan Djärv <jan.h.d@swipnet.se>
7480
7481 * frames.texi (Parameter Access): frame-parameters arg is optional.
7482 modify-frame-parameters handles nil for FRAME.
7483 (Window Frame Parameters): menu-bar-lines and tool-bar-lines
7484 are all-or-nothing for certain toolkits.
7485 Mention parameter wait-for-wm.
7486 (Frames and Windows): In frame-first-window and frame-selected-window
7487 the arg is optional.
7488 (Input Focus): In redirect-frame-focus the second arg is optional.
7489 (Window System Selections): Mention selection type CLIPBOARD.
7490 Mention data-type UTF8_STRING.
7491 Mention numbering of cut buffers.
7492 (Resources): Describe x-resource-name.
7493
74942004-02-16 Richard M. Stallman <rms@gnu.org>
7495
7496 * windows.texi (Buffers and Windows): Delete false table
7497 about all-frames.
7498
7499 * syntax.texi (Parsing Expressions): Delete old caveat
7500 about parse-sexp-ignore-comments.
7501
7502 * streams.texi (Output Variables): Add print-quoted.
7503
7504 * lists.texi (Building Lists): Minor cleanup.
7505
7506 * hash.texi (Creating Hash): Correct and clarify doc of WEAK values.
7507
7508 * display.texi (Overlays): Explain overlays use markers.
7509 (Managing Overlays): Explain front-advance and rear-advance
7510 in more detail.
7511
7512 * loading.texi (Unloading): Document unload-feature-special-hooks.
7513 Get rid of fns-NNN.el file.
7514
75152004-02-16 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
7516
7517 * help.texi (Describing Characters): Fix text-char-description
7518 example output.
7519
7520 * edebug.texi (Using Edebug): Fix example.
7521
7522 * debugging.texi (Internals of Debugger): Fix return value.
7523
7524 * files.texi (Changing Files): Fix argname.
7525
7526 * calendar.texi: Fix parens, and default values.
7527
7528 * display.texi, frames.texi, internals.texi, modes.texi: Minor fixes.
7529 * nonascii.texi, objects.texi, os.texi: Minor fixes.
7530 * searching.texi, text.texi, tips.texi, windows.texi: Minor fixes.
7531
7532 * positions.texi (Text Lines): Don't add -1 in current-line.
7533
75342004-02-16 Richard M. Stallman <rms@gnu.org>
7535
7536 * compile.texi (Compiler Errors): if-boundp feature applies to cond.
7537
75382004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
7539
7540 * processes.texi (Low-Level Network): Fix a typo.
7541
75422004-02-12 Kim F. Storm <storm@cua.dk>
7543
7544 * display.texi (Fringes): Use consistent wording.
7545 Note that window-fringe's window arg is optional.
7546 (Scroll Bars): Use consistent wording.
7547
75482004-02-11 Luc Teirlinck <teirllm@auburn.edu>
7549
7550 * tips.texi (Comment Tips): Document the new conventions for
7551 commenting out code.
7552
75532004-02-07 Jan Djärv <jan.h.d@swipnet.se>
7554
7555 * positions.texi (Text Lines): Add missing end defun.
7556
75572004-02-07 Kim F. Storm <storm@cua.dk>
7558
7559 * positions.texi (Text Lines): Add line-number-at-pos.
7560
75612004-02-06 John Paul Wallington <jpw@gnu.org>
7562
7563 * display.texi (Button Properties, Button Buffer Commands):
7564 mouse-2 invokes button, not down-mouse-1.
7565
75662004-02-04 Jason Rumney <jasonr@gnu.org>
7567
7568 * makefile.w32-in: Sync with Makefile.in changes.
7569
75702004-02-03 Luc Teirlinck <teirllm@auburn.edu>
7571
7572 * minibuf.texi (Text from Minibuffer): Various corrections and
7573 clarifications.
7574 (Object from Minibuffer): Correct Lisp description of
7575 read-minibuffer.
7576 (Minibuffer History): Clarify description of cons values for
7577 HISTORY arguments.
7578 (Basic Completion): Various corrections and clarifications.
7579 Add completion-regexp-list.
7580 (Minibuffer Completion): Correct and clarify description of
7581 completing-read.
7582 (Completion Commands): Mention Partial Completion mode.
7583 Various other minor changes.
7584 (High-Level Completion): Various corrections and clarifications.
7585 (Reading File Names): Ditto.
7586 (Minibuffer Misc): Ditto.
7587
75882004-01-26 Luc Teirlinck <teirllm@auburn.edu>
7589
7590 * strings.texi (Text Comparison): assoc-string also matches
7591 elements of alists that are strings instead of conses.
7592 (Formatting Strings): Standardize Texinfo usage. Update index
7593 entries.
7594
75952004-01-20 Luc Teirlinck <teirllm@auburn.edu>
7596
7597 * lists.texi (Sets And Lists): Add delete-dups.
7598
75992004-01-15 Luc Teirlinck <teirllm@auburn.edu>
7600
7601 * edebug.texi (Instrumenting Macro Calls): `declare' is not a
7602 special form.
7603 * macros.texi (Defining Macros): Update description of `declare',
7604 which now is a macro.
7605 (Wrong Time): Fix typos.
7606
76072004-01-14 Luc Teirlinck <teirllm@auburn.edu>
7608
7609 * compile.texi (Compilation Functions): Expand descriptions of
7610 `compile-defun', `byte-compile-file', `byte-recompile-directory'
7611 and `batch-byte-compile'. In particular, mention and describe
7612 all optional arguments.
7613 (Disassembly): Correct and clarify the description of `disassemble'.
7614
76152004-01-11 Luc Teirlinck <teirllm@auburn.edu>
7616
7617 * searching.texi: Various small changes in addition to the
7618 following.
7619 (Regexp Example): Adapt to new value of `sentence-end'.
7620 (Regexp Functions): The PAREN argument to `regexp-opt' can be
7621 `words'.
7622 (Search and Replace): Add usage note for `perform-replace'.
7623 (Entire Match Data): Mention INTEGERS and REUSE arguments to
7624 `match-data'.
7625 (Standard Regexps): Update for new values of `paragraph-start'
7626 and `sentence-end'.
7627
76282004-01-07 Luc Teirlinck <teirllm@auburn.edu>
7629
7630 * files.texi (Saving Buffers): Clarify descriptions of
7631 `write-contents-functions' and `before-save-hook'.
7632 Make the defvar's for `before-save-hook' and `after-save-hook'
7633 into defopt's.
7634
76352004-01-07 Kim F. Storm <storm@cua.dk>
7636
7637 * commands.texi (Click Events): Describe new image and
7638 width/height elements of click events.
7639 (Accessing Events): Add posn-string, posn-image, and
7640 posn-object-width-height. Change posn-object to return either
7641 image or string object.
7642
76432004-01-01 Simon Josefsson <jas@extundo.com>
7644
7645 * hooks.texi (Standard Hooks): Add before-save-hook.
7646 * files.texi (Saving Buffers): Likewise.
7647
76482004-01-03 Richard M. Stallman <rms@gnu.org>
7649
7650 * frames.texi (Frames and Windows): Delete frame-root-window.
7651
76522004-01-03 Luc Teirlinck <teirllm@auburn.edu>
7653
7654 * eval.texi, hash.texi, help.texi, symbols.texi: Add anchors.
7655
7656 * functions.texi: Various small changes in addition to the
7657 following.
7658 (What Is a Function): `functionp' returns nil for macros.
7659 Clarify behavior of this and following functions for symbol arguments.
7660 (Function Documentation): Add `\' in front of (fn @var{arglist})
7661 and explain why.
7662 (Defining Functions): Mention DOCSTRING argument to `defalias'.
7663 Add anchor.
7664 (Mapping Functions): Add anchor. Unquote nil in mapcar* example.
7665
76662004-01-01 Miles Bader <miles@gnu.org>
7667
7668 * display.texi (Buttons): New section.
7669
76702003-12-31 Andreas Schwab <schwab@suse.de>
7671
7672 * numbers.texi (Math Functions): sqrt reports a domain-error
7673 error.
7674 (Float Basics): Use `(/ 0.0 0.0)' instead of `(sqrt -1.0)'.
7675
76762003-12-30 Luc Teirlinck <teirllm@auburn.edu>
7677
7678 * tips.texi (Documentation Tips): Update item on hyperlinks in
7679 documentation strings.
7680
7681 * errors.texi (Standard Errors): Various small corrections and
7682 additions.
7683
7684 * control.texi: Various small changes in addition to the
7685 following.
7686 (Signaling Errors): Provide some more details on how `signal'
7687 constructs the error message. Add anchor to the definition of
7688 `signal'.
7689 (Error Symbols): Describe special treatment of `quit'.
7690 (Cleanups): Rename BODY argument of `unwind-protect' to BODY-FORM
7691 to emphasize that it has to be a single form.
7692
7693 * buffers.texi: Add anchor.
7694
76952003-12-29 Richard M. Stallman <rms@gnu.org>
7696
7697 * windows.texi (Choosing Window): Add same-window-p, special-display-p.
7698 (Window Configurations): Add window-configuration-frame.
7699
7700 * variables.texi (Creating Buffer-Local): Add local-variable-if-set-p.
7701
7702 * text.texi (Examining Properties): Add get-char-property-and-overlay.
7703 Change arg name in get-char-property.
7704 (Special Properties): Update handling of keymap property.
7705
7706 * strings.texi (Modifying Strings): Add clear-string.
7707 (Text Comparison): Add assoc-string and remove
7708 assoc-ignore-case, assoc-ignore-representation.
7709
7710 * os.texi (Time of Day): Add set-time-zone-rule.
7711
7712 * numbers.texi (Math Functions): asin, acos, log, log10
7713 report domain-error errors.
7714
7715 * nonascii.texi (Converting Representations):
7716 Add multibyte-char-to-unibyte and unibyte-char-to-multibyte.
7717 (Encoding and I/O): Add file-name-coding-system.
7718
7719 * modes.texi (Search-based Fontification): Explain that
7720 face specs are symbols with face names as values.
7721
7722 * minibuf.texi (Minibuffer Misc): Add set-minibuffer-window.
7723
7724 * lists.texi (Building Lists): remq moved elsewhere.
7725 (Sets And Lists): remq moved here.
7726 (Association Lists): Refer to assoc-string.
7727
7728 * internals.texi (Garbage Collection): Add memory-use-counts.
7729
7730 * frames.texi (Frames and Windows): Add set-frame-selected-window
7731 and frame-root-window.
7732
7733 * files.texi (Contents of Directories):
7734 Add directory-files-and-attributes.
7735
7736 * display.texi (Refresh Screen): Add force-window-update.
7737 (Invisible Text): Explain about moving point out of invis text.
7738 (Overlay Properties): Add overlay-properties.
7739 (Managing Overlays): Add overlayp.
7740 (GIF Images): Invalid image number displays a hollow box.
7741
7742 * buffers.texi (Buffer Modification): Add restore-buffer-modified-p.
7743 (Killing Buffers): Add buffer-live-p.
7744
77452003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
7746
7747 * display.texi (Fringes): Fix typo "set-buffer-window".
7748
77492003-12-24 Luc Teirlinck <teirllm@auburn.edu>
7750
7751 * display.texi, eval.texi, help.texi, internals.texi, loading.texi:
7752 * nonascii.texi, processes.texi, tips.texi, variables.texi:
7753 Add or change various xrefs and anchors.
7754
7755 * commands.texi: Replace all occurrences of @acronym{CAR} with
7756 @sc{car}, for consistency with the rest of the Elisp manual.
7757 `car' and `cdr' are historically acronyms, but are no longer
7758 widely thought of as such.
7759
7760 * internals.texi (Pure Storage): Mention that `purecopy' does not
7761 copy text properties.
7762 (Object Internals): Now 29 bits are used (in most implementations)
7763 to address Lisp objects.
7764
7765 * variables.texi (Variables with Restricted Values): New node.
7766
7767 * objects.texi (Lisp Data Types): Mention that certain variables
7768 can only take on a restricted set of values and add an xref to
7769 the new node "Variables with Restricted Values".
7770
7771 * eval.texi (Function Indirection): Describe the errors that
7772 `indirect-function' can signal.
7773 (Eval): Clarify the descriptions of `eval-region' and `values'.
7774 Describe `eval-buffer' instead of `eval-current-buffer' and
7775 mention `eval-current-buffer' as an alias for `current-buffer'.
7776 Correct the description and mention all optional arguments.
7777
7778 * nonascii.texi: Various small changes in addition to the
7779 following.
7780 (Converting Representations): Clarify behavior of
7781 `string-make-multibyte' and `string-to-multibyte' for unibyte all
7782 ASCII arguments.
7783 (Character Sets): Document the variable `charset-list' and adapt
7784 the definition of the function `charset-list' accordingly.
7785 (Translation of Characters): Clarify use of generic characters in
7786 `make-translation-table'. Clarify and correct the description of
7787 the use of translation tables in encoding and decoding.
7788 (User-Chosen Coding Systems): Correct and clarify the description
7789 of `select-safe-coding-system'.
7790 (Default Coding Systems): Clarify description of
7791 `file-coding-system-alist'.
7792
77932003-11-30 Luc Teirlinck <teirllm@auburn.edu>
7794
7795 * strings.texi (Text Comparison): Correctly describe when two
7796 strings are `equal'. Combine and clarify descriptions of
7797 `assoc-ignore-case' and `assoc-ignore-representation'.
7798
7799 * objects.texi (Non-ASCII in Strings): Clarify description of
7800 when a string is unibyte or multibyte.
7801 (Bool-Vector Type): Update examples.
7802 (Equality Predicates): Correctly describe when two strings are
7803 `equal'.
7804
78052003-11-29 Luc Teirlinck <teirllm@auburn.edu>
7806
7807 * lists.texi (Building Lists): `append' no longer accepts integer
7808 arguments. Update the description of `number-sequence' to reflect
7809 recent changes.
7810 (Sets And Lists): Describe `member-ignore-case' after `member'.
7811
78122003-11-27 Kim F. Storm <storm@cua.dk>
7813
7814 * commands.texi (Click Events): Click object may be an images.
7815 Describe (dx . dy) element of click positions.
7816 (Accessing Events): Remove duplicate posn-timestamp.
7817 New functions posn-object and posn-object-x-y.
7818
78192003-11-23 Kim F. Storm <storm@cua.dk>
7820
7821 * commands.texi (Click Events): Describe enhancements to event
7822 position lists, including new text-pos and (col . row) items.
7823 Mention left-fringe and right-fringe area events.
7824 (Accessing Events): New functions posn-area and
7825 posn-actual-col-row. Mention posn-timestamp. Mention that
7826 posn-point in non-text area still returns buffer position.
7827 Clarify posn-col-row.
7828
78292003-11-21 Lars Hansen <larsh@math.ku.dk>
7830
7831 * files.texi (File Attributes): Describe new parameter ID-FORMAT.
7832 * anti.texi (File Attributes): Describe removed parameter
7833 ID-FORMAT.
7834
78352003-11-20 Luc Teirlinck <teirllm@auburn.edu>
7836
7837 * positions.texi (Positions): Mention that, if a marker is used as
7838 a position, its buffer is ignored.
7839
7840 * markers.texi (Overview of Markers): Mention it here too.
7841
78422003-11-12 Luc Teirlinck <teirllm@auburn.edu>
7843
7844 * numbers.texi (Numeric Conversions): Not just `floor', but also
7845 `truncate', `ceiling' and `round' accept optional argument DIVISOR.
7846
78472003-11-10 Luc Teirlinck <teirllm@auburn.edu>
7848
7849 * markers.texi (Creating Markers): Specify insertion type of
7850 created markers. Add xref to `Marker Insertion Types'.
7851 Second argument to `copy-marker' is optional.
7852 (Marker Insertion Types): Mention that most markers are created
7853 with insertion type nil.
7854 (The Mark): Correctly describe when `mark' signals an error.
7855 (The Region): Correctly describe when `region-beginning' and
7856 `region-end' signal an error.
7857
78582003-11-08 Luc Teirlinck <teirllm@auburn.edu>
7859
7860 * hash.texi (Creating Hash): Clarify description of `eql'.
7861 `makehash' is obsolete.
7862 (Hash Access): Add Common Lisp notes for `remhash' and `clrhash'.
7863
7864 * positions.texi (Point): Change description of `buffer-end', so
7865 that it is also correct for floating point arguments.
7866 (List Motion): Correct argument lists of `beginning-of-defun' and
7867 `end-of-defun'.
7868 (Excursions): Add xref to `Marker Insertion Types'.
7869 (Narrowing): Argument to `narrow-to-page' is optional.
7870
78712003-11-06 Luc Teirlinck <teirllm@auburn.edu>
7872
7873 * streams.texi (Output Streams): Clarify behavior of point for
7874 marker output streams.
7875
78762003-11-04 Luc Teirlinck <teirllm@auburn.edu>
7877
7878 * variables.texi (Defining Variables): Second argument to
7879 `defconst' is not optional.
7880 (Setting Variables): Mention optional argument APPEND to
7881 `add-to-list'.
7882 (Creating Buffer-Local): Expand description of
7883 `make-variable-buffer-local'.
7884 (Frame-Local Variables): Expand description of
7885 `make-variable-frame-local'.
7886 (Variable Aliases): Correct description of optional argument
7887 DOCSTRING to `defvaralias'. Mention return value of
7888 `defvaralias'.
7889 (File Local Variables): Add xref to `File variables' in Emacs
7890 Manual. Correct description of `hack-local-variables'. Mention
7891 `safe-local-variable' property. Mention optional second argument
7892 to `risky-local-variable-p'.
7893
78942003-11-03 Luc Teirlinck <teirllm@auburn.edu>
7895
7896 * symbols.texi (Symbol Plists): Mention return value of `setplist'.
7897
78982003-11-02 Jesper Harder <harder@ifa.au.dk> (tiny change)
7899
7900 * lispref/anti.texi, lispref/backups.texi, lispref/commands.texi
7901 lispref/customize.texi, lispref/display.texi, lispref/files.texi,
7902 lispref/internals.texi, lispref/keymaps.texi, lispref/loading.texi,
7903 lispref/modes.texi, lispref/nonascii.texi, lispref/numbers.texi,
7904 lispref/objects.texi, lispref/os.texi, lispref/positions.texi,
7905 lispref/processes.texi, lispref/searching.texi,
7906 lispref/sequences.texi, lispref/streams.texi, lispref/strings.texi,
7907 lispref/syntax.texi, lispref/text.texi: Replace @sc{foo} with
7908 @acronym{FOO}.
7909
79102003-10-27 Luc Teirlinck <teirllm@auburn.edu>
7911
7912 * strings.texi (Creating Strings): Argument START to `substring'
7913 can not be `nil'. Expand description of
7914 `substring-no-properties'. Correct description of `split-string',
7915 especially with respect to empty matches. Prevent very bad line
7916 break in definition of `split-string-default-separators'.
7917 (Text Comparison): `string=' and `string<' also accept symbols as
7918 arguments.
7919 (String Conversion): More completely describe argument BASE in
7920 `string-to-number'.
7921 (Formatting Strings): `%s' and `%S' in `format' do require
7922 corresponding object. Clarify behavior of numeric prefix after
7923 `%' in `format'.
7924 (Case Conversion): The argument to `upcase-initials' can be a
7925 character.
7926
79272003-10-27 Kenichi Handa <handa@m17n.org>
7928
7929 * display.texi (Fontsets): Fix texinfo usage.
7930
79312003-10-25 Kenichi Handa <handa@m17n.org>
7932
7933 * display.texi (Fontsets): Add description of the function
7934 set-fontset-font.
7935
79362003-10-23 Luc Teirlinck <teirllm@auburn.edu>
7937
7938 * display.texi (Temporary Displays): Add xref to `Documentation
7939 Tips'.
7940
7941 * functions.texi (Function Safety): Use inforef instead of pxref
7942 for SES.
7943
79442003-10-23 Andreas Schwab <schwab@suse.de>
7945
7946 * Makefile.in (TEX, texinputdir): Don't define.
7947 (TEXI2DVI): Define.
7948 (srcs): Remove $(srcdir)/index.perm and $(srcdir)/index.unperm,
7949 add $(srcdir)/index.texi.
7950 ($(infodir)/elisp): Remove index.texi dependency.
7951 (elisp.dvi): Likewise. Use $(TEXI2DVI).
7952 (index.texi): Remove target.
7953 (dist): Don't link $(srcdir)/permute-index.
7954 (clean): Don't remove index.texi.
7955
7956 * permute-index, index.perm: Remove.
7957 * index.texi: Rename from index.unperm.
7958
79592003-10-22 Luc Teirlinck <teirllm@auburn.edu>
7960
7961 * tips.texi (Documentation Tips): Document new behavior for face
7962 and variable hyperlinks in Help mode.
7963
79642003-10-21 Luc Teirlinck <teirllm@auburn.edu>
7965
7966 * objects.texi (Integer Type): Update for extra bit of integer range.
7967 (Character Type): Ditto.
7968
79692003-10-16 Eli Zaretskii <eliz@gnu.org>
7970
7971 * numbers.texi (Integer Basics): Add index entries for reading
7972 numbers in hex, octal, and binary.
7973
79742003-10-16 Lute Kamstra <lute@gnu.org>
7975
7976 * modes.texi (Mode Line Format): Mention force-mode-line-update's
7977 argument.
7978
79792003-10-13 Luc Teirlinck <teirllm@auburn.edu>
7980
7981 * windows.texi (Choosing Window): Fix typo.
7982 * edebug.texi (Edebug Execution Modes): Fix typo.
7983
79842003-10-13 Richard M. Stallman <rms@gnu.org>
7985
7986 * windows.texi (Basic Windows): A window has fringe settings,
7987 display margins and scroll-bar settings.
7988 (Splitting Windows): Doc split-window return value.
7989 Clean up one-window-p.
7990 (Selecting Windows): Fix typo.
7991 (Cyclic Window Ordering): Explain frame as ALL-FRAMES in next-window.
7992 (Buffers and Windows): In set-window-buffer, explain effect
7993 on fringe settings and scroll bar settings.
7994 (Displaying Buffers): In pop-to-buffer, explain nil as buffer arg.
7995 (Choosing Window): Use defopt for pop-up-frame-function.
7996 For special-display-buffer-names, explain same-window and same-frame.
7997 Clarify window-dedicated-p return value.
7998 (Textual Scrolling): scroll-up and scroll-down can get an error.
7999 (Horizontal Scrolling): Clarify auto-hscroll-mode.
8000 Clarify set-window-hscroll.
8001 (Size of Window): Don't mention tool bar in window-height.
8002 (Coordinates and Windows): Explain what coordinates-in-window-p
8003 returns for fringes and display margins.
8004 (Window Configurations): Explain saving fringes, etc.
8005
8006 * tips.texi (Library Headers): Clean up Documentation.
8007
8008 * syntax.texi (Parsing Expressions): Clean up forward-comment
8009 and parse-sexp-lookup-properties.
8010
8011 * sequences.texi (Sequence Functions): sequencep accepts bool-vectors.
8012
8013 * os.texi (System Environment): Clean up text for load-average errors.
8014
8015 * modes.texi (Hooks): Don't explain local hook details at front.
8016 Clarify run-hooks and run-hook-with-args a little.
8017 Clean up add-hook and remove-hook.
8018
8019 * edebug.texi (Edebug Execution Modes): Clarify t.
8020 Document edebug-sit-for-seconds.
8021 (Coverage Testing): Document C-x X = and =.
8022 (Instrumenting Macro Calls): Fix typo.
8023 (Specification List): Don't index the specification keywords.
8024
80252003-10-10 Kim F. Storm <storm@cua.dk>
8026
8027 * processes.texi (Network): Introduce make-network-process.
8028
80292003-10-09 Luc Teirlinck <teirllm@auburn.edu>
8030
8031 * tips.texi (Library Headers): Fix typo.
8032
80332003-10-07 Juri Linkov <juri@jurta.org>
8034
8035 * modes.texi (Imenu): Mention imenu-create-index-function's
8036 default value. Explain submenus better.
8037
80382003-10-07 Lute Kamstra <lute@gnu.org>
8039
8040 * modes.texi (Faces for Font Lock): Fix typo.
8041 (Hooks): Explain how buffer-local hook variables can refer to
8042 global hook variables.
8043 Various minor clarifications.
8044
80452003-10-06 Lute Kamstra <lute@gnu.org>
8046
8047 * tips.texi (Coding Conventions): Mention naming conventions for
8048 hooks.
8049
80502003-10-05 Luc Teirlinck <teirllm@auburn.edu>
8051
8052 * loading.texi (Library Search): Correct default value of
8053 load-suffixes.
8054 (Named Features): Fix typo.
8055
80562003-10-05 Richard M. Stallman <rms@gnu.org>
8057
8058 * loading.texi (Named Features): In `provide',
8059 say how to test for subfeatures.
8060 (Unloading): In unload-feature, use new var name
8061 unload-feature-special-hooks.
8062
80632003-10-03 Lute Kamstra <lute@gnu.org>
8064
8065 * modes.texi (Major Mode Conventions): Mention third way to set up
8066 Imenu.
8067 (Imenu): A number of small fixes.
8068 Delete documentation of internal variable imenu--index-alist.
8069 Document the return value format of imenu-create-index-function
8070 functions.
8071
80722003-09-30 Richard M. Stallman <rms@gnu.org>
8073
8074 * processes.texi (Network): Say what stopped datagram connections do.
8075
8076 * lists.texi (Association Lists): Clarify `assq-delete-all'.
8077
8078 * display.texi (Overlay Properties): Clarify `evaporate' property.
8079
80802003-09-29 Lute Kamstra <lute@gnu.org>
8081
8082 * modes.texi (Mode Line Data): Explain when symbols in mode-line
8083 constructs should be marked as risky.
8084 Change cons cell into proper list.
8085 (Mode Line Variables): Change cons cell into proper list.
8086
80872003-09-26 Lute Kamstra <lute@gnu.org>
8088
8089 * modes.texi (Mode Line Data): Document the :propertize construct.
8090 (Mode Line Variables): Reorder the descriptions of the variables
8091 to match their order in the default mode-line-format.
8092 Describe the new variables mode-line-position and mode-line-modes.
8093 Update the default values of mode-line-frame-identification,
8094 minor-mode-alist, and default-mode-line-format.
8095 (Properties in Mode): Mention the :propertize construct.
8096
80972003-09-26 Richard M. Stallman <rms@gnu.org>
8098
8099 * buffers.texi, commands.texi, debugging.texi, eval.texi:
8100 * loading.texi, minibuf.texi, text.texi, variables.texi:
8101 Avoid @strong{Note:}.
8102
81032003-09-26 Richard M. Stallman <rms@gnu.org>
8104
8105 * keymaps.texi (Remapping Commands): Fix typo.
8106
81072003-09-23 Luc Teirlinck <teirllm@mail.auburn.edu>
8108
8109 * processes.texi (Low-Level Network): Fix typo.
8110
81112003-09-23 Kim F. Storm <storm@cua.dk>
8112
8113 * processes.texi (Network, Network Servers): Fix typos.
8114 (Low-Level Network): Add timeout value for :server keyword.
8115 Add new option keywords to make-network-process.
8116 Add set-network-process-options.
8117 Explain how to test availability of network options.
8118
81192003-09-19 Richard M. Stallman <rms@gnu.org>
8120
8121 * text.texi (Motion by Indent): Arg to
8122 backward-to-indentation and forward-to-indentation is optional.
8123
8124 * strings.texi (Creating Strings): Add substring-no-properties.
8125
8126 * processes.texi
8127 (Process Information): Add list-processes arg QUERY-ONLY.
8128 Delete process-contact from here.
8129 Add new status values for process-status.
8130 Add process-get, process-put, process-plist, set-process-plist.
8131 (Synchronous Processes): Add call-process-shell-command.
8132 (Signals to Processes): signal-process allows process objects.
8133 (Network): Complete rewrite.
8134 (Network Servers, Datagrams, Low-Level Network): New nodes.
8135
8136 * positions.texi (Word Motion): forward-word, backward-word
8137 arg is optional. Reword.
8138
8139 * abbrevs.texi (Defining Abbrevs): Index no-self-insert.
8140
8141 * variables.texi (Creating Buffer-Local):
8142 Delete duplicate definition of buffer-local-value.
8143 (File Local Variables): Explain about discarding text props.
8144
81452003-09-11 Richard M. Stallman <rms@gnu.org>
8146
8147 * minibuf.texi (Intro to Minibuffers): Explain that the minibuffer
8148 changes variables that record input events.
8149 (Minibuffer Misc): Add minibuffer-selected-window.
8150
8151 * lists.texi (Building Lists): Add copy-tree.
8152
8153 * display.texi (Fontsets): Add char-displayable-p.
8154 (Scroll Bars): New node.
8155
81562003-09-08 Lute Kamstra <lute@gnu.org>
8157
8158 * modes.texi (%-Constructs): Document new `%i' and `%I'
8159 constructs.
8160
81612003-09-03 Peter Runestig <peter@runestig.com>
8162
8163 * makefile.w32-in: New file.
8164
81652003-08-29 Richard M. Stallman <rms@gnu.org>
8166
8167 * display.texi (Overlay Properties): Clarify how priorities
8168 affect use of the properties.
8169
81702003-08-19 Luc Teirlinck <teirllm@mail.auburn.edu>
8171
8172 * customize.texi (Type Keywords): Correct the description of
8173 `:help-echo' in the case where `motion-doc' is a function.
8174
81752003-08-14 John Paul Wallington <jpw@gnu.org>
8176
8177 * modes.texi (Emulating Mode Line): Subsection, not section.
8178
81792003-08-13 Richard M. Stallman <rms@gnu.org>
8180
8181 * elisp.texi (Top): Update subnode lists in menu.
8182
8183 * text.texi (Insertion): Add insert-buffer-substring-no-properties.
8184 (Kill Functions): kill-region has new arg yank-handler.
8185 (Yanking): New node.
8186 (Yank Commands): Add yank-undo-function.
8187 (Low-Level Kill Ring):
8188 kill-new and kill-append have new arg yank-handler.
8189 (Changing Properties): Add remove-list-of-text-properties.
8190 (Atomic Changes): New node.
8191
8192 * symbols.texi (Other Plists): Add lax-plist-get, lax-plist-put.
8193
8194 * streams.texi (Output Variables): Add eval-expression-print-length
8195 and eval-expression-print-level.
8196
8197 * os.texi (Time Conversion): For encode-time, explain limits on year.
8198
8199 * objects.texi (Character Type): Define anchor "modifier bits".
8200
8201 * modes.texi (Emulating Mode Line): New node.
8202 (Search-based Fontification): Font Lock uses font-lock-face property.
8203 (Other Font Lock Variables): Likewise.
8204
8205 * keymaps.texi (Format of Keymaps): Keymaps contain char tables,
8206 not vectors.
8207 (Active Keymaps): Add emulation-mode-map-alists.
8208 (Functions for Key Lookup): key-binding has new arg no-remap.
8209 (Remapping Commands): New node.
8210 (Scanning Keymaps): where-is-internal has new arg no-remap.
8211 (Tool Bar): Add tool-bar-local-item-from-menu.
8212 Clarify when to use tool-bar-add-item-from-menu.
8213
8214 * commands.texi (Interactive Call): commandp has new arg.
8215 (Command Loop Info): Add this-original-command.
8216
82172003-08-06 John Paul Wallington <jpw@gnu.org>
8218
8219 * compile.texi (Compiler Errors): Say `@end defmac' after `@defmac'.
8220
8221 * display.texi (Warning Basics): Fix typo.
8222 (Fringes): Add closing curly bracket and fix typo.
8223
8224 * elisp.texi (Top): Fix typo.
8225
82262003-08-05 Richard M. Stallman <rms@gnu.org>
8227
8228 * elisp.texi: Update lists of subnodes.
8229
8230 * windows.texi (Buffers and Windows): set-window-buffer has new arg.
8231
8232 * variables.texi (Local Variables): Use lc for example variable names.
8233
8234 * tips.texi (Library Headers): Explain where to put -*-.
8235
8236 * strings.texi (Creating Strings): Fix xref for vconcat.
8237
8238 * sequences.texi (Vector Functions):
8239 vconcat no longer allows integer args.
8240
8241 * minibuf.texi (Reading File Names): read-file-name has new
8242 arg PREDICATE. New function read-directory-name.
8243
8244 * macros.texi (Defining Macros): Give definition of `declare'.
8245 (Indenting Macros): New node.
8246
8247 * frames.texi (Parameter Access): Add modify-all-frames-parameters.
8248 (Window Frame Parameters): Make separate table of parameters
8249 that are coupled with specific face attributes.
8250 (Deleting Frames): delete-frame-hooks renamed to
8251 delete-frame-functions.
8252
8253 * files.texi (Magic File Names): Add file-remote-p.
8254 Clarify file-local-copy.
8255
8256 * edebug.texi (Instrumenting Macro Calls): Don't define `declare'
8257 here; instead xref Defining Macros.
8258
8259 * display.texi (Warnings): New node, and subnodes.
8260 (Fringes): New node.
8261
8262 * debugging.texi (Test Coverage): New node.
8263
8264 * compile.texi (Compiler Errors): Explain with-no-warnings
8265 and other ways to suppress warnings.
8266
8267 * commands.texi (Interactive Call): Minor clarification.
8268
8269 * buffers.texi (Buffer File Name): set-visited-file-name
8270 renames the buffer too.
8271
8272 * abbrevs.texi (Abbrev Tables): Add copy-abbrev-table.
8273
82742003-07-24 Markus Rost <rost@math.ohio-state.edu>
8275
8276 * abbrevs.texi (Abbrev Expansion): Use \s syntax in example.
8277
82782003-07-22 Markus Rost <rost@math.ohio-state.edu>
8279
8280 * internals.texi (Garbage Collection): Fix previous change.
8281
82822003-07-22 Richard M. Stallman <rms@gnu.org>
8283
8284 * files.texi (Truenames): Add LIMIT arg to file-chase-links.
8285
8286 * display.texi (Width): Use \s syntax in example.
8287 (Font Selection): Add face-font-rescale-alist.
8288
8289 * modes.texi (Imenu): Add xref to Emacs Manual node on Imenu.
8290 Remove spurious indent in example.
8291
8292 * lists.texi (Building Lists): Add number-sequence.
8293
8294 * internals.texi (Garbage Collection): Add gcs-done, gc-elapsed.
8295
8296 * functions.texi (Function Documentation): Explain how to
8297 show calling convention explicitly in the doc string.
8298
8299 * windows.texi (Selecting Windows): save-selected-window saves
8300 selected window of each frame.
8301 (Window Configurations): Minor change.
8302
8303 * syntax.texi (Syntax Table Functions): Use \s syntax in examples.
8304
8305 * streams.texi (Output Variables): Add print-continuous-numbering
8306 and print-number-table.
8307
8308 * processes.texi (Decoding Output): New node.
8309
8310 * os.texi (Time Conversion): decode-time arg is optional.
8311
8312 * objects.texi (Character Type): Don't use space as example for \.
8313 Make list of char names and \-sequences correspond.
8314 Explain that \s is not used in strings. `\ ' needs space after.
8315
8316 * nonascii.texi (Converting Representations): Add string-to-multibyte.
8317 (Translation of Characters): Add translation-table-for-input.
8318 (Default Coding Systems): Add auto-coding-functions.
8319 (Explicit Encoding): Add decode-coding-inserted-region.
8320 (Locales): Add locale-info.
8321
8322 * minibuf.texi (Basic Completion): Describe test-completion.
8323 Collections can be lists of strings.
8324 Clean up lazy-completion-table.
8325 (Programmed Completion): Mention test-completion.
8326 Clarify why lambda expressions are not accepted.
8327 (Minibuffer Misc): Describe minibufferp.
8328
83292003-07-14 Richard M. Stallman <rms@gnu.org>
8330
8331 * buffers.texi (Killing Buffers): kill-buffer-hook is perm local.
8332
8333 * windows.texi (Selecting Windows): New arg to select-window.
8334 (Selecting Windows): Add with-selected-window.
8335 (Size of Window): Add window-inside-edges, etc.
8336
8337 * internals.texi (Garbage Collection): Add post-gc-hook.
8338
8339 * processes.texi (Subprocess Creation): Add exec-suffixes.
8340
8341 * keymaps.texi (Functions for Key Lookup): Add current-active-maps.
8342 (Scanning Keymaps): Add map-keymaps.
8343 (Defining Menus): Add keymap-prompt.
8344
8345 * numbers.texi (Integer Basics): Add most-positive-fixnum,
8346 most-negative-fixnum.
8347
8348 * compile.texi (Byte Compilation): Explain no-byte-compile.
8349 (Compiler Errors): New node.
8350
8351 * os.texi (User Identification): user-uid, user-real-uid
8352 can return float.
8353
8354 * modes.texi (Major Mode Conventions): Explain about run-mode-hooks
8355 and about derived modes.
8356 (Minor Modes): Add minor-mode-list.
8357 (Defining Minor Modes): Keyword args for define-minor-mode.
8358 (Search-based Fontification): Explain managing other properties.
8359 (Other Font Lock Variables): Add font-lock-extra-managed-props.
8360 (Faces for Font Lock): Add font-lock-preprocessor-face.
8361 (Hooks): Add run-mode-hooks and delay-mode-hooks.
8362
8363 * variables.texi (Creating Buffer-Local): Add buffer-local-value.
8364 (Variable Aliases): Clarify defvaralias.
8365
8366 * loading.texi (Library Search): Add load-suffixes.
8367
8368 * minibuf.texi (Basic Completion): Add lazy-completion-table.
8369 (Programmed Completion): Add dynamic-completion-table.
8370
8371 * files.texi (Changing Files): copy-file allows dir as NEWNAME.
8372 (Magic File Names): Specify precedence order of handlers.
8373
8374 * commands.texi (Command Overview): Emacs server runs pre-command-hook
8375 and post-command-hook.
8376 (Waiting): New calling convention for sit-for.
8377
8378 * text.texi (Special Properties): local-map and keymap properties
8379 apply based on their stickiness.
8380
83812003-07-07 Richard M. Stallman <rms@gnu.org>
8382
8383 * modes.texi (Minor Mode Conventions): Specify only some kinds
8384 of list values as args to minor modes.
8385
8386 * files.texi (File Name Expansion): Warn about iterative use
8387 of substitute-in-file-name.
8388
8389 * advice.texi (Activation of Advice): Clean up previous change.
8390
83912003-07-06 Markus Rost <rost@math.ohio-state.edu>
8392
8393 * advice.texi (Activation of Advice): Note that ad-start-advice is
8394 turned on by default.
8395
83962003-06-30 Richard M. Stallman <rms@gnu.org>
8397
8398 * text.texi (Buffer Contents): Document current-word.
8399 (Change Hooks): Not called for *Messages*.
8400
8401 * functions.texi (Defining Functions): Explain about redefining
8402 primitives.
8403 (Function Safety): Renamed. Minor changes.
8404 Comment out the detailed criteria for what is safe.
8405
84062003-06-22 Andreas Schwab <schwab@suse.de>
8407
8408 * objects.texi (Symbol Type): Fix description of examples.
8409
84102003-06-16 Andreas Schwab <schwab@suse.de>
8411
8412 * hash.texi (Creating Hash): Fix description of :weakness.
8413
84142003-06-13 Kai Großjohann <kai.grossjohann@gmx.net>
8415
8416 * files.texi (Changing Files): copy-file copies file modes, too.
8417
84182003-05-28 Richard M. Stallman <rms@gnu.org>
8419
8420 * strings.texi (Creating Strings): Clarify split-string.
8421
84222003-05-22 Stephen J. Turnbull <stephen@xemacs.org>
8423
8424 * strings.texi (Creating Strings): Update split-string specification
8425 and examples.
8426
84272003-05-19 Richard M. Stallman <rms@gnu.org>
8428
8429 * elisp.texi: Correct invariant section names.
8430
84312003-04-20 Richard M. Stallman <rms@gnu.org>
8432
8433 * os.texi (Timers): Explain about timers and quitting.
8434
84352003-04-19 Richard M. Stallman <rms@gnu.org>
8436
8437 * internals.texi (Writing Emacs Primitives): Strings are
8438 no longer special for GCPROs. Mention GCPRO5, GCPRO6.
8439 Explain GCPRO convention for varargs function args.
8440
84412003-04-16 Richard M. Stallman <rms@gnu.org>
8442
8443 * minibuf.texi (Minibuffer Misc): Document fn minibuffer-message.
8444
84452003-04-08 Richard M. Stallman <rms@gnu.org>
8446
8447 * files.texi (Kinds of Files): Correct return value of file-symlink-p.
8448
84492003-02-13 Kim F. Storm <storm@cua.dk>
8450
8451 * objects.texi (Character Type): New \s escape for space.
8452
84532003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
8454
8455 * os.texi (System Environment): Add cygwin system-type.
8456
84572003-01-25 Richard M. Stallman <rms@gnu.org>
8458
8459 * keymaps.texi: Document that a symbol can act as a keymap.
8460
84612003-01-13 Richard M. Stallman <rms@gnu.org>
8462
8463 * text.texi (Changing Properties): Say string indices are origin-0.
8464
8465 * positions.texi (Screen Lines) <compute-motion>:
8466 Correct order of elts in return value.
8467
8468 * keymaps.texi (Changing Key Bindings) <define-key>: Mention
8469 how to define a default binding.
8470
84712002-12-07 Markus Rost <rost@math.ohio-state.edu>
8472
8473 * loading.texi (Unloading): Fix recent change for load-history.
8474
8475 * customize.texi (Simple Types): Clarify description of custom
8476 type 'number. Describe new custom type 'float.
8477
84782002-12-04 Markus Rost <rost@math.ohio-state.edu>
8479
8480 * variables.texi (File Local Variables): Fix typo.
8481
84822002-10-23 Kai Großjohann <kai.grossjohann@uni-duisburg.de>
8483
8484 From Michael Albinus <Michael.Albinus@alcatel.de>.
8485
8486 * README: Target for Info file is `make info'.
8487
8488 * files.texi (File Name Components): Fix typos in
8489 `file-name-sans-extension'.
8490 (Magic File Names): Complete list of operations for magic file
8491 name handlers.
8492
84932002-09-16 Jonathan Yavner <jyavner@engineer.com>
8494
8495 * variables.texi (File Local Variables): New function
8496 risky-local-variable-p.
8497
84982002-09-15 Jonathan Yavner <jyavner@engineer.com>
8499
8500 * functions.texi (Function safety): New node about unsafep.
8501
85022002-08-05 Per Abrahamsen <abraham@dina.kvl.dk>
8503
8504 * customize.texi (Splicing into Lists): Fix example.
8505 Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>.
8506
85072002-06-17 Juanma Barranquero <lektu@terra.es>
8508
8509 * frames.texi (Display Feature Testing): Fix typo.
8510
85112002-06-12 Andreas Schwab <schwab@suse.de>
8512
8513 * frames.texi (Initial Parameters, Resources): Fix references to
8514 the Emacs manual.
8515
85162002-05-13 Kim F. Storm <storm@cua.dk>
8517
8518 * variables.texi (Intro to Buffer-Local): Updated warning and
8519 example relating to changing buffer inside let.
8520
85212002-03-10 Jan Djärv <jan.h.d@swipnet.se>
8522
8523 * os.texi (Session Management): New node about X Session management.
8524
85252002-01-18 Eli Zaretskii <eliz@is.elta.co.il>
8526
8527 * elisp.texi (VERSION): Set to 2.9. Update the version of Emacs
8528 to which the manual corresponds, and the copyright years.
8529
8530 * Makefile.in (VERSION): Set to 2.9.
8531
85322001-11-29 Eli Zaretskii <eliz@is.elta.co.il>
8533
8534 * elisp.texi: Change the category in @dircategory to "Emacs", to
8535 make it consistent with info/dir.
8536
85372001-11-25 Miles Bader <miles@gnu.org>
8538
8539 * text.texi (Fields): Describe new `limit' arg in
8540 field-beginning/field-end.
8541
85422001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
8543
8544 * permute-index: Don't depend on csh-specific features.
8545 Replace the interpreter name with /bin/sh.
8546
8547 * two-volume-cross-refs.txt: New file.
8548 * two.el: New file.
8549 * spellfile: New file.
8550
85512001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
8552
8553 * permute-index: New file.
8554
8555 * vol1.texi, vol2.texi: Renamed from elisp-vol1.texi and
8556 elisp-vol2.texi, respectively, to avoid file-name clashes in DOS
8557 8+3 restricted namespace.
8558
8559 * Makefile.in (infodir): Define relative to $(srcdir).
8560 ($(infodir)/elisp): Don't chdir into $(srcdir), but add it to the
8561 include directories list via -I switch to makeinfo.
8562 (index.texi): Use cp if both hard and symbolic links fail.
8563
85642001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
8565
8566 * Makefile.in (distclean): Add.
8567
8568 The following changes make ELisp manual part of the Emacs
8569 distribution:
8570
8571 * Makefile.in: Add Copyright notice.
8572 (prefix): Remove.
8573 (infodir): Change value to "../info".
8574 (VPATH): New variable.
8575 (MAKE): Don't define.
8576 (texmacrodir): Don't define.
8577 (texinputdir): Append the existing value of TEXINPUTS.
8578 ($(infodir)/elisp): Instead of just "elisp". Reformat the
8579 command to be compatible with man/Makefile.in, and to put the
8580 output into ../info.
8581 (info): Add target.
8582 (installall): Target removed.
8583
85842001-10-31 Pavel Janík <Pavel@Janik.cz>
8585
8586 * tips.texi (Coding Conventions): Fix typo.
8587
85882001-10-23 Gerd Moellmann <gerd@gnu.org>
8589
8590 * Makefile.in (srcs): Add gpl.texi and doclicense.texi.
8591
85922001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
8593
8594 * files.texi (File Name Components): Update the description of
8595 file-name-sans-extension and file-name-extension, as they now
8596 ignore leading dots.
8597
85982001-10-20 Gerd Moellmann <gerd@gnu.org>
8599
8600 * (Version 21.1 released.)
8601
86022001-10-19 Miles Bader <miles@gnu.org>
8603
8604 * positions.texi (Text Lines): Describe behavior of
8605 `beginning-of-line'/`end-of-line' in the presence of field properties.
8606
86072001-10-17 Gerd Moellmann <gerd@gnu.org>
8608
8609 * Makefile.in (VERSION): Set to 2.8.
8610 (manual): Use `manual-21'.
8611
8612 * elisp.texi (VERSION): Add and use it where the version
8613 number was used. Set it to 2.8.
8614
8615 * intro.texi: Likewise.
8616
86172001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
8618
8619 * files.texi (File Name Completion): Document the significance of
8620 a trailing slash in elements of completion-ignored-extensions.
8621
86222001-10-06 Miles Bader <miles@gnu.org>
8623
8624 * variables.texi (Variable Aliases): It's `@defmac', not `@defmacro'.
8625
86262001-10-04 Gerd Moellmann <gerd@gnu.org>
8627
8628 * variables.texi (Variable Aliases): New node.
8629
86302001-10-04 Gerd Moellmann <gerd@gnu.org>
8631
8632 * Branch for 21.1.
8633
86342001-10-02 Miles Bader <miles@gnu.org>
8635
8636 * minibuf.texi (Minibuffer Misc): Add entries for
8637 `minibuffer-contents', `minibuffer-contents-no-properties', and
8638 `delete-minibuffer-contents'.
8639 Correct description for `minibuffer-prompt-end'.
8640
8641 * text.texi (Property Search): Correct descriptions of
8642 `next-char-property-change' and `previous-char-property-change'.
8643 Add entries for `next-single-char-property-change' and
8644 `previous-single-char-property-change'.
8645 Make operand names a bit more consistent.
8646
86472001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
8648
8649 * frames.texi (Finding All Frames): Document that next-frame and
8650 previous-frame are local to current terminal.
8651
86522001-09-26 Eli Zaretskii <eliz@is.elta.co.il>
8653
8654 * keymaps.texi (Creating Keymaps): Fix the description of the
8655 result of make-keymap.
8656
86572001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
8658
8659 * display.texi (Font Lookup, Attribute Functions)
8660 (Image Descriptors): Add cross-references to the definition of
8661 selected frame.
8662
8663 * buffers.texi (The Buffer List): Add cross-references to the
8664 definition of selected frame.
8665
8666 * frames.texi (Input Focus): Clarify which frame is _the_ selected
8667 frame at any given time.
8668 (Multiple Displays, Size and Position): Add a cross-reference to
8669 the definition of the selected frame.
8670
86712001-09-08 Eli Zaretskii <eliz@is.elta.co.il>
8672
8673 * strings.texi (String Conversion) <string-to-number>: Document
8674 that a float is returned for integers that are too large.
8675
8676 * frames.texi (Mouse Position): Document mouse-position-function.
8677 (Display Feature Testing): Document display-images-p.
8678 (Window Frame Parameters): Document the cursor-type variable.
8679
8680 * numbers.texi (Integer Basics): Document CL style read syntax for
8681 integers in bases other than 10.
8682
8683 * positions.texi (List Motion):
8684 Document open-paren-in-column-0-is-defun-start.
8685
8686 * lists.texi (Sets And Lists): Document member-ignore-case.
8687
8688 * internals.texi (Garbage Collection): Document the used and free
8689 strings report.
8690 (Memory Usage): Document strings-consed.
8691
8692 * os.texi (Time of Day): Document float-time.
8693 (Recording Input): Document that clear-this-command-keys clears
8694 the vector to be returned by recent-keys.
8695
8696 * keymaps.texi (Scanning Keymaps) <where-is-internal>: The
8697 argument keymap can be a list.
8698
8699 * nonascii.texi (User-Chosen Coding Systems)
8700 <select-safe-coding-system>: Document the new argument
8701 accept-default-p and the variable
8702 select-safe-coding-system-accept-default-p. Tell what happens if
8703 buffer-file-coding-system is undecided.
8704 (Default Coding Systems): Document auto-coding-regexp-alist.
8705
8706 * display.texi (The Echo Area) <message>: Document
8707 message-truncate-lines.
8708 (Glyphs): Document that the glyph table is unused on windowed
8709 displays.
8710
8711 * help.texi (Describing Characters) <single-key-description>:
8712 Document the new argument no-angles.
8713 (Accessing Documentation) <documentation-property>: Document that
8714 a non-string property is evaluated.
8715 <documentation>: Document that the function-documentation property
8716 is looked for.
8717
8718 * windows.texi (Selecting Windows): Document some-window.
8719
8720 * text.texi (MD5 Checksum): New node, documents the md5 primitive.
8721
8722 * hooks.texi (Standard Hooks): Add kbd-macro-termination-hook and
8723 apropos-mode-hook.
8724
8725 * commands.texi (Using Interactive): Document interactive-form.
8726 (Keyboard Macros): Document kbd-macro-termination-hook.
8727 (Command Loop Info): Document that clear-this-command-keys clears
8728 the vector to be returned by recent-keys.
8729
87302001-09-04 Werner LEMBERG <wl@gnu.org>
8731
8732 * Makefile.in (srcdir, texinputdir): New variables.
8733 (srcs, index.texi, install): Use $(srcdir).
8734 (.PHONY): Remove elisp.dvi.
8735 (elisp): Use -I switch for makeinfo.
8736 (elisp.dvi): Use $(srcdir) and $(texinputdir).
8737 (installall, dist): Use $(srcdir).
8738 Fix path to texinfo.tex.
8739 (maintainer-clean): Add elisp.dvi and elisp.oaux.
8740
87412001-08-30 Gerd Moellmann <gerd@gnu.org>
8742
8743 * display.texi (Conditional Display): Adjust to API change.
8744
8745 * configure: New file.
8746
87472001-07-30 Gerd Moellmann <gerd@gnu.org>
8748
8749 * commands.texi (Repeat Events): Add description of
8750 double-click-fuzz.
8751
87522001-05-08 Stefan Monnier <monnier@cs.yale.edu>
8753
8754 * syntax.texi (Syntax Class Table): Add the missing designator for
8755 comment and string fences.
8756 (Syntax Properties): Add a xref to syntax table internals.
8757 (Syntax Table Internals): Document string-to-syntax.
8758
87592001-05-07 Gerd Moellmann <gerd@gnu.org>
8760
8761 * Makefile.in (install): Use install-info command line options
8762 like in Emacs' Makefile.in.
8763
87642000-12-09 Miles Bader <miles@gnu.org>
8765
8766 * windows.texi (Window Start): Update documentation for
8767 `pos-visible-in-window-p'.
8768
87692000-11-12 Stefan Monnier <monnier@cs.yale.edu>
8770
8771 * lists.texi (Building Lists): Add footnote to explain how to add
8772 to the end of a list.
8773
87742000-10-25 Gerd Moellmann <gerd@gnu.org>
8775
8776 * files.texi (Visiting Functions): Typos.
8777
87782000-10-25 Kenichi Handa <handa@etl.go.jp>
8779
8780 * files.texi (Visiting Functions): Return value of
8781 find-file-noselect may be a list of buffers if wildcards are used.
8782
87832000-10-24 Miles Bader <miles@lsi.nec.co.jp>
8784
8785 * display.texi (Defining Faces): Document `graphic' display type
8786 in face specs.
8787
87882000-10-18 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8789
8790 * hooks.texi (Standard Hooks): Replace obsolete
8791 `after-make-frame-hook' with `after-make-frame-functions'.
8792
8793 * frames.texi (Creating Frames): Ditto.
8794
8795 * variables.texi (Future Local Variables): Ditto.
8796
87972000-10-16 Gerd Moellmann <gerd@gnu.org>
8798
8799 * display.texi (Other Image Types): Add description of :foreground
8800 and :background properties of mono PBM images.
8801
88022000-08-17 Werner LEMBERG <wl@gnu.org>
8803
8804 * .cvsignore: New file.
8805
88062000-01-05 Gerd Moellmann <gerd@gnu.org>
8807
8808 * tindex.pl: New script.
8809
88101999-12-03 Dave Love <fx@gnu.org>
8811
8812 * Makefile.in (MAKEINFO): New parameter.
8813
88141999-09-17 Richard Stallman <rms@gnu.org>
8815
8816 * Makefile.in (srcs): Add hash.texi.
8817 (VERSION): Update to 20.6.
8818
88191999-09-13 Richard Stallman <rms@gnu.org>
8820
8821 * Makefile.in (index.texi): If cannot make a symlink, make a hard link.
8822
88231998-08-29 Karl Heuer <kwzh@gnu.org>
8824
8825 * configure.in: New file.
8826 * Makefile.in: Renamed from Makefile.
8827 (prefix, infodir): Use value obtained from configure.
8828 (emacslibdir): Obsolete variable deleted.
8829 (dist): Distribute configure.in, configure, Makefile.in.
8830
88311998-06-12 Richard Stallman <rms@psilocin.ai.mit.edu>
8832
8833 * Makefile (INSTALL_INFO): New variable.
8834 (install): Run install-info.
8835
88361998-05-09 Richard Stallman <rms@psilocin.ai.mit.edu>
8837
8838 * Makefile (elisp.dvi): Add missing backslash.
8839
88401998-05-02 Richard Stallman <rms@psilocin.gnu.org>
8841
8842 * Makefile (elisp.dvi): Don't depend on texindex or on elisp.tps.
8843 Run texindex without `./'. Always run texindex on elisp.tp.
8844 (elisp.tps): Target deleted.
8845
88461998-04-05 Richard Stallman <rms@psilocin.gnu.org>
8847
8848 * Makefile (srcs): Add nonascii.texi and customize.texi.
8849 (dist): Start by deleting `temp'.
8850
88511998-02-17 Richard Stallman <rms@psilocin.gnu.org>
8852
8853 * Makefile (makeinfo, texindex): Targets deleted.
8854 (makeinfo.o, texindex.o): Targets deleted.
8855 (clean, dist): Don't do anything with them or with getopt*.
8856
88571998-01-30 Richard Stallman <rms@psilocin.gnu.org>
8858
8859 * Makefile (SHELL): Defined.
8860
88611998-01-27 Richard Stallman <rms@psilocin.gnu.org>
8862
8863 * Makefile (elisp.tps): New target.
8864 (elisp.dvi): Depend on elisp.tps.
8865
88661996-04-03 Karl Heuer <kwzh@gnu.ai.mit.edu>
8867
8868 * README: Update phone number.
8869
8870 * Makefile (elisp): Make this be the default target.
8871 Depend on makeinfo.c instead of makeinfo.
8872 (install): Don't depend on elisp.dvi, since we don't install that.
8873 Use mkinstalldirs.
8874 (dist): Add mkinstalldirs.
8875
88761995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8877
8878 * Makefile (VERSION): Update version number.
8879 (maintainer-clean): Rename from realclean.
8880
88811995-06-07 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8882
8883 * Makefile (realclean): New target.
8884 (elisp): Remove any old elisp-* files first.
8885
88861993-11-23 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
8887
8888 * Makefile (VERSION): New variable.
8889 (dist): Make packaged directory name `elisp-manual-19-$(VERSION)'.
8890 Compressed file suffix should be `.gz', not `.z'.
8891
88921993-11-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8893
8894 * Makefile (elisp): Depend on makeinfo.
8895
88961993-11-19 Noah Friedman (friedman@gnu.ai.mit.edu)
8897
8898 * Makefile (srcs): Add anti.texi.
8899
89001993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8901
8902 * Makefile (infodir, prefix): New vars.
8903 (install): Use infodir.
8904 (emacsinfodir): Deleted.
8905
89061993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8907
8908 * Makefile (srcs): Add calendar.texi.
8909
8910 * Makefile (dist): Copy texindex.c and makeinfo.c.
8911 Limit elisp-* files to those with one or two digits.
8912
89131993-05-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
8914
8915 * Makefile (dist): Changed to use Gzip instead of compress.
8916
89171993-04-23 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
8918
8919 * loading.texi (Unloading): define-function changed back to
8920 defalias. It may not stay this way, but at least it's
8921 consistent with the known-good version of the code patch.
8922
89231993-03-26 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
8924
8925 * modes.texi (Hooks): Document new optional arg of add-hook.
8926
89271993-03-17 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
8928
8929 * variables.texi: Document nil initial value of buffer-local variables.
8930
8931 * tips.texi: Add new section on standard library headers.
8932
89331993-02-27 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
8934
8935 * Makefile (srcs): Add frame.texi to the list of sources.
8936
89371993-02-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
8938
8939 * Makefile (dist): Don't bother excluding autosave files; they'll
8940 never make it into the temp directory anyway, and the hash marks
8941 in the name are problematic for make and the Bourne shell.
8942 (srcs):
8943
89441993-02-12 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
8945
8946 * Makefile (dist): Don't include backup files or autosave files in
8947 the distribution tar file.
8948
89491991-11-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8950
8951 * Makefile (srcs): Add index.perm.
8952 (elisp.dvi): Remove erroneous shell comment.
8953 Expect output of permute-index in permuted.fns.
8954 Save old elisp.aux in elisp.oaux.
8955 (clean): Add index.texi to be deleted.
8956
89571990-08-11 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
8958
8959 * Makefile (elisp.dvi, index.texi): Use shell if instead of ifdef.
8960
89611990-06-26 David Lawrence (tale@geech)
8962
8963 * files.texi: Noted that completion-ignored-extensions is ignored
8964 when making *Completions*.
8965
89661990-06-08 Jay Fenlason (hack@ai.mit.edu)
8967
8968 * Makefile make dist now depends on elisp.dvi, since it tries
8969 to include it in the dist file.
8970
89711990-03-28 Jim Kingdon (kingdon@mole.ai.mit.edu)
8972
8973 * functions.texinfo (Mapping Functions): Add missing quote.
8974
89751989-06-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
8976
8977 * texinfo.tex (frenchspacing): Use decimal codes for char to be set.
8978 (defunargs): Turn off \hyphenchar of \sl font temporarily.
8979
89801989-05-10 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
8981
8982 * @result{}, @expansion{}, @print{}, @quiv{}, @point{},
8983 and @error{} are the terms now being used. The files in the
8984 directory have been changed to reflect this.
8985
8986 * All instances of @indentedresultt{} have been changed to
8987 ` @result{}', using 5 spaces at the begining of the line.
8988
89891989-04-24 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
8990
8991 * @result{}, @expandsto{}, @prints{}, @quiv{}, @error{}, and the
8992 experimental @indentedresult{}, @indentedexpandsto{} are part of
8993 the texinfo.tex in this directory. These TeX macros are not
8994 stable yet.
8995
89961989-04-17 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
8997
8998 * texinfo.tex: Temporarily added
8999 \let\result=\dblarrow
9000 \def\error{{\it ERROR} \longdblarrow}
9001 We need to do this better soon.
9002
90031989-04-11 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
9004
9005 * Applied Karl Berry's patches to *.texinfo files, but not to
9006 texinfo.tex; those diffs are in `berry-texinfo-tex-diffs'. (Karl's
9007 new title page format is also not applied, since it requires
9008 texinfo.tex changes.)
9009
9010 * Cleaned up `Makefile' and defined the `emacslibdir' directory
9011 for the Project GNU development environment.
9012
9013;; Local Variables:
9014;; coding: utf-8
9015;; End:
9016
9017 Copyright (C) 1998-2011 Free Software Foundation, Inc.
9018
9019 This file is part of GNU Emacs.
9020
9021 GNU Emacs is free software: you can redistribute it and/or modify
9022 it under the terms of the GNU General Public License as published by
9023 the Free Software Foundation, either version 3 of the License, or
9024 (at your option) any later version.
9025
9026 GNU Emacs is distributed in the hope that it will be useful,
9027 but WITHOUT ANY WARRANTY; without even the implied warranty of
9028 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9029 GNU General Public License for more details.
9030
9031 You should have received a copy of the GNU General Public License
9032 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in
index a9664a4e197..d5427f6e477 100644
--- a/doc/lispref/Makefile.in
+++ b/doc/lispref/Makefile.in
@@ -80,6 +80,7 @@ srcs = \
80 $(srcdir)/numbers.texi \ 80 $(srcdir)/numbers.texi \
81 $(srcdir)/objects.texi \ 81 $(srcdir)/objects.texi \
82 $(srcdir)/os.texi \ 82 $(srcdir)/os.texi \
83 $(srcdir)/package.texi \
83 $(srcdir)/positions.texi \ 84 $(srcdir)/positions.texi \
84 $(srcdir)/processes.texi \ 85 $(srcdir)/processes.texi \
85 $(srcdir)/searching.texi \ 86 $(srcdir)/searching.texi \
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index cc3ceb8003c..fc066526614 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -1399,6 +1399,7 @@ Preparing Lisp code for distribution
1399* Packaging Basics:: The basic concepts of Emacs Lisp packages. 1399* Packaging Basics:: The basic concepts of Emacs Lisp packages.
1400* Simple Packages:: How to package a single .el file. 1400* Simple Packages:: How to package a single .el file.
1401* Multi-file Packages:: How to package multiple files. 1401* Multi-file Packages:: How to package multiple files.
1402* Package Archives:: Maintaining package archives.
1402 1403
1403Starting Up Emacs 1404Starting Up Emacs
1404 1405
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi
index 3697f18badd..e3bdebd28a1 100644
--- a/doc/lispref/files.texi
+++ b/doc/lispref/files.texi
@@ -1041,7 +1041,8 @@ because they eliminate symbolic links as a cause of name variation.
1041 1041
1042@defun file-truename filename 1042@defun file-truename filename
1043The function @code{file-truename} returns the truename of the file 1043The function @code{file-truename} returns the truename of the file
1044@var{filename}. The argument must be an absolute file name. 1044@var{filename}. If the argument is not an absolute file name,
1045this function first expands it against @code{default-directory}.
1045 1046
1046This function does not expand environment variables. Only 1047This function does not expand environment variables. Only
1047@code{substitute-in-file-name} does that. @xref{Definition of 1048@code{substitute-in-file-name} does that. @xref{Definition of
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi
index 50324a91f5f..07975e64b35 100644
--- a/doc/lispref/minibuf.texi
+++ b/doc/lispref/minibuf.texi
@@ -433,18 +433,17 @@ expression, thus moving point forward one word.
433@cindex minibuffer history 433@cindex minibuffer history
434@cindex history list 434@cindex history list
435 435
436 A @dfn{minibuffer history list} records previous minibuffer inputs so 436 A @dfn{minibuffer history list} records previous minibuffer inputs
437the user can reuse them conveniently. A history list is actually a 437so the user can reuse them conveniently. It is a variable whose value
438symbol, not a list; it is a variable whose value is a list of strings 438is a list of strings (previous inputs), most recent first.
439(previous inputs), most recent first. 439
440 440 There are many separate minibuffer history lists, used for different
441 There are many separate history lists, used for different kinds of 441kinds of inputs. It's the Lisp programmer's job to specify the right
442inputs. It's the Lisp programmer's job to specify the right history 442history list for each use of the minibuffer.
443list for each use of the minibuffer. 443
444 444 You specify a minibuffer history list with the optional @var{hist}
445 You specify the history list with the optional @var{hist} argument 445argument to @code{read-from-minibuffer} or @code{completing-read}.
446to either @code{read-from-minibuffer} or @code{completing-read}. Here 446Here are the possible values for it:
447are the possible values for it:
448 447
449@table @asis 448@table @asis
450@item @var{variable} 449@item @var{variable}
diff --git a/doc/lispref/package.texi b/doc/lispref/package.texi
index 373e1e2b5c7..4de44fe165d 100644
--- a/doc/lispref/package.texi
+++ b/doc/lispref/package.texi
@@ -7,186 +7,223 @@
7@chapter Preparing Lisp code for distribution 7@chapter Preparing Lisp code for distribution
8@cindex packaging 8@cindex packaging
9 9
10 Emacs provides a standard way for Emacs Lisp code to be distributed 10 Emacs provides a standard way to distribute Emacs Lisp code to
11to users. This approach lets users easily download, install, 11users. A @dfn{package} is a collection of one or more files,
12uninstall, and upgrade Lisp code that they might want to use. 12formatted and bundled in such a way that users can easily download,
13install, uninstall, and upgrade it.
13 14
14 A @dfn{package} is simply one or more files, formatted and bundled 15 The following sections describe how to create a package, and how to
15in a particular way. Typically a package includes primarily Emacs 16put it in a @dfn{package archive} for others to download.
16Lisp code, but it is possible to create other kinds of packages as
17well.
18 17
19@menu 18@menu
20* Packaging Basics:: The basic concepts of Emacs Lisp packages. 19* Packaging Basics:: The basic concepts of Emacs Lisp packages.
21* Simple Packages:: How to package a single .el file. 20* Simple Packages:: How to package a single .el file.
22* Multi-file Packages:: How to package multiple files. 21* Multi-file Packages:: How to package multiple files.
22* Package Archives:: Maintaining package archives.
23@end menu 23@end menu
24 24
25@node Packaging Basics 25@node Packaging Basics
26@section Packaging Basics 26@section Packaging Basics
27@cindex packaging basics 27@cindex packaging basics
28
29 A package has a few attributes:
30@cindex package attributes 28@cindex package attributes
31 29
30 A package is either a @dfn{simple package} or a @dfn{multi-file
31package}. A simple package is stored in a package archive as a single
32Emacs Lisp file, while a multi-file package is stored as a tar file
33(containing multiple Lisp files, and possibly non-Lisp files such as a
34manual).
35
36 In ordinary usage, the difference between simple packages and
37multi-file packages is relatively unimportant; the Package Menu
38interface makes no distinction between them. However, the procedure
39for creating them differs, as explained in the following sections.
40
41 Each package (whether simple or multi-file) has certain
42@dfn{attributes}:
43
32@table @asis 44@table @asis
33@item Name 45@item Name
34A string, the name of the package. This attribute is mandatory. If 46A short word (e.g. @samp{auctex}). This is usually also the symbol
35it does not exist, the package cannot be installed by the package 47prefix used in the program (@pxref{Coding Conventions}).
36manager.
37 48
38@item Version 49@item Version
39A version number, which is anything that can be parsed by 50A version number, in a form that the function @code{version-to-list}
40@code{version-to-list}. This attribute is mandatory. If it does not 51understands (e.g. @samp{11.86}). Each release of a package should be
41exist, the package cannot be installed by the package manager. 52accompanied by an increase in the version number.
42 53
43@item Brief description 54@item Brief description
44This is shown to the user in the package menu buffer. It is just a 55This is shown when the package is listed in the Package Menu. It
45single line. On a terminal with 80 characters per line, there are 56should occupy a single line, ideally in 36 characters or less.
46only 36 characters available in the package menu mode for showing the
47brief description, so it is best to keep it very brief. If no brief
48name is given, an empty string is used.
49 57
50@item Long description 58@item Long description
51This can be a @file{README} file or the like. This is available to 59This is shown in the buffer created by @kbd{C-h P}
52the user before the package is installed, via the package menu. It 60(@code{describe-package}), following the package's brief description
53should more fully describe the package and its capabilities, so a user 61and installation status. It normally spans multiple lines, and should
54can read it to decide whether he wants to install the package. This 62fully describe the package and its capabilities.
55attribute is optional.
56 63
57@item Dependencies 64@item Dependencies
58This is a list of other packages and their minimal acceptable 65A list of other packages (possibly including minimal acceptable
59versions. This is used both at download time (to make sure all the 66version numbers) on which this package depends. The list may be
60needed code is available) and at activation time (to ensure a package 67empty, meaning this package has no dependencies. Otherwise,
61is only activated if all its dependencies have been successfully 68installing this package also automatically installs its dependencies;
62activated). This attribute is optional. 69if any dependency cannot be found, the package cannot be installed.
63
64@item Manual
65A package can optionally include an Info manual.
66@end table 70@end table
67 71
68 Conceptually, a package goes through several state transitions (in 72 Installing a package, either via the Package Menu, or via the
69reality some of these transitions are grouped together): 73command @code{package-install-file}, creates a subdirectory of
74@code{package-user-dir} named @file{@var{name}-@var{version}}, where
75@var{name} is the package's name and @var{version} its version
76(e.g. @file{~/.emacs.d/elpa/auctex-11.86/}). We call this the
77package's @dfn{content directory}. It is where Emacs puts the
78package's contents (the single Lisp file for a simple package, or the
79files extracted from a multi-file package).
80
81 Emacs then searches every Lisp file in the content directory for
82autoload magic comments (@pxref{Autoload}). These autoload
83definitions are saved to a file named @file{@var{name}-autoloads.el}
84in the content directory. They are typically used to autoload the
85principal user commands defined in the package, but they can also
86perform other tasks, such as adding an element to
87@code{auto-mode-alist} (@pxref{Auto Major Mode}). During this time,
88Emacs will also byte-compile the Lisp files.
89
90 After installation, and (by default) each time Emacs is started, the
91installed package is @dfn{activated}. During activation, Emacs adds
92the package's content directory to @code{load-path}, and evaluates the
93autoload definitions in @file{@var{name}-autoloads.el}.
94
95 Note that a package typically does @emph{not} autoload every
96function and variable defined within it---only the handful of commands
97typically called to begin using the package.
70 98
71@table @asis 99@node Simple Packages
72@item Download 100@section Simple Packages
73Fetch the package from somewhere. 101@cindex single file packages
74 102
75@item Install 103 A simple package consists of a single Emacs Lisp source file. The
76Unpack the package, or write a @file{.el} file into the appropriate 104file must conform to the Emacs Lisp library header conventions
77install directory. This step also includes extracting autoloads and 105(@pxref{Library Headers}). The package's attributes are taken from
78byte-compiling the Emacs Lisp code. 106the various headers, as illustrated by the following example:
79 107
80@item Activate 108@example
81Update @code{load-path} and @code{Info-directory-list} and evaluate 109@group
82the autoloads, so that the package is ready for the user to use. 110;;; superfrobnicator.el --- Frobnicate and bifurcate flanges
83@end table
84 111
85 It is best for users if packages do not do too much work at 112;; Copyright (C) 2011 Free Software Foundation, Inc.
86activation time. The best approach is to have activation consist of 113@end group
87some autoloads and little more.
88 114
89@node Simple Packages 115;; Author: J. R. Hacker <jrh@@example.com>
90@section Simple Packages 116;; Version: 1.3
91@cindex single file packages 117;; Package-Requires: ((flange "1.0"))
118;; Keywords: frobnicate
92 119
93 The simplest package consists of a single Emacs Lisp source file. 120@dots{}
94In this case, all the attributes of the package (@pxref{Packaging
95Basics}) are taken from this file.
96 121
97 The package system expects this @file{.el} file to conform to the 122;;; Commentary:
98Emacs Lisp library header conventions. @xref{Library Headers}.
99 123
100 The name of the package is the same as the base name of the 124;; This package provides a minor mode to frobnicate and/or
101@file{.el} file, as written in the first comment line. For example, 125;; bifurcate any flanges you desire. To activate it, just type
102given the header line: 126@dots{}
103 127
104@smallexample 128;;;###autoload
105;;; superfrobnicator.el --- frobnicate and bifurcate flanges 129(define-minor-mode superfrobnicator-mode
106@end smallexample 130@dots{}
131@end example
107 132
108the package name will be @samp{superfrobnicator}. 133 The name of the package is the same as the base name of the file, as
134written on the first line. Here, it is @samp{superfrobnicator}.
109 135
110 The short description of the package is also taken from the first 136 The brief description is also taken from the first line. Here, it
111line of the file. 137is @samp{Frobnicate and bifurcate flanges}.
112 138
113 If the file has a ``Commentary'' header, then it is used as the long 139 The version number comes from the @samp{Package-Version} header, if
114description. 140it exists, or from the @samp{Version} header otherwise. One or the
141other @emph{must} be present. Here, the version number is 1.3.
115 142
116 The version of the package comes either from the ``Package-Version'' 143 If the file has a @samp{;;; Commentary:} section, this section is
117header, if it exists, or from the ``Version'' header. A package is 144used as the long description. (When displaying the description, Emacs
118required to have a version number. Each release of a package must be 145omits the @samp{;;; Commentary:} line, as well as the leading comment
119accompanied by an increase in the version number. 146characters in the commentary itself.)
120 147
121 If the file has a ``Package-Requires'' header, then that is used as 148 If the file has a @samp{Package-Requires} header, that is used as
122the package dependencies. Otherwise, the package is assumed not to 149the package dependencies. In the above example, the package depends
123have any dependencies. 150on the @samp{flange} package, version 1.0 or higher. @xref{Library
151Headers}, for a description of the @samp{Package-Requires} header. If
152the header is omitted, the package has no dependencies.
124 153
125 A single-file package cannot have an Info manual. 154 The file ought to also contain one or more autoload magic comments,
155as explained in @ref{Packaging Basics}. In the above example, a magic
156comment autoloads @code{superfrobnicator-mode}.
126 157
127 The file will be scanned for autoload cookies at install time. 158 @xref{Package Archives}, for a explanation of how to add a
128@xref{Autoload}. 159single-file package to a package archive.
129 160
130@node Multi-file Packages 161@node Multi-file Packages
131@section Multi-file Packages 162@section Multi-file Packages
132@cindex multi-file packages 163@cindex multi-file packages
133 164
134 A multi-file package is just a @file{.tar} file. While less 165 A multi-file package is less convenient to create than a single-file
135convenient to create than a single-file package, a multi-file package 166package, but it offers more features: it can include multiple Emacs
136also offers more features: it can include an Info manual, multiple 167Lisp files, an Info manual, and other file types (such as images).
137Emacs Lisp files, and also other data files needed by a package. 168
138 169 Prior to installation, a multi-file package is stored in a package
139 The contents of the @file{.tar} file must all appear beneath a 170archive as a tar file. The tar file must be named
140single directory, named after the package and version. Files can 171@file{@var{name}-@var{version}.tar}, where @var{name} is the package
141appear in subdirectories of this top-most directory, but Emacs Lisp 172name and @var{version} is the version number. Its contents, once
142code will only be found (and thus byte-compiled) at the top-most 173extracted, must all appear in a directory named
143level. Also, the @file{.tar} file is typically also given this same 174@file{@var{name}-@var{version}}, the @dfn{content directory}
144name. For example, if you are distributing version 1.3 of the 175(@pxref{Packaging Basics}). Files may also extract into
145superfrobnicator, the package file would be named 176subdirectories of the content directory.
146``superfrobnicator-1.3.tar'' and the contents would all appear in the 177
147directory @file{superfrobnicator-1.3} in that @file{.tar}. 178 One of the files in the content directory must be named
148 179@file{@var{name}-pkg.el}. It must contain a single Lisp form,
149 The package must include a @file{-pkg.el} file, named after the 180consisting of a call to the function @code{define-package}, described
150package. In our example above, this file would be called 181below. This defines the package's version, brief description, and
151@file{superfrobnicator-pkg.el}. This file must have a single form in 182requirements.
152it, a call to @code{define-package}. The package dependencies and 183
153brief description are taken from this form. 184 For example, if we distribute version 1.3 of the superfrobnicator as
185a multi-file package, the tar file would be
186@file{superfrobnicator-1.3.tar}. Its contents would extract into the
187directory @file{superfrobnicator-1.3}, and one of these would be the
188file @file{superfrobnicator-pkg.el}.
154 189
155@defun define-package name version &optional docstring requirements 190@defun define-package name version &optional docstring requirements
156Define a package. @var{name} is the name of the package, a string. 191This function defines a package. @var{name} is the package name, a
157@var{version} is the package's version, a string. It must be in a 192string. @var{version} is the version, as a string of a form that can
158form that can be understood by @code{version-to-list}. 193be understood by the function @code{version-to-list}. @var{docstring}
159@var{docstring} is the short description of the package. 194is the brief description.
195
160@var{requirements} is a list of required packages and their versions. 196@var{requirements} is a list of required packages and their versions.
197Each element in this list should have the form @code{(@var{dep-name}
198@var{dep-version})}, where @var{dep-name} is a symbol whose name is
199the dependency's package name, and @var{dep-version} is the
200dependency's version (a string).
161@end defun 201@end defun
162 202
163 If a @file{README} file exists in the content directory, then it is 203 If the content directory contains a file named @file{README}, this
164used as the long description. 204file is used as the long description.
165 205
166 If the package has an Info manual, you should distribute the needed 206 If the content directory contains a file named @file{dir}, this is
167info files, plus a @file{dir} file made with @command{install-info}. 207assumed to be an Info directory file made with @command{install-info}.
168@xref{Invoking install-info, Invoking install-info, Invoking 208@xref{Invoking install-info, Invoking install-info, Invoking
169install-info, texinfo, Texinfo}. 209install-info, texinfo, Texinfo}. The Info files listed in this
170 210directory file should also be present in the content directory. In
171 Do not include any @file{.elc} files in the package. Those will be 211this case, Emacs will automatically add the content directory to
172created at install time. Note that there is no way to control the 212@code{Info-directory-list} when the package is activated.
173order in which files are byte-compiled; your package must be robust
174here.
175 213
176 The installation process will scan all the @file{.el} files in the 214 Do not include any @file{.elc} files in the package. Those are
177package for autoload cookies. @xref{Autoload}. They are extracted 215created when the package is installed. Note that there is no way to
178into a @file{-autoloads.el} file (e.g., 216control the order in which files are byte-compiled.
179@file{superfrobnicator-autoloads.el}), so do not include a file of
180that name in your package.
181 217
182 Any other files in the @file{.tar} file are simply unpacked when the 218 Do not include any file named @file{@var{name}-autoloads.el}. This
183package is installed. This can be useful if your package needs 219file is reserved for the package's autoload definitions
184auxiliary data files --- e.g., icons or sounds. 220(@pxref{Packaging Basics}). It is created automatically when the
221package is installed, by searching all the Lisp files in the package
222for autoload magic comments.
185 223
186 Emacs Lisp code installed via the package manager must take special 224 If the multi-file package contains auxiliary data files (such as
187care to be location-independent. One easy way to do this is to make 225images), the package's Lisp code can refer to these files via the
188references to auxiliary data files relative to @var{load-file-name}. 226variable @code{load-file-name} (@pxref{Loading}). Here is an example:
189For example:
190 227
191@smallexample 228@smallexample
192(defconst superfrobnicator-base (file-name-directory load-file-name)) 229(defconst superfrobnicator-base (file-name-directory load-file-name))
@@ -194,3 +231,8 @@ For example:
194(defun superfrobnicator-fetch-image (file) 231(defun superfrobnicator-fetch-image (file)
195 (expand-file-name file superfrobnicator-base)) 232 (expand-file-name file superfrobnicator-base))
196@end smallexample 233@end smallexample
234
235@node Package Archives
236@section Creating and Maintaining Package Archives
237
238To be done.
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index 8a8de0e7fa8..dc9fed58076 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -266,10 +266,9 @@ subprocess by @code{call-process-region} is encoded using a coding
266system, much like text written into a file. @xref{Coding Systems}. 266system, much like text written into a file. @xref{Coding Systems}.
267 267
268@defun call-process program &optional infile destination display &rest args 268@defun call-process program &optional infile destination display &rest args
269This function calls @var{program} in a separate process and waits for 269This function calls @var{program} and waits for it to finish.
270it to finish.
271 270
272The standard input for the process comes from file @var{infile} if 271The standard input for the new process comes from file @var{infile} if
273@var{infile} is not @code{nil}, and from the null device otherwise. 272@var{infile} is not @code{nil}, and from the null device otherwise.
274The argument @var{destination} says where to put the process output. 273The argument @var{destination} says where to put the process output.
275Here are the possibilities: 274Here are the possibilities:
@@ -488,10 +487,10 @@ inputinput@point{}
488@end defun 487@end defun
489 488
490@defun call-process-shell-command command &optional infile destination display &rest args 489@defun call-process-shell-command command &optional infile destination display &rest args
491This function executes the shell command @var{command} synchronously 490This function executes the shell command @var{command} synchronously.
492in a separate process. The final arguments @var{args} are additional 491The final arguments @var{args} are additional arguments to add at the
493arguments to add at the end of @var{command}. The other arguments 492end of @var{command}. The other arguments are handled as in
494are handled as in @code{call-process}. 493@code{call-process}.
495@end defun 494@end defun
496 495
497@defun process-file-shell-command command &optional infile destination display &rest args 496@defun process-file-shell-command command &optional infile destination display &rest args
@@ -506,12 +505,12 @@ then returns the command's output as a string.
506@end defun 505@end defun
507 506
508@defun process-lines program &rest args 507@defun process-lines program &rest args
509This function runs @var{program} in a separate process, waits for it 508This function runs @var{program}, waits for it to finish, and returns
510to finish, and returns its output as a list of strings. Each string 509its output as a list of strings. Each string in the list holds a
511in the list holds a single line of text output by the program; the 510single line of text output by the program; the end-of-line characters
512end-of-line characters are stripped from each line. The arguments 511are stripped from each line. The arguments beyond @var{program},
513beyond @var{program}, @var{args}, are strings that specify 512@var{args}, are strings that specify command-line arguments with which
514command-line arguments with which to run the program. 513to run the program.
515 514
516If @var{program} exits with a non-zero exit status, this function 515If @var{program} exits with a non-zero exit status, this function
517signals an error. 516signals an error.
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi
index edffb4742ec..27ec4831cbe 100644
--- a/doc/lispref/variables.texi
+++ b/doc/lispref/variables.texi
@@ -1767,7 +1767,8 @@ directory-local variables. The name of the file is
1767The MS-DOS version of Emacs uses @file{_dir-locals.el} instead, due to 1767The MS-DOS version of Emacs uses @file{_dir-locals.el} instead, due to
1768limitations of the DOS filesystems. 1768limitations of the DOS filesystems.
1769}. A file by that name in a directory causes Emacs to apply its 1769}. A file by that name in a directory causes Emacs to apply its
1770settings to any file in that directory or any of its subdirectories. 1770settings to any file in that directory or any of its subdirectories
1771(optionally, you can exclude subdirectories; see below).
1771If some of the subdirectories have their own @file{.dir-locals.el} 1772If some of the subdirectories have their own @file{.dir-locals.el}
1772files, Emacs uses the settings from the deepest file it finds starting 1773files, Emacs uses the settings from the deepest file it finds starting
1773from the file's directory and moving up the directory tree. The file 1774from the file's directory and moving up the directory tree. The file
@@ -1798,7 +1799,10 @@ file's buffer turns on a mode that is derived from @var{major-mode},
1798then the all the variables in the associated @var{alist} are applied; 1799then the all the variables in the associated @var{alist} are applied;
1799@var{alist} should be of the form @code{(@var{name} . @var{value})}. 1800@var{alist} should be of the form @code{(@var{name} . @var{value})}.
1800A special value @code{nil} for @var{major-mode} means the settings are 1801A special value @code{nil} for @var{major-mode} means the settings are
1801applicable to any mode. 1802applicable to any mode. In @var{alist}, you can use a special
1803@var{name}: @code{subdirs}. If the associated value is
1804@code{nil}, the alist is only applied to files in the relevant
1805directory, not to those in any subdirectories.
1802 1806
1803With the second form of @var{variables}, if @var{directory} is the 1807With the second form of @var{variables}, if @var{directory} is the
1804initial substring of the file's directory, then @var{list} is applied 1808initial substring of the file's directory, then @var{list} is applied
@@ -1806,12 +1810,19 @@ recursively by following the above rules; @var{list} should be of one
1806of the two forms accepted by this function in @var{variables}. 1810of the two forms accepted by this function in @var{variables}.
1807@end defun 1811@end defun
1808 1812
1809@defun dir-locals-set-directory-class directory class 1813@defun dir-locals-set-directory-class directory class &optional mtime
1810This function assigns @var{class} to all the files in @code{directory} 1814This function assigns @var{class} to all the files in @code{directory}
1811and its subdirectories. Thereafter, all the variable settings 1815and its subdirectories. Thereafter, all the variable settings
1812specified for @var{class} will be applied to any visited file in 1816specified for @var{class} will be applied to any visited file in
1813@var{directory} and its children. @var{class} must have been already 1817@var{directory} and its children. @var{class} must have been already
1814defined by @code{dir-locals-set-class-variables} 1818defined by @code{dir-locals-set-class-variables}.
1819
1820Emacs uses this function internally when it loads directory variables
1821from a @code{.dir-locals.el} file. In that case, the optional
1822argument @var{mtime} holds the file modification time (as returned by
1823@code{file-attributes}). Emacs uses this time to check stored
1824local variables are still valid. If you are assigning a class
1825directly, not via a file, this argument should be @code{nil}.
1815@end defun 1826@end defun
1816 1827
1817@defvar dir-locals-class-alist 1828@defvar dir-locals-class-alist
@@ -1821,8 +1832,9 @@ settings. It is updated by @code{dir-locals-set-class-variables}.
1821 1832
1822@defvar dir-locals-directory-cache 1833@defvar dir-locals-directory-cache
1823This alist holds directory names, their assigned class names, and 1834This alist holds directory names, their assigned class names, and
1824modification times of the associated directory local variables file. 1835modification times of the associated directory local variables file
1825It is updated by @code{dir-locals-set-directory-class}. 1836(if there is one). The function @code{dir-locals-set-directory-class}
1837updates this list.
1826@end defvar 1838@end defvar
1827 1839
1828@node Frame-Local Variables 1840@node Frame-Local Variables
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 7d32b16790e..2c5f998737a 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,73 @@
12011-03-06 Jay Belanger <jay.p.belanger@gmail.com>
2
3 * calc.texi (Logarithmic Units): Rename calc-logunits-dblevel
4 and calc-logunits-nplevel to calc-dblevel and calc-nplevel,
5 respectively.
6 (Musical Notes): New section.
7 (Customizing Calc): Mention the customizable variable
8 calc-note-threshold.
9
102011-03-03 Glenn Morris <rgm@gnu.org>
11
12 * url.texi (Dealing with HTTP documents): Remove reference to
13 function url-decode-text-part; never seems to have existed. (Bug#6038)
14 (Configuration): Update url-configuration-directory description.
15
162011-03-02 Glenn Morris <rgm@gnu.org>
17
18 * dired-x.texi (Multiple Dired Directories): Remove mentions
19 of dired-default-directory-alist and dired-default-directory.
20 Move dired-smart-shell-command here...
21 (Miscellaneous Commands): ... from here.
22
232011-03-02 Paul Eggert <eggert@cs.ucla.edu>
24
25 * texinfo.tex: Update to version 2011-02-24.09.
26
272011-03-02 Glenn Morris <rgm@gnu.org>
28
29 * dired-x.texi (Omitting Variables): Refer to add-dir-local-variable
30 instead of the obsoleted dired-omit-here-always.
31
322011-02-28 Michael Albinus <michael.albinus@gmx.de>
33
34 * tramp.texi (Frequently Asked Questions): Add Emacs 24 to
35 supported systems.
36
372011-02-28 Glenn Morris <rgm@gnu.org>
38
39 * dbus.texi (Type Conversion): Grammar fix.
40
412011-02-23 Michael Albinus <michael.albinus@gmx.de>
42
43 * tramp.texi: Use consistently "Emacs" (instead of "GNU Emacs") and
44 "Debian GNU/Linux".
45
46 * trampver.texi [xemacs]: Set emacsothername to "Emacs".
47
482011-02-23 Glenn Morris <rgm@gnu.org>
49
50 * dired-x.texi (Features): Minor rephrasing.
51 (Local Variables): Fix typos.
52
53 * edt.texi, erc.texi, gnus.texi, idlwave.texi, mh-e.texi:
54 Standardize some Emacs/XEmacs terminology.
55
56 * dired-x.texi (Features): Don't advertise obsolete local variables.
57 Simplify layout.
58 (Omitting Variables): Update local variables example.
59 (Local Variables): Say this is obsolete. Fix description of
60 dired-enable-local-variables possible values.
61
622011-02-22 Teodor Zlatanov <tzz@lifelogs.com>
63
64 * auth.texi (Help for users): Mention ~/.netrc is also searched by
65 default now.
66
672011-02-21 Lars Ingebrigtsen <larsi@gnus.org>
68
69 * gnus.texi (Article Date): Clarify gnus-article-update-date-headers.
70
12011-02-20 Lars Ingebrigtsen <larsi@gnus.org> 712011-02-20 Lars Ingebrigtsen <larsi@gnus.org>
2 72
3 * gnus.texi (Window Layout): Document layout names. 73 * gnus.texi (Window Layout): Document layout names.
diff --git a/doc/misc/auth.texi b/doc/misc/auth.texi
index 27c6691dfa8..23ac23dce5b 100644
--- a/doc/misc/auth.texi
+++ b/doc/misc/auth.texi
@@ -127,8 +127,8 @@ you will be pwned as the kids say.
127 127
128``Netrc'' files are usually called @code{.authinfo} or @code{.netrc}; 128``Netrc'' files are usually called @code{.authinfo} or @code{.netrc};
129nowadays @code{.authinfo} seems to be more popular and the auth-source 129nowadays @code{.authinfo} seems to be more popular and the auth-source
130library encourages this confusion by making it the default, as you'll 130library encourages this confusion by accepting both, as you'll see
131see later. 131later.
132 132
133If you have problems with the search, set @code{auth-source-debug} to 133If you have problems with the search, set @code{auth-source-debug} to
134@code{t} and see what host, port, and user the library is checking in 134@code{t} and see what host, port, and user the library is checking in
@@ -159,7 +159,7 @@ and simplest configuration is:
159;;; mostly equivalent (see below about fallbacks) but shorter: 159;;; mostly equivalent (see below about fallbacks) but shorter:
160(setq auth-sources '((:source "~/.authinfo.gpg"))) 160(setq auth-sources '((:source "~/.authinfo.gpg")))
161;;; even shorter and the @emph{default}: 161;;; even shorter and the @emph{default}:
162(setq auth-sources '("~/.authinfo.gpg" "~/.authinfo")) 162(setq auth-sources '("~/.authinfo.gpg" "~/.authinfo" "~/.netrc"))
163;;; use the Secrets API @var{Login} collection (@pxref{Secret Service API}) 163;;; use the Secrets API @var{Login} collection (@pxref{Secret Service API})
164(setq auth-sources '("secrets:Login")) 164(setq auth-sources '("secrets:Login"))
165@end lisp 165@end lisp
@@ -184,8 +184,8 @@ the defaults: any host and any port are looked up in the netrc
184file @code{~/.authinfo.gpg}, which is a GnuPG encrypted file 184file @code{~/.authinfo.gpg}, which is a GnuPG encrypted file
185(@pxref{GnuPG and EasyPG Assistant Configuration}). 185(@pxref{GnuPG and EasyPG Assistant Configuration}).
186 186
187If that fails, the unencrypted netrc file @code{~/.authinfo} will 187If that fails, the unencrypted netrc files @code{~/.authinfo} and
188be used. 188@code{~/.netrc} will be used.
189 189
190The typical netrc line example is without a port. 190The typical netrc line example is without a port.
191 191
diff --git a/doc/misc/calc.texi b/doc/misc/calc.texi
index b9d4f8c4a23..88103fc0034 100644
--- a/doc/misc/calc.texi
+++ b/doc/misc/calc.texi
@@ -27676,6 +27676,7 @@ begin with the @kbd{u} prefix key.
27676* Predefined Units:: 27676* Predefined Units::
27677* User-Defined Units:: 27677* User-Defined Units::
27678* Logarithmic Units:: 27678* Logarithmic Units::
27679* Musical Notes::
27679@end menu 27680@end menu
27680 27681
27681@node Basic Operations on Units, The Units Table, Units, Units 27682@node Basic Operations on Units, The Units Table, Units, Units
@@ -28121,7 +28122,7 @@ was already a set of user-defined units in your Calc init file, it
28121is replaced by the new set. (@xref{General Mode Commands}, for a way to 28122is replaced by the new set. (@xref{General Mode Commands}, for a way to
28122tell Calc to use a different file for the Calc init file.) 28123tell Calc to use a different file for the Calc init file.)
28123 28124
28124@node Logarithmic Units, , User-Defined Units, Units 28125@node Logarithmic Units, Musical Notes, User-Defined Units, Units
28125@section Logarithmic Units 28126@section Logarithmic Units
28126 28127
28127The units @code{dB} (decibels) and @code{Np} (nepers) are logarithmic 28128The units @code{dB} (decibels) and @code{Np} (nepers) are logarithmic
@@ -28251,18 +28252,18 @@ The @kbd{H l q} [@code{fieldquant}] command behaves like @kbd{l q} but
28251computes field quantities instead of power quantities. 28252computes field quantities instead of power quantities.
28252 28253
28253@kindex l d 28254@kindex l d
28254@pindex calc-logunits-dblevel 28255@pindex calc-dblevel
28255@tindex dbpowerlevel 28256@tindex dbpowerlevel
28256@tindex dbfieldlevel 28257@tindex dbfieldlevel
28257@kindex l n 28258@kindex l n
28258@pindex calc-logunits-nplevel 28259@pindex calc-nplevel
28259@tindex nppowerlevel 28260@tindex nppowerlevel
28260@tindex npfieldlevel 28261@tindex npfieldlevel
28261The @kbd{l d} (@code{calc-logunits-dblevel}) [@code{dbpowerlevel}] 28262The @kbd{l d} (@code{calc-dblevel}) [@code{dbpowerlevel}]
28262command will compute the decibel level of a power quantity using the 28263command will compute the decibel level of a power quantity using the
28263default reference level; @kbd{H l d} [@code{dbfieldlevel}] will 28264default reference level; @kbd{H l d} [@code{dbfieldlevel}] will
28264compute the decibel level of a field quantity. The commands @kbd{l n} 28265compute the decibel level of a field quantity. The commands @kbd{l n}
28265(@code{calc-logunits-nplevel}) [@code{nppowerlevel}] and @kbd{H l n} 28266(@code{calc-nplevel}) [@code{nppowerlevel}] and @kbd{H l n}
28266[@code{npfieldlevel}] will similarly compute neper levels. With the 28267[@code{npfieldlevel}] will similarly compute neper levels. With the
28267capital @kbd{O} prefix these commands will read a reference level 28268capital @kbd{O} prefix these commands will read a reference level
28268from the stack; in an algebraic formula the reference level can be 28269from the stack; in an algebraic formula the reference level can be
@@ -28363,6 +28364,76 @@ a logarithmic unit by a number; the @kbd{l /}
28363logarithmic unit by a number. Note that the reference quantities don't 28364logarithmic unit by a number. Note that the reference quantities don't
28364play a role in this arithmetic. 28365play a role in this arithmetic.
28365 28366
28367@node Musical Notes, , Logarithmic Units, Units
28368@section Musical Notes
28369
28370Calc can convert between musical notes and their associated
28371frequencies. Notes can be given using either scientific pitch
28372notation or midi numbers. Since these note systems are basically
28373logarithmic scales, Calc uses the @kbd{l} prefix for functions
28374operating on notes.
28375
28376Scientific pitch notation refers to a note by giving a letter
28377A through G, possibly followed by a flat or sharp) with a subscript
28378indicating an octave number. Each octave starts with C and ends with
28379B and
28380@c increasing each note by a semitone will result
28381@c in the sequence @expr{C}, @expr{C} sharp, @expr{D}, @expr{E} flat, @expr{E},
28382@c @expr{F}, @expr{F} sharp, @expr{G}, @expr{A} flat, @expr{A}, @expr{B}
28383@c flat and @expr{B}.
28384the octave numbered 0 was chosen to correspond to the lowest
28385audible frequency. Using this system, middle C (about 261.625 Hz)
28386corresponds to the note @expr{C} in octave 4 and is denoted
28387@expr{C_4}. Any frequency can be described by giving a note plus an
28388offset in cents (where a cent is a ratio of frequencies so that a
28389semitone consists of 100 cents).
28390
28391The midi note number system assigns numbers to notes so that
28392@expr{C_(-1)} corresponds to the midi note number 0 and @expr{G_9}
28393corresponds to the midi note number 127. A midi controller can have
28394up to 128 keys and each midi note number from 0 to 127 corresponds to
28395a possible key.
28396
28397@kindex l s
28398@pindex calc-spn
28399@tindex spn
28400The @kbd{l s} (@code{calc-spn}) [@code{spn}] command converts either
28401a frequency or a midi number to scientific pitch notation. For
28402example, @code{500 Hz} gets converted to
28403@code{B_4 + 21.3094853649 cents} and @code{84} to @code{C_6}.
28404
28405
28406@kindex l m
28407@pindex calc-midi
28408@tindex midi
28409The @kbd{l m} (@code{calc-midi}) [@code{midi}] command converts either
28410a frequency or a note given in scientific pitch notation to the
28411corresponding midi number. For example, @code{C_6} gets converted to 84
28412and @code{440 Hz} to 69.
28413
28414@kindex l f
28415@pindex calc-freq
28416@tindex freq
28417The @kbd{l f} (@code{calc-freq}) [@code{freq}] command converts either
28418either a midi number or a note given in scientific pitch notation to
28419the corresponding frequency. For example, @code{Asharp_2 + 30 cents}
28420gets converted to @code{118.578040134 Hz} and @code{55} to
28421@code{195.99771799 Hz}.
28422
28423Since the frequencies of notes are not usually given exactly (and are
28424typically irrational), the customizable variable
28425@code{calc-note-threshold} determines how close (in cents) a frequency
28426needs to be to a note to be recognized as that note
28427(@pxref{Customizing Calc}). This variable has a default value of
28428@code{1}. For example, middle @var{C} is approximately
28429@expr{261.625565302 Hz}; this frequency is often shortened to
28430@expr{261.625 Hz}. Without @code{calc-note-threshold} (or a value of
28431@expr{0}), Calc would convert @code{261.625 Hz} to scientific pitch
28432notation @code{B_3 + 99.9962592773 cents}; with the default value of
28433@code{1}, Calc converts @code{261.625 Hz} to @code{C_4}.
28434
28435
28436
28366@node Store and Recall, Graphics, Units, Top 28437@node Store and Recall, Graphics, Units, Top
28367@chapter Storing and Recalling 28438@chapter Storing and Recalling
28368 28439
@@ -35481,6 +35552,15 @@ and the default value of @code{calc-logunits-field-reference} is
35481@code{"20 uPa"}. 35552@code{"20 uPa"}.
35482@end defvar 35553@end defvar
35483 35554
35555@defvar calc-note-threshold
35556See @ref{Musical Notes}.@*
35557The variable @code{calc-note-threshold} is a number (written as a
35558string) which determines how close (in cents) a frequency needs to be
35559to a note to be recognized as that note.
35560
35561The default value of @code{calc-note-threshold} is 1.
35562@end defvar
35563
35484@defvar calc-highlight-selections-with-faces 35564@defvar calc-highlight-selections-with-faces
35485@defvarx calc-selected-face 35565@defvarx calc-selected-face
35486@defvarx calc-nonselected-face 35566@defvarx calc-nonselected-face
@@ -36129,26 +36209,29 @@ keystrokes are not listed in this summary.
36129@r{ v x@: I k T @: @: @:ltpt@:(x,v)} 36209@r{ v x@: I k T @: @: @:ltpt@:(x,v)}
36130 36210
36131@c 36211@c
36132@r{ a b@: l + @: @: 2 @:lupoweradd@:(a,b)} 36212@r{ a b@: l + @: @: @:lupoweradd@:(a,b)}
36133@r{ a b@: H l + @: @: 2 @:lufieldadd@:(a,b)} 36213@r{ a b@: H l + @: @: @:lufieldadd@:(a,b)}
36134@r{ a b@: l - @: @: 2 @:lupowersub@:(a,b)} 36214@r{ a b@: l - @: @: @:lupowersub@:(a,b)}
36135@r{ a b@: H l - @: @: 2 @:lufieldsub@:(a,b)} 36215@r{ a b@: H l - @: @: @:lufieldsub@:(a,b)}
36136@r{ a b@: l * @: @: 2 @:lupowermul@:(a,b)} 36216@r{ a b@: l * @: @: @:lupowermul@:(a,b)}
36137@r{ a b@: H l * @: @: 2 @:lufieldmul@:(a,b)} 36217@r{ a b@: H l * @: @: @:lufieldmul@:(a,b)}
36138@r{ a b@: l / @: @: 2 @:lupowerdiv@:(a,b)} 36218@r{ a b@: l / @: @: @:lupowerdiv@:(a,b)}
36139@r{ a b@: H l / @: @: 2 @:lufielddiv@:(a,b)} 36219@r{ a b@: H l / @: @: @:lufielddiv@:(a,b)}
36140@r{ a@: l d @: @: 1 @:dbpowerlevel@:(a)} 36220@r{ a@: l d @: @: @:dbpowerlevel@:(a)}
36141@r{ a b@: O l d @: @: 2 @:dbpowerlevel@:(a,b)} 36221@r{ a b@: O l d @: @: @:dbpowerlevel@:(a,b)}
36142@r{ a@: H l d @: @: 1 @:dbfieldlevel@:(a)} 36222@r{ a@: H l d @: @: @:dbfieldlevel@:(a)}
36143@r{ a b@: O H l d @: @: 2 @:dbfieldlevel@:(a,b)} 36223@r{ a b@: O H l d @: @: @:dbfieldlevel@:(a,b)}
36144@r{ a@: l n @: @: 1 @:nppowerlevel@:(a)} 36224@r{ a@: l n @: @: @:nppowerlevel@:(a)}
36145@r{ a b@: O l n @: @: 2 @:nppowerlevel@:(a,b)} 36225@r{ a b@: O l n @: @: @:nppowerlevel@:(a,b)}
36146@r{ a@: H l n @: @: 1 @:npfieldlevel@:(a)} 36226@r{ a@: H l n @: @: @:npfieldlevel@:(a)}
36147@r{ a b@: O H l n @: @: 2 @:npfieldlevel@:(a,b)} 36227@r{ a b@: O H l n @: @: @:npfieldlevel@:(a,b)}
36148@r{ a@: l q @: @: 1 @:powerquant@:(a)} 36228@r{ a@: l q @: @: @:powerquant@:(a)}
36149@r{ a b@: O l q @: @: 2 @:powerquant@:(a,b)} 36229@r{ a b@: O l q @: @: @:powerquant@:(a,b)}
36150@r{ a@: H l q @: @: 1 @:fieldquant@:(a)} 36230@r{ a@: H l q @: @: @:fieldquant@:(a)}
36151@r{ a b@: O H l q @: @: 2 @:fieldquant@:(a,b)} 36231@r{ a b@: O H l q @: @: @:fieldquant@:(a,b)}
36232@r{ a@: l s @: @: @:spn@:(a)}
36233@r{ a@: l m @: @: @:midi@:(a)}
36234@r{ a@: l f @: @: @:freq@:(a)}
36152 36235
36153@c 36236@c
36154@r{ @: m a @: @: 12,13 @:calc-algebraic-mode@:} 36237@r{ @: m a @: @: 12,13 @:calc-algebraic-mode@:}
diff --git a/doc/misc/dbus.texi b/doc/misc/dbus.texi
index ad202f963aa..e6fb00d3482 100644
--- a/doc/misc/dbus.texi
+++ b/doc/misc/dbus.texi
@@ -893,10 +893,10 @@ applied, when the corresponding D-Bus message is created:
893@end example 893@end example
894 894
895Other Lisp objects, like symbols or hash tables, are not accepted as 895Other Lisp objects, like symbols or hash tables, are not accepted as
896input parameter. 896input parameters.
897 897
898If it is necessary to use another D-Bus type, a corresponding type 898If it is necessary to use another D-Bus type, a corresponding type
899symbol can be preceeded to the corresponding Lisp object. Basic D-Bus 899symbol can be prepended to the corresponding Lisp object. Basic D-Bus
900types are represented by the type symbols @code{:byte}, 900types are represented by the type symbols @code{:byte},
901@code{:boolean}, @code{:int16}, @code{:uint16}, @code{:int32}, 901@code{:boolean}, @code{:int16}, @code{:uint16}, @code{:int32},
902@code{:uint32}, @code{:int64}, @code{:uint64}, @code{:double}, 902@code{:uint32}, @code{:int64}, @code{:uint64}, @code{:double},
diff --git a/doc/misc/dired-x.texi b/doc/misc/dired-x.texi
index 003046d5a7c..eb797789922 100644
--- a/doc/misc/dired-x.texi
+++ b/doc/misc/dired-x.texi
@@ -129,48 +129,33 @@ original @file{dired-x.el}).
129@section Features 129@section Features
130@cindex Features 130@cindex Features
131 131
132Some features provided by Dired Extra 132Some features provided by Dired Extra:
133 133
134@enumerate 134@enumerate
135@item 135@item
136Omitting uninteresting files from Dired listing. 136Omitting uninteresting files from Dired listing
137@itemize @bullet 137(@pxref{Omitting Files in Dired}).
138@xref{Omitting Files in Dired}.
139@end itemize
140@item 138@item
141Local variables for Dired directories. 139Guessing shell commands in Dired buffers
142@itemize @bullet 140(@pxref{Shell Command Guessing}).
143@xref{Local Variables}.
144@end itemize
145@item 141@item
146Guessing shell commands in Dired buffers. 142Running Dired command in non-Dired buffers
147@itemize @bullet 143(@pxref{Virtual Dired}).
148@xref{Shell Command Guessing}.
149@end itemize
150@item
151Running Dired command in non-Dired buffers.
152@itemize @bullet
153@xref{Virtual Dired}.
154@end itemize
155@item 144@item
156Finding a file mentioned in a buffer 145Finding a file mentioned in a buffer
157@itemize @bullet 146(@pxref{Find File At Point}).
158@xref{Find File At Point}.
159@end itemize
160@item 147@item
161Commands using file marking. 148Commands using file marking
162@itemize @bullet 149(@pxref{Advanced Mark Commands}).
163@xref{Advanced Mark Commands}.
164@end itemize
165@end enumerate 150@end enumerate
166 151
167@noindent 152@noindent
168@file{dired-x.el} binds some functions to keys in Dired Mode (@pxref{Key 153@file{dired-x.el} binds some functions to keys in Dired Mode (@pxref{Key
169Index}) and also binds @kbd{C-x C-j} and @kbd{C-x 4 C-j} @emph{globally} to 154Index}) and also binds @kbd{C-x C-j} and @kbd{C-x 4 C-j} @emph{globally} to
170@code{dired-jump} (@pxref{Miscellaneous Commands}). It may also bind @kbd{C-x 155@code{dired-jump} (@pxref{Miscellaneous Commands}). Optionally, it
171C-f} and @kbd{C-x 4 C-f} to @code{dired-x-find-file} and 156also binds @kbd{C-x C-f} and @kbd{C-x 4 C-f} to
172@code{dired-x-find-file-other-window}, respectively (@pxref{Find File At 157@code{dired-x-find-file} and @code{dired-x-find-file-other-window},
173Point}). 158respectively (@pxref{Find File At Point}).
174 159
175@node Technical Details, , Features, Introduction 160@node Technical Details, , Features, Introduction
176@section Technical Details 161@section Technical Details
@@ -351,28 +336,17 @@ inside your @code{dired-mode-hook} to have omitting initially turned on in
351@emph{every} Dired buffer (@pxref{Installation}). You can then use @kbd{M-o} to 336@emph{every} Dired buffer (@pxref{Installation}). You can then use @kbd{M-o} to
352unomit in that buffer. 337unomit in that buffer.
353 338
354To enable omitting automatically only in certain directories one can use Dired 339To enable omitting automatically only in certain directories you can add
355Local Variables and put 340a directory local setting
341(@pxref{Directory Variables,,,emacs,The Gnu Emacs manual}) for Dired mode
356 342
357@example 343@example
358Local Variables: 344((dired-mode . ((dired-omit-mode . t))))
359dired-omit-mode: t
360End:
361@end example 345@end example
362 346
363@noindent 347@noindent
364into a file @file{.dired} (the default value of 348to a @file{.dir-locals.el} file in that directory. You can use the
365@code{dired-local-variables-file}) in that directory (@pxref{Local Variables}). 349command @code{add-dir-local-variable} to do this.
366
367@table @code
368@findex dired-omit-here-always
369@item dired-omit-here-always
370
371This is an interactive function that creates a local variables file exactly
372like the example above (if it does not already exist) in the file
373@code{dired-local-variables-file} in the current directory and then refreshes
374the directory listing (@pxref{Local Variables}).
375@end table
376 350
377@vindex dired-omit-files 351@vindex dired-omit-files
378@item dired-omit-files 352@item dired-omit-files
@@ -490,7 +464,6 @@ Loading @file{dired-x.el} will install Dired Omit by putting
490call @code{dired-extra-startup}, which in turn calls @code{dired-omit-startup} 464call @code{dired-extra-startup}, which in turn calls @code{dired-omit-startup}
491in your @code{dired-mode-hook}. 465in your @code{dired-mode-hook}.
492 466
493@c FIXME does the standard dir-locals mechanism obsolete this?
494@node Local Variables, Shell Command Guessing, Omitting Files in Dired, Top 467@node Local Variables, Shell Command Guessing, Omitting Files in Dired, Top
495@chapter Local Variables for Dired Directories 468@chapter Local Variables for Dired Directories
496 469
@@ -498,10 +471,15 @@ in your @code{dired-mode-hook}.
498@vindex dired-local-variables-file 471@vindex dired-local-variables-file
499@vindex dired-enable-local-variables 472@vindex dired-enable-local-variables
500@noindent 473@noindent
501When Dired visits a directory, it looks for a file whose name is the value of 474This Dired-X feature is obsolete as of Emacs 24.1. The standard Emacs
502variable @code{dired-local-variables-file} (default: @file{.dired}). If such 475directory local variables mechanism (@pxref{Directory
503a file is found, Dired will temporarily insert it into the Dired buffer and 476Variables,,,emacs,The Gnu Emacs manual}) replaces it. For an example of
504run @code{hack-local-variables}. 477the new mechanims, @pxref{Omitting Variables}.
478
479When Dired visits a directory, it looks for a file whose name is the
480value of variable @code{dired-local-variables-file} (default: @file{.dired}).
481If such a file is found, Dired will temporarily insert it into the Dired
482buffer and run @code{hack-local-variables}.
505 483
506@noindent 484@noindent
507For example, if the user puts 485For example, if the user puts
@@ -527,7 +505,7 @@ omitted automatically
527@noindent 505@noindent
528You can set @code{dired-local-variables-file} to @code{nil} to suppress this. 506You can set @code{dired-local-variables-file} to @code{nil} to suppress this.
529The value of @code{dired-enable-local-variables} controls if and how these 507The value of @code{dired-enable-local-variables} controls if and how these
530local variables are read. This variable exists so that if may override the 508local variables are read. This variable exists so that it may override the
531default value of @code{enable-local-variables}. 509default value of @code{enable-local-variables}.
532 510
533@noindent 511@noindent
@@ -551,12 +529,10 @@ into the Dired buffer and run @code{hack-local-variables}.
551@item dired-enable-local-variables 529@item dired-enable-local-variables
552Default: @code{t} 530Default: @code{t}
553 531
554Controls the use of local-variables lists in Dired. The value can be @code{t}, 532Controls the use of local-variables lists in Dired. This variable
555@code{nil}, or something else. A value of @code{t} means local-variables 533temporarily overrides the value of @code{enable-local-variables} when
556lists are obeyed in the @code{dired-local-variables-file}; @code{nil} means 534the Dired Local Variables are hacked. It takes the same values as that
557they are ignored; anything else means query. This variable temporarily 535variable. A value of @code{nil} means to ignore any Dired Local Variables.
558overrides the value of @code{enable-local-variables} when the Dired Local
559Variables are hacked.
560@end table 536@end table
561 537
562@node Shell Command Guessing, Virtual Dired, Local Variables, Top 538@node Shell Command Guessing, Virtual Dired, Local Variables, Top
@@ -891,24 +867,12 @@ some commands it is appropriate that they use the current Dired
891directory instead of @code{default-directory}, e.g., @code{find-file} and 867directory instead of @code{default-directory}, e.g., @code{find-file} and
892@code{compile}. 868@code{compile}.
893 869
894A general mechanism is provided for special handling of the working 870@findex dired-smart-shell-command
895directory in special major modes: 871@findex shell-command
896 872@kindex M-!
897@table @code 873The command @code{dired-smart-shell-command}, bound to @kbd{M-!} in
898@item dired-default-directory-alist 874Dired buffers, is like @code{shell-command}, but it runs with
899@vindex dired-default-directory-alist 875@code{default-directory} bound to the current Dired directory.
900Default: @code{((dired-mode . (dired-current-directory)))}
901
902Alist of major modes and their notion of @code{default-directory}, as a
903Lisp expression to evaluate. A resulting value of @code{nil} is ignored
904in favor of @code{default-directory}.
905
906@item dired-default-directory
907@findex dired-default-directory
908Use this function like you would use the variable
909@code{default-directory}, except that @code{dired-default-directory}
910also consults the variable @code{dired-default-directory-alist}.
911@end table
912 876
913@node Find File At Point, Miscellaneous Commands, Multiple Dired Directories, Top 877@node Find File At Point, Miscellaneous Commands, Multiple Dired Directories, Top
914@section Find File At Point 878@section Find File At Point
@@ -1017,12 +981,6 @@ inserted subdirectories.
1017@end table 981@end table
1018 982
1019@table @code 983@table @code
1020@item dired-smart-shell-command
1021@findex dired-smart-shell-command
1022@findex shell-command
1023@kindex M-!
1024Like function @code{shell-command}, but in the current Dired directory.
1025Bound to @kbd{M-!} in Dired buffers.
1026 984
1027@item dired-jump 985@item dired-jump
1028@findex dired-jump 986@findex dired-jump
diff --git a/doc/misc/edt.texi b/doc/misc/edt.texi
index 377bb6ee8c5..8f9f8fc03a2 100644
--- a/doc/misc/edt.texi
+++ b/doc/misc/edt.texi
@@ -87,7 +87,7 @@ informing you that the emulation has been enabled: ``Default EDT keymap
87active''. 87active''.
88 88
89 You can have the EDT Emulation start up automatically, each time you 89 You can have the EDT Emulation start up automatically, each time you
90initiate a GNU Emacs session, by adding the following line to your 90initiate an Emacs session, by adding the following line to your
91@file{.emacs} file: 91@file{.emacs} file:
92 92
93@example 93@example
@@ -218,7 +218,7 @@ user quits without saving those buffers.
218 218
219@item 219@item
220Emulate EDT Keypad Mode commands closely so that current EDT users will 220Emulate EDT Keypad Mode commands closely so that current EDT users will
221find that it easy and comfortable to use GNU Emacs with a small learning 221find that it easy and comfortable to use Emacs with a small learning
222curve. 222curve.
223 223
224@item 224@item
@@ -237,7 +237,7 @@ Provide an easy way to restore @strong{all} original Emacs key bindings,
237just as they existed before the EDT emulation was first invoked. 237just as they existed before the EDT emulation was first invoked.
238 238
239@item 239@item
240Support GNU Emacs 19 and higher. XEmacs 19, and above, is also supported. 240Support Emacs and XEmacs 19 and higher.
241 241
242@item 242@item
243Supports highlighting of marked text within the EDT emulation on all 243Supports highlighting of marked text within the EDT emulation on all
@@ -285,13 +285,13 @@ apply to you.
285@node Starting emulation 285@node Starting emulation
286@chapter How to Get Started 286@chapter How to Get Started
287 287
288Start up GNU Emacs and enter @kbd{M-x edt-emulation-on} to begin the 288Start up Emacs and enter @kbd{M-x edt-emulation-on} to begin the
289emulation. After initialization is complete, the following message will 289emulation. After initialization is complete, the following message will
290appear below the status line informing you that the emulation has been 290appear below the status line informing you that the emulation has been
291enabled: ``Default EDT keymap active''. 291enabled: ``Default EDT keymap active''.
292 292
293You can have the EDT Emulation start up automatically, each time you 293You can have the EDT Emulation start up automatically, each time you
294initiate a GNU Emacs session, by adding the following line to your 294initiate an Emacs session, by adding the following line to your
295@file{.emacs} file: 295@file{.emacs} file:
296 296
297@example 297@example
@@ -306,7 +306,7 @@ in the EDT Default Mode).
306It is easy to customize key bindings in the EDT Emulation 306It is easy to customize key bindings in the EDT Emulation
307(@pxref{Customizing}). Customizations are placed in a file called 307(@pxref{Customizing}). Customizations are placed in a file called
308@file{edt-user.el}. The Emacs @file{etc/} directory contains an 308@file{edt-user.el}. The Emacs @file{etc/} directory contains an
309example. If @file{edt-user.el} is found in your GNU Emacs load path 309example. If @file{edt-user.el} is found in your Emacs load path
310during EDT Emulation initialization, then the following message will 310during EDT Emulation initialization, then the following message will
311appear below the status line indicating that the emulation has been 311appear below the status line indicating that the emulation has been
312enabled, enhanced by your own customizations: ``User EDT custom keymap 312enabled, enhanced by your own customizations: ``User EDT custom keymap
@@ -321,8 +321,8 @@ restores the original key bindings in effect just prior to invoking the
321emulation. 321emulation.
322 322
323Emacs binds keys to @acronym{ASCII} control characters and so does the 323Emacs binds keys to @acronym{ASCII} control characters and so does the
324real EDT. Where EDT key bindings and GNU Emacs key bindings conflict, 324real EDT. Where EDT key bindings and Emacs key bindings conflict,
325the default GNU Emacs key bindings are retained by the EDT emulation by 325the default Emacs key bindings are retained by the EDT emulation by
326default. If you are a diehard EDT user you may not like this. The 326default. If you are a diehard EDT user you may not like this. The
327@ref{Control keys} section explains how to change this so that the EDT 327@ref{Control keys} section explains how to change this so that the EDT
328bindings to @acronym{ASCII} control characters override the default 328bindings to @acronym{ASCII} control characters override the default
@@ -364,7 +364,7 @@ older SunOS release configured with a Sun Type 5 keyboard:
364@example 364@example
365! File: .xmodmaprc 365! File: .xmodmaprc
366! 366!
367! Set up Sun Type 5 keypad for use with the GNU Emacs EDT Emulation 367! Set up Sun Type 5 keypad for use with the Emacs EDT Emulation
368! 368!
369keycode 53 = KP_Divide 369keycode 53 = KP_Divide
370keycode 54 = KP_Multiply 370keycode 54 = KP_Multiply
@@ -436,7 +436,7 @@ things up nicely.
436@example 436@example
437! File: .xmodmaprc 437! File: .xmodmaprc
438! 438!
439! Set up PC keypad under GNU/Linux for the GNU Emacs EDT Emulation 439! Set up PC keypad under GNU/Linux for the Emacs EDT Emulation
440! 440!
441clear mod2 441clear mod2
442keycode 77 = F12 442keycode 77 = F12
@@ -518,7 +518,7 @@ assign Num_Lock back to mod2.
518@example 518@example
519! File: .xmodmaprc 519! File: .xmodmaprc
520! 520!
521! Set up PC keypad under GNU/Linux for the GNU Emacs EDT Emulation 521! Set up PC keypad under GNU/Linux for the Emacs EDT Emulation
522! 522!
523clear mod2 523clear mod2
524keycode 77 = F12 524keycode 77 = F12
@@ -541,7 +541,7 @@ In general, you will find that this emulation of EDT replicates most,
541but not all, of EDT's most used Keypad Mode editing functions and 541but not all, of EDT's most used Keypad Mode editing functions and
542behavior. It is not perfect, but most EDT users who have tried the 542behavior. It is not perfect, but most EDT users who have tried the
543emulation agree that it is quite good enough to make it easy for 543emulation agree that it is quite good enough to make it easy for
544die-hard EDT users to move over to using GNU Emacs. 544die-hard EDT users to move over to using Emacs.
545 545
546Here's a list of the most important differences between EDT and this GNU 546Here's a list of the most important differences between EDT and this GNU
547Emacs EDT Emulation. The list is short but you must be aware of these 547Emacs EDT Emulation. The list is short but you must be aware of these
@@ -783,7 +783,7 @@ terminals on the same system, you need not look at @file{edt-user.el2}.
783@end ignore 783@end ignore
784 784
785First, you need to have your own private lisp directory, say 785First, you need to have your own private lisp directory, say
786@file{~/lisp}, and you should add it to the GNU Emacs load path. 786@file{~/lisp}, and you should add it to the Emacs load path.
787 787
788@strong{Please note:} A few sites have different load-path requirements, 788@strong{Please note:} A few sites have different load-path requirements,
789so the above directions may need some modification if your site has such 789so the above directions may need some modification if your site has such
@@ -898,8 +898,8 @@ Here are some examples:
898@node Control keys 898@node Control keys
899@section Enabling EDT Control Key Sequence Bindings 899@section Enabling EDT Control Key Sequence Bindings
900 900
901Where EDT key bindings and GNU Emacs key bindings conflict, the default 901Where EDT key bindings and Emacs key bindings conflict, the default
902GNU Emacs key bindings are retained by default. Some diehard EDT users 902Emacs key bindings are retained by default. Some diehard EDT users
903may not like this. So, if the variable 903may not like this. So, if the variable
904@code{edt-use-EDT-control-key-bindings} is set to true in a user's 904@code{edt-use-EDT-control-key-bindings} is set to true in a user's
905@file{.emacs} file, then the default EDT Emulation mode will enable most 905@file{.emacs} file, then the default EDT Emulation mode will enable most
diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi
index 463a14f08d2..b46748a08f9 100644
--- a/doc/misc/erc.texi
+++ b/doc/misc/erc.texi
@@ -36,7 +36,7 @@ and modified without restriction.
36@titlepage 36@titlepage
37@title ERC manual 37@title ERC manual
38@subtitle a full-featured IRC client 38@subtitle a full-featured IRC client
39@subtitle for GNU Emacs and XEmacs 39@subtitle for Emacs and XEmacs
40 40
41@c The following two commands 41@c The following two commands
42@c start the copyright page. 42@c start the copyright page.
diff --git a/doc/misc/faq.texi b/doc/misc/faq.texi
index a9a5e4dc6eb..7528abca58d 100644
--- a/doc/misc/faq.texi
+++ b/doc/misc/faq.texi
@@ -1042,11 +1042,11 @@ Emacs now supports using both X displays and ttys in the same session
1042@item 1042@item
1043Emacs can be started as a daemon in the background. 1043Emacs can be started as a daemon in the background.
1044 1044
1045@cindex NeXTSTEP port 1045@cindex NeXTstep port
1046@cindex GNUstep port 1046@cindex GNUstep port
1047@cindex Mac OS X Cocoa 1047@cindex Mac OS X Cocoa
1048@item 1048@item
1049There is a new NeXTSTEP port of Emacs. This supports GNUstep and Mac OS 1049There is a new NeXTstep port of Emacs. This supports GNUstep and Mac OS
1050X (via the Cocoa libraries). The Carbon port of Emacs, which supported 1050X (via the Cocoa libraries). The Carbon port of Emacs, which supported
1051Mac OS X in Emacs 22, has been removed. 1051Mac OS X in Emacs 22, has been removed.
1052 1052
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index d40522a44d5..b55452cfa82 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -9502,8 +9502,11 @@ Say how much time has elapsed between the article was posted and now
9502Date: 6 weeks, 4 days, 1 hour, 3 minutes, 8 seconds ago 9502Date: 6 weeks, 4 days, 1 hour, 3 minutes, 8 seconds ago
9503@end example 9503@end example
9504 9504
9505This line is updated continually by default. If you wish to switch 9505This line is updated continually by default. The frequency (in
9506that off, say: 9506seconds) is controlled by the @code{gnus-article-update-date-headers}
9507variable.
9508
9509If you wish to switch updating off, say:
9507 9510
9508@vindex gnus-article-update-date-headers 9511@vindex gnus-article-update-date-headers
9509@lisp 9512@lisp
@@ -22495,7 +22498,7 @@ variables should be either strings or symbols naming functions that
22495return a string. When the mouse passes over text with this property 22498return a string. When the mouse passes over text with this property
22496set, a balloon window will appear and display the string. Please 22499set, a balloon window will appear and display the string. Please
22497refer to @ref{Tooltips, ,Tooltips, emacs, The Emacs Manual}, 22500refer to @ref{Tooltips, ,Tooltips, emacs, The Emacs Manual},
22498(in GNU Emacs) or the doc string of @code{balloon-help-mode} (in 22501(in Emacs) or the doc string of @code{balloon-help-mode} (in
22499XEmacs) for more information on this. (For technical reasons, the 22502XEmacs) for more information on this. (For technical reasons, the
22500guillemets have been approximated as @samp{<<} and @samp{>>} in this 22503guillemets have been approximated as @samp{<<} and @samp{>>} in this
22501paragraph.) 22504paragraph.)
@@ -27763,7 +27766,7 @@ to install Gnus after compiling it, give @file{make.bat} @code{/copy} as
27763the second parameter. 27766the second parameter.
27764 27767
27765@file{make.bat} has been rewritten from scratch, it now features 27768@file{make.bat} has been rewritten from scratch, it now features
27766automatic recognition of XEmacs and GNU Emacs, generates 27769automatic recognition of XEmacs and Emacs, generates
27767@file{gnus-load.el}, checks if errors occur while compilation and 27770@file{gnus-load.el}, checks if errors occur while compilation and
27768generation of info files and reports them at the end of the build 27771generation of info files and reports them at the end of the build
27769process. It now uses @code{makeinfo} if it is available and falls 27772process. It now uses @code{makeinfo} if it is available and falls
diff --git a/doc/misc/idlwave.texi b/doc/misc/idlwave.texi
index 94aeb612df7..8e172301915 100644
--- a/doc/misc/idlwave.texi
+++ b/doc/misc/idlwave.texi
@@ -4275,7 +4275,7 @@ browse-url-browser-function} or similar when attempting to load IDLWAVE
4275under XEmacs.} 4275under XEmacs.}
4276 4276
4277You don't have the @samp{browse-url} (or other required) XEmacs package. 4277You don't have the @samp{browse-url} (or other required) XEmacs package.
4278Unlike GNU Emacs, XEmacs distributes many packages separately from the 4278Unlike Emacs, XEmacs distributes many packages separately from the
4279main program. IDLWAVE is actually among these, but is not always the 4279main program. IDLWAVE is actually among these, but is not always the
4280most up to date. When installing IDLWAVE as an XEmacs package, it 4280most up to date. When installing IDLWAVE as an XEmacs package, it
4281should prompt you for required additional packages. When installing it 4281should prompt you for required additional packages. When installing it
diff --git a/doc/misc/mh-e.texi b/doc/misc/mh-e.texi
index 59da631c6ea..43d7bc74553 100644
--- a/doc/misc/mh-e.texi
+++ b/doc/misc/mh-e.texi
@@ -211,9 +211,9 @@ However, MH-E was the tip of the iceberg, and I discovered more and
211more niceties about GNU Emacs and MH@. Now I'm fully hooked on both of 211more niceties about GNU Emacs and MH@. Now I'm fully hooked on both of
212them. 212them.
213 213
214The MH-E package is distributed with GNU Emacs@footnote{Version 214The MH-E package is distributed with Emacs@footnote{Version
215@value{VERSION} of MH-E appeared in GNU Emacs 23.1. It is supported 215@value{VERSION} of MH-E appeared in Emacs 23.1. It is supported
216in GNU Emacs 21 and 22, as well as XEmacs 21 (except for versions 216in Emacs 21 and 22, as well as XEmacs 21 (except for versions
21721.5.9-21.5.16). It is compatible with MH versions 6.8.4 and higher, 21721.5.9-21.5.16). It is compatible with MH versions 6.8.4 and higher,
218all versions of nmh, and GNU mailutils 1.0 and higher.}, so you 218all versions of nmh, and GNU mailutils 1.0 and higher.}, so you
219shouldn't have to do anything special to use it. Gnus is also 219shouldn't have to do anything special to use it. Gnus is also
diff --git a/doc/misc/semantic.texi b/doc/misc/semantic.texi
index 52434f4a6e4..f3f11d29f17 100644
--- a/doc/misc/semantic.texi
+++ b/doc/misc/semantic.texi
@@ -64,7 +64,7 @@ developing GNU and promoting software freedom.''
64@macro obsolete{old,new} 64@macro obsolete{old,new}
65@sp 1 65@sp 1
66@strong{Compatibility}: 66@strong{Compatibility}:
67@code{\new\} introduced in @semantic{} version 2.0 supercedes 67@code{\new\} introduced in @semantic{} version 2.0 supersedes
68@code{\old\} which is now obsolete. 68@code{\old\} which is now obsolete.
69@end macro 69@end macro
70 70
diff --git a/doc/misc/texinfo.tex b/doc/misc/texinfo.tex
index 4467c1e860f..7b943897de2 100644
--- a/doc/misc/texinfo.tex
+++ b/doc/misc/texinfo.tex
@@ -3,7 +3,7 @@
3% Load plain if necessary, i.e., if running under initex. 3% Load plain if necessary, i.e., if running under initex.
4\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi 4\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
5% 5%
6\def\texinfoversion{2011-02-14.11} 6\def\texinfoversion{2011-02-24.09}
7% 7%
8% Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 8% Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
9% 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 9% 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
@@ -218,7 +218,7 @@
218 \tracingmacros2 218 \tracingmacros2
219 \tracingrestores1 219 \tracingrestores1
220 \showboxbreadth\maxdimen \showboxdepth\maxdimen 220 \showboxbreadth\maxdimen \showboxdepth\maxdimen
221 \ifx\eTeXversion\undefined\else % etex gives us more logging 221 \ifx\eTeXversion\thisisundefined\else % etex gives us more logging
222 \tracingscantokens1 222 \tracingscantokens1
223 \tracingifs1 223 \tracingifs1
224 \tracinggroups1 224 \tracinggroups1
@@ -611,7 +611,7 @@
611 \else\ifx\temp\offword \plainnonfrenchspacing 611 \else\ifx\temp\offword \plainnonfrenchspacing
612 \else 612 \else
613 \errhelp = \EMsimple 613 \errhelp = \EMsimple
614 \errmessage{Unknown @frenchspacing option `\temp', must be on/off}% 614 \errmessage{Unknown @frenchspacing option `\temp', must be on|off}%
615 \fi\fi 615 \fi\fi
616} 616}
617 617
@@ -1082,9 +1082,8 @@ where each line of input produces a line of output.}
1082\newif\ifpdfmakepagedest 1082\newif\ifpdfmakepagedest
1083 1083
1084% when pdftex is run in dvi mode, \pdfoutput is defined (so \pdfoutput=1 1084% when pdftex is run in dvi mode, \pdfoutput is defined (so \pdfoutput=1
1085% can be set). So we test for \relax and 0 as well as \undefined, 1085% can be set). So we test for \relax and 0 as well as being undefined.
1086% borrowed from ifpdf.sty. 1086\ifx\pdfoutput\thisisundefined
1087\ifx\pdfoutput\undefined
1088\else 1087\else
1089 \ifx\pdfoutput\relax 1088 \ifx\pdfoutput\relax
1090 \else 1089 \else
@@ -1516,7 +1515,7 @@ output) for that.)}
1516% if we are producing pdf, and we have \pdffontattr, then define cmaps. 1515% if we are producing pdf, and we have \pdffontattr, then define cmaps.
1517% (\pdffontattr was introduced many years ago, but people still run 1516% (\pdffontattr was introduced many years ago, but people still run
1518% older pdftex's; it's easy to conditionalize, so we do.) 1517% older pdftex's; it's easy to conditionalize, so we do.)
1519\ifpdf \ifx\pdffontattr\undefined \else 1518\ifpdf \ifx\pdffontattr\thisisundefined \else
1520 \begingroup 1519 \begingroup
1521 \catcode`\^^M=\active \def^^M{^^J}% Output line endings as the ^^J char. 1520 \catcode`\^^M=\active \def^^M{^^J}% Output line endings as the ^^J char.
1522 \catcode`\%=12 \immediate\pdfobj stream {%!PS-Adobe-3.0 Resource-CMap 1521 \catcode`\%=12 \immediate\pdfobj stream {%!PS-Adobe-3.0 Resource-CMap
@@ -1783,7 +1782,7 @@ end
1783% Use cm as the default font prefix. 1782% Use cm as the default font prefix.
1784% To specify the font prefix, you must define \fontprefix 1783% To specify the font prefix, you must define \fontprefix
1785% before you read in texinfo.tex. 1784% before you read in texinfo.tex.
1786\ifx\fontprefix\undefined 1785\ifx\fontprefix\thisisundefined
1787\def\fontprefix{cm} 1786\def\fontprefix{cm}
1788\fi 1787\fi
1789% Support font families that don't use the same naming scheme as CM. 1788% Support font families that don't use the same naming scheme as CM.
@@ -2297,12 +2296,11 @@ end
2297 2296
2298\let\markupsetuplqkbd \markupsetnoligaturesquoteleft 2297\let\markupsetuplqkbd \markupsetnoligaturesquoteleft
2299 2298
2300% Allow an option to not replace quotes with a regular directed right 2299% Allow an option to not use regular directed right quote/apostrophe
2301% quote/apostrophe (char 0x27), but instead use the undirected quote 2300% (char 0x27), but instead the undirected quote from cmtt (char 0x0d).
2302% from cmtt (char 0x0d). The undirected quote is ugly, so don't make it 2301% The undirected quote is ugly, so don't make it the default, but it
2303% the default, but it works for pasting with more pdf viewers (at least 2302% works for pasting with more pdf viewers (at least evince), the
2304% evince), the lilypond developers report. xpdf does work with the 2303% lilypond developers report. xpdf does work with the regular 0x27.
2305% regular 0x27.
2306% 2304%
2307\def\codequoteright{% 2305\def\codequoteright{%
2308 \expandafter\ifx\csname SETtxicodequoteundirected\endcsname\relax 2306 \expandafter\ifx\csname SETtxicodequoteundirected\endcsname\relax
@@ -2326,6 +2324,36 @@ end
2326 \else \char'22 \fi 2324 \else \char'22 \fi
2327} 2325}
2328 2326
2327% Commands to set the quote options.
2328%
2329\parseargdef\codequoteundirected{%
2330 \def\temp{#1}%
2331 \ifx\temp\onword
2332 \expandafter\let\csname SETtxicodequoteundirected\endcsname
2333 = t%
2334 \else\ifx\temp\offword
2335 \expandafter\let\csname SETtxicodequoteundirected\endcsname
2336 = \relax
2337 \else
2338 \errhelp = \EMsimple
2339 \errmessage{Unknown @codequoteundirected value `\temp', must be on|off}%
2340 \fi\fi
2341}
2342%
2343\parseargdef\codequotebacktick{%
2344 \def\temp{#1}%
2345 \ifx\temp\onword
2346 \expandafter\let\csname SETtxicodequotebacktick\endcsname
2347 = t%
2348 \else\ifx\temp\offword
2349 \expandafter\let\csname SETtxicodequotebacktick\endcsname
2350 = \relax
2351 \else
2352 \errhelp = \EMsimple
2353 \errmessage{Unknown @codequotebacktick value `\temp', must be on|off}%
2354 \fi\fi
2355}
2356
2329% [Knuth] pp. 380,381,391, disable Spanish ligatures ?` and !` of \tt font. 2357% [Knuth] pp. 380,381,391, disable Spanish ligatures ?` and !` of \tt font.
2330\def\noligaturesquoteleft{\relax\lq} 2358\def\noligaturesquoteleft{\relax\lq}
2331 2359
@@ -2527,7 +2555,7 @@ end
2527 \allowcodebreaksfalse 2555 \allowcodebreaksfalse
2528 \else 2556 \else
2529 \errhelp = \EMsimple 2557 \errhelp = \EMsimple
2530 \errmessage{Unknown @allowcodebreaks option `\txiarg'}% 2558 \errmessage{Unknown @allowcodebreaks option `\txiarg', must be true|false}%
2531 \fi\fi 2559 \fi\fi
2532} 2560}
2533 2561
@@ -3109,7 +3137,7 @@ end
3109% Textures 1.7.7 (preloaded format=plain 93.10.14) (68K) 16 APR 2004 02:38 3137% Textures 1.7.7 (preloaded format=plain 93.10.14) (68K) 16 APR 2004 02:38
3110% so we'll define it if necessary. 3138% so we'll define it if necessary.
3111% 3139%
3112\ifx\Orb\undefined 3140\ifx\Orb\thisisundefined
3113\def\Orb{\mathhexbox20D} 3141\def\Orb{\mathhexbox20D}
3114\fi 3142\fi
3115 3143
@@ -3384,7 +3412,7 @@ end
3384% This produces Day Month Year style of output. 3412% This produces Day Month Year style of output.
3385% Only define if not already defined, in case a txi-??.tex file has set 3413% Only define if not already defined, in case a txi-??.tex file has set
3386% up a different format (e.g., txi-cs.tex does this). 3414% up a different format (e.g., txi-cs.tex does this).
3387\ifx\today\undefined 3415\ifx\today\thisisundefined
3388\def\today{% 3416\def\today{%
3389 \number\day\space 3417 \number\day\space
3390 \ifcase\month 3418 \ifcase\month
@@ -6465,7 +6493,7 @@ end
6465% 6493%
6466\def\Equotation{% 6494\def\Equotation{%
6467 \par 6495 \par
6468 \ifx\quotationauthor\undefined\else 6496 \ifx\quotationauthor\thisisundefined\else
6469 % indent a bit. 6497 % indent a bit.
6470 \leftline{\kern 2\leftskip \sl ---\quotationauthor}% 6498 \leftline{\kern 2\leftskip \sl ---\quotationauthor}%
6471 \fi 6499 \fi
@@ -7000,7 +7028,7 @@ end
7000 7028
7001% To do this right we need a feature of e-TeX, \scantokens, 7029% To do this right we need a feature of e-TeX, \scantokens,
7002% which we arrange to emulate with a temporary file in ordinary TeX. 7030% which we arrange to emulate with a temporary file in ordinary TeX.
7003\ifx\eTeXversion\undefined 7031\ifx\eTeXversion\thisisundefined
7004 \newwrite\macscribble 7032 \newwrite\macscribble
7005 \def\scantokens#1{% 7033 \def\scantokens#1{%
7006 \toks0={#1}% 7034 \toks0={#1}%
@@ -7422,6 +7450,27 @@ end
7422 \fi 7450 \fi
7423} 7451}
7424 7452
7453% @xrefautosectiontitle on|off says whether @section(ing) names are used
7454% automatically in xrefs, if the third arg is not explicitly specified.
7455% This was provided as a "secret" @set xref-automatic-section-title
7456% variable, now it's official.
7457%
7458\parseargdef\xrefautomaticsectiontitle{%
7459 \def\temp{#1}%
7460 \ifx\temp\onword
7461 \expandafter\let\csname SETxref-automatic-section-title\endcsname
7462 = \empty
7463 \else\ifx\temp\offword
7464 \expandafter\let\csname SETxref-automatic-section-title\endcsname
7465 = \relax
7466 \else
7467 \errhelp = \EMsimple
7468 \errmessage{Unknown @xrefautomaticsectiontitle value `\temp',
7469 must be on|off}%
7470 \fi\fi
7471}
7472
7473
7425% @xref, @pxref, and @ref generate cross-references. For \xrefX, #1 is 7474% @xref, @pxref, and @ref generate cross-references. For \xrefX, #1 is
7426% the node name, #2 the name of the Info cross-reference, #3 the printed 7475% the node name, #2 the name of the Info cross-reference, #3 the printed
7427% node name, #4 the name of the Info file, #5 the name of the printed 7476% node name, #4 the name of the Info file, #5 the name of the printed
@@ -7438,7 +7487,7 @@ end
7438 \setbox0=\hbox{\printedrefname\unskip}% 7487 \setbox0=\hbox{\printedrefname\unskip}%
7439 \ifdim \wd0 = 0pt 7488 \ifdim \wd0 = 0pt
7440 % No printed node name was explicitly given. 7489 % No printed node name was explicitly given.
7441 \expandafter\ifx\csname SETxref-automatic-section-title\endcsname\relax 7490 \expandafter\ifx\csname SETxref-automatic-section-title\endcsname \relax
7442 % Use the node name inside the square brackets. 7491 % Use the node name inside the square brackets.
7443 \def\printedrefname{\ignorespaces #1}% 7492 \def\printedrefname{\ignorespaces #1}%
7444 \else 7493 \else
@@ -7908,7 +7957,7 @@ end
7908 it from ftp://tug.org/tex/epsf.tex.} 7957 it from ftp://tug.org/tex/epsf.tex.}
7909% 7958%
7910\def\image#1{% 7959\def\image#1{%
7911 \ifx\epsfbox\undefined 7960 \ifx\epsfbox\thisiundefined
7912 \ifwarnednoepsf \else 7961 \ifwarnednoepsf \else
7913 \errhelp = \noepsfhelp 7962 \errhelp = \noepsfhelp
7914 \errmessage{epsf.tex not found, images will be ignored}% 7963 \errmessage{epsf.tex not found, images will be ignored}%
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 346354b3170..bdbba437af7 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -369,13 +369,12 @@ behind the scenes when you open a file with @value{tramp}.
369@cindex obtaining Tramp 369@cindex obtaining Tramp
370 370
371@value{tramp} is freely available on the Internet and the latest 371@value{tramp} is freely available on the Internet and the latest
372release may be downloaded from 372release may be downloaded from @uref{ftp://ftp.gnu.org/gnu/tramp/}.
373@uref{ftp://ftp.gnu.org/gnu/tramp/}. This release includes the full 373This release includes the full documentation and code for
374documentation and code for @value{tramp}, suitable for installation. 374@value{tramp}, suitable for installation. But Emacs (22 or later)
375But GNU Emacs (22 or later) includes @value{tramp} already, and there 375includes @value{tramp} already, and there is a @value{tramp} package
376is a @value{tramp} package for XEmacs, as well. So maybe it is easier 376for XEmacs, as well. So maybe it is easier to just use those. But if
377to just use those. But if you want the bleeding edge, read 377you want the bleeding edge, read on@dots{...}
378on@dots{...}
379 378
380For the especially brave, @value{tramp} is available from CVS. The CVS 379For the especially brave, @value{tramp} is available from CVS. The CVS
381version is the latest version of the code and may contain incomplete 380version is the latest version of the code and may contain incomplete
@@ -445,10 +444,10 @@ GVFS integration started in February 2009.
445@end ifset 444@end ifset
446 445
447In December 2001, @value{tramp} has been added to the XEmacs package 446In December 2001, @value{tramp} has been added to the XEmacs package
448repository. Being part of the GNU Emacs repository happened in June 447repository. Being part of the Emacs repository happened in June 2002,
4492002, the first release including @value{tramp} was GNU Emacs 22.1. 448the first release including @value{tramp} was Emacs 22.1.
450 449
451@value{tramp} is also a GNU/Linux Debian package since February 2001. 450@value{tramp} is also a Debian GNU/Linux package since February 2001.
452 451
453 452
454@c Installation chapter is necessary only in case of standalone 453@c Installation chapter is necessary only in case of standalone
@@ -1704,9 +1703,10 @@ By default, this is set to a reasonable set of defaults for most
1704machines. The symbol @code{tramp-default-remote-path} is a place 1703machines. The symbol @code{tramp-default-remote-path} is a place
1705holder, it is replaced by the list of directories received via the 1704holder, it is replaced by the list of directories received via the
1706command @command{getconf PATH} on your remote machine. For example, 1705command @command{getconf PATH} on your remote machine. For example,
1707on GNU Debian this is @file{/bin:/usr/bin}, whereas on Solaris this is 1706on Debian GNU/Linux this is @file{/bin:/usr/bin}, whereas on Solaris
1708@file{/usr/xpg4/bin:/usr/ccs/bin:/usr/bin:/opt/SUNWspro/bin}. It is 1707this is @file{/usr/xpg4/bin:/usr/ccs/bin:/usr/bin:/opt/SUNWspro/bin}.
1709recommended to apply this symbol on top of @code{tramp-remote-path}. 1708It is recommended to apply this symbol on top of
1709@code{tramp-remote-path}.
1710 1710
1711It is possible, however, that your local (or remote ;) system 1711It is possible, however, that your local (or remote ;) system
1712administrator has put the tools you want in some obscure local 1712administrator has put the tools you want in some obscure local
@@ -2740,8 +2740,8 @@ There is also a Savannah project page.
2740@item 2740@item
2741Which systems does it work on? 2741Which systems does it work on?
2742 2742
2743The package has been used successfully on GNU Emacs 22, GNU Emacs 23, 2743The package has been used successfully on Emacs 22, Emacs 23, Emacs
2744XEmacs 21 (starting with 21.4), and SXEmacs 22. 274424, XEmacs 21 (starting with 21.4), and SXEmacs 22.
2745 2745
2746The package was intended to work on Unix, and it really expects a 2746The package was intended to work on Unix, and it really expects a
2747Unix-like system on the remote end (except the @option{smb} method), 2747Unix-like system on the remote end (except the @option{smb} method),
@@ -3583,9 +3583,9 @@ printed and deleted.
3583But I have decided that this is too fragile to reliably work, so on some 3583But I have decided that this is too fragile to reliably work, so on some
3584systems you'll have to do without the uuencode methods. 3584systems you'll have to do without the uuencode methods.
3585 3585
3586@item The @value{tramp} filename syntax differs between GNU Emacs and XEmacs. 3586@item The @value{tramp} filename syntax differs between Emacs and XEmacs.
3587 3587
3588The GNU Emacs maintainers wish to use a unified filename syntax for 3588The Emacs maintainers wish to use a unified filename syntax for
3589Ange-FTP and @value{tramp} so that users don't have to learn a new 3589Ange-FTP and @value{tramp} so that users don't have to learn a new
3590syntax. It is sufficient to learn some extensions to the old syntax. 3590syntax. It is sufficient to learn some extensions to the old syntax.
3591 3591
diff --git a/doc/misc/trampver.texi b/doc/misc/trampver.texi
index ff5641fb4b4..437b1372c11 100644
--- a/doc/misc/trampver.texi
+++ b/doc/misc/trampver.texi
@@ -63,7 +63,7 @@
63@set postfixhop / 63@set postfixhop /
64@set ipv6prefix 64@set ipv6prefix
65@set ipv6postfix 65@set ipv6postfix
66@set emacsothername GNU Emacs 66@set emacsothername Emacs
67@set emacsotherdir emacs 67@set emacsotherdir emacs
68@set emacsotherfilename tramp-emacs.html 68@set emacsotherfilename tramp-emacs.html
69@end ifset 69@end ifset
diff --git a/doc/misc/url.texi b/doc/misc/url.texi
index 2bde54a8dea..42594457ab1 100644
--- a/doc/misc/url.texi
+++ b/doc/misc/url.texi
@@ -116,7 +116,10 @@ The meaning of the @var{path} component depends on the service.
116@cindex @file{~/.url} 116@cindex @file{~/.url}
117@cindex configuration files 117@cindex configuration files
118The directory in which URL configuration files, the cache etc., 118The directory in which URL configuration files, the cache etc.,
119reside. Default @file{~/.url}. 119reside. The old default was @file{~/.url}, and this directory
120is still used if it exists. The new default is a @file{url/}
121directory in @code{user-emacs-directory}, which is normally
122@file{~/.emacs.d}.
120@end defvar 123@end defvar
121 124
122@node Parsed URLs 125@node Parsed URLs
@@ -383,20 +386,7 @@ Currently this is just the raw header contents.
383HTTP URLs are retrieved into a buffer containing the HTTP headers 386HTTP URLs are retrieved into a buffer containing the HTTP headers
384followed by the body. Since the headers are quasi-MIME, they may be 387followed by the body. Since the headers are quasi-MIME, they may be
385processed using the MIME library. @xref{Top,, Emacs MIME, 388processed using the MIME library. @xref{Top,, Emacs MIME,
386emacs-mime, The Emacs MIME Manual}. The URL package provides a 389emacs-mime, The Emacs MIME Manual}.
387function to do this in general:
388
389@defun url-decode-text-part handle &optional coding
390This function decodes charset-encoded text in the current buffer. In
391Emacs, the buffer is expected to be unibyte initially and is set to
392multibyte after decoding.
393HANDLE is the MIME handle of the original part. CODING is an explicit
394coding to use, overriding what the MIME headers specify.
395The coding system used for the decoding is returned.
396
397Note that this function doesn't deal with @samp{http-equiv} charset
398specifications in HTML @samp{<meta>} elements.
399@end defun
400 390
401@node file/ftp 391@node file/ftp
402@section file and ftp 392@section file and ftp