Fix comment to recommend
[bpt/emacs.git] / lispref / ChangeLog
1 2004-01-03 Richard M. Stallman <rms@gnu.org>
2
3 * frames.texi (Frames and Windows): Delete frame-root-window.
4
5 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
6
7 * eval.texi, hash.texi, help.texi, symbols.texi: Add anchors.
8
9 * functions.texi: Various small changes in addition to the
10 following.
11 (What Is a Function): `functionp' returns nil for macros. Clarify
12 behavior of this and following functions for symbol arguments.
13 (Function Documentation): Add `\' in front of (fn @var{arglist})
14 and explain why.
15 (Defining Functions): Mention DOCSTRING argument to `defalias'.
16 Add anchor.
17 (Mapping Functions): Add anchor. Unquote nil in mapcar* example.
18
19 2004-01-01 Miles Bader <miles@gnu.org>
20
21 * display.texi (Buttons): New section.
22
23 2003-12-31 Andreas Schwab <schwab@suse.de>
24
25 * numbers.texi (Math Functions): sqrt reports a domain-error
26 error.
27 (Float Basics): Use `(/ 0.0 0.0)' instead of `(sqrt -1.0)'.
28
29 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
30
31 * tips.texi (Documentation Tips): Update item on hyperlinks in
32 documentation strings.
33
34 * errors.texi (Standard Errors): Various small corrections and
35 additions.
36
37 * control.texi: Various small changes in addition to the
38 following.
39 (Signaling Errors): Provide some more details on how `signal'
40 constructs the error message. Add anchor to the definition of
41 `signal'.
42 (Error Symbols): Describe special treatment of `quit'.
43 (Cleanups): Rename BODY argument of `unwind-protect' to BODY-FORM
44 to emphasize that it has to be a single form.
45
46 * buffers.texi: Add anchor.
47
48 2003-12-29 Richard M. Stallman <rms@gnu.org>
49
50 * windows.texi (Choosing Window): Add same-window-p, special-display-p.
51 (Window Configurations): Add window-configuration-frame.
52
53 * variables.texi (Creating Buffer-Local): Add local-variable-if-set-p.
54
55 * text.texi (Examining Properties): Add get-char-property-and-overlay.
56 Change arg name in get-char-property.
57 (Special Properties): Update handling of keymap property.
58
59 * strings.texi (Modifying Strings): Add clear-string.
60 (Text Comparison): Add assoc-string and remove
61 assoc-ignore-case, assoc-ignore-representation.
62
63 * os.texi (Time of Day): Add set-time-zone-rule.
64
65 * numbers.texi (Math Functions): asin, acos, log, log10
66 report domain-error errors.
67
68 * nonascii.texi (Converting Representations):
69 Add multibyte-char-to-unibyte and unibyte-char-to-multibyte.
70 (Encoding and I/O): Add file-name-coding-system.
71
72 * modes.texi (Search-based Fontification): Explain that
73 face specs are symbols with face names as values.
74
75 * minibuf.texi (Minibuffer Misc): Add set-minibuffer-window.
76
77 * lists.texi (Building Lists): remq moved elsewhere.
78 (Sets And Lists): remq moved here.
79 (Association Lists): Refer to assoc-string.
80
81 * internals.texi (Garbage Collection): Add memory-use-counts.
82
83 * frames.texi (Frames and Windows): Add set-frame-selected-window
84 and frame-root-window.
85
86 * files.texi (Contents of Directories):
87 Add directory-files-and-attributes.
88
89 * display.texi (Refresh Screen): Add force-window-update.
90 (Invisible Text): Explain about moving point out of invis text.
91 (Overlay Properties): Add overlay-properties.
92 (Managing Overlays): Add overlayp.
93 (GIF Images): Invalid image number displays a hollow box.
94
95 * buffers.texi (Buffer Modification): Add restore-buffer-modified-p.
96 (Killing Buffers): Add buffer-live-p.
97
98 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
99
100 * display.texi (Fringes): Fix typo "set-buffer-window".
101
102 2003-12-24 Luc Teirlinck <teirllm@auburn.edu>
103
104 * display.texi, eval.texi, help.texi, internals.texi, loading.texi:
105 * nonascii.texi, processes.texi, tips.texi, variables.texi:
106 Add or change various xrefs and anchors.
107
108 * commands.texi: Replace all occurrences of @acronym{CAR} with
109 @sc{car}, for consistency with the rest of the Elisp manual.
110 `car' and `cdr' are historically acronyms, but are no longer
111 widely thought of as such.
112
113 * internals.texi (Pure Storage): Mention that `purecopy' does not
114 copy text properties.
115 (Object Internals): Now 29 bits are used (in most implementations)
116 to address Lisp objects.
117
118 * variables.texi (Variables with Restricted Values): New node.
119
120 * objects.texi (Lisp Data Types): Mention that certain variables
121 can only take on a restricted set of values and add an xref to
122 the new node "Variables with Restricted Values".
123
124 * eval.texi (Function Indirection): Describe the errors that
125 `indirect-function' can signal.
126 (Eval): Clarify the descriptions of `eval-region' and `values'.
127 Describe `eval-buffer' instead of `eval-current-buffer' and
128 mention `eval-current-buffer' as an alias for `current-buffer'.
129 Correct the description and mention all optional arguments.
130
131 * nonascii.texi: Various small changes in addition to the
132 following.
133 (Converting Representations): Clarify behavior of
134 `string-make-multibyte' and `string-to-multibyte' for unibyte all
135 ASCII arguments.
136 (Character Sets): Document the variable `charset-list' and adapt
137 the definition of the function `charset-list' accordingly.
138 (Translation of Characters): Clarify use of generic characters in
139 `make-translation-table'. Clarify and correct the description of
140 the use of translation tables in encoding and decoding.
141 (User-Chosen Coding Systems): Correct and clarify the description
142 of `select-safe-coding-system'.
143 (Default Coding Systems): Clarify description of
144 `file-coding-system-alist'.
145
146 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
147
148 * strings.texi (Text Comparison): Correctly describe when two
149 strings are `equal'. Combine and clarify descriptions of
150 `assoc-ignore-case' and `assoc-ignore-representation'.
151
152 * objects.texi (Non-ASCII in Strings): Clarify description of
153 when a string is unibyte or multibyte.
154 (Bool-Vector Type): Update examples.
155 (Equality Predicates): Correctly describe when two strings are
156 `equal'.
157
158 2003-11-29 Luc Teirlinck <teirllm@auburn.edu>
159
160 * lists.texi (Building Lists): `append' no longer accepts integer
161 arguments. Update the description of `number-sequence' to reflect
162 recent changes.
163 (Sets And Lists): Describe `member-ignore-case' after `member'.
164
165 2003-11-27 Kim F. Storm <storm@cua.dk>
166
167 * commands.texi (Click Events): Click object may be an images.
168 Describe (dx . dy) element of click positions.
169 (Accessing Events): Remove duplicate posn-timestamp.
170 New functions posn-object and posn-object-x-y.
171
172 2003-11-23 Kim F. Storm <storm@cua.dk>
173
174 * commands.texi (Click Events): Describe enhancements to event
175 position lists, including new text-pos and (col . row) items.
176 Mention left-fringe and right-fringe area events.
177 (Accessing Events): New functions posn-area and
178 posn-actual-col-row. Mention posn-timestamp. Mention that
179 posn-point in non-text area still returns buffer position.
180 Clarify posn-col-row.
181
182 2003-11-21 Lars Hansen <larsh@math.ku.dk>
183
184 * files.texi (File Attributes): Describe new parameter ID-FORMAT.
185 * anti.texi (File Attributes): Describe removed parameter
186 ID-FORMAT.
187
188 2003-11-20 Luc Teirlinck <teirllm@auburn.edu>
189
190 * positions.texi (Positions): Mention that, if a marker is used as
191 a position, its buffer is ignored.
192
193 * markers.texi (Overview of Markers): Mention it here too.
194
195 2003-11-12 Luc Teirlinck <teirllm@auburn.edu>
196
197 * numbers.texi (Numeric Conversions): Not just `floor', but also
198 `truncate', `ceiling' and `round' accept optional argument DIVISOR.
199
200 2003-11-10 Luc Teirlinck <teirllm@auburn.edu>
201
202 * markers.texi (Creating Markers): Specify insertion type of
203 created markers. Add xref to `Marker Insertion Types'.
204 Second argument to `copy-marker' is optional.
205 (Marker Insertion Types): Mention that most markers are created
206 with insertion type nil.
207 (The Mark): Correctly describe when `mark' signals an error.
208 (The Region): Correctly describe when `region-beginning' and
209 `region-end' signal an error.
210
211 2003-11-08 Luc Teirlinck <teirllm@auburn.edu>
212
213 * hash.texi (Creating Hash): Clarify description of `eql'.
214 `makehash' is obsolete.
215 (Hash Access): Add Common Lisp notes for `remhash' and `clrhash'.
216
217 * positions.texi (Point): Change description of `buffer-end', so
218 that it is also correct for floating point arguments.
219 (List Motion): Correct argument lists of `beginning-of-defun' and
220 `end-of-defun'.
221 (Excursions): Add xref to `Marker Insertion Types'.
222 (Narrowing): Argument to `narrow-to-page' is optional.
223
224 2003-11-06 Luc Teirlinck <teirllm@auburn.edu>
225
226 * streams.texi (Output Streams): Clarify behavior of point for
227 marker output streams.
228
229 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
230
231 * variables.texi (Defining Variables): Second argument to
232 `defconst' is not optional.
233 (Setting Variables): Mention optional argument APPEND to
234 `add-to-list'.
235 (Creating Buffer-Local): Expand description of
236 `make-variable-buffer-local'.
237 (Frame-Local Variables): Expand description of
238 `make-variable-frame-local'.
239 (Variable Aliases): Correct description of optional argument
240 DOCSTRING to `defvaralias'. Mention return value of
241 `defvaralias'.
242 (File Local Variables): Add xref to `File variables' in Emacs
243 Manual. Correct description of `hack-local-variables'. Mention
244 `safe-local-variable' property. Mention optional second argument
245 to `risky-local-variable-p'.
246
247 2003-11-03 Luc Teirlinck <teirllm@auburn.edu>
248
249 * symbols.texi (Symbol Plists): Mention return value of `setplist'.
250
251 2003-11-02 Jesper Harder <harder@ifa.au.dk> (tiny change)
252
253 * lispref/anti.texi, lispref/backups.texi, lispref/commands.texi
254 lispref/customize.texi, lispref/display.texi, lispref/files.texi,
255 lispref/internals.texi, lispref/keymaps.texi, lispref/loading.texi,
256 lispref/modes.texi, lispref/nonascii.texi, lispref/numbers.texi,
257 lispref/objects.texi, lispref/os.texi, lispref/positions.texi,
258 lispref/processes.texi, lispref/searching.texi,
259 lispref/sequences.texi, lispref/streams.texi, lispref/strings.texi,
260 lispref/syntax.texi, lispref/text.texi: Replace @sc{foo} with
261 @acronym{FOO}.
262
263 2003-10-27 Luc Teirlinck <teirllm@auburn.edu>
264
265 * strings.texi (Creating Strings): Argument START to `substring'
266 can not be `nil'. Expand description of
267 `substring-no-properties'. Correct description of `split-string',
268 especially with respect to empty matches. Prevent very bad line
269 break in definition of `split-string-default-separators'.
270 (Text Comparison): `string=' and `string<' also accept symbols as
271 arguments.
272 (String Conversion): More completely describe argument BASE in
273 `string-to-number'.
274 (Formatting Strings): `%s' and `%S" in `format' do require
275 corresponding object. Clarify behavior of numeric prefix after
276 `%' in `format'.
277 (Case Conversion): The argument to `upcase-initials' can be a
278 character.
279
280 2003-10-27 Kenichi Handa <handa@m17n.org>
281
282 * display.texi (Fontsets): Fix texinfo usage.
283
284 2003-10-25 Kenichi Handa <handa@m17n.org>
285
286 * display.texi (Fontsets): Add description of the function
287 set-fontset-font.
288
289 2003-10-23 Luc Teirlinck <teirllm@auburn.edu>
290
291 * display.texi (Temporary Displays): Add xref to `Documentation
292 Tips'.
293
294 * functions.texi (Function Safety): Use inforef instead of pxref
295 for SES.
296
297 2003-10-23 Andreas Schwab <schwab@suse.de>
298
299 * Makefile.in (TEX, texinputdir): Don't define.
300 (TEXI2DVI): Define.
301 (srcs): Remove $(srcdir)/index.perm and $(srcdir)/index.unperm,
302 add $(srcdir)/index.texi.
303 ($(infodir)/elisp): Remove index.texi dependency.
304 (elisp.dvi): Likewise. Use $(TEXI2DVI).
305 (index.texi): Remove target.
306 (dist): Don't link $(srcdir)/permute-index.
307 (clean): Don't remove index.texi.
308
309 * permute-index, index.perm: Remove.
310 * index.texi: Rename from index.unperm.
311
312 2003-10-22 Luc Teirlinck <teirllm@auburn.edu>
313
314 * tips.texi (Documentation Tips): Document new behavior for face
315 and variable hyperlinks in Help mode.
316
317 2003-10-21 Luc Teirlinck <teirllm@auburn.edu>
318
319 * objects.texi (Integer Type): Update for extra bit of integer range.
320 (Character Type): Ditto.
321
322 2003-10-16 Eli Zaretskii <eliz@elta.co.il>
323
324 * numbers.texi (Integer Basics): Add index entries for reading
325 numbers in hex, octal, and binary.
326
327 2003-10-16 Lute Kamstra <lute@gnu.org>
328
329 * modes.texi (Mode Line Format): Mention force-mode-line-update's
330 argument.
331
332 2003-10-13 Luc Teirlinck <teirllm@auburn.edu>
333
334 * windows.texi (Choosing Window): Fix typo.
335 * edebug.texi (Edebug Execution Modes): Fix typo.
336
337 2003-10-13 Richard M. Stallman <rms@gnu.org>
338
339 * windows.texi (Basic Windows): A window has fringe settings,
340 display margins and scroll-bar settings.
341 (Splitting Windows): Doc split-window return value.
342 Clean up one-window-p.
343 (Selecting Windows): Fix typo.
344 (Cyclic Window Ordering): Explain frame as ALL-FRAMES in next-window.
345 (Buffers and Windows): In set-window-buffer, explain effect
346 on fringe settings and scroll bar settings.
347 (Displaying Buffers): In pop-to-buffer, explain nil as buffer arg.
348 (Choosing Window): Use defopt for pop-up-frame-function.
349 For special-display-buffer-names, explain same-window and same-frame.
350 Clarify window-dedicated-p return value.
351 (Textual Scrolling): scroll-up and scroll-down can get an error.
352 (Horizontal Scrolling): Clarify auto-hscroll-mode.
353 Clarify set-window-hscroll.
354 (Size of Window): Don't mention tool bar in window-height.
355 (Coordinates and Windows): Explain what coordinates-in-window-p
356 returns for fringes and display margins.
357 (Window Configurations): Explain saving fringes, etc.
358
359 * tips.texi (Library Headers): Clean up Documentation.
360
361 * syntax.texi (Parsing Expressions): Clean up forward-comment
362 and parse-sexp-lookup-properties.
363
364 * sequences.texi (Sequence Functions): sequencep accepts bool-vectors.
365
366 * os.texi (System Environment): Clean up text for load-average errors.
367
368 * modes.texi (Hooks): Don't explain local hook details at front.
369 Clarify run-hooks and run-hook-with-args a little.
370 Clean up add-hook and remove-hook.
371
372 * edebug.texi (Edebug Execution Modes): Clarify t.
373 Document edebug-sit-for-seconds.
374 (Coverage Testing): Document C-x X = and =.
375 (Instrumenting Macro Calls): Fix typo.
376 (Specification List): Don't index the specification keywords.
377
378 2003-10-10 Kim F. Storm <storm@cua.dk>
379
380 * processes.texi (Network): Introduce make-network-process.
381
382 2003-10-09 Luc Teirlinck <teirllm@auburn.edu>
383
384 * tips.texi (Library Headers): Fix typo.
385
386 2003-10-07 Juri Linkov <juri@jurta.org>
387
388 * modes.texi (Imenu): Mention imenu-create-index-function's
389 default value. Explain submenus better.
390
391 2003-10-07 Lute Kamstra <lute@gnu.org>
392
393 * modes.texi (Faces for Font Lock): Fix typo.
394 (Hooks): Explain how buffer-local hook variables can refer to
395 global hook variables.
396 Various minor clarifications.
397
398 2003-10-06 Lute Kamstra <lute@gnu.org>
399
400 * tips.texi (Coding Conventions): Mention naming conventions for
401 hooks.
402
403 2003-10-05 Luc Teirlinck <teirllm@auburn.edu>
404
405 * loading.texi (Library Search): Correct default value of
406 load-suffixes.
407 (Named Features): Fix typo.
408
409 2003-10-05 Richard M. Stallman <rms@gnu.org>
410
411 * loading.texi (Named Features): In `provide',
412 say how to test for subfeatures.
413 (Unloading): In unload-feature, use new var name
414 unload-feature-special-hooks.
415
416 2003-10-03 Lute Kamstra <lute@gnu.org>
417
418 * modes.texi (Major Mode Conventions): Mention third way to set up
419 Imenu.
420 (Imenu): A number of small fixes.
421 Delete documentation of internal variable imenu--index-alist.
422 Document the return value format of imenu-create-index-function
423 functions.
424
425 2003-09-30 Richard M. Stallman <rms@gnu.org>
426
427 * processes.texi (Network): Say what stopped datagram connections do.
428
429 * lists.texi (Association Lists): Clarify `assq-delete-all'.
430
431 * display.texi (Overlay Properties): Clarify `evaporate' property.
432
433 2003-09-29 Lute Kamstra <lute@gnu.org>
434
435 * modes.texi (Mode Line Data): Explain when symbols in mode-line
436 constructs should be marked as risky.
437 Change cons cell into proper list.
438 (Mode Line Variables): Change cons cell into proper list.
439
440 2003-09-26 Lute Kamstra <lute@gnu.org>
441
442 * modes.texi (Mode Line Data): Document the :propertize construct.
443 (Mode Line Variables): Reorder the descriptions of the variables
444 to match their order in the default mode-line-format.
445 Describe the new variables mode-line-position and mode-line-modes.
446 Update the default values of mode-line-frame-identification,
447 minor-mode-alist, and default-mode-line-format.
448 (Properties in Mode): Mention the :propertize construct.
449
450 2003-09-26 Richard M. Stallman <rms@gnu.org>
451
452 * buffers.texi, commands.texi, debugging.texi, eval.texi:
453 * loading.texi, minibuf.texi, text.texi, variables.texi:
454 Avoid @strong{Note:}.
455
456 2003-09-26 Richard M. Stallman <rms@gnu.org>
457
458 * keymaps.texi (Remapping Commands): Fix typo.
459
460 2003-09-23 Luc Teirlinck <teirllm@mail.auburn.edu>
461
462 * processes.texi (Low-Level Network): Fix typo.
463
464 2003-09-23 Kim F. Storm <storm@cua.dk>
465
466 * processes.texi (Network, Network Servers): Fix typos.
467 (Low-Level Network): Add timeout value for :server keyword.
468 Add new option keywords to make-network-process.
469 Add set-network-process-options.
470 Explain how to test availability of network options.
471
472 2003-09-19 Richard M. Stallman <rms@gnu.org>
473
474 * text.texi (Motion by Indent): Arg to
475 backward-to-indentation and forward-to-indentation is optional.
476
477 * strings.texi (Creating Strings): Add substring-no-properties.
478
479 * processes.texi
480 (Process Information): Add list-processes arg QUERY-ONLY.
481 Delete process-contact from here.
482 Add new status values for process-status.
483 Add process-get, process-put, process-plist, set-process-plist.
484 (Synchronous Processes): Add call-process-shell-command.
485 (Signals to Processes): signal-process allows process objects.
486 (Network): Complete rewrite.
487 (Network Servers, Datagrams, Low-Level Network): New nodes.
488
489 * positions.texi (Word Motion): forward-word, backward-word
490 arg is optional. Reword.
491
492 * abbrevs.texi (Defining Abbrevs): Index no-self-insert.
493
494 * variables.texi (Creating Buffer-Local):
495 Delete duplicate definition of buffer-local-value.
496 (File Local Variables): Explain about discarding text props.
497
498 2003-09-11 Richard M. Stallman <rms@gnu.org>
499
500 * minibuf.texi (Intro to Minibuffers): Explain that the minibuffer
501 changes variables that record input events.
502 (Minibuffer Misc): Add minibuffer-selected-window.
503
504 * lists.texi (Building Lists): Add copy-tree.
505
506 * display.texi (Fontsets): Add char-displayable-p.
507 (Scroll Bars): New node.
508
509 2003-09-08 Lute Kamstra <lute@gnu.org>
510
511 * modes.texi (%-Constructs): Document new `%i' and `%I'
512 constructs.
513
514 2003-09-03 Peter Runestig <peter@runestig.com>
515
516 * makefile.w32-in: New file.
517
518 2003-08-29 Richard M. Stallman <rms@gnu.org>
519
520 * display.texi (Overlay Properties): Clarify how priorities
521 affect use of the properties.
522
523 2003-08-19 Luc Teirlinck <teirllm@mail.auburn.edu>
524
525 * customize.texi (Type Keywords): Correct the description of
526 `:help-echo' in the case where `motion-doc' is a function.
527
528 2003-08-14 John Paul Wallington <jpw@gnu.org>
529
530 * modes.texi (Emulating Mode Line): Subsection, not section.
531
532 2003-08-13 Richard M. Stallman <rms@gnu.org>
533
534 * elisp.texi (Top): Update subnode lists in menu.
535
536 * text.texi (Insertion): Add insert-buffer-substring-no-properties.
537 (Kill Functions): kill-region has new arg yank-handler.
538 (Yanking): New node.
539 (Yank Commands): Add yank-undo-function.
540 (Low-Level Kill Ring):
541 kill-new and kill-append have new arg yank-handler.
542 (Changing Properties): Add remove-list-of-text-properties.
543 (Atomic Changes): New node.
544
545 * symbols.texi (Other Plists): Add lax-plist-get, lax-plist-put.
546
547 * streams.texi (Output Variables): Add eval-expression-print-length
548 and eval-expression-print-level.
549
550 * os.texi (Time Conversion): For encode-time, explain limits on year.
551
552 * objects.texi (Character Type): Define anchor "modifier bits".
553
554 * modes.texi (Emulating Mode Line): New node.
555 (Search-based Fontification): Font Lock uses font-lock-face property.
556 (Other Font Lock Variables): Likewise.
557
558 * keymaps.texi (Format of Keymaps): Keymaps contain char tables,
559 not vectors.
560 (Active Keymaps): Add emulation-mode-map-alists.
561 (Functions for Key Lookup): key-binding has new arg no-remap.
562 (Remapping Commands): New node.
563 (Scanning Keymaps): where-is-internal has new arg no-remap.
564 (Tool Bar): Add tool-bar-local-item-from-menu.
565 Clarify when to use tool-bar-add-item-from-menu.
566
567 * commands.texi (Interactive Call): commandp has new arg.
568 (Command Loop Info): Add this-original-command.
569
570 2003-08-06 John Paul Wallington <jpw@gnu.org>
571
572 * compile.texi (Compiler Errors): Say `@end defmac' after `@defmac'.
573
574 * display.texi (Warning Basics): Fix typo.
575 (Fringes): Add closing curly bracket and fix typo.
576
577 * elisp.texi (Top): Fix typo.
578
579 2003-08-05 Richard M. Stallman <rms@gnu.org>
580
581 * elisp.texi: Update lists of subnodes.
582
583 * windows.texi (Buffers and Windows): set-window-buffer has new arg.
584
585 * variables.texi (Local Variables): Use lc for example variable names.
586
587 * tips.texi (Library Headers): Explain where to put -*-.
588
589 * strings.texi (Creating Strings): Fix xref for vconcat.
590
591 * sequences.texi (Vector Functions):
592 vconcat no longer allows integer args.
593
594 * minibuf.texi (Reading File Names): read-file-name has new
595 arg PREDICATE. New function read-directory-name.
596
597 * macros.texi (Defining Macros): Give definition of `declare'
598 (Indenting Macros): New node.
599
600 * frames.texi (Parameter Access): Add modify-all-frames-parameters.
601 (Window Frame Parameters): Make separate table of parameters
602 that are coupled with specific face attributes.
603 (Deleting Frames): delete-frame-hooks renamed to
604 delete-frame-functions.
605
606 * files.texi (Magic File Names): Add file-remote-p.
607 Clarify file-local-copy.
608
609 * edebug.texi (Instrumenting Macro Calls): Don't define `declare'
610 here; instead xref Defining Macros.
611
612 * display.texi (Warnings): New node, and subnodes.
613 (Fringes): New node.
614
615 * debugging.texi (Test Coverage): New node.
616
617 * compile.texi (Compiler Errors): Explain with-no-warnings
618 and other ways to suppress warnings.
619
620 * commands.texi (Interactive Call): Minor clarification.
621
622 * buffers.texi (Buffer File Name): set-visited-file-name
623 renames the buffer too.
624
625 * abbrevs.texi (Abbrev Tables): Add copy-abbrev-table.
626
627 2003-07-24 Markus Rost <rost@math.ohio-state.edu>
628
629 * abbrevs.texi (Abbrev Expansion): Use \s syntax in example.
630
631 2003-07-22 Markus Rost <rost@math.ohio-state.edu>
632
633 * internals.texi (Garbage Collection): Fix previous change.
634
635 2003-07-22 Richard M. Stallman <rms@gnu.org>
636
637 * files.texi (Truenames): Add LIMIT arg to file-chase-links.
638
639 * display.texi (Width): Use \s syntax in example.
640 (Font Selection): Add face-font-rescale-alist.
641
642 * modes.texi (Imenu): Add xref to Emacs Manual node on Imenu.
643 Remove spurious indent in example.
644
645 * lists.texi (Building Lists): Add number-sequence.
646
647 * internals.texi (Garbage Collection): Add gcs-done, gc-elapsed.
648
649 * functions.texi (Function Documentation): Explain how to
650 show calling convention explicitly in the doc string.
651
652 * windows.texi (Selecting Windows): save-selected-window saves
653 selected window of each frame.
654 (Window Configurations): Minor change.
655
656 * syntax.texi (Syntax Table Functions): Use \s syntax in examples.
657
658 * streams.texi (Output Variables): Add print-continuous-numbering
659 and print-number-table.
660
661 * processes.texi (Decoding Output): New node.
662
663 * os.texi (Time Conversion): decode-time arg is optional.
664
665 * objects.texi (Character Type): Don't use space as example for \.
666 Make list of char names and \-sequences correspond.
667 Explain that \s is not used in strings. `\ ' needs space after.
668
669 * nonascii.texi (Converting Representations): Add string-to-multibyte.
670 (Translation of Characters): Add translation-table-for-input.
671 (Default Coding Systems): Add auto-coding-functions.
672 (Explicit Encoding): Add decode-coding-inserted-region.
673 (Locales): Add locale-info.
674
675 * minibuf.texi (Basic Completion): Describe test-completion.
676 Collections can be lists of strings.
677 Clean up lazy-completion-table.
678 (Programmed Completion): Mention test-completion.
679 Clarify why lambda expressions are not accepted.
680 (Minibuffer Misc): Describe minibufferp.
681
682 2003-07-14 Richard M. Stallman <rms@gnu.org>
683
684 * buffers.texi (Killing Buffers): kill-buffer-hook is perm local.
685
686 * windows.texi (Selecting Windows): New arg to select-window.
687 (Selecting Windows): Add with-selected-window.
688 (Size of Window): Add window-inside-edges, etc.
689
690 * internals.texi (Garbage Collection): Add post-gc-hook.
691
692 * processes.texi (Subprocess Creation): Add exec-suffixes.
693
694 * keymaps.texi (Functions for Key Lookup): Add current-active-maps.
695 (Scanning Keymaps): Add map-keymaps.
696 (Defining Menus): Add keymap-prompt.
697
698 * numbers.texi (Integer Basics): Add most-positive-fixnum,
699 most-negative-fixnum.
700
701 * compile.texi (Byte Compilation): Explain no-byte-compile
702 (Compiler Errors): New node.
703
704 * os.texi (User Identification): user-uid, user-real-uid
705 can return float.
706
707 * modes.texi (Major Mode Conventions): Explain about run-mode-hooks
708 and about derived modes.
709 (Minor Modes): Add minor-mode-list.
710 (Defining Minor Modes): Keyword args for define-minor-mode.
711 (Search-based Fontification): Explain managing other properties.
712 (Other Font Lock Variables): Add font-lock-extra-managed-props.
713 (Faces for Font Lock): Add font-locl-preprocessor-face.
714 (Hooks): Add run-mode-hooks and delay-mode-hooks.
715
716 * variables.texi (Creating Buffer-Local): Add buffer-local-value.
717 (Variable Aliases): Clarify defvaralias.
718
719 * loading.texi (Library Search): Add load-suffixes.
720
721 * minibuf.texi (Basic Completion): Add lazy-completion-table.
722 (Programmed Completion): Add dynamic-completion-table.
723
724 * files.texi (Changing Files): copy-file allows dir as NEWNAME.
725 (Magic File Names): Specify precedence order of handlers.
726 o
727 * commands.texi (Command Overview): Emacs server runs pre-command-hook
728 and post-command-hook.
729 (Waiting): New calling convention for sit-for.
730
731 * text.texi (Special Properties): local-map and keymap properties
732 apply based on their stickiness.
733
734 2003-07-07 Richard M. Stallman <rms@gnu.org>
735
736 * modes.texi (Minor Mode Conventions): Specify only some kinds
737 of list values as args to minor modes.
738
739 * files.texi (File Name Expansion): Warn about iterative use
740 of substitute-in-file-name.
741
742 * advice.texi (Activation of Advice): Clean up previous change.
743
744 2003-07-06 Markus Rost <rost@math.ohio-state.edu>
745
746 * advice.texi (Activation of Advice): Note that ad-start-advice is
747 turned on by default.
748
749 2003-06-30 Richard M. Stallman <rms@gnu.org>
750
751 * text.texi (Buffer Contents): Document current-word.
752 (Change Hooks): Not called for *Messages*.
753
754 * functions.texi (Defining Functions): Explain about redefining
755 primitives.
756 (Function Safety): Renamed. Minor changes.
757 Comment out the detailed criteria for what is safe.
758
759 2003-06-22 Andreas Schwab <schwab@suse.de>
760
761 * objects.texi (Symbol Type): Fix description of examples.
762
763 2003-06-16 Andreas Schwab <schwab@suse.de>
764
765 * hash.texi (Creating Hash): Fix description of :weakness.
766
767 2003-06-13 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
768
769 * files.texi (Changing Files): copy-file copies file modes, too.
770
771 2003-05-28 Richard M. Stallman <rms@gnu.org>
772
773 * strings.texi (Creating Strings): Clarify split-string.
774
775 2003-05-22 Stephen J. Turnbull <stephen@xemacs.org>
776
777 * strings.texi (Creating Strings): Update split-string specification
778 and examples.
779
780 2003-05-19 Richard M. Stallman <rms@gnu.org>
781
782 * elisp.texi: Correct invariant section names.
783
784 2003-04-20 Richard M. Stallman <rms@gnu.org>
785
786 * os.texi (Timers): Explain about timers and quitting.
787
788 2003-04-19 Richard M. Stallman <rms@gnu.org>
789
790 * internals.texi (Writing Emacs Primitives): Strings are
791 no longer special for GCPROs. Mention GCPRO5, GCPRO6.
792 Explain GCPRO convention for varargs function args.
793
794 2003-04-16 Richard M. Stallman <rms@gnu.org>
795
796 * minibuf.texi (Minibuffer Misc): Document fn minibuffer-message.
797
798 2003-04-08 Richard M. Stallman <rms@gnu.org>
799
800 * files.texi (Kinds of Files): Correct return value of file-symlink-p.
801
802 2003-02-13 Kim F. Storm <storm@cua.dk>
803
804 * objects.texi (Character Type): New \s escape for space.
805
806 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
807
808 * os.texi (System Environment): Added cygwin system-type.
809
810 2003-01-25 Richard M. Stallman <rms@gnu.org>
811
812 * keymaps.texi: Document that a symbol can act as a keymap.
813
814 2003-01-13 Richard M. Stallman <rms@gnu.org>
815
816 * text.texi (Changing Properties): Say string indices are origin-0.
817
818 * positions.texi (Screen Lines) <compute-motion>:
819 Correct order of elts in return value.
820
821 * keymaps.texi (Changing Key Bindings) <define-key>: Mention
822 how to define a default binding.
823
824 2002-12-07 Markus Rost <rost@math.ohio-state.edu>
825
826 * loading.texi (Unloading): Fix recent change for load-history.
827
828 * customize.texi (Simple Types): Clarify description of custom
829 type 'number. Describe new custom type 'float.
830
831 2002-12-04 Markus Rost <rost@math.ohio-state.edu>
832
833 * variables.texi (File Local Variables): Fix typo.
834
835 2002-10-23 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
836
837 From Michael Albinus <Michael.Albinus@alcatel.de>.
838
839 * README: Target for Info file is `make info'.
840
841 * files.texi (File Name Components): Fixed typos in
842 `file-name-sans-extension'.
843 (Magic File Names): Complete list of operations for magic file
844 name handlers.
845
846 2002-09-16 Jonathan Yavner <jyavner@engineer.com>
847
848 * variables.texi (File Local Variables): New function
849 risky-local-variable-p.
850
851 2002-09-15 Jonathan Yavner <jyavner@engineer.com>
852
853 * functions.texi (Function safety): New node about unsafep.
854
855 2002-08-05 Per Abrahamsen <abraham@dina.kvl.dk>
856
857 * customize.texi (Splicing into Lists): Fixed example.
858 Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>
859
860 2002-06-17 Juanma Barranquero <lektu@terra.es>
861
862 * frames.texi (Display Feature Testing): Fix typo.
863
864 2002-06-12 Andreas Schwab <schwab@suse.de>
865
866 * frames.texi (Initial Parameters, Resources): Fix references to
867 the Emacs manual.
868
869 2002-05-13 Kim F. Storm <storm@cua.dk>
870
871 * variables.texi (Intro to Buffer-Local): Updated warning and
872 example relating to changing buffer inside let.
873
874 2002-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
875
876 * os.texi (Session Management): New node about X Session management.
877
878 2002-01-18 Eli Zaretskii <eliz@is.elta.co.il>
879
880 * elisp.texi (VERSION): Set to 2.9. Update the version of Emacs
881 to which the manual corresponds, and the copyright years.
882
883 * Makefile.in (VERSION): Set to 2.9.
884
885 2001-11-29 Eli Zaretskii <eliz@is.elta.co.il>
886
887 * elisp.texi: Change the category in @dircategory to "Emacs", to
888 make it consistent with info/dir.
889
890 2001-11-25 Miles Bader <miles@gnu.org>
891
892 * text.texi (Fields): Describe new `limit' arg in
893 field-beginning/field-end.
894
895 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
896
897 * permute-index: Don't depend on csh-specific features. Replace
898 the interpreter name with /bin/sh.
899
900 * two-volume-cross-refs.txt: New file.
901 * two.el: New file.
902 * spellfile: New file.
903
904 2001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
905
906 * permute-index: New file.
907
908 * vol1.texi, vol2.texi: Renamed from elisp-vol1.texi and
909 elisp-vol2.texi, respectively, to avoid file-name clashes in DOS
910 8+3 restricted namespace.
911
912 * Makefile.in (infodir): Define relative to $(srcdir).
913 ($(infodir)/elisp): Don't chdir into $(srcdir), but add it to the
914 include directories list via -I switch to makeinfo.
915 (index.texi): Use cp if both hard and symbolic links fail.
916
917 2001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
918
919 * Makefile.in (distclean): Add.
920
921 The following changes make ELisp manual part of the Emacs
922 distribution:
923
924 * Makefile.in: Add Copyright notice.
925 (prefix): Remove.
926 (infodir): Change value to "../info".
927 (VPATH): New variable.
928 (MAKE): Don't define.
929 (texmacrodir): Don't define.
930 (texinputdir): Append the existing value of TEXINPUTS.
931 ($(infodir)/elisp): Instead of just "elisp". Reformat the
932 command to be compatible with man/Makefile.in, and to put the
933 output into ../info.
934 (info): Add target.
935 (installall): Target removed.
936
937 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
938
939 * tips.texi (Coding Conventions): Fix typo.
940
941 2001-10-23 Gerd Moellmann <gerd@gnu.org>
942
943 * Makefile.in (srcs): Add gpl.texi and doclicense.texi.
944
945 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
946
947 * files.texi (File Name Components): Update the description of
948 file-name-sans-extension and file-name-extension, as they now
949 ignore leading dots.
950
951 2001-10-20 Gerd Moellmann <gerd@gnu.org>
952
953 * (Version 21.1 released.)
954
955 2001-10-19 Miles Bader <miles@gnu.org>
956
957 * positions.texi (Text Lines): Describe behavior of
958 `beginning-of-line'/`end-of-line' in the presence of field properties.
959
960 2001-10-17 Gerd Moellmann <gerd@gnu.org>
961
962 * Makefile.in (VERSION): Set to 2.8.
963 (manual): Use `manual-21'.
964
965 * elisp.texi (VERSION): Add and use it where the version
966 number was used. Set it to 2.8.
967
968 * intro.texi: Likewise.
969
970 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
971
972 * files.texi (File Name Completion): Document the significance of
973 a trailing slash in elements of completion-ignored-extensions.
974
975 2001-10-06 Miles Bader <miles@gnu.org>
976
977 * variables.texi (Variable Aliases): It's `@defmac', not `@defmacro'.
978
979 2001-10-04 Gerd Moellmann <gerd@gnu.org>
980
981 * variables.texi (Variable Aliases): New node.
982
983 2001-10-04 Gerd Moellmann <gerd@gnu.org>
984
985 * Branch for 21.1.
986
987 2001-10-02 Miles Bader <miles@gnu.org>
988
989 * minibuf.texi (Minibuffer Misc): Add entries for
990 `minibuffer-contents', `minibuffer-contents-no-properties', and
991 `delete-minibuffer-contents'.
992 Correct description for `minibuffer-prompt-end'.
993
994 * text.texi (Property Search): Correct descriptions of
995 `next-char-property-change' and `previous-char-property-change'.
996 Add entries for `next-single-char-property-change' and
997 `previous-single-char-property-change'.
998 Make operand names a bit more consistent.
999
1000 2001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
1001
1002 * frames.texi (Finding All Frames): Document that next-frame and
1003 previous-frame are local to current terminal.
1004
1005 2001-09-26 Eli Zaretskii <eliz@is.elta.co.il>
1006
1007 * keymaps.texi (Creating Keymaps): Fix the description of the
1008 result of make-keymap.
1009
1010 2001-09-23 Eli Zaretskii <eliz@is.elta.co.il>
1011
1012 * display.texi (Font Lookup, Attribute Functions)
1013 (Image Descriptors): Add cross-references to the definition of
1014 selected frame.
1015
1016 * buffers.texi (The Buffer List): Add cross-references to the
1017 definition of selected frame.
1018
1019 * frames.texi (Input Focus): Clarify which frame is _the_ selected
1020 frame at any given time.
1021 (Multiple Displays, Size and Position): Add a cross-reference to
1022 the definition of the selected frame.
1023
1024 2001-09-08 Eli Zaretskii <eliz@is.elta.co.il>
1025
1026 * strings.texi (String Conversion) <string-to-number>: Document
1027 that a float is returned for integers that are too large.
1028
1029 * frames.texi (Mouse Position): Document mouse-position-function.
1030 (Display Feature Testing): Document display-images-p.
1031 (Window Frame Parameters): Document the cursor-type variable.
1032
1033 * numbers.texi (Integer Basics): Document CL style read syntax for
1034 integers in bases other than 10.
1035
1036 * positions.texi (List Motion): Document
1037 open-paren-in-column-0-is-defun-start.
1038
1039 * lists.texi (Sets And Lists): Document member-ignore-case.
1040
1041 * internals.texi (Garbage Collection): Document the used and free
1042 strings report.
1043 (Memory Usage): Document strings-consed.
1044
1045 * os.texi (Time of Day): Document float-time.
1046 (Recording Input): Document that clear-this-command-keys clears
1047 the vector to be returned by recent-keys.
1048
1049 * keymaps.texi (Scanning Keymaps) <where-is-internal>: The
1050 argument keymap can be a list.
1051
1052 * nonascii.texi (User-Chosen Coding Systems)
1053 <select-safe-coding-system>: Document the new argument
1054 accept-default-p and the variable
1055 select-safe-coding-system-accept-default-p. Tell what happens if
1056 buffer-file-coding-system is undecided.
1057 (Default Coding Systems): Document auto-coding-regexp-alist.
1058
1059 * display.texi (The Echo Area) <message>: Document
1060 message-truncate-lines.
1061 (Glyphs): Document that the glyph table is unused on windowed
1062 displays.
1063
1064 * help.texi (Describing Characters) <single-key-description>:
1065 Document the new argument no-angles.
1066 (Accessing Documentation) <documentation-property>: Document that
1067 a non-string property is evaluated.
1068 <documentation>: Document that the function-documentation property
1069 is looked for.
1070
1071 * windows.texi (Selecting Windows): Document some-window.
1072
1073 * text.texi (MD5 Checksum): New node, documents the md5 primitive.
1074
1075 * hooks.texi (Standard Hooks): Add kbd-macro-termination-hook and
1076 apropos-mode-hook.
1077
1078 * commands.texi (Using Interactive): Document interactive-form.
1079 (Keyboard Macros): Document kbd-macro-termination-hook.
1080 (Command Loop Info): Document that clear-this-command-keys clears
1081 the vector to be returned by recent-keys.
1082
1083 2001-09-04 Werner LEMBERG <wl@gnu.org>
1084
1085 * Makefile.in (srcdir, texinputdir): New variables.
1086 (srcs, index.texi, install): Use $(srcdir).
1087 (.PHONY): Remove elisp.dvi.
1088 (elisp): Use -I switch for makeinfo.
1089 (elisp.dvi): Use $(srcdir) and $(texinputdir).
1090 (installall, dist): Use $(srcdir).
1091 Fix path to texinfo.tex.
1092 (maintainer-clean): Add elisp.dvi and elisp.oaux.
1093
1094 2001-08-30 Gerd Moellmann <gerd@gnu.org>
1095
1096 * display.texi (Conditional Display): Adjust to API change.
1097
1098 * configure: New file.
1099
1100 2001-07-30 Gerd Moellmann <gerd@gnu.org>
1101
1102 * commands.texi (Repeat Events): Add description of
1103 double-click-fuzz.
1104
1105 2001-05-08 Stefan Monnier <monnier@cs.yale.edu>
1106
1107 * syntax.texi (Syntax Class Table): Add the missing designator for
1108 comment and string fences.
1109 (Syntax Properties): Add a xref to syntax table internals.
1110 (Syntax Table Internals): Document string-to-syntax.
1111
1112 2001-05-07 Gerd Moellmann <gerd@gnu.org>
1113
1114 * Makefile.in (install): Use install-info command line options
1115 like in Emacs' Makefile.in.
1116
1117 2000-12-09 Miles Bader <miles@gnu.org>
1118
1119 * windows.texi (Window Start): Update documentation for
1120 `pos-visible-in-window-p'.
1121
1122 2000-11-12 Stefan Monnier <monnier@cs.yale.edu>
1123
1124 * lists.texi (Building Lists): Add footnote to explain how to add
1125 to the end of a list.
1126
1127 2000-10-25 Gerd Moellmann <gerd@gnu.org>
1128
1129 * files.texi (Visiting Functions): Typos.
1130
1131 2000-10-25 Kenichi Handa <handa@etl.go.jp>
1132
1133 * files.texi (Visiting Functions): Return value of
1134 find-file-noselect may be a list of buffers if wildcards are used.
1135
1136 2000-10-24 Miles Bader <miles@lsi.nec.co.jp>
1137
1138 * display.texi (Defining Faces): Document `graphic' display type
1139 in face specs.
1140
1141 2000-10-18 Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
1142
1143 * hooks.texi (Standard Hooks): Replace obsolete
1144 `after-make-frame-hook' with `after-make-frame-functions'.
1145
1146 * frames.texi (Creating Frames): Ditto.
1147
1148 * variables.texi (Future Local Variables): Ditto.
1149
1150 2000-10-16 Gerd Moellmann <gerd@gnu.org>
1151
1152 * display.texi (Other Image Types): Add description of :foreground
1153 and :background properties of mono PBM images.
1154
1155 2000-08-17 Werner LEMBERG <wl@gnu.org>
1156
1157 * .cvsignore: New file.
1158
1159 2000-01-05 Gerd Moellmann <gerd@gnu.org>
1160
1161 * tindex.pl: New script.
1162
1163 1999-12-03 Dave Love <fx@gnu.org>
1164
1165 * Makefile.in (MAKEINFO): New parameter.
1166
1167 1999-09-17 Richard Stallman <rms@gnu.org>
1168
1169 * Makefile.in (srcs): Add hash.texi.
1170 (VERSION): Update to 20.6.
1171
1172 1999-09-13 Richard Stallman <rms@gnu.org>
1173
1174 * Makefile.in (index.texi): If cannot make a symlink, make a hard link.
1175
1176 1998-08-29 Karl Heuer <kwzh@gnu.org>
1177
1178 * configure.in: New file.
1179 * Makefile.in: Renamed from Makefile.
1180 (prefix, infodir): Use value obtained from configure.
1181 (emacslibdir): Obsolete variable deleted.
1182 (dist): Distribute configure.in, configure, Makefile.in.
1183
1184 1998-06-12 Richard Stallman <rms@psilocin.ai.mit.edu>
1185
1186 * Makefile (INSTALL_INFO): New variable.
1187 (install): Run install-info.
1188
1189 1998-05-09 Richard Stallman <rms@psilocin.ai.mit.edu>
1190
1191 * Makefile (elisp.dvi): Add missing backslash.
1192
1193 1998-05-02 Richard Stallman <rms@psilocin.gnu.org>
1194
1195 * Makefile (elisp.dvi): Don't depend on texindex or on elisp.tps.
1196 Run texindex without `./'. Always run texindex on elisp.tp.
1197 (elisp.tps): Target deleted.
1198
1199 1998-04-05 Richard Stallman <rms@psilocin.gnu.org>
1200
1201 * Makefile (srcs): Add nonascii.texi and customize.texi.
1202 (dist): Start by deleting `temp'.
1203
1204 1998-02-17 Richard Stallman <rms@psilocin.gnu.org>
1205
1206 * Makefile (makeinfo, texindex): Targets deleted.
1207 (makeinfo.o, texindex.o): Targets deleted.
1208 (clean, dist): Don't do anything with them or with getopt*.
1209
1210 1998-01-30 Richard Stallman <rms@psilocin.gnu.org>
1211
1212 * Makefile (SHELL): Defined.
1213
1214 1998-01-27 Richard Stallman <rms@psilocin.gnu.org>
1215
1216 * Makefile (elisp.tps): New target.
1217 (elisp.dvi): Depend on elisp.tps.
1218
1219 Wed Apr 3 15:24:25 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
1220
1221 * README: Update phone number.
1222
1223 * Makefile (elisp): Make this be the default target.
1224 Depend on makeinfo.c instead of makeinfo.
1225 (install): Don't depend on elisp.dvi, since we don't install that.
1226 Use mkinstalldirs.
1227 (dist): Add mkinstalldirs.
1228
1229 Mon Jun 19 14:35:26 1995 Richard Stallman <rms@mole.gnu.ai.mit.edu>
1230
1231 * Makefile (VERSION): Update version number.
1232 (maintainer-clean): Renamed from realclean.
1233
1234 Wed Jun 7 17:04:59 1995 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
1235
1236 * Makefile (realclean): New target.
1237 (elisp): Remove any old elisp-* files first.
1238
1239 Tue Nov 23 19:59:40 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
1240
1241 * Makefile (VERSION): New variable.
1242 (dist): Make packaged directory name `elisp-manual-19-$(VERSION)'.
1243 Compressed file suffix should be `.gz', not `.z'.
1244
1245 Mon Nov 22 15:06:19 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
1246
1247 * Makefile (elisp): Depend on makeinfo.
1248
1249 Fri Nov 19 02:29:33 1993 Noah Friedman (friedman@gnu.ai.mit.edu)
1250
1251 * Makefile (srcs): Add anti.texi.
1252
1253 Fri May 28 18:04:53 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
1254
1255 * Makefile (infodir, prefix): New vars.
1256 (install): Use infodir.
1257 (emacsinfodir): Deleted.
1258
1259 Thu May 27 02:11:25 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
1260
1261 * Makefile (srcs): Add calendar.texi.
1262
1263 * Makefile (dist): Copy texindex.c and makeinfo.c.
1264 Limit elisp-* files to those with one or two digits.
1265
1266 Sun May 16 17:58:21 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
1267
1268 * Makefile (dist): Changed to use Gzip instead of compress.
1269
1270 Fri Apr 23 01:05:23 1993 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
1271
1272 * loading.texi (Unloading): define-function changed back to
1273 defalias. It may not stay this way, but at least it's
1274 consistent with the known-good version of the code patch.
1275
1276 Fri Mar 26 21:14:54 1993 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
1277
1278 * modes.texi (Hooks): Document new optional arg of add-hook.
1279
1280 Wed Mar 17 08:48:24 1993 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
1281
1282 * variables.texi: Document nil initial value of buffer-local variables.
1283
1284 * tips.texi: Add new section on standard library headers.
1285
1286 Sat Feb 27 18:00:25 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
1287
1288 * Makefile (srcs): Add frame.texi to the list of sources.
1289
1290 Tue Feb 23 10:50:25 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
1291
1292 * Makefile (dist): Don't bother excluding autosave files; they'll
1293 never make it into the temp directory anyway, and the hash marks
1294 in the name are problematic for make and the Bourne shell.
1295 (srcs):
1296
1297 Fri Feb 12 16:54:38 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
1298
1299 * Makefile (dist): Don't include backup files or autosave files in
1300 the distribution tar file.
1301
1302 Tue Nov 26 21:10:34 1991 Richard Stallman (rms@mole.gnu.ai.mit.edu)
1303
1304 * Makefile (srcs): Added index.perm.
1305 (elisp.dvi): Remove erroneous shell comment.
1306 Expect output of permute-index in permuted.fns.
1307 Save old elisp.aux in elisp.oaux.
1308 (clean): Added index.texi to be deleted.
1309
1310 Sat Aug 11 17:39:10 1990 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
1311
1312 * Makefile (elisp.dvi, index.texi): Use shell if instead of ifdef.
1313
1314 Tue Jun 26 09:57:26 1990 David Lawrence (tale@geech)
1315
1316 * files.texi: Noted that completion-ignored-extensions is ignored
1317 when making *Completions*.
1318
1319 Fri Jun 8 16:44:44 EDT 1990 Jay Fenlason (hack@ai.mit.edu)
1320
1321 * Makefile make dist now depends on elisp.dvi, since it tries
1322 to include it in the dist file.
1323
1324 Wed Mar 28 22:57:35 1990 Jim Kingdon (kingdon@mole.ai.mit.edu)
1325
1326 * functions.texinfo (Mapping Functions): Add missing quote
1327
1328 Mon Jun 19 18:09:24 1989 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
1329
1330 * texinfo.tex (frenchspacing): Use decimal codes for char to be set.
1331 (defunargs): Turn off \hyphenchar of \sl font temporarily.
1332
1333 Wed May 10 18:01:17 1989 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
1334
1335 * @result{}, @expansion{}, @print{}, @quiv{}, @point{},
1336 and @error{} are the terms now being used. The files in the
1337 directory have been changed to reflect this.
1338
1339 * All instances of @indentedresultt{} have been changed to
1340 ` @result{}', using 5 spaces at the begining of the line.
1341
1342 Mon Apr 24 21:02:55 1989 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
1343
1344 * @result{}, @expandsto{}, @prints{}, @quiv{}, @error{}, and the
1345 experimental @indentedresult{}, @indentedexpandsto{} are part of
1346 the texinfo.tex in this directory. These TeX macros are not
1347 stable yet.
1348
1349 Mon Apr 17 18:56:50 1989 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
1350
1351 * texinfo.tex: temporarily added
1352 \let\result=\dblarrow
1353 \def\error{{\it ERROR} \longdblarrow}
1354 We need to do this better soon.
1355
1356 Tue Apr 11 12:23:28 1989 Robert J. Chassell (bob@rice-chex.ai.mit.edu)
1357
1358 * Applied Karl Berry's patches to *.texinfo files, but not to
1359 texinfo.tex; those diffs are in `berry-texinfo-tex-diffs'. (Karl's
1360 new title page format is also not applied, since it requires
1361 texinfo.tex changes.)
1362
1363 * Cleaned up `Makefile' and defined the `emacslibdir' directory
1364 for the Project GNU development environment.
1365
1366 ;; Local Variables:
1367 ;; coding: iso-2022-7bit
1368 ;; End:
1369
1370 Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
1371 Copying and distribution of this file, with or without modification,
1372 are permitted provided the copyright notice and this notice are preserved.
1373
1374 ;;; arch-tag: 985ae0ce-df29-475b-b3f8-4bbcbf6f7fda