]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
*** empty log message ***
[gnu-emacs] / lisp / ChangeLog
1 2003-02-05 Juanma Barranquero <lektu@terra.es>
2
3 * font-lock.el (font-lock-reference-face): Add obsolescence
4 declaration and remove redundant info from docstring.
5
6 * log-edit.el (cvs-commit-buffer-require-final-newline)
7 (cvs-changelog-full-paragraphs): Likewise.
8
9 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button)
10 (mouse-wheel-click-button): Likewise.
11
12 * pcvs-defs.el (cvs-diff-ignore-marks, cvs-diff-buffer-name): Likewise.
13
14 * vc.el (vc-annotate-display, vc-checkout-carefully): Likewise.
15
16 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
17 (vc-header-alist): Likewise.
18
19 * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Likewise.
20
21 * textmodes/outline.el (outline-visible): Likewise.
22
23 2003-02-05 Kim F. Storm <storm@cua.dk>
24
25 * ido.el (ido-define-mode-map):
26 Undo last change (duplicates part of 2003-02-04 change).
27 Remap `viper' delete commands only in file or dir mode.
28
29 2003-02-05 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
30
31 * ido.el (ido-define-mode-map): Interact with Viper.
32
33 2003-02-05 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
34
35 * net/tramp.el: Version 2.0.29 released.
36
37 * net/tramp.el (tramp-send-region): Protect against
38 tramp-chunksize being nil.
39
40 2003-02-04 Michael Albinus <Michael.Albinus@alcatel.de>
41
42 * net/tramp.el (tramp-handle-directory-file-name): Handle the case
43 PATH is "".
44 (tramp-completion-handle-file-name-all-completions): Define
45 `tramp-current-user' locally. See `tramp-parse-passwd'.
46 (tramp-parse-passwd): For su-alike methods it would be desirable
47 to return "root@localhost" as default. Unfortunately, we have no
48 information whether any user name has been typed already. So we
49 (mis-)use tramp-current-user as indication, assuming it is set in
50 `tramp-completion-handle-file-name-all-completions'.
51 (tramp-send-region): Handle the case `tramp-chunksize' is equal
52 0. I did it accidently. Infinite loop ...
53
54 * net/tramp-ftp.el (top-level): eval-after-load "ange-ftp"
55 '(tramp-disable-ange-ftp). Suggested by Kai.
56 (tramp-ftp-file-name-handler): `tramp-disable-ange-ftp' not needed
57 any longer.
58
59 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Apply
60 `tramp-handle-directory-file-name' in order to profit from Kai's
61 yesterday changes.
62
63 2003-02-03 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
64
65 * net/tramp.el (tramp-chunksize): Set default to 500 as workaround
66 for some ssh connections.
67 (tramp-handle-directory-file-name): New implementation. Not sure
68 if it works.
69
70 2003-01-28 Michael Albinus <Michael.Albinus@alcatel.de>
71
72 * net/tramp.el (tramp-get-device): `tramp-make-tramp-file-name'
73 must not be called with NIL path. It fails in case of
74 multi-method.
75
76 2003-01-27 Michael Albinus <Michael.Albinus@alcatel.de>
77
78 * net/tramp.el (tramp-file-name-for-operation): Apply
79 `expand-file-name' for relative file names only. Otherwise there
80 might be problems if the default directory is another Tramp
81 directory as the directory the file is based on.
82 (tramp-find-foreign-file-name-handler): Check whether FILENAME is
83 a Tramp file name. It isn't if it comes from an expanded file
84 name (like "/xx:yy//zz").
85
86 2003-01-25 Michael Albinus <Michael.Albinus@alcatel.de>
87
88 * net/tramp.el (tramp-devices): New variable. Keeps virtual
89 device numbers. Devices must distinguish physical file systems.
90 The device numbers provided by "lstat" aren't unique, because we
91 operate on different hosts. So we use virtual device numbers,
92 generated by `tramp-get-device'. Both Ange-FTP and EFS use device
93 number -1. In order to be different, we use device number (-1 x),
94 whereby "x" is unique for a given (multi-method method user host).
95 Suggested by Kai.
96 (tramp-perl-file-attributes): Always return device number -1.
97 There will be a virtual device number set in
98 `tramp-handle-file-attributes', which replaces this one.
99 (tramp-handle-file-attributes): Set virtual device number.
100 (tramp-get-device): New function. Returns the virtual device
101 number. If it doesn't exist, generate a new one.
102 (tramp-handle-file-regular-p): Use Emacs file name primitives
103 instead of calling tramp-handle-* equivalents directly. Needed
104 for tramp-smb.
105
106 * net/tramp-smb.el (tramp-smb-devices, tramp-smb-get-device): Removed.
107 Functionality moved to tramp.el.
108 (tramp-smb-handle-file-attributes): Apply
109 `tramp-get-device'. ATIME and CTIME are (0 0) now (= "don't
110 know"), which is more honest.
111 (tramp-smb-handle-make-directory): Use Emacs file name primitives
112 instead of calling tramp-smb-handle-* equivalents directly.
113 (tramp-smb-read-file-entry): Return size as a number but a string.
114
115 2003-01-24 Michael Albinus <Michael.Albinus@alcatel.de>
116
117 * net/tramp.el (tramp-completion-function-alist-ssh): Add parsing
118 of "/etc/ssh_config" and "~/.ssh/config". Suggested by Kai.
119 (tramp-completion-function-alist, tramp-set-completion-function):
120 Doc string update.
121 (tramp-parse-sconfig, tramp-parse-sconfig-group): New functions.
122 Provide parsing of "~/.ssh/config" style files.
123
124 2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
125
126 * net/tramp.el (tramp-completion-handle-expand-file-name): Apply
127 `tramp-drop-volume-letter'. Otherwise, there are problems on W32
128 systems.
129
130 2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
131
132 * net/tramp-smb.el (tramp-smb-get-device, tramp-smb-get-inode): New
133 functions. Device number and inode number don't exist for SMB
134 files. Therefore we must generate virtual ones.
135 (tramp-smb-devices, tramp-smb-inodes): New variables. Keep
136 generated virtual device numbers and inodes numbers for SMB files.
137 (tramp-smb-handle-file-attributes): Apply them.
138
139 2003-01-14 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
140
141 * net/tramp.el (tramp-md5-function): Require md5 before checking
142 function md5. If using md5-encode, put wrapper around it that
143 converts vector of bytes to ascii text.
144
145 2003-01-13 Michael Albinus <Michael.Albinus@alcatel.de>
146
147 * net/tramp.el (tramp-completion-mode): Perform check (integerp
148 last-input-event) before (event-modifiers last-input-event) -
149 there might be problems if `last-input-event' is a mouse event.
150
151 2003-01-12 Michael Albinus <Michael.Albinus@alcatel.de>
152
153 * net/tramp.el (tramp-parse-rhosts, tramp-parse-shosts)
154 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc): Use
155 `file-readable-p' instead of `file-exists-p'. Otherwise these
156 functions might block. Reported by <kin@neoscale.com>.
157
158 2003-01-02 Michael Albinus <Michael.Albinus@alcatel.de>
159
160 * net/tramp-ftp.el (top-level): Defaults for
161 `tramp-default-method-alist' must be a list.
162
163 * net/tramp-smb.el (top-level): Defaults for
164 `tramp-default-method-alist' must be a list.
165
166 2003-01-02 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
167
168 * net/tramp.el (top-level): Avoid byte-compiler warnings of unused
169 variables if the byte-compiler supports this. This is for the
170 with-parsed-tramp-file-name macro which is wont to produce such
171 stuff.
172
173 2003-02-04 Richard M. Stallman <rms@gnu.org>
174
175 * term.el (term-raw-map): Set it up at load time.
176 (term-char-mode): Don't set up term-raw-map here.
177 (term-set-escape-char): Don't set up C-x subcommand.
178 (term-ansi-face-already-done): Renamed from
179 term-ansi-face-alredy-done.
180 (term-command-hook): Avoid error if STRING is empty.
181 (term, term-mode): Doc fixes.
182
183 * term.el: Redesign handling of colors and faces.
184 Delete all the faces that this mode used to make.
185 (ansi-term-color-vector): New variable.
186 (ansi-term-fg-faces-vector, ansi-term-bg-faces-vector)
187 (ansi-term-inv-bg-faces-vector, ansi-term-inv-fg-faces-vector):
188 Variables deleted.
189 (term-default-fg-color, term-default-bg-color): Use defcustom.
190 (term-handle-colors-array): Use ansi-term-color-vector,
191 and specify face attributes rather than faces in `face' property.
192
193 * term.el (term-ansi-fg-faces-vector, term-ansi-bg-faces-vector)
194 (term-ansi-inv-fg-faces-vector, term-ansi-inv-bg-faces-vector)
195 (term-ansi-reverse-faces-vector): Unused variables deleted.
196 (term-ignore-error): Macro deleted.
197
198 * simple.el (back-to-indentation): Skip all whitespace
199 except for newlines.
200
201 * files.el (find-alternate-file): Handle dired-directory
202 like buffer-file-name.
203
204 * dired.el (dired-find-buffer-nocreate): Avoid error if
205 dired-directory is nil.
206
207 2003-02-04 Juanma Barranquero <lektu@terra.es>
208
209 * image.el (image-type-regexps): Fix typo.
210
211 * international/characters.el: Restore missing space and put a
212 comment to protect it from being deleted as trailing whitespace.
213
214 * ruler-mode.el (ruler-mode-margins-char): Likewise.
215
216 2003-02-04 Francesco Potort\e,Al\e(B <pot@gnu.org>
217
218 * mail/rmailout.el (rmail-output): If preserving MIME-version,
219 preserve Content-type too.
220
221 2003-02-04 Kim F. Storm <storm@cua.dk>
222
223 * ido.el (ido-define-mode-map): Remap viper delete char/word
224 commands to their ido specific equivalents. Disable ESC in
225 viper mode (to avoid exiting insert mode), since ido doesn't
226 work in viper command mode.
227 (ido-delete-backward-updir, ido-delete-backward-word-updir):
228 Handle remapped viper commands.
229
230 2003-02-03 Juanma Barranquero <lektu@terra.es>
231
232 * calculator.el (calculator): Don't use the minibuffer even in
233 electric mode; use a private buffer and display it in the minibuffer
234 window using `set-window-buffer'.
235
236 2003-02-03 Dave Love <fx@gnu.org>
237
238 * emacs-lisp/benchmark.el: New.
239
240 2003-02-02 Andreas Schwab <schwab@suse.de>
241
242 * progmodes/asm-mode.el (asm-font-lock-keywords): Allow arbitrary
243 words separated by dots. Match optional parenthesized word at
244 start of line.
245
246 * font-lock.el
247 (font-lock-match-c-style-declaration-item-and-skip-to-next):
248 Don't require underscore in word before double open-paren.
249
250 2003-02-02 John Paul Wallington <jpw@gnu.org>
251
252 * hexl.el (hexl-mode-map): Bind C-m to `hexl-self-insert-command'.
253
254 2003-02-01 Stephen Gildea <gildea@stop.mail-abuse.org>
255
256 * time-stamp.el: Update example date in preamble commentary.
257 (time-stamp): Fix parsing of "%%a" in time-stamp-pattern (change
258 regexp subpattern 5)
259 (time-stamp-pattern): Initialize to nil to avoid regexp work in
260 default case.
261 (time-stamp-string): Call set-time-zone-rule instead of setenv
262 (time-stamp-hhmmss): Remove (not needed after all).
263 (time-stamp-month-dd-yyyy, time-stamp-dd/mm/yyyy,
264 time-stamp-mon-dd-yyyy, time-stamp-dd-mon-yy, time-stamp-yy/mm/dd,
265 time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd, time-stamp-yymmdd,
266 time-stamp-hh:mm:ss, time-stamp-hhmm): Make obsolete.
267 (time-stamp-format, time-stamp-pattern, time-stamp-warn-inactive,
268 time-stamp-inserts-lines, time-stamp-count, time-stamp-time-zone,
269 time-stamp, time-stamp-toggle-active, time-stamp-string-preprocess,
270 time-stamp-once, time-stamp-conv-warn): Tweak doc strings.
271
272 2003-01-31 Christoph Wedler <Christoph.Wedler@sap.com>
273
274 * antlr-mode.el: Bug fixes, miscellaneous.
275 (antlr-mode): Make major mode work with cc-mode-5.29 or higher,
276 make it more rubust against changes in cc-mode's style variables
277 by using `boundp' and function `c-init-language-vars' if defined.
278 (antlr-c++-mode-extra): Only ask if language is not "Cpp".
279 (antlr-read-value): With completion, ignore case.
280 (antlr-run-tool-interactive): New function.
281 (antlr-run-tool): Use it for `interactive' specification.
282
283 * antlr-mode.el: Simplify Emacs/XEmacs compatibility.
284 (cond-emacs-xemacs): New compile-time macro.
285 (defunx): New compile-time macro.
286 (ignore-errors-x): New compile-time macro.
287 (save-buffer-state-x): New compile-time macro.
288
289 (antlr-scan-sexps, antlr-simple-scan-sexps): Deletia.
290 (antlr-scan-lists, antlr-simple-scan-sexps): Deletia.
291 (antlr-simple-default-directory): Deletia.
292 (antlr-default-directory): Define directly.
293 (antlr-simple-read-shell-command): Deletia.
294 (antlr-read-shell-command): Define directly.
295 (antlr-simple-with-displaying-help-buffer): Deletia.
296 (antlr-with-displaying-help-buffer): Define directly.
297 (antlr-fast-invalidate-context-cache): Deletia.
298 (antlr-slow-invalidate-context-cache): Deletia.
299 (antlr-invalidate-context-cache): Define directly.
300 (antlr-fast-syntactic-context): Deletia.
301 (antlr-slow-syntactic-context): Deletia.
302 (antlr-syntactic-context): Define directly.
303
304 (antlr-mode-menu): Use new macros.
305 (antlr-font-lock-additional-keywords): Ditto.
306 (antlr-skip-sexps): Ditto.
307 (antlr-end-of-rule): Ditto.
308 (antlr-beginning-of-rule): Ditto.
309 (antlr-end-of-body): Ditto.
310 (antlr-beginning-of-body): Ditto.
311 (antlr-hide-actions): Ditto.
312 (antlr-option-kind): Ditto.
313
314 * antlr-mode.el: In Emacs, use face attribute :weight, not :bold.
315 (antlr-font-lock-keyword-face): Use new macros.
316 (antlr-font-lock-syntax-face): Ditto.
317 (antlr-font-lock-ruledef-face): Ditto.
318 (antlr-font-lock-tokendef-face): Ditto.
319 (antlr-font-lock-literal-face): Ditto.
320
321 Changes from 2002-05-24:
322
323 * antlr-mode.el: Version 2.2a.
324
325 Changes from 2002-05-03:
326
327 * antlr-mode.el: Make context parsing faster on Emacs, for faster
328 syntax highlighting, indentation and imenu support.
329 Suggested by Aaron Davies <adavies42@users.sourceforge.net>.
330 (antlr-slow-context-cache): New variable.
331 (antlr-slow-syntactic-context): Use cache.
332 (antlr-slow-cache-enabling-symbol): New internal variable.
333 (antlr-slow-cache-diff-threshold): New variable.
334 (antlr-fast-invalidate-context-cache): Renamed from
335 antlr-xemacs-bug-workaround.
336 (antlr-imenu-create-index-function): Search from beginning.
337
338 * antlr-mode.el: More sophisticated indentation, i.e., use the
339 indentation engine of cc-mode for most actions.
340 (antlr-c-common-init): Allow nil for `antlr-indent-style'.
341 (antlr-indent-line): Use indentation engine of cc-mode more often.
342 (antlr-indent-at-bol-alist): Only used for header actions.
343 (antlr-disabling-cc-syntactic-symbols): New variable.
344 (antlr-indent-item-regexp): Delete stuff for actions.
345 (antlr-indent-at-bol-alist): With language "Java", indent
346 "package" and "import" at column 0 in header part.
347
348 * antlr-mode.el (antlr-simple-default-directory): Define.
349 (antlr-simple-read-shell-command): Define.
350 (antlr-simple-with-displaying-help-buffer): Define.
351 (antlr-simple-scan-sexps, antlr-simple-scan-lists):
352 Renamed from antlr-scan-{sexps,lists}-internal.
353
354 Changes from 2002-02-28:
355
356 * antlr-mode: Version 2.2 is released.
357
358 * antlr-mode.el (antlr): Moved to SourceForge.net
359
360 * antlr-mode.el: Minor bug fixes: insert options and indentation.
361 (antlr-option-location): Don't use point as position where to
362 insert options if point is in comment.
363 (antlr-mode): Don't set style here.
364 (antlr-c-common-init): Set style here. If boundp, set
365 `c-current-comment-prefix' to not break indentation in comments.
366 Hm, I should probably split `c-common-init' from cc-mode into two
367 parts, one of which I could use for antlr-mode.el.
368
369 Changes from 2002-01-31:
370
371 * antlr-mode.el (antlr-font-lock-additional-keywords): Also
372 hightlight `~' with `antlr-font-lock-syntax-face'.
373 Suggested by Helmut Neukirchen <neukirchen@itm.mu-luebeck.de>.
374
375 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
376
377 * comint.el:
378 * dired-aux.el:
379 * dired.el:
380 * dirtrack.el:
381 * dos-w32.el:
382 * fast-lock.el:
383 * filecache.el:
384 * files.el:
385 * hippie-exp.el:
386 * international/mule.el:
387 * net/browse-url.el:
388 * pcomplete.el:
389 * recentf.el:
390 * shell.el:
391 * woman.el: Added cygwin to system-type comparisons.
392
393 2003-01-31 Francesco Potort\e,Al\e(B <pot@gnu.org>
394
395 * mail/undigest.el (rmail-forward-separator-regex): New custom
396 variable.
397 (unforward-rmail-message): Use it.
398
399 2003-01-30 Dave Love <fx@gnu.org>
400
401 * textmodes/ispell.el (lookup-words): Fix last change.
402
403 2003-01-29 John Paul Wallington <jpw@gnu.org>
404
405 * font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
406
407 * emacs-lisp/lisp-mode.el (toplevel): Define docstring offset for
408 `deftheme'. Fix docstring offsets for `define-ibuffer-filter' and
409 `define-ibuffer-sorter'.
410 (lisp-imenu-generic-expression): Add `deftheme' to types.
411
412 * custom.el (customize-mark-to-save, customize-mark-as-set)
413 (custom-remove-theme): Doc fixes.
414
415 2003-01-29 Didier Verna <didier@xemacs.org>
416
417 * cus-edit.el (custom-save-variables): also save non theme'd ones.
418 * cus-edit.el (custom-save-faces): ditto.
419
420 2003-01-29 Juanma Barranquero <lektu@terra.es>
421
422 * composite.el (decompose-composite-char): Fix docstring.
423
424 * select.el (x-set-cut-buffer): Fix docstring. Check type with `stringp'
425 instead of `substring'.
426
427 * textmodes/reftex.el (reftex-TeX-master-file): Use really the buffer
428 file name if no other master file is located.
429
430 * progmodes/cperl-mode.el (cperl-beautify-level)
431 (cperl-beautify-regexp): Fix use of `prefix-numeric-value'.
432 (cperl-calculate-indent): Fix typo.
433
434 2003-01-29 Taro Kawagishi <tarok@transpulse.org>
435
436 * arc-mode.el (archive-lzh-summarize): Fix previous change.
437
438 2003-01-29 Kim F. Storm <storm@cua.dk>
439
440 * emacs-lisp/authors.el: New format of AUTHORS file; list each
441 author name once followed by contributed and changed files.
442 Improve selection of entries to include in list, and generate list
443 of unrecognized entries indicating syntax errors in ChangeLog files.
444 (authors-coding-system): New variable.
445 (authors-many-files): Update doc string.
446 (authors-aliases): Change format. Now one entry with multiple
447 aliases per author.
448 (authors-valid-file-names, authors-renamed-files-alist)
449 (authors-renamed-files-regexps): New variables.
450 (authors-canonical-file-name): New function. Validates that file
451 exists or occurs in one of the above lists. Record unrecognized
452 file names in global authors-invalid-file-names list.
453 (authors-add): Change to record per-change counts.
454 (authors-canonical-author-name): Handle new format of
455 authors-aliases list.
456 (authors-scan-change-log): Rename FILE arg to LOG-FILE.
457 Change doc string to describe new entry format.
458 Only add author entries for valid file names.
459 (authors-print): Replace by authors-add-to-author-list.
460 (authors-add-to-author-list): New function which reorders
461 per-file entries and adds them to global authors-author-list.
462 (authors): Instead of authors-print to insert in *Authors* buffer,
463 use authors-add-to-author-list to reorder the list and then
464 insert result in *Authors* buffer with new format.
465 Generate *Authors Errors* compilation-mode buffer listing
466 unrecognized ChangeLog entries.
467
468 2003-01-28 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
469
470 * term/mac-win.el: Add entries in function-key-map for
471 [tab], [backspace], [escape].
472
473 2003-01-28 Kim F. Storm <storm@cua.dk>
474
475 * info.el (Info-extract-menu-node-name): Another fix for
476 2003-01-24 change. Also stop search if : is followed by TAB.
477
478 2003-01-28 John Paul Wallington <jpw@gnu.org>
479
480 * ibuf-ext.el (ibuffer-yank-filter-group): Move check for empty
481 `ibuffer-filter-group-kill-ring' out of `interactive' declaration.
482
483 2003-01-28 Martin Stjernholm <bug-cc-mode@gnu.org>
484
485 * progmodes/cc-vars.el, progmodes/cc-mode.el
486 (c-require-final-newline): Made this variable an alist to
487 specify a value for each language. The default value causes
488 `require-final-newline' to be set to t only in languages where
489 the standard requires a final newline.
490
491 2003-01-27 Kim F. Storm <storm@cua.dk>
492
493 * simple.el (kill-new): Improve doc string for yank-handler.
494 Signal args-out-of-range error if yank-handler is specified for
495 an empty string.
496
497 * subr.el (insert-for-yank): Remove COMMAND element from yank
498 handler.
499
500 2003-01-27 Dave Love <fx@gnu.org>
501
502 * dired-x.el (dired-filename-at-point): Fix last change and tidy up.
503
504 * thingatpt.el (thing-at-point-file-name-chars): Include
505 non-ASCII again and re-write the filename ops.
506
507 2003-01-27 David Ponce <david@dponce.com>
508
509 * makefile.w32-in (update-subdirs-SH): Create lisp/subdirs.el.
510
511 2003-01-27 Juanma Barranquero <lektu@terra.es>
512
513 * filesets.el (filesets-file-open): Fix typo.
514
515 * vcursor.el (vcursor-disable): Likewise.
516
517 * eshell/esh-cmd.el (eshell-separate-commands): Likewise.
518
519 * progmodes/cc-styles.el (c-make-styles-buffer-local): Likewise.
520
521 * progmodes/cc-vars.el (c-offsets-alist): Likewise.
522
523 * progmodes/ebrowse.el (ebrowse-draw-tree-fn): Likewise.
524
525 2003-01-26 Martin Stjernholm <bug-cc-mode@gnu.org>
526
527 * progmodes/cc-vars.el, progmodes/cc-mode.el
528 (c-require-final-newline): Added a variable to make the
529 initialization of `require-final-newline' more configurable.
530
531 2003-01-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
532
533 * emacs-lisp/authors.el (authors-aliases): Add Jan D.
534 Set iso-2022-7bit coding: cookie.
535
536 2003-01-26 Kim F. Storm <storm@cua.dk>
537
538 * info.el (Info-extract-menu-node-name): Fix 2003-01-24 change.
539 Don't search for next colon if current colon is followed by
540 one of ".", ",", ";", or ")".
541 (info-insert-file-contents) [!MSDOS]: Avoid byte-compiler warning.
542 (Info-find-node) [!MSDOS]: Avoid byte-compiler warning.
543
544 2003-01-26 Richard M. Stallman <rms@gnu.org>
545
546 * thingatpt.el (thing-at-point-file-name-chars): Undo previous change.
547
548 2003-01-25 Bill Wohler <wohler@newt.com>
549
550 * mh-e: Created directory. ChangeLog will appear in a week when we
551 release version 7.2.
552
553 * lisp/mail/mh-alias.el, lisp/mail/mh-comp.el,
554 lisp/mail/mh-customize.el, lisp/mail/mh-e.el,
555 lisp/mail/mh-funcs.el, lisp/mail/mh-identity.el,
556 lisp/mail/mh-index.el, lisp/mail/mh-loaddefs.el,
557 lisp/mail/mh-mime.el, lisp/mail/mh-pick.el, lisp/mail/mh-seq.el,
558 lisp/mail/mh-speed.el, lisp/mail/mh-utils.el,
559 lisp/mail/mh-xemacs-compat.el: Moved to mh-e. Note that reply2.pbm
560 and reply2.xpm, which were created by the MH-E package, were left
561 in mail since they can probably be used by other mail packages.
562
563 * makefile.w32-in (WINS): Added mh-e.
564
565 * makefile.nt (WINS): Added mh-e.
566
567 2003-01-25 Richard M. Stallman <rms@gnu.org>
568
569 * emacs-lisp/bytecomp.el (byte-compile-file-form-custom-declare-variable):
570 Compile any lambda-expressions among the args.
571
572 * view.el (view-mode): Doc fix.
573
574 * ido.el: Many doc fixes.
575 (ido-complete): Fix message.
576
577 2003-01-25 Taro Kawagishi <tarok@transpulse.org>
578
579 * arc-mode.el (archive-unixdate): Corrected the date field string.
580 (archive-lzh-summarize): Extended it to allow the LZH level 2 header
581 type (which is most prevalent now), in addition to the already
582 supported level 0 and 1 header types.
583
584 2003-01-25 Markus Rost <rost@math.ohio-state.edu>
585
586 * international/mule-cmds.el (set-language-info)
587 (current-language-environment): Simplify setting the type of
588 current-language-environment.
589
590 2003-01-25 Kim F. Storm <storm@cua.dk>
591
592 * emulation/cua-base.el (cua--init-keymaps): Move C-S-x and C-S-c
593 bindings from cua--cua-keys-keymap to cua--region-keymap, as they are
594 only needed when the region is active. This also makes the output
595 from C-h b look normal when cua-mode is enabled (no C-S-x/c bindings).
596
597 2003-01-25 Michael Kifer <kifer@cs.stonybrook.edu>
598
599 * ediff.el (ediff-revision): better defaults.
600
601 * ediff-vers.el (ediff-vc-latest-version): new function.
602 (ediff-vc-internal): use latest version instead of working version.
603
604 2003-01-24 Thien-Thi Nguyen <ttn@gnu.org>
605
606 * info.el (Info-extract-menu-node-name): When looking for end of menu
607 item, don't stop at first ":"; instead, continue until trailing
608 context is either a space or newline.
609 (Info-complete-menu-item): Var `pattern': allow ":" in menu item.
610 (Info-menu): Likewise, for regexp used in backwards search.
611 (Info-try-follow-nearest-node): Remove case added in previous edit.
612 Change regexp in the following case to allow ":" in menu item.
613 (Info-fontify-node): Fix bug: Handle `next-property-change' returning
614 point-max as "hasn't already been done".
615
616 2003-01-24 Thien-Thi Nguyen <ttn@gnu.org>
617
618 * info.el (Info-try-follow-nearest-node): Add case: Handle menu item
619 terminated by ": " as an index entry.
620
621 2003-01-24 Juanma Barranquero <lektu@terra.es>
622
623 * isearch.el (isearch-forward): Fix typo.
624
625 2003-01-24 Kenichi Handa <handa@m17n.org>
626
627 * international/mule.el (decode-coding-inserted-region): Renamed
628 from decode-coding-region-as-inserted-from-file to make it fit
629 well in the Lisp manual.
630
631 * jka-compr.el (jka-compr-insert-file-contents): Call
632 docode-coding-inserted-region.
633
634 2003-01-24 John Paul Wallington <jpw@gnu.org>
635
636 * ibuffer.el (ibuffer-window-list): Remove.
637 (ibuffer-confirm-operation-on): Use `window-list' instead.
638 (ibuffer-load-hook): New customizable variable.
639 (toplevel): Run it.
640 (ibuffer-customize): New command.
641 (ibuffer-mode-map): Bind it.
642 (ibuffer-mode-map): Add menu seperator in View>Sort menu.
643 (ibuffer-mode): Tidy.
644 (ibuffer-fontification-alist, ibuffer-always-show-last-buffer)
645 (ibuffer-default-directory, ibuffer-default-sorting-mode)
646 (ibuffer-maybe-show-predicates, ibuffer-hook, ibuffer-mode-hook)
647 (ibuffer-map-lines): Doc fixes.
648
649 * ibuf-ext.el (ibuffer-copy-filename-as-kill): C-u means relative
650 filenames. Use `kill-new'.
651
652 2003-01-23 Dave Love <fx@gnu.org>
653
654 * abbrev.el (write-abbrev-file): Simplify, and put a coding cookie
655 in the file.
656
657 2003-01-23 Masatake YAMATO <jet@gyve.org>
658
659 * progmodes/asm-mode.el (asm-mode): Added syntax table entries for
660 /* */ comments.
661
662 2003-01-23 Kenichi Handa <handa@m17n.org>
663
664 * files.el (insert-directory): Read the output of "ls" by
665 no-conversion, and decode it later while preserving
666 `dired-filename' property.
667
668 2003-01-23 Markus Rost <rost@math.ohio-state.edu>
669
670 * descr-text.el (describe-text-mode-hook): Add a group.
671
672 2003-01-23 John Paul Wallington <jpw@shootybangbang.com>
673
674 * term/mac-win.el (interprogram-paste-function): Handle empty
675 clipboard.
676
677 2003-01-22 Aubrey Jaffer <agj@alum.mit.edu> (tiny change)
678
679 * info.el (Info-index): Change pattern so that index entries with
680 colons can be read properly; also, require at least one space
681 after the colons, which makeinfo puts in.
682
683 2003-01-22 Andreas Schwab <schwab@suse.de>
684
685 * jka-compr.el (jka-compr-insert-file-contents): Fix typo in last
686 change.
687
688 2003-01-22 Markus Rost <rost@math.ohio-state.edu>
689
690 * Makefile.in (bootstrap-after): New target.
691 (bootstrap): Move finder-data, custom-deps to bootstrap-after.
692
693 2003-01-22 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
694
695 * info.el (Info-index-next): Use "(`,' tries to find next)" for
696 more matches for consistency with standalone info browser.
697
698 2003-01-22 Kenichi Handa <handa@m17n.org>
699
700 * international/mule.el
701 (decode-coding-region-as-inserted-from-file): New function.
702
703 * jka-compr.el (jka-compr-insert-file-contents): Read a process
704 output without decoding. Decode the result by
705 decode-coding-region-as-inserted-from-file.
706
707 2003-01-22 Kim F. Storm <storm@cua.dk>
708
709 * ido.el (ido-make-file-list, ido-make-dir-list): Don't move
710 visited directories to end of list; it's the wrong thing to do if
711 we want to find a file or directory in such directories.
712
713 * simple.el: Doc fixes.
714 * subr.el: Doc fixes.
715
716 2003-01-20 Nick Roberts <nick@nick.uklinux.net>
717
718 * gud.el (gud-display-line): If the current file is newer than its
719 buffer, offer to reread the file.
720 (gud-keep-buffer): New buffer local variable. Ensures offer to
721 reread file is made just once.
722
723 2003-01-20 Stefan Monnier <monnier@cs.yale.edu>
724
725 * emacs-lisp/regexp-opt.el (regexp-opt-group): Undo last change.
726 Fix the docstring instead.
727
728 2003-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
729
730 * calendar/calendar.el (calendar-only-one-frame-setup): Autoload it.
731
732 2003-01-20 Richard M. Stallman <rms@gnu.org>
733
734 * simple.el (completion-setup-function): Set default-directory
735 in the minibuffer, so it'll be copied into the completion list buffer.
736
737 * emacs-lisp/regexp-opt.el (regexp-opt-group): Compute HALF2 properly.
738
739 * loadup.el (load-path): Rename `path' local var.
740
741 * progmodes/octave-mod.el (octave-mode-map): Change C-c i bindings
742 to C-c C-i. Duplicate its bindings with last char a ctl char.
743 Also change C-c f to C-c C-f.
744
745 2003-01-20 Markus Rost <rost@math.ohio-state.edu>
746
747 * ls-lisp.el (ls-lisp-use-insert-directory-program): Make default
748 value system dependent.
749 (ls-lisp-support-shell-wildcards): Add autoload cookie.
750
751 2003-01-19 Kim F. Storm <storm@cua.dk>
752
753 * msb.el: Use `dir' instead of `path' everywhere.
754
755 2003-01-18 Kim F. Storm <storm@cua.dk>
756
757 * simple.el (kill-new, kill-append, kill-region): New
758 optional parameter yank-handler.
759 (yank-excluded-properties): Add yank-handler to list.
760 (yank-undo-function): New variable.
761 (yank): Use it to undo previous yank or yank-pop command.
762 Allow insert-for-yank to override this-command.
763
764 * subr.el (insert-for-yank): Arg list changed; now only accepts one
765 string rather than any number of strings; no callers needed change.
766 Use yank-handler text property on the arg string.
767 Set yank-undo-function variable appropriately for yank-pop.
768
769 2003-01-18 Stefan Monnier <monnier@cs.yale.edu>
770
771 * textmodes/fill.el (fill-comment-paragraph): Fix simplistic
772 regexp-concatenation.
773
774 * add-log.el (add-change-log-entry): Don't leave space at eol.
775 (add-log-current-defun): Perl functions names can't have (or {.
776
777 * progmodes/sh-script.el (sh-indent-line): Use indent-line-to.
778 (sh-non-closing-paren): New const.
779 (sh-case, sh-while-getopts): Use it to make props non-sticky.
780 (sh-add-completer): Use test-completion.
781
782 2003-01-18 Vasily Korytov <deskpot@myrealbox.com> (tiny change)
783
784 * progmodes/cperl-mode.el: Don't make faces depend on window-system.
785
786 2003-01-18 Markus Rost <rost@math.ohio-state.edu>
787
788 * cus-edit.el (customize-changed-options): Undo last doc change.
789
790 2003-01-17 Stefan Monnier <monnier@cs.yale.edu>
791
792 * skeleton.el (skeleton-internal-list, skeleton-internal-1):
793 Don't treat \n specially in sub-skeletons.
794
795 2003-01-17 Dave Love <fx@gnu.org>
796
797 * international/ucs-tables.el: Redo 8859-6 change in the right place.
798
799 2003-01-17 Kenichi Handa <handa@m17n.org>
800
801 * international/fontset.el: Don't setup the default fontset and
802 font-encoding-alist at the top level.
803 (setup-default-fontset): New function.
804 (create-fontset-from-fontset-spec): Delete autoload cookie.
805
806 * term/x-win.el: Require fontset unconditionally again.
807 Call setup-default-fontset at the top level.
808
809 * term/w32-win.el: Call setup-default-fontset.
810
811 * term/mac-win.el: Require fontset and call setup-default-fontset.
812
813 2003-01-16 Stefan Monnier <monnier@cs.yale.edu>
814
815 * textmodes/fill.el (fill-region-as-paragraph): Only erase `hard'
816 property until end-of-paragraph.
817
818 2003-01-16 Kenichi Handa <handa@m17n.org>
819
820 * international/ucs-tables.el: Undo the last change.
821
822 2003-01-15 Dave Love <fx@gnu.org>
823
824 * thingatpt.el (thing-at-point-file-name-chars): Include non-ASCII
825 and use documented treatment of -.
826
827 * dired-x.el (dired-filename-at-point): Fix filename-chars.
828
829 * international/ucs-tables.el: Set up tables for 8859-6.
830
831 * server.el (server-window): Customize.
832 (server-mode): New.
833 (server-unload-hook): Call server-start.
834
835 2003-01-15 John Wiegley <johnw@gnu.org>
836
837 * eshell/em-hist.el (eshell-save-history-on-exit):
838 Rename `eshell-ask-to-save-history' to `eshell-save-history-on-exit',
839 because the former name is somewhat unrelated to the variables'
840 possible values.
841
842 2003-01-15 Deepak Goel <deego@gnufans.org>
843
844 * calc/README: Add new maintainer.
845
846 * calc/*: Ditto.
847
848 * calc/calc.el (calc-bug-address): Change address to deego@gnufans.org.
849
850 2003-01-15 Andrew Innes <andrewi@gnu.org>
851
852 * makefile.w32-in (loaddefs.el): Invoke make to build stub file
853 using appropriate rule for build environment.
854 (loaddefs.el-SH, loaddefs.el-CMD): New targets. Include small set
855 of autoloads and defvars, sufficient to dump bootstrap emacs.
856 (update-subdirs-SH): Use hard-coded list of top-level lisp
857 subdirs, because find program on Windows is not compatible with
858 Unix find.
859 (compile-CMD, compile-SH): Use `batch-byte-compile-if-not-done'.
860 Explicitly load loaddefs.el so that bootstrap emacs can compile
861 properly.
862 (bootstrap-clean): Add dependency on loaddefs.el, to ensure
863 minimal stub sufficient for dumping bootstrap emacs is available.
864
865 * loadup.el: Include lisp/textmodes in load-path for bootstrap
866 emacs, to resolve ispell menu reference.
867
868 2003-01-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> (tiny change)
869
870 * international/mule.el (optimize-char-coding-system-table):
871 Optimize it.
872
873 * term/mac-win.el: Setup the fontset "fontset-mac" correctly.
874
875 2003-01-14 Stefan Monnier <monnier@cs.yale.edu>
876
877 * pcvs-info.el (cvs-fileinfo-from-entries): Deal with Solaris'
878 occasional use of "05" rather than " 5" for day-of-month.
879
880 * log-view.el (log-view-message-re): The rev might be locked.
881
882 2003-01-14 Nick Roberts <nick@nick.uklinux.net>
883
884 * gdb-ui.el: Improve commentary.
885 (gdb-window-height, gdb-window-width, gdb-display-number-end):
886 Customize the dimensions of frames for displayed expressions.
887 (gdb-error-begin): Comment out because it is not used because of
888 bug/quirk in annotations.
889 (gdb-reset): Use with-current-buffer.
890
891 2003-01-14 Kim F. Storm <storm@cua.dk>
892
893 * ido.el (ido-read-internal, ido-file-internal)
894 (ido-copy-current-file-name, ido-wide-find-dirs-or-files):
895 Don't use `path' as name of local variables holding a file name.
896
897 * arc-mode.el (archive-arc-rename-entry): Fix error message.
898 (archive-lzh-summarize): Rename local var `path' to `dir'.
899 (archive-unique-fname) [!MSDOS]: Avoid byte-compiler warning.
900
901 * dired.el: Doc fixes.
902 * dired-aux.el: Rename `whole-path' to `whole-name' throughout.
903 (dired-mark-read-regexp): Use "Abs." prefix instead of "Path".
904 * dired-x.el: Doc fixes.
905
906 * fast-lock.el (fast-lock-cache-name): Doc fix.
907
908 * net/browse-url.el (browse-url-filename-alist): Doc fix.
909
910 2003-01-14 John Paul Wallington <jpw@shootybangbang.com>
911
912 * apropos.el (apropos): Restore autoload cookie. Fix typo in
913 "error retrieving function documentation" output.
914
915 2003-01-14 Kim F. Storm <storm@cua.dk>
916
917 * subr.el (process-put, process-get): New functions.
918
919 * simple.el (clone-process): Copy process' plist to new process.
920
921 2003-01-13 Markus Rost <rost@math.ohio-state.edu>
922
923 * cus-dep.el (custom-make-dependencies): Don't set standard-value
924 and version numbers for variables. Handle faces.
925
926 * cus-edit.el (customize-changed-options): Doc addition. Load the
927 version deps earlier. Use other tests for groups and variables.
928 Handle faces.
929
930 2003-01-14 Kim F. Storm <storm@cua.dk>
931
932 * ido.el: Doc fixes.
933 (ido-max-file-prompt-width): Rename from ido-max-prompt-path.
934 (ido-rewrite-file-prompt-functions): Rename from
935 ido-make-file-prompt-hook. Directory name is now in dynamic
936 variable `dirname' (instead of `path').
937 (ido-rewrite-file-prompt-rules): Rename from
938 ido-rewrite-prompt-path-rules.
939 (ido-make-prompt): Directory name now in `dirname' var.
940 (ido-complete): Fix error message.
941
942 2003-01-13 John Paul Wallington <jpw@shootybangbang.com>
943
944 * server.el (server-process-filter): Use `minibufferp' to test
945 whether we are inside a minibuffer.
946 (server-process, server-kill-new-buffers): Doc fixes.
947
948 2003-01-13 Dave Love <fx@gnu.org>
949
950 * international/utf-16.el (mule-utf-16-be, mule-utf-16-le):
951 Remove pre-write-conversion.
952
953 2003-01-13 Kim F. Storm <storm@cua.dk>
954
955 * hexl.el (hexl-mode-map): Don't quote remapped command names.
956
957 2003-01-13 David Ponce <david@dponce.com>
958
959 * ruler-mode.el (ruler-mode): Cleanup buffer local variable
960 `header-line-format' if it didn't exist when `ruler-mode' was enabled.
961
962 2003-01-13 Masatake YAMATO <jet@gyve.org>
963
964 * ruler-mode.el (ruler-mode-comment-column-char)
965 (ruler-mode-goal-column-char, ruler-mode-set-goal-column-ding-flag)
966 (ruler-mode-mouse-current-grab-object): New variables.
967 (ruler-mode-comment-column-face, ruler-mode-goal-column-face):
968 New faces.
969 (ruler-mode-mouse-set-fill-column): Removed.
970 (ruler-mode-mouse-grab-any-column)
971 (ruler-mode-mouse-drag-any-column-iteration)
972 (ruler-mode-mouse-drag-any-column): New functions.
973 (ruler-mode-map): [header-line down-mouse-2] Bound to
974 `ruler-mode-mouse-grab-any-column' instead of
975 `ruler-mode-mouse-set-fill-column'.
976 (ruler-mode-ruler-help-echo): Update its value.
977 (ruler-mode-ruler-help-echo-when-goal-column): New help string used
978 when goal-column is already set.
979 (ruler-mode-ruler-help-echo-tab): Rename to...
980 (ruler-mode-ruler-help-echo-when-tab-stops): New.
981 (ruler-mode-fill-column-help-echo, ruler-mode-comment-column-help-echo)
982 (ruler-mode-goal-column-help-echo): New help strings.
983 (ruler-mode-ruler): Use `ruler-mode-ruler-help-echo-when-goal-column'
984 instead of `ruler-mode-ruler-help-echo' if `goal-column' is set.
985 Show `comment-column' and `goal-column'. Echo the different help
986 string for each *-column characters on the ruler.
987
988 2003-01-13 Richard M. Stallman <rms@gnu.org>
989
990 * apropos.el (apropos-documentation-property): New function.
991 (apropos): Use apropos-documentation-property.
992
993 * files.el (mode-line-process): Mark as risky.
994
995 * help.el (where-is): Catch errors in indirect-function.
996
997 * server.el (server-process-filter): Comment out -eval.
998 Don't switch buffers if inside isearch or minibuffer.
999
1000 * progmodes/compile.el (compilation-revert-buffer):
1001 If buffer has a file, revert it in the normal way.
1002
1003 * term/x-win.el: Require fontset conditionally again.
1004
1005 2003-01-13 Kim F. Storm <storm@cua.dk>
1006
1007 * ido.el (ido-enable-tramp-completion): New defcustom.
1008 (ido-enter-single-matching-directory): Change default to 'slash.
1009 (ido-is-tramp-root): New defun.
1010 (ido-is-root-directory, ido-is-ftp-directory, ido-is-slow-ftp-host)
1011 (ido-may-cache-directory, ido-final-slash, ido-read-internal)
1012 (ido-complete, ido-make-file-list1, ido-make-dir-list1):
1013 Handle tramp completion.
1014 (ido-file-name-all-completions1): New defun for tramp completion.
1015 (ido-file-name-all-completions): Use it.
1016 (ido-set-matches1): Relax matching of text with trailing slash.
1017 (ido-exhibit): Handle tramp completion.
1018 Simplified code using nested cond forms using new `refresh' var.
1019 Fixed handling of /~user/ paths.
1020
1021 2003-01-12 Andreas Schwab <schwab@suse.de>
1022
1023 * arc-mode.el (archive-mode-map): Use command remapping instead of
1024 substitute-key-definition.
1025 * emerge.el (emerge-setup-fixed-keymaps): Likewise.
1026 * msb.el (msb-mode-map): Likewise.
1027 * forms.el (forms--change-commands): Likewise.
1028 * hexl.el (hexl-mode-map): Likewise.
1029 * mail/mailabbrev.el (Commentary): Likewise.
1030 * play/decipher.el (decipher-mode-map): Likewise.
1031 * play/gomoku.el (gomoku-mode-map): Likewise.
1032 * play/landmark.el (lm-mode-map): Likewise.
1033 * play/solitaire.el (solitaire-mode-map): Likewise.
1034 * progmodes/sh-script.el (sh-mode-map): Likewise.
1035 * textmodes/picture.el (picture-substitute): Likewise.
1036
1037 * ielm.el (inferior-emacs-lisp-mode):
1038 Bind comint-dynamic-complete-functions locally.
1039
1040 * buff-menu.el (Buffer-menu-select): Fix for effect of header line.
1041
1042 2003-01-11 Andreas Schwab <schwab@suse.de>
1043
1044 * textmodes/sgml-mode.el (sgml-font-lock-keywords-2): Add flag to
1045 merge with existing fontification.
1046
1047 2003-01-11 Nick Roberts <nick@nick.uklinux.net>
1048
1049 * gud.el (gud-kill-buffer-hook): Save gud-minor-mode type.
1050 (gud-reset): New function. Reset environment at end of debugging.
1051 (gud-sentinel): Call gud-reset or gdb-reset.
1052 (gud-menu-map, gud-tool-bar-map, gdb): Change gud-goto to gud-until.
1053
1054 * gdb-ui.el (gud-display): Use GDB command ptype instead of whatis
1055 to find out if variable shuld be dereferenced.
1056 (gud-display1): Exit if there is `No symbol'.
1057 (gdb-expressions-mode-map): Correction to key-binding.
1058 (gdb-reset): New function. Reset environment at end of debugging.
1059 (gdb-quit): Remove.
1060
1061 2003-01-10 Dave Love <fx@gnu.org>
1062
1063 * international/code-pages.el (cp-make-coding-system): Fix last change.
1064
1065 2003-01-10 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
1066
1067 * dired.el (dired-garbage-files-regexp): Use \\' instead of $ and
1068 use regexp-opt for readability.
1069
1070 2003-01-10 Mark A. Hershberger <mah@everybody.org>
1071
1072 * xml.el (xml-parse-tag, xml-parse-attlist, xml-skip-dtd)
1073 (xml-parse-dtd, xml-parse-elem-type): Be more flexible in recognizing
1074 empty elements.
1075
1076 2003-01-10 Luc Teirlinck <teirllm@mail.auburn.edu>
1077
1078 * progmodes/sh-script.el (sh-set-shell): Make sh-shell-file the default
1079 shell.
1080
1081 2003-01-09 John Wiegley <johnw@gnu.org>
1082
1083 * pcomplete.el (pcomplete-termination-string): Add a variable
1084 for modifying the string which is inserted after a completion or
1085 expansion using pcomplete.
1086
1087 2003-01-09 Karl Berry <karl@gnu.org>
1088
1089 * sort.el (sort-regexp-fields): Pass noerror to re-search-forward,
1090 so that we don't fail if no records match record-regexp.
1091
1092 2003-01-09 Markus Rost <rost@math.ohio-state.edu>
1093
1094 * cus-edit.el (customize-group, customize-group-other-window):
1095 Remove unnecessary calls to custom-load-symbol.
1096 (custom-group-value-create):
1097 Load widget deps if state is not hidden. If widget deps are
1098 loaded, load them in advance.
1099 (custom-menu-create): If widget deps are loaded, load them earlier.
1100
1101 2003-01-09 John Paul Wallington <jpw@shootybangbang.com>
1102
1103 * language/ethio-util.el (ethio-gemination)
1104 (exit-ethiopic-environment): Doc fixes.
1105
1106 * language/viet-util.el (viet-encode-viqr-region)
1107 (viet-decode-viqr-region, viet-encode-viqr-buffer)
1108 (viet-decode-viqr-buffer): Doc fixes.
1109
1110 2003-01-09 ShengHuo ZHU <zsh@cs.rochester.edu>
1111
1112 * paths.el: Remove gnus-startup-file.
1113
1114 2003-01-08 Bill Wohler <wohler@newt.com>
1115
1116 * mail/mh-alias.el, mail/mh-customize.el, mail/mh-identity.el,
1117 mail/mh-loaddefs.el, toolbar/alias.pbm, toolbar/alias.xpm: Added.
1118
1119 * mail/mh-comp.el, mail/mh-e.el, mail/mh-funcs.el,
1120 mail/mh-index.el, mail/mh-mime.el, mail/mh-pick.el,
1121 mail/mh-seq.el, mail/mh-speed.el, mail/mh-utils.el,
1122 mail/mh-xemacs-compat.el: Upgraded to MH-E version 7.1.
1123
1124 2003-01-08 Kim F. Storm <storm@cua.dk>
1125
1126 * mail/undigest.el (unforward-rmail-message): Don't use global
1127 variable `n'.
1128
1129 2003-01-08 Francesco Potort\e,Al\e(B <pot@gnu.org>
1130
1131 * mail/undigest.el (unforward-rmail-message): Simplified.
1132 No functional change.
1133
1134 2003-01-07 Markus Rost <rost@math.ohio-state.edu>
1135
1136 * custom.el (custom-autoload, custom-variable-p): New functions.
1137
1138 * emacs-lisp/autoload.el (make-autoload):
1139 Generate custom-autoload for autoloaded defcustoms.
1140
1141 * help-fns.el (describe-variable): Use custom-variable-p.
1142
1143 * simple.el (set-variable): Load deps of custom variables without type.
1144
1145 * cus-edit.el (custom-variable-prompt): Doc change.
1146 Use custom-variable-p.
1147 (customize-option): Remove search in loaddefs.el.
1148 (customize-apropos): Use custom-variable-p.
1149 (custom-save-variables): Use custom-variable-p to detect
1150 non-rogue variables.
1151
1152 2003-01-07 Francesco Potort\e,Al\e(B <pot@gnu.org>
1153
1154 * mail/undigest.el (unforward-rmail-message): Skip all newlines
1155 after the initial separator.
1156 (unforward-rmail-message): Forwarded-From: and Forwarded-Date:
1157 instead of Forwarded-from: and Forwarded-date:.
1158
1159 2003-01-07 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
1160
1161 * dired.el (dired-garbage-files-regexp): Add `.aux$'. These are
1162 produced by TeX.
1163
1164 2003-01-07 Andre Spiegel <spiegel@gnu.org>
1165
1166 * vc-rcs.el (vc-rcs-checkout): Fix the check whether we are on a
1167 branch.
1168
1169 2003-01-06 Dave Love <fx@gnu.org>
1170
1171 * textmodes/ispell.el (lookup-words): Cope with null lookup-dict.
1172
1173 * language/chinese.el ("Chinese-EUC-TW"): New.
1174
1175 2003-01-06 John Paul Wallington <jpw@shootybangbang.com>
1176
1177 * mail/rmail.el (rmail-mmdf-delim1, rmail-mmdf-delim2): Doc fixes.
1178
1179 2003-01-05 Richard M. Stallman <rms@gnu.org>
1180
1181 * obsolete/uncompress.el: Display message that this pkg is obsolete.
1182
1183 * isearch.el (isearch-repeat): Error if try to repeat search and
1184 there was no previous search.
1185
1186 * dired.el (dired-recursive-deletes): Fix custom type.
1187
1188 * dabbrev.el (dabbrev--substitute-expansion):
1189 Convert all whitespace to single spaces,
1190 except when it's carried over from the existing text.
1191
1192 * simple.el (split-line): Clean up implementation.
1193
1194 * mail/rmail.el (rmail-font-lock-keywords): Discard code to match
1195 both cases.
1196 (rmail-variables): Specify case-insensitive matching for font-lock.
1197
1198 2003-01-05 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
1199
1200 * mail/sendmail.el (mail-font-lock-keywords):
1201 * mail/rmail.el (rmail-font-lock-keywords): Match multiline
1202 In-Reply-To and X-*.
1203
1204 2003-01-05 Mark A. Hershberger <mah@everybody.org>
1205
1206 * xml.el (xml-substitute-special): Check for &amp last.
1207
1208 2003-01-05 Dave Love <fx@gnu.org>
1209
1210 * buff-menu.el (Buffer-menu-execute): Fix for effect of header line.
1211
1212 2003-01-05 Dave Love <fx@gnu.org>
1213
1214 * international/mule-diag.el (non-iso-charset-alist):
1215 Add vietnamese-tcvn.
1216
1217 * international/mule-cmds.el (locale-language-names):
1218 Use Croatian, Swedish.
1219
1220 2003-01-05 Andreas Schwab <schwab@suse.de>
1221
1222 * buff-menu.el (Buffer-menu-buffer+size): Don't clobber buffer name.
1223
1224 2003-01-05 Dave Love <fx@gnu.org>
1225
1226 * language/european.el ("Latin-6", "Croatian"): New.
1227 ("Latin-7"): Fix nonascii-translation. Add input method.
1228 ("Lithuanian", "Latvian"): Add nonascii-translation.
1229 ("German", "Spanish", "Dutch", "Welsh", "Swedish"):
1230 Fix nonascii-translation.
1231
1232 * language/georgian.el ("Georgian"): Fix nonascii-translation.
1233
1234 * international/mule-cmds.el (set-locale-environment):
1235 Ignore empty values of environment variables.
1236
1237 * emacs-lisp/byte-opt.el (byte-optimize-nth)
1238 (byte-optimize-nthcdr): Fix for case of wrong-length forms.
1239
1240 2003-01-04 Nick Roberts <nick@nick.uklinux.net>
1241
1242 * gdb-ui.el: Acknowledge Tom Lord as author of gdba.el.
1243 Use let construction to bind buffer-read-only to nil.
1244 (gdba): 'set height 0' in GDB.
1245 (gdb-display-end, gdb-frame-handler): Corrections to forming
1246 full expression name for header-line in display frame.
1247 (gdb-info-breakpoints-custom): Highlight breakpoints since
1248 they may be clicked on with mouse-2.
1249 (gdb-quit): Delete frames of displayed expressions when quitting.
1250 (gdb-delete-frames): New function.
1251 (gdb-source-info): Don't create stack buffer automatically.
1252
1253 2003-01-04 Thien-Thi Nguyen <ttn@gnu.org>
1254
1255 * xml.el (xml-substitute-special): Move "&amp;" -> "&" last.
1256
1257 2003-01-04 Kim F. Storm <storm@cua.dk>
1258
1259 * simple.el (split-line): If present, copy fill-prefix from
1260 current line to new line. Don't copy if prefix arg.
1261 From Lisp, arg may be an alternative prefix string to copy.
1262 Inspired by Ehud Karni <ehud@unix.mvs.co.il>.
1263
1264 * mail/sendmail.el (mail-split-line): New function.
1265 (mail-mode-map): Remap split-line to mail-split-line.
1266
1267 2003-01-03 Dave Love <fx@gnu.org>
1268
1269 * emacs-lisp/find-func.el (find-variable-noselect): Make it work
1270 with new load-history format.
1271
1272 * international/mule-cmds.el (sort-coding-systems):
1273 Adjust priority of utf-16 and x-ctext.
1274
1275 * international/utf-8.el (utf-translate-cjk):
1276 Call optimize-char-coding-system-table.
1277
1278 * international/ucs-tables.el (ucs-unify-8859, ucs-fragment-8859):
1279 Call optimize-char-coding-system-table.
1280
1281 * international/mule.el (register-char-codings): Don't call
1282 optimize-char-coding-system-table here.
1283 (keyboard-coding-system): Doc fix. Update :version.
1284
1285 * textmodes/nroff-mode.el (nroff-mode-hook): Customize.
1286 (nroff-imenu-expression): New.
1287 (nroff-mode): Use it.
1288
1289 * autoinsert.el (auto-insert-alist): Add man page skeleton.
1290
1291 2003-01-03 Andre Spiegel <spiegel@gnu.org>
1292
1293 * vc-rcs.el (vc-rcs-revert): Unlock only if the user does have
1294 the lock.
1295
1296 2003-01-03 Kim F. Storm <storm@cua.dk>
1297
1298 * emulation/cua-base.el (cua--pre-command-handler):
1299 Corrected handling of delete-selection properties.
1300
1301 2003-01-03 John Paul Wallington <jpw@shootybangbang.com>
1302
1303 * emacs-lisp/eldoc.el (eldoc-get-var-docstring): Only return a
1304 documentation string when `sym' is non-nil.
1305
1306 2003-01-02 Steven Tamm <steventamm@mac.com>
1307
1308 * scroll-bar.el (toggle-scroll-bar, scroll-bar-mode):
1309 Have scroll bars correctly default to being on the right for Mac
1310 Carbon port by testing "mac-carbon" feature, not window-system.
1311
1312 2003-01-02 Markus Rost <rost@math.ohio-state.edu>
1313
1314 * cus-edit.el (customize-group, customize-group-other-window):
1315 Call custom-load-symbol unconditionally.
1316 (customize-face, customize-face-other-window): Fix format arg.
1317
1318 2003-01-02 John Paul Wallington <jpw@shootybangbang.com>
1319
1320 * menu-bar.el (menu-bar-left-scroll-bar): Set `scroll-bar-mode'
1321 to `left'.
1322
1323 2003-01-01 Richard M. Stallman <rms@gnu.org>
1324
1325 * mail/rmail.el (rmail-reply): Don't call mail-strip-quoted-names.
1326
1327 * files.el (backup-buffer): Cope if file-modes returns nil.
1328
1329 2002-12-30 Steven Tamm <steventamm@mac.com>
1330
1331 * scroll-bar.el (toggle-scroll-bar, scroll-bar-mode):
1332 Have scroll bars correctly default to being on the right for Mac
1333 Carbon port
1334
1335 2002-12-29 Nick Roberts <nick@nick.uklinux.net>
1336
1337 * gdb-ui.el (gdb-delete-display): Rename (gdb-delete-expression).
1338 (gdb-goto-bp-this-line): Rename (gdb-goto-breakpoint).
1339 (gdb-toggle-bp-this-line): Rename (gdb-toggle-breakpoint).
1340 (gdb-delete-bp-this-line): Rename (gdb-delete-breakpoint).
1341 (gdb-toggle-disp-this-line): Rename (gdb-toggle-display).
1342 (gdb-delete-disp-this-line): Rename (gdb-delete-display).
1343 (gud-gdba-marker-filter): Remove unnecessary save-match-data.
1344 (gdb-mouse-goto-breakpoint, gdb-frames-select): New functions.
1345 (gdb-frames-mouse-select): Simplify.
1346 Make keybindings (gdb-goto-breakpoint, gdb-frames-select, etc)
1347 consistent with other modes in emacs.
1348 (gdb-display-source-buffer): Return window of source buffer
1349 for (gud-display-line).
1350
1351 2002-12-29 Markus Rost <rost@math.ohio-state.edu>
1352
1353 * button.el (defface button): Add group.
1354
1355 * cus-edit.el (customize-browse): Call `widget-setup'.
1356
1357 2002-12-29 Andreas Schwab <schwab@suse.de>
1358
1359 * Makefile.in: Generate cus-load.el and finder-inf.el in the
1360 source directory. Change dependencies on lisp files to explicitly
1361 use $(lisp).
1362 (compile-calc): Fix command substitution.
1363 * cus-dep.el (generated-custom-dependencies-file): New variable.
1364 (custom-make-dependencies): Use it instead of hardcoding cus-load.el.
1365 * finder.el (generated-finder-keywords-file): New variable.
1366 (finder-compile-keywords): Use it instead of hardcoding finder-inf.el.
1367
1368 2002-12-28 Richard M. Stallman <rms@gnu.org>
1369
1370 * info-look.el (info-lookup): Fix error message typo.
1371
1372 * comint.el (comint-mode): Locally set scroll-conservatively.
1373 (comint-postoutput-scroll-to-bottom): comint-scroll-show-maximum-output
1374 is active only when point is at end.
1375
1376 * dired.el (dired-goto-file): Handle \ and ^M quoted by backslash.
1377 Fix error message.
1378
1379 * files.el (find-file-noselect-1): Kill local value of `cursor-type'.
1380
1381 * simple.el (repeat-complex-command): Signal real error on failure.
1382
1383 2002-12-28 Andreas Schwab <schwab@suse.de>
1384
1385 * progmodes/make-mode.el (makefile-font-lock-keywords):
1386 Highlight automatic variable references enclosed in parens and
1387 optionally suffixed by F or D.
1388
1389 2002-12-27 Miles Bader <miles@gnu.org>
1390
1391 * info.el (Info-complete-menu-item): Make `Info-complete-cache' a
1392 buffer-local variable.
1393
1394 2002-12-26 Markus Rost <rost@math.ohio-state.edu>
1395
1396 * cus-edit.el (customize-group-other-window): Use pop-to-buffer in
1397 the same way as `custom-buffer-create-other-window'.
1398 (customize-variable-other-window, customize-option-other-window):
1399 Definitions moved up.
1400
1401 2002-12-26 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
1402
1403 * net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
1404 * net/tramp-ftp.el: Glue code with Ange-FTP, broken out of
1405 tramp.el. From Michael Albinus.
1406 * net/tramp-smb.el: New file for using smbclient to access
1407 Windows shares with Tramp. From Michael Albinus.
1408
1409 2002-12-26 Andreas Schwab <schwab@suse.de>
1410
1411 * international/mule-cmds.el (select-safe-coding-system): Fix typo.
1412
1413 2002-12-26 Andre Spiegel <spiegel@gnu.org>
1414
1415 * vc.el (vc-next-action-on-file): Use t argument to vc-checkout in
1416 order to get the latest version on the current branch.
1417 Update documentation of vc-BACKEND-checkout to explain this.
1418
1419 * vc-rcs.el (vc-rcs-checkout): Handle t argument for REV.
1420 (vc-rcs-checkin): By default, specify the current workfile
1421 branch as the check-in revision.
1422
1423 * vc-cvs.el (vc-cvs-checkout): Handle t argument for REV.
1424
1425 * vc-sccs.el (vc-sccs-checkout): Likewise.
1426
1427 2002-12-26 Nick Roberts <nick@nick.uklinux.net>
1428
1429 * gdb-ui.el (gdb-info-display-custom): Ensure that frames/buffers
1430 of displayed expressions are deleted when the displayed expressions
1431 are deleted.
1432 (gdb-delete-disp-this-line, gdb-delete-display): Frame/buffer
1433 deletion is handled by gdb-info-display-custom now.
1434 (gdb-source-info): Undo earlier change (do create display buffer
1435 automatically).
1436
1437 2002-12-25 Markus Rost <rost@math.ohio-state.edu>
1438
1439 * cus-edit.el (custom-save-faces): Fix typo.
1440
1441 2002-12-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
1442
1443 * mail/undigest.el (unforward-rmail-message): Do not assume that
1444 the forwarded message's Date: header comes after From:. Use a
1445 Forwarded-from: rather than a Forwarded-by: header. Add a
1446 Forwarded-date: header.
1447
1448 2002-12-23 Nick Roberts <nick@nick.uklinux.net>
1449
1450 * gdb-ui.el (gdb-display-number-end): Make auto-display of
1451 expressions in GDB work on text-only terminals.
1452 (gdb-post-prompt): Compute current frame properly.
1453 (gdb-get-current-frame, gdb-frame-handler): New functions.
1454 (gdb-source-info): Move last statement into if clause.
1455 Tidy, improve documentation.
1456
1457 2002-12-23 Richard M. Stallman <rms@gnu.org>
1458
1459 * emacs-lisp/checkdoc.el: Don't define a name for the minor mode menu.
1460
1461 * emacs-lisp/easymenu.el (easy-menu-do-define): Handle nil for SYMBOL.
1462 (easy-menu-define): Doc fix, say SYMBOL can be nil.
1463
1464 * window.el (save-selected-window): Save and restore
1465 selected windows of all frames.
1466
1467 * cus-start.el (scroll-up-aggressively, scroll-down-aggressively):
1468 Update custom types.
1469
1470 2002-12-23 Alex Schroeder <alex@emacswiki.org>
1471
1472 Merging Dave Love <fx@gnu.org>'s custom_themes branch containing
1473 Alex Schroeder's adaptation of Jan Vroonhof
1474 <vroonhof@math.ethz.ch>'s code. Doc strings corrected by RMS.
1475
1476 * cus-edit.el (customize-save-variable): Take themes into account.
1477 (custom-variable-save): Take themes into account.
1478 (custom-variable-reset-saved): Add comment-widget.
1479 (custom-variable-reset-standard): Add comment-widget.
1480 (custom-variable-reset-standard): Take themes into account.
1481 (custom-face-save): Take themes into account.
1482 (custom-face-reset-standard): Take themes into account.
1483 (custom-save-variables): Take themes into account.
1484 (custom-save-faces): Take themes into account.
1485 (custom-save-resets): New function.
1486 (custom-save-loaded-themes): New function.
1487 (customize-save-customized): Take themes into account.
1488
1489 * cus-face.el (custom-set-faces): Call custom-theme-set-faces.
1490 (custom-theme-set-faces): New function.
1491 (custom-theme-face-value): New function.
1492 (custom-theme-reset-internal-face): New function.
1493 (custom-theme-reset-faces): New function.
1494 (custom-reset-faces): New function.
1495
1496 * custom.el (custom-known-themes): New variable.
1497 (custom-declare-theme): New function.
1498 (deftheme): New macro.
1499 (custom-make-theme-feature): New function.
1500 (custom-theme-p): New function.
1501 (custom-check-theme): New function.
1502 (custom-push-theme): New function.
1503 (custom-theme-set-variables): Take themes into account.
1504 (custom-loaded-themes): New variable.
1505 (custom-theme-loaded-p): New function.
1506 (provide-theme): New function.
1507 (require-theme): New function.
1508 (custom-remove-theme): New function.
1509 (custom-do-theme-reset): New function.
1510 (custom-theme-load-themes): New function.
1511 (custom-load-themes): New function.
1512 (custom-theme-value): New function.
1513 (custom-theme-variable-value): New function.
1514 (custom-theme-reset-internal): New function.
1515 (custom-theme-reset-variables): New function.
1516 (custom-reset-variables): New function.
1517
1518 * cus-theme.el: New file.
1519
1520 2002-12-23 Matthew Swift <swift@alum.mit.edu>
1521
1522 * emacs-lisp/rx.el (rx-and): Generate a shy group.
1523 Specify `no-group' when calling rx-to-string.
1524 (rx-submatch): Specify `no-group' when calling rx-to-string.
1525 (rx-kleene): Use rx-atomic-p to decide whether to make a group.
1526 (rx-atomic-p): New function.
1527
1528 2002-12-23 Kevin Ryde <user42@zip.com.au>
1529
1530 * info-look.el (info-lookup): For ease of use try item
1531 case-insensitive if not found case-sensitive.
1532 Do case sensitive search in index nodes, so items differing only in
1533 case go correctly to their respective nodes.
1534
1535 2002-12-22 Richard M. Stallman <rms@gnu.org>
1536
1537 * subr.el (add-to-invisibility-spec): If it was t, start it out at (t).
1538
1539 * textmodes/texinfmt.el (tex-start-of-header, tex-end-of-header):
1540 Add defvars.
1541
1542 * textmodes/tex-mode.el (tex-print): Call shell-quote-argument
1543 on the file name.
1544
1545 * textmodes/outline.el (outline-next-visible-heading):
1546 When going forward, test outline-invisible-p at start of header.
1547
1548 2002-12-22 Kevin Ryde <user42@zip.com.au>
1549
1550 * textmodes/makeinfo.el (makeinfo-buffer): Display result using
1551 Info-mode.
1552 (makeinfo-compilation-sentinel-buffer, makeinfo-current-node):
1553 New functions.
1554 (makeinfo-compile): Add a sentinel parameter.
1555 (makeinfo-compilation-sentinel-region): Renamed from
1556 makeinfo-compilation-sentinel, and makeinfo-temp-file now never nil.
1557 (makeinfo-region): Use this.
1558 * info.el (Info-revert-find-node): New function.
1559
1560 2002-12-22 Nick Roberts <nick@nick.uklinux.net>
1561
1562 * tooltip.el (tooltip-gud-tips): Output tooltip without switching
1563 process filter (gdba in gdb-ui.el only).
1564 (gdb-tooltip-print): New function.
1565 (tooltip-gud-process-output): Undo previous change.
1566 (tooltip-strip-annotations): Remove.
1567
1568 2002-12-22 Zoltan Kemenczy <zoltan@ieee.org>
1569
1570 * gud.el (gud-menu-map): Add jdb support for "run".
1571 (gud-jdb-find-source-using-classpath): Use 'identity.
1572 (gud-jdb-marker-filter): Marker regexp and filename filtering
1573 change to support a backwards-incompatible change in Sun's jdb
1574 line number display in SDK versions 1.4.
1575 (gud-format-command): gud-find-class now requires two
1576 parameters (file and linenumber).
1577 (gud-find-class): Bulk of the change related to using c-syntactic
1578 symbols to locate nested class declarations in java sources
1579 visited by java-mode (cc-mode).
1580
1581 2002-12-21 Nick Roberts <nick@nick.uklinux.net>
1582
1583 * gdb-ui.el: Remove the concept of an instance. This means that
1584 a lot of functions have been renamed. Accessors are prefixed with
1585 gdb-get, setters with gdb-set and the word instance has been
1586 removed from many function and variable names.
1587 (gdb-display-buffer): Protect source buffer as well
1588 as GUD buffer when requesting new buffers.
1589 (gdb-source-info): Two changes : Don't create display buffer
1590 automatically, compute source window correctly.
1591
1592 2002-12-21 Richard M. Stallman <rms@gnu.org>
1593
1594 * man.el (Man-getpage-in-background): Put GROFF_NO_SGR in env.
1595
1596 * ls-lisp.el (original-insert-directory): Make this a variable,
1597 don't set its function definition.
1598 (insert-directory): Use funcall to call that function.
1599
1600 * bindings.el (help-echo): Change tooltip string.
1601
1602 * chistory.el (command-history-map): Move definition up.
1603
1604 * faces.el (help-xref-stack): Add defvar to avoid warning.
1605
1606 2002-12-21 Andreas Schwab <schwab@suse.de>
1607
1608 * dired.el (dired-insert-directory): Preserve text properties
1609 when quoting.
1610
1611 2002-12-20 Francesco Potort\e,Al\e(B <pot@gnu.org>
1612
1613 * mail/undigest.el (rmail-mail-separator): Renamed from
1614 rmail-digest-mail-separator. All users changed.
1615 (unforward-rmail-message): Rewritten to be more robust and to
1616 additionally account for the common style of forwarding messages
1617 by citing them entirely with headers.
1618
1619 2002-12-18 Dave Love <fx@gnu.org>
1620
1621 * international/utf-8-subst.el: Deleted.
1622
1623 * international/ucs-tables.el (ucs-fragment-8859): Don't modify
1624 char-coding-system-table elements destructively.
1625 Use optimize-char-coding-system-table.
1626
1627 * international/mule.el (optimize-char-coding-system-table): New.
1628 (register-char-codings): Use it.
1629
1630 * international/utf-8.el (ucs-mule-cjk-to-unicode)
1631 (ucs-unicode-to-mule-cjk): Revert last change.
1632 (utf-subst-table-for-encode): Initially use ucs-mule-cjk-to-unicode.
1633 (utf-subst-table-for-decode): Initially use ucs-unicode-to-mule-cjk.
1634 (utf-fragment-on-decoding, utf-translate-cjk): Don't modify
1635 char-coding-system-table elements destructively.
1636 (utf-translate-cjk): Set ucs-mule-cjk-to-unicode,
1637 ucs-unicode-to-mule-cjk to new hash tables with realistic parameters.
1638
1639 2002-12-18 John Paul Wallington <jpw@shootybangbang.com>
1640
1641 * info.el (Info-dir-remove-duplicates): Avoid infloop when
1642 deleting last entry.
1643
1644 2002-12-17 Nick Roberts <nick@nick.uklinux.net>
1645
1646 * gdb-ui.el (gdba-marker-filter, gdb-output-burst): Merge and
1647 rename gud-gdba-marker-filter.
1648 (gdb-append-to-inferior-io): Only pop up IO buffer if there is output.
1649 (gdb-make-instance): Remove (put into gdba).
1650 Use gdb-instance-enqueue-input instead of
1651 gdb-instance-enqueue-idle-input for user functions.
1652 (gdb-instance-target-string): Simplify.
1653 (in-gdb-instance-context): Remove.
1654 Expand Commentary.
1655
1656 2002-12-17 Kenichi Handa <handa@m17n.org>
1657
1658 * international/mule.el (set-file-name-coding-system): New function.
1659
1660 * international/mule-cmds.el (mule-keymap, set-coding-system-map):
1661 Add bindings for set-file-name-coding-system.
1662
1663 2002-12-17 Kenichi Handa <handa@m17n.org>
1664
1665 * international/mule-cmds.el (universal-coding-system-argument):
1666 Bind coding-system-require-warning to t.
1667 (select-safe-coding-system): Handle t in the arg
1668 DEFAULT-CODING-SYSTEM specially. Use read-coding-system to read a
1669 coding-system to allow users to specify unsafe coding system on
1670 their risk.
1671
1672 2002-12-16 Francesco Potort\e,Al\e(B <pot@gnu.org>
1673
1674 * mail/undigest.el (rmail-digest-methods)
1675 (rmail-digest-mail-separator): New variables.
1676 (rmail-digest-parse-mime, rmail-digest-parse-rfc1153strict)
1677 (rmail-digest-parse-rfc1153sloppy, rmail-digest-rfc1153)
1678 (rmail-digest-parse-rfc934): New functions.
1679 (undigestify-rmail-message): Completely rewritten.
1680
1681 2002-12-16 Kim F. Storm <storm@cua.dk>
1682
1683 * ido.el (ido-read-file-name): Remove debug message.
1684
1685 2002-12-16 Daniel Pfeiffer <occitan@esperanto.org>
1686
1687 * buff-menu.el (Buffer-menu, Buffer-menu-use-header-line)
1688 (Buffer-menu-buffer-face, Buffer-menu-buffer+size-width)
1689 (Buffer-menu-mode-width): New customization.
1690 (Buffer-menu-sort-column): New var.
1691 (Buffer-menu-no-header): New function for not changing header line and
1692 recognizing swapped M&R columns, used by modifying commands in Buffer
1693 Menu.
1694 (Buffer-menu-buffer+size): New function for variable width buffer name.
1695 (list-buffers-noselect): Rewritten for nicer menu.
1696
1697 2002-12-16 Markus Rost <rost@math.ohio-state.edu>
1698
1699 * filesets.el (filesets-build-menu-now): Don't clear messages.
1700
1701 * allout.el: Avoid name conflicts with outline.el.
1702 Replace globally string "outline-" with string "allout-".
1703 Replaced 1446 occurrences; there was no string "allout-" before the
1704 change and there seems to be no dependency on outline.el.
1705 Put `quotes' around many function and variable names.
1706 Doc changes to adjust to the change to prefix "allout-".
1707 Don't provide `outline'. Use " Allout" as mode line string,
1708 not " Outl". Put group `allout' in group `editing'.
1709 Update Copyright notice. Autoload `allout-init'.
1710 (allout-init): Give report also in case auto-activation was inhibited.
1711 (my-mark-marker): Test for feature `xemacs' instead of a string parse.
1712
1713 2002-12-16 Stefan Monnier <monnier@cs.yale.edu>
1714
1715 * xml.el (xml-parse-tag): Allow spaces between / and >.
1716
1717 2002-12-15 David Kastrup <David.Kastrup@t-online.de>
1718
1719 * emacs-lisp/autoload.el (autoload-ensure-default-file):
1720 Insert missing space in file end comment.
1721
1722 2002-12-15 Simon Josefsson <jas@extundo.com>
1723
1724 * mail/smtpmail.el (smtpmail-via-smtp): Fall back to
1725 user-mail-address as sender.
1726
1727 2002-12-15 Dave Love <fx@gnu.org>
1728
1729 * international/mule-cmds.el (standard-keyboard-coding-systems):
1730 Delete.
1731 (set-locale-environment): Don't use it.
1732
1733 * international/utf-8.el (ucs-mule-cjk-to-unicode)
1734 (utf-subst-table-for-encode, ucs-unicode-to-mule-cjk)
1735 (utf-subst-table-for-decode): Specify :size, :rehash-size.
1736 (utf-translate-cjk): :set rewritten to load subst-... files.
1737 Add :set-after.
1738 (ccl-decode-mule-utf-8): Consider CJK translation for r3<#x3400.
1739
1740 2002-12-15 Gustav H\e,Ae\e(Bllberg <gustav@virtutech.se> (tiny change)
1741
1742 * progmodes/compile.el (compile-reinitialize-errors): Don't mark the
1743 buffer as modified unless it really is.
1744
1745 2002-12-14 Andreas Schwab <schwab@suse.de>
1746
1747 * wid-edit.el (widget-move): Don't loop infinitely when there is
1748 no field or button.
1749
1750 2002-12-13 Stefan Monnier <monnier@cs.yale.edu>
1751
1752 * uniquify.el (uniquify-rationalize-file-buffer-names, rename-buffer)
1753 (uniquify-delay-rationalize-file-buffer-names, kill-buffer-hook):
1754 Undo 2002/09/27 change because kill-buffer-hook is not
1755 permanent-local.
1756
1757 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1758 Optimize the remaining part of for-effect and/or expressions.
1759
1760 2002-12-13 Markus Rost <rost@math.ohio-state.edu>
1761
1762 * emacs-lisp/easy-mmode.el (define-minor-mode):
1763 Use `custom-current-group'. Pass all groups to the hook.
1764 (easy-mmode-define-global-mode): Use `custom-current-group'.
1765
1766 * international/mule-cmds.el (current-language-environment):
1767 Set type according to `language-info-alist' also here.
1768
1769 * progmodes/compile.el (compilation-menu-map):
1770 Use `kill-compilation' to stop compilation.
1771
1772 2002-12-13 Kenichi Handa <handa@m17n.org>
1773
1774 * language/european.el (encode-mac-roman): Fix last change.
1775
1776 * language/cyrillic.el (ccl-encode-koi8, ccl-encode-koi8-u)
1777 (ccl-encode-alternativnyj): Fix last change.
1778
1779 2002-12-13 Nick Roberts <nick@nick.uklinux.net>
1780
1781 * gdb-ui.el: Improve documentation strings.
1782 (gdb-many-windows): Set default value to nil.
1783
1784 2002-12-12 Dave Love <fx@gnu.org>
1785
1786 * international/subst-big5.el, international/subst-gb2312.el:
1787 * international/subst-jis.el, international/subst-ksc.el: New.
1788
1789 * custom.el (defcustom, custom-set-variables): Doc fix.
1790
1791 * emacs-lisp/bytecomp.el (byte-compile-if): Suppress warnings from
1792 things protected by `(if (fboundp ...' or `(if (boundp ...'.
1793
1794 * emacs-lisp/byte-opt.el (byte-optimize-featurep): New.
1795
1796 2002-12-12 Glenn Morris <gmorris@ast.cam.ac.uk>
1797
1798 * progmodes/fortran.el (fortran-mode-abbrev-table):
1799 Handle `define-abbrev' with either 5 or 6 arguments.
1800
1801 2002-12-12 Markus Rost <rost@math.ohio-state.edu>
1802
1803 * international/mule-cmds.el (set-language-info):
1804 Update custom-type of `current-language-environment'.
1805 (current-language-environment): Fix custom type.
1806
1807 2002-12-11 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1808
1809 * progmodes/antlr-mode.el (antlr): New URL.
1810
1811 2002-12-10 R. Bernstein <rocky@panix.com>
1812
1813 * gud.el (bashdb): Prompt now included parenthesis for subshell levels.
1814 Fix erroneous print expression command, and fix typos.
1815 (perldb): Undo previous change in prompt regexp.
1816
1817 2002-12-10 Steven Tamm <steventamm@mac.com>
1818
1819 * generic-x.el (javascript-generic-mode): Added C style block
1820 comments as used in ECMA-262 standard.
1821
1822 2002-12-10 Kenichi Handa <handa@m17n.org>
1823
1824 * language/european.el ("Swedish"): Change tutorial file name to
1825 TUTORIAL.sv in this langauge environment..
1826
1827 2002-12-09 John Paul Wallington <jpw@shootybangbang.com>
1828
1829 * ibuffer.el (ibuffer-mode): If `show-paren-mode' is enabled,
1830 disable it buffer-locally.
1831 (ibuffer-mouse-popup-menu): Use `=' instead of `eq' to compare
1832 `eventpt' and point.
1833
1834 * ibuf-ext.el (ibuffer-remove-duplicates): New function.
1835 (ibuffer-set-filter-groups-by-mode): Use it instead of
1836 `delete-duplicates' so we don't require cl library at runtime.
1837 (ibuffer-insert-filter-group-before): Don't use `position' so we
1838 don't require cl library at runtime.
1839
1840 * chistory.el (command-history-mode): Add interactive spec.
1841 Improve doc string.
1842
1843 2002-12-09 Richard M. Stallman <rms@gnu.org>
1844
1845 * isearch.el (isearch-no-upper-case-p): \\ only quotes one character.
1846
1847 2002-12-09 Markus Rost <rost@math.ohio-state.edu>
1848
1849 * mwheel.el (mouse-wheel-scroll-amount): Revert previous change -
1850 customize type 'float is now defined.
1851
1852 2002-12-09 Dave Love <fx@gnu.org>
1853
1854 * international/code-pages.el (mik, pt154): New coding systems.
1855
1856 * international/ucs-tables.el: Fix properly.
1857
1858 2002-12-09 Andreas Schwab <schwab@suse.de>
1859
1860 * international/ucs-tables.el: Fix last change.
1861
1862 2002-12-09 Kenichi Handa <handa@m17n.org>
1863
1864 * international/titdic-cnv.el (titdic-convert): Process the
1865 header part in multibyte mode.
1866
1867 2002-12-08 Dave Love <fx@gnu.org>
1868
1869 * international/code-pages.el (mule-diag): Move where it's required.
1870
1871 * international/ucs-tables.el: Add latin-jisx0201 characters.
1872 Fix translation-table-for-input for lao, thai, tibetan.
1873
1874 2002-12-08 Andreas Schwab <schwab@suse.de>
1875
1876 * files.el (insert-directory): Insert free space only when
1877 listing a full directory.
1878
1879 2002-12-08 Nick Roberts <nick@nick.uklinux.net>
1880
1881 * gdb-ui.el : Remove inappropriate key-bindings.
1882 (gdb-info-breakpoints-custom, gdb-goto-bp-this-line):
1883 Parse correctly when breakpoint has no line number.
1884 (def-gdb-auto-update-handler, gdb-info-locals-handler),
1885 (gdb-display-end): Avoid using insert-buffer.
1886 (gdb-frames-select-by-mouse): Rename gdb-frames-mouse-select.
1887
1888 2002-12-07 Richard M. Stallman <rms@gnu.org>
1889
1890 * progmodes/compile.el (compilation-enter-directory-regexp-alist)
1891 (compilation-leave-directory-regexp-alist): Match byte compiler output.
1892
1893 * emacs-lisp/cl-macs.el: Add local variable list
1894 to turn off cl-function warnings.
1895
1896 * emacs-lisp/bytecomp.el (byte-compile-eval): Handle (t . SYMBOL)
1897 elements in load-history.
1898 (byte-compile-cl-warn): No cl warnings for cl-defsubst-expand
1899 and cl-struct-setf-expander.
1900
1901 * emacs-lisp/autoload.el (autoload-print-form-outbuf):
1902 New variable.
1903 (autoload-print-form): Use autoload-print-form-outbuf.
1904 (generate-file-autoloads): Bind autoload-print-form-outbuf.
1905
1906 * calendar/calendar.el (calendar-day-name): Move defn down.
1907
1908 * speedbar.el (speedbar-directory-buttons-follow):
1909 Don't use directory-sep-char.
1910
1911 2002-12-06 Masatake YAMATO <jet@gyve.org> (tiny change)
1912
1913 * register.el (describe-register-1): Use window-width
1914 to truncate string in a register. Check whether the string
1915 in a register is an empty string or a sequence of white spaces.
1916
1917 2002-12-07 Andreas Schwab <schwab@suse.de>
1918
1919 * faces.el (face-font-selection-order)
1920 (face-font-family-alternatives, face-font-registry-alternatives):
1921 Remove period from :tag value.
1922
1923 * cus-edit.el (custom-face-edit-fix-value): Change :reverse-video
1924 to :inverse-video.
1925
1926 2002-12-07 Markus Rost <rost@math.ohio-state.edu>
1927
1928 * wid-edit.el (define-widget number): Clarify doc and error message.
1929 (define-widget float): New widget.
1930
1931 2002-12-07 Andreas Schwab <schwab@suse.de>
1932
1933 * eshell/em-ls.el (eshell-ls-product-regexp): Fix typo.
1934
1935 * files.el (find-file-read-args): Reenable wildcard processing
1936 unconditionally.
1937
1938 2002-12-06 Robert J. Chassell <bob@rattlesnake.com>
1939
1940 * textmodes/texinfmt.el (texinfo-format-scan): Handle new
1941 functions for copyright notice and copying permissions.
1942 (texinfo-copying, texinfo-insertcopying): New functions.
1943
1944 2002-12-03 TAKAHASHI Kaoru <kaoru@kaisei.org>
1945
1946 * textmodes/texinfmt.el (texinfo-format-ifxml)
1947 (texinfo-format-xml): New function.
1948 (ifxml, ifnotxml): New aliases.
1949
1950 2002-12-06 Dave Love <fx@gnu.org>
1951
1952 * international/utf-8-subst.el: Revert last change.
1953
1954 2002-12-06 Miles Bader <miles@gnu.org>
1955
1956 * info.el (Info-insert-dir): Make dir-node-cache variables
1957 buffer-local, so that killing the *info* buffer forces the
1958 dir-node to be rebuilt.
1959
1960 2002-12-06 Markus Rost <rost@math.ohio-state.edu>
1961
1962 * finder.el (finder-compile-keywords): Don't insert a keyword to
1963 the generated file.
1964
1965 2002-12-05 Andreas Schwab <schwab@suse.de>
1966
1967 * speedbar.el (speedbar-highlight-face): Fix face spec.
1968
1969 2002-12-05 Stefan Monnier <monnier@cs.yale.edu>
1970
1971 * gdb-ui.el: Replace uses of (gdb-get-instance-buffer 'gdba) and
1972 gdb-proc with gud-comint-buffer instead.
1973 (gdb-proc): Remove.
1974 (def-gdb-var): Simplify.
1975 (gdb-get-create-instance-buffer): Avoid make-variable-buffer-local.
1976 Set gud-comint-buffer as well as gud-minor-mode and tool-bar-map.
1977 (gdb-goto-bp-this-line): Select the window while doing the goto-line.
1978 (gdb-info-locals-handler): Avoid replace-regexp.
1979
1980 * calendar/calendar.el (facemenu-unlisted-faces): Only update
1981 after facemenu is loaded.
1982 (calendar-font-lock-keywords): Accept non-ASCII month names.
1983 Use regexp-opt.
1984
1985 * gdb-ui.el (gud-gdb-complete-string, gud-gdb-complete-break)
1986 (gud-gdb-complete-list, gud-gdb-complete-in-progress): Remove.
1987 (gdba): Call `gdb' and then make modifications.
1988 Always call gdb-clear-inferior-io rather than just "the first time".
1989 (gud-break, gud-remove): Definitions moved to inside gdba.
1990 (gdb-target-name): Remove. Use gud-target-name instead.
1991 (gdba-complete-filter, gdba-common-init): Remove.
1992 The changes were integrated into the generic code.
1993
1994 * gud.el: Use match-string.
1995 (gud-menu-map): Re-fix gdb-running to gud-running.
1996 Activate up/down and finish for pdb.
1997 (gud-def): Use backquotes.
1998 (gdb, sdb, dbx, xdb, pdb, jdb, bashdb): Remove redundant menu bindings.
1999 (gud-gdb-complete-in-progress, gud-gdb-complete-string)
2000 (gud-gdb-complete-break, gud-gdb-complete-list):
2001 Rename to gud-gdb-fetch-lines-in-progress, gud-gdb-fetch-lines-string,
2002 gud-gdb-fetch-lines-break and gud-gdb-fetched-lines.
2003 (gud-gdb-fetch-lines-filter): Rename from gud-gdb-complete-filter.
2004 Add a `filter' argument and run it on `string'.
2005 (gud-gdb-run-command-fetch-lines): Use it instead of
2006 gud-gdb-speedbar-stack-filter. Add a `skip' arg.
2007 Return the fetched lines.
2008 (gud-gdb-complete-command): Use it instead of cooking up
2009 something by hand using gud-gdb-complete-filter.
2010 (gud-gdb-get-stackframe): Use the new calling convention of
2011 gud-gdb-run-command-fetch-lines.
2012 (gud-gdb-fetched-stack-frame-list): Remove.
2013 (gud-gdb-speedbar-stack-filter): Remove.
2014 (gud-jdb-marker-filter): Change RE for easier extraction of submatches.
2015 (gud-bashdb-command-name): Add "--debugger" argument here.
2016 (bashdb): Use default gud-find-file and don't bother with
2017 a massage-args function now that --debugger is make explicit.
2018 (gud-bashdb-massage-args, gud-bashdb-find-file): Remove.
2019 (bashdb): Don't provide.
2020 (gud-target-name): New var.
2021 (gud-common-init): Set it.
2022 Also reset gud-running and gud-last-last-frame.
2023
2024 2002-12-05 Dave Love <fx@gnu.org>
2025
2026 * international/utf-8-subst.el: Update safe-chars of mule-utf-8,
2027 mule-utf-16-le, mule-utf-16-be.
2028
2029 2002-12-05 Richard M. Stallman <rms@gnu.org>
2030
2031 * textmodes/outline.el (outline-mode): Doc fix.
2032
2033 2002-12-05 Edward M. Reingold <reingold@emr.cs.iit.edu>
2034
2035 * calendar/solar.el (solar-atn2): Give correct quadrant for arctan.
2036
2037 2002-12-05 Kenichi Handa <handa@m17n.org>
2038
2039 * international/titdic-cnv.el (quail-misc-package-ext-info):
2040 Remove duplicate entry for chinese-b5-quick.
2041 (batch-miscdic-convert): Don't try to call miscdic-convert on
2042 files in the directory just following the arg "-dir".
2043
2044 2002-12-04 Stefan Monnier <monnier@cs.yale.edu>
2045
2046 * gdb-ui.el: Fold top-level `setq's and `define-key's into their
2047 corresponding defvar.
2048 (gdb-inferior-io-mode-map): New var.
2049 Add bindings to it rather than to comint-mode-map.
2050 (gdb-display-number-end): Use dolist. Remove always-true test.
2051 (gdb-delete-line): Move and simplify.
2052 (gdb-display-end): Don't bother going to beg-of-line since we're there.
2053 (gdb-array-format1): Use dolist.
2054 (gdb-make-windows-menu, gdb-make-frames-menu):
2055 Move to top-level code. Move the menus to within the GUD menu.
2056 Make the menus only appear in gdba mode.
2057
2058 * gdb-ui.el (gdb-inferior-io-mode-map): Remove (unused).
2059 (gdb-inferior-io-mode): Use define-minor-mode.
2060 (gdb-source-info): Don't burp if there's no source file.
2061 (gdb-inferior-io-interrupt, gdb-inferior-io-quit)
2062 (gdb-inferior-io-stop, gdb-inferior-io-eof)
2063 (gdb-display-breakpoints-buffer, gdb-frame-breakpoints-buffer)
2064 (gdb-display-stack-buffer, gdb-frame-stack-buffer)
2065 (gdb-display-registers-buffer, gdb-frame-registers-buffer)
2066 (gdb-display-locals-buffer, gdb-frame-locals-buffer)
2067 (gdb-display-display-buffer, gdb-frame-display-buffer)
2068 (gdb-display-gdb-buffer, gdb-frame-gdb-buffer)
2069 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
2070 Remove the spurious left over arg from the "big reorg".
2071
2072 2002-12-04 Richard M. Stallman <rms@gnu.org>
2073
2074 * gud.el (gud-menu-map): Update for bashdb.
2075 (perldb): Change prompt regexp.
2076 (gud-bashdb-history, gud-bashdb-massage-args, gud-bashdb-marker-filter)
2077 (gud-bashdb-find-file, gud-bashdb-command-name, bashdb): New.
2078
2079 * progmodes/cc-vars.el: Simply require wid-edit and custom
2080 in eval-when-compile.
2081
2082 * progmodes/cc-menus.el: Don't require imenu.
2083
2084 * progmodes/cc-langs.el: Don't require cl.
2085 (c-delete-duplicates): New function. Use instead of delete-duplicates.
2086
2087 * progmodes/cc-bytecomp.el (cc-bytecomp-obsolete-var):
2088 Add an else-clause to the if to avoid confused compiler warning.
2089
2090 * tooltip.el (tooltip-gud-tips-p): Undo previous change.
2091
2092 2002-12-03 Stefan Monnier <monnier@cs.yale.edu>
2093
2094 * gdb-ui.el: Get rid of (quote ..); use match-string and ignore.
2095
2096 * gdb-ui.el (gdba, gdb-starting, gdb-stopped, gdb-quit):
2097 Update gdb-running -> gud-running.
2098 (gdba): Use the default for gud-find-file.
2099 (def-gdb-variable): Remove: fold into def-gdb-var.
2100 (def-gdb-var): Use buffer-local-value and with-current-buffer.
2101
2102 * gud.el (gud-running): Rename from gdb-running. Update uses.
2103 (gud-tool-bar-map): Use tool-bar-local-item-from-menu rather than
2104 tool-bar-add-item-from-menu to avoid let binding tool-bar-map
2105 which fails if tool-bar.el is loaded in the mean time.
2106 (gud-file-name): New fun.
2107 (gud-find-file): Use it as default value for gud-find-file.
2108 (gud-speedbar-buttons): Discriminate on gud-minor-mode rather than
2109 on gud-find-file.
2110 (gud-gdb-find-file, gud-dbx-file-name, gud-dbx-find-file)
2111 (gud-xdb-file-name, gud-xdb-find-file, gud-perldb-find-file)
2112 (gud-pdb-find-file, gud-jdb-find-file): Remove.
2113 (gud-query-cmdline): Don't stuff the whole cwd in the command.
2114 (gdb, dbx, xdb, perldb, pdb, jdb): Use the default for gud-find-file.
2115 (gud-mipsdbx-massage-args): Remove.
2116 (gud-dbx-command-name): New var. Do what gud-mipsdbx-massage-args did.
2117 (gud-irixdbx-marker-filter): Use match-string and gud-file-name.
2118 (gud-jdb-command-name): New var.
2119 (gud-common-init): Re-instate RMS code of 11/13.
2120
2121 2002-12-03 Dave Love <fx@gnu.org>
2122
2123 * international/ucs-tables.el (ucs-unify-8859, ucs-unify-8859)
2124 (ucs-fragment-8859): Don't use set-buffer-major-mode-hook.
2125 (ucs-set-table-for-input): Use optional arg. Check for null `cs'.
2126
2127 2002-12-03 Andreas Schwab <schwab@suse.de>
2128
2129 * cus-edit.el (custom-display): Add checkbox for type mac.
2130
2131 * whitespace.el (whitespace-highlight-face): Fix face spec.
2132
2133 2002-12-02 Stefan Monnier <monnier@cs.yale.edu>
2134
2135 * simple.el (completion-setup-function): Fix last change to use
2136 minibuffer-completing-file-name instead.
2137
2138 * add-log.el (change-log-mode): Set indent-line-function explicitly
2139 to what it was before indent-line-function's default was changed.
2140
2141 2002-12-02 Richard M. Stallman <rms@gnu.org>
2142
2143 * textmodes/ispell.el (ispell-dict-map): Move specific
2144 dictionary selection into a submenu.
2145
2146 * textmodes/fill.el (fill-indent-to-left-margin): New function.
2147 (fill-newline, fill-region-as-paragraph): Use that.
2148
2149 * simple.el (completion-setup-function):
2150 Handle ffap-read-file-or-url-internal specially like
2151 read-file-name-internal.
2152
2153 2002-12-02 Simon Marshall <marshals@perth>
2154
2155 * font-lock.el (c++-font-lock-extra-types): Fix previous change.
2156
2157 2002-12-02 Fran\e,Ag\e(Bois Pinard <pinard@iro.umontreal.ca>
2158
2159 * progmodes/make-mode.el (makefile-font-lock-keywords): Highlight
2160 more make keywords: defined, endef, override, export, unexport
2161 and vpath.
2162
2163 2002-12-02 Dave Love <fx@gnu.org>
2164
2165 * autoarg.el (autoarg-kp-mode): Give it a :group.
2166
2167 2002-12-02 Noah Friedman <friedman@splode.com>
2168
2169 * complete.el (PC-do-completion): Do not add wildcards to pattern
2170 unless filename is non-nil.
2171
2172 2002-12-02 Andreas Schwab <schwab@suse.de>
2173
2174 * mwheel.el (mouse-wheel-scroll-amount): Fix customize type.
2175
2176 * paren.el (show-paren-mismatch-face): Fix face spec.
2177
2178 2002-11-30 Nick Roberts <nick@nick.uklinux.net>
2179
2180 * gdb-ui.el (gdb-many-windows): Define as a minor mode.
2181 (toggle-gdb-windows): Remove. (Patch from Stefan Monnier)
2182
2183 * tooltip.el (tooltip-gud-process-output): Handle annotations that
2184 are output with gdba in gdb-ui.el.
2185 (tooltip-strip-annotations): New function.
2186
2187 2002-12-29 Dave Love <fx@gnu.org>
2188
2189 * autoarg.el (autoarg-mode): Give it a :group.
2190
2191 2002-11-29 Bill Wohler <wohler@newt.com>
2192
2193 * mail/mh-comp.el, mail/mh-e.el, mail/mh-funcs.el,
2194 mail/mh-mime.el, mail/mh-pick.el, mail/mh-seq.el,
2195 mail/mh-utils.el, mail/mh-xemacs-compat.el: Upgraded to MH-E
2196 version 7.0.
2197
2198 * mail/mh-index.el, mail/mh-speed.el: New files for indexed
2199 searches and speedbar support in MH-E version 7.0.
2200
2201 * toolbar/reply-all.pbm, toolbar/reply-all.xpm,
2202 toolbar/reply-from.pbm, toolbar/reply-from.xpm,
2203 toolbar/reply-to.pbm, toolbar/reply-to.xpm: New toolbar images for
2204 MH-E version 7.0.
2205
2206 2002-11-29 Markus Rost <rost@math.ohio-state.edu>
2207
2208 * mwheel.el (mouse-wheel-inhibit-click-time): Fix custom type.
2209
2210 2002-11-29 Richard M. Stallman <rms@gnu.org>
2211
2212 * mail/rmail.el (rmail-convert-to-babyl-format):
2213 Make search for message delimiter case-sensitive.
2214
2215 * simple.el (yank-window-start): New variable.
2216 (yank): Record yank-window-start
2217 (yank-pop): Use yank-window-start.
2218
2219 * info.el (Info-additional-directory-list): Doc fix.
2220
2221 * indent.el (indent-according-to-mode, indent-region): Doc fix.
2222
2223 * tooltip.el (tooltip-gud-tips-p): Doc fix.
2224
2225 * eshell/em-script.el: Require eshell.
2226
2227 * eshell/esh-ext.el, eshell/em-cmpl.el: Require esh-util.
2228
2229 2002-11-29 Kim F. Storm <storm@cua.dk>
2230
2231 * mwheel.el: Avoid accidental yanking of text while scrolling with
2232 the mouse wheel. This adds a short period after each mouse wheel
2233 scroll event where a click on the mouse wheel button is ignored.
2234 (mouse-wheel-click-event, mouse-wheel-inhibit-click-time): New customs.
2235 (mouse-wheel-click-button, mwheel-inhibit-click-event-timer): New vars.
2236 (mwheel-inhibit-click-timeout,mwheel-filter-click-events): New defuns.
2237 (mwheel-scroll): Add mwheel-filter-click-events as pre-command-hook.
2238 Start mwheel-inhibit-click-event-timer with timeout handler
2239 mwheel-inhibit-click-timeout.
2240
2241 2002-11-28 Nick Roberts <nick@nick.uklinux.net>
2242
2243 * tooltip.el (tooltip-gud-tips-setup): Remove.
2244 (tooltip-gud-debugger): Remove.
2245 (tooltip-gud-print-command): Use gud-minor mode instead of
2246 tooltip-gud-tips-setup and tooltip-gud-debugger.
2247
2248 * gdb-ui.el (gdb-starting): Set gdb-running to t.
2249 (gdb-stopped): Set gdb-running to nil.
2250 (gdb-quit): Reset some variables including tool-bar-map.
2251
2252 * gud.el (gdb-running): New variable.
2253 (gud-menu-map): Use gdb-running to grey out toolbar buttons
2254 with gdba in gdb-ui.el.
2255 (gud-tool-bar-map): Move to avoid byte compiler warning.
2256
2257 2002-11-27 Jason Rumney <jasonr@gnu.org>
2258
2259 * files.el (file-truename): Canonicalize non-existent names on w32.
2260
2261 2002-11-28 Kim F. Storm <storm@cua.dk>
2262
2263 * ido.el (ido-xemacs): Remove defvar. All uses changed to
2264 check (featurep 'xemacs) instead.
2265 (ido-visit-buffer): Use select-frame-set-input-focus unconditionally.
2266
2267 2002-11-27 Dave Love <fx@gnu.org>
2268
2269 * emacs-lisp/cl-macs.el: Move `predicates for analyzing Lisp
2270 forms' block to top (before uses).
2271 (help-fns): Don't require at top level. (Recursively.)
2272 (cl-transform-lambda): Require help-fns.
2273
2274 2002-11-26 Dave Love <fx@gnu.org>
2275
2276 * language/european.el (encode-mac-roman): Deal with unencodable
2277 characters.
2278
2279 * language/cyrillic.el (ccl-encode-koi8, ccl-encode-koi8-u)
2280 (ccl-encode-alternativnyj): Deal with unencodable characters.
2281
2282 * international/code-pages.el (cp-make-coding-system): Deal with
2283 unencodable characters.
2284
2285 2002-11-24 Richard M. Stallman <rms@gnu.org>
2286
2287 * mail/sendmail.el (mail-signature): Handle case where
2288 value of mail-signature is a string.
2289
2290 * menu-bar.el (menu-bar-describe-menu): Add "What's This?" item.
2291
2292 * faces.el (face-set-after-frame-default): Ignore errors
2293 in face-spec-face-set.
2294
2295 * cus-face.el (custom-declare-face): Add face-defface-spec
2296 prop after applying the face spec.
2297
2298 2002-11-23 Nick Roberts <nick@nick.uklinux.net>
2299
2300 * tooltip.el (tooltip-gud-print-command): Add server prefix to the
2301 print command for gdb to keep it out of the command history.
2302
2303 * gdb-ui.el: Major re-organisation. Simplify legacy gdba
2304 code to allow only one gdb process.
2305
2306 2002-11-23 Markus Rost <rost@math.ohio-state.edu>
2307
2308 * scroll-all.el (scroll-all-mode): Move arg LIGHTER to the right
2309 place. Add groups.
2310
2311 2002-11-22 Simon Marshall <marshals@perth>
2312
2313 * font-lock.el (c++-font-lock-extra-types): Add various STL classes.
2314
2315 2002-11-21 Nick Roberts <nick@nick.uklinux.net>
2316
2317 * gdb-ui.el : General tidying. Patches from Stefan Monnier.
2318
2319 2002-11-20 Simon Josefsson <jas@extundo.com>
2320
2321 * play/morse.el (morse-code): Add non-ASCII characters, according
2322 to table at http://www.soton.ac.uk/~scp93ch/morse/.
2323
2324 2002-11-21 Richard M. Stallman <rms@gnu.org>
2325
2326 * dired.el (dired-sort-inhibit): New variable.
2327 (dired-sort-toggle-or-edit): Err if dired-sort-inhibit non-nil.
2328
2329 * find-dired.el (find-dired): Set dired-sort-inhibit to t
2330 buffer-locally.
2331
2332 2002-11-21 Eugene Exarevsky <zheka@relex.ru>
2333
2334 * progmodes/sql.el: Added LINTER support.
2335 (sql-linter-program): New variable.
2336 (sql-linter-options): New variable.
2337 (sql-mode-menu): Added Linter keywords.
2338 (sql-mode-linter-font-lock-keywords): New variable.
2339 (sql-highlight-linter-keywords): New function.
2340 (sql-linter): New function.
2341 (sql-ms-options): New variable.
2342 (sql-ms): Use it.
2343
2344 2002-11-21 John Paul Wallington <jpw@shootybangbang.com>
2345
2346 * ibuffer.el (ibuffer-formats): Change default value; bump width
2347 of size column in first format to 7.
2348
2349 2002-11-20 Stefan Monnier <monnier@cs.yale.edu>
2350
2351 * help-fns.el (describe-variable): Look for (defvar . <sym>) in the
2352 load-history since `defvar' now uses this format.
2353
2354 * custom.el (custom-declare-variable): Use push.
2355 Use the (defvar . <sym>) format in load-history like `defvar' does.
2356
2357 * subr.el (symbol-file): Accept a non-atomic `function' arg.
2358 (with-local-quit): Add debug and indentation info.
2359
2360 2002-11-20 John Paul Wallington <jpw@shootybangbang.com>
2361
2362 * subr.el (symbol-file): Remove unused variable `functions'.
2363
2364 2002-11-20 Markus Rost <rost@math.ohio-state.edu>
2365
2366 * Makefile.in (setwins_almost): Renamed from finder_setwins.
2367 (custom-deps): Use it.
2368 (finder-data): Adjust to that name change.
2369
2370 2002-11-19 Stefan Monnier <monnier@cs.yale.edu>
2371
2372 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
2373 Turn errors into messages so they don't get ignored.
2374 (eldoc-get-fnsym-args-string): Use help-split-fundoc.
2375 (eldoc-beginning-of-sexp): Simplify.
2376 (eldoc-function-arglist): Remove.
2377 (eldoc-function-argstring): Use help-function-arglist instead.
2378 (eldoc-function-argstring-from-docstring-method-table)
2379 (eldoc-function-argstring-from-docstring): Remove.
2380
2381 * emacs-lisp/cl.el (multiple-value-call): Add docstring.
2382
2383 2002-11-19 Dave Love <fx@gnu.org>
2384
2385 * emacs-lisp/bytecomp.el (maphash, map-char-table):
2386 Use byte-compile-funarg.
2387
2388 * emacs-lisp/byte-opt.el (side-effect-free-fns): Several additions.
2389
2390 2002-11-19 Markus Rost <rost@math.ohio-state.edu>
2391
2392 * progmodes/vhdl-mode.el (defgroup vhdl-related): Declare the
2393 members here rather than with custom-add-to-group. This is the
2394 intended way of using defgroup and also lets
2395 custom-make-dependencies do its job.
2396 (defgroup vhdl-highlight-faces): Ditto.
2397
2398 * emacs-lisp/shadow.el (defgroup lisp-shadow): New group name.
2399 Previous group name shadow is used in shadowfile.el.
2400 (shadows-compare-text-p): Use group lisp-shadow.
2401
2402 2002-11-19 Stefan Monnier <monnier@cs.yale.edu>
2403
2404 * emacs-lisp/cl.el (multiple-value-call): Add docstring.
2405
2406 2002-11-19 Masatake Yamato <jet@gyve.org> (tiny change)
2407
2408 * register.el (describe-register-1): Don't assign to val the value
2409 returned by `remove-list-of-text-properties'.
2410
2411 2002-11-18 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
2412
2413 * calendar/diary-lib.el (fancy-diary-font-lock-keywords):
2414 Grok month numbers, too.
2415
2416 2002-11-18 Juanma Barranquero <lektu@terra.es>
2417
2418 * mail/smtpmail.el (smtpmail-send-queued-mail): Add autoload cookie.
2419
2420 2002-11-18 Markus Rost <rost@math.ohio-state.edu>
2421
2422 * pcvs.el (cvs-minor-mode, cvs-mode-commit-hook): Add group.
2423
2424 * textmodes/refill.el (defgroup refill): New group.
2425
2426 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Add group.
2427
2428 * textmodes/sgml-mode.el (html-autoview-mode): Add group.
2429
2430 * textmodes/paragraphs.el (use-hard-newlines): Add group.
2431
2432 * progmodes/compile.el (compilation-shell-minor-mode): Add group.
2433 (compilation-minor-mode): Add group.
2434
2435 * reveal.el (global-reveal-mode): Add group.
2436
2437 * bookmark.el (bookmark-menu-length): Fix group name.
2438
2439 2002-11-17 Richard M. Stallman <rms@gnu.org>
2440
2441 * mail/rmail.el (rmail-ignored-headers): Add more headers.
2442
2443 * calendar/parse-time.el (parse-time-elt): Var renamed from `elt'.
2444 (parse-time-val): Var renamed from `val'. All uses changed.
2445
2446 * files.el (parse-time-rules): Mark it as risky.
2447
2448 * finder.el (finder-commentary): Use buffer *Finder-package*.
2449
2450 * menu-bar.el (menu-bar-options-menu): Improve tooltip string.
2451
2452 * simple.el (indicate-unused-lines)
2453 (default-indicate-unused-lines): New variable aliases.
2454
2455 2002-11-18 Kenichi Handa <handa@m17n.org>
2456
2457 * progmodes/cc-vars.el: Undo previous change.
2458
2459 2002-11-18 Kenichi Handa <handa@m17n.org>
2460
2461 * language/cyrillic.el (cyrillic-iso-8bit): Make it safe.
2462
2463 * language/european.el (iso-latin-1): Make it safe.
2464 (iso-latin-2, iso-latin-3, iso-latin-4, iso-latin-5, iso-latin-8)
2465 (iso-latin-9): Likewise.
2466
2467 * language/greek.el (greek-iso-8bit): Make it safe.
2468
2469 * language/hebrew.el (hebrew-iso-8bit): Make it safe.
2470
2471 * language/lao.el (lao): Make it safe.
2472
2473 * language/thai.el (thai-tis620): Make it safe.
2474
2475 2002-11-17 Markus Rost <rost@math.ohio-state.edu>
2476
2477 * speedbar.el (defgroup speedbar): Use group 'etags instead of
2478 nonexisting group 'tags.
2479
2480 * emacs-lisp/re-builder.el: Add provide call.
2481
2482 * mail/feedmail.el (feedmail-fiddle-headers-upwardly)
2483 (feedmail-fiddle-plex-user-list): Fix typo in group name.
2484
2485 * progmodes/make-mode.el (makefile-space-face): Fix group name.
2486
2487 * textmodes/ispell.el (defgroup ispell): Arrange that definition
2488 starts at beginning of line.
2489
2490 * textmodes/table.el (defgroup table-hooks): New group.
2491 (table-cell-map-hook): Fix typo in group name.
2492
2493 * calendar/diary-lib.el (diary-button-face): Add group and version
2494 number.
2495
2496 * warnings.el (defgroup warnings): New group.
2497
2498 2002-11-16 Markus Rost <rost@math.ohio-state.edu>
2499
2500 * emacs-lisp/autoload.el (update-autoloads-from-directories):
2501 Sort the list of files with no autoloads.
2502
2503 2002-11-16 Alan Shutko <ats@acm.org>
2504
2505 * calendar/diary-lib.el (list-diary-entries): Pass a marker
2506 indicating source of entry to add-to-diary-list.
2507 (diary-button-face, diary-entry, diary-goto-entry): New, to
2508 support click to diary file.
2509 (fancy-diary-display): Buttonize diary entries.
2510 (list-sexp-diary-entries): Pass a marker indicating source of
2511 entry to add-to-diary-list.
2512 (diary-date): Return mark as well as entry.
2513
2514 * calendar/calendar.el (diary-face): New.
2515 (european-calendar-display-form, describe-calendar-mode)
2516 (mark-visible-calendar-date, calendar-mark-today): Tidy doc string.
2517 (calendar-make-alist): New.
2518 (calendar-mode): Set up font-lock mode.
2519 (generate-calendar-window): Fontify if font-lock-mode is on.
2520
2521 2002-11-16 Ivan Zakharyaschev <imz@altlinux.org> (tiny change)
2522
2523 * international/codepage.el (cp866-decode-table): Fix the
2524 translation table.
2525
2526 2002-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
2527
2528 * progmodes/cc-bytecomp.el (cc-bytecomp-defun): Fixed bug that
2529 caused existing function definitions to be overridden by
2530 phonies when the bytecomp environment is restored.
2531
2532 2002-11-15 Nick Roberts <nick@nick.uklinux.net>
2533
2534 * toolbar/gud-break.pbm, toolbar/gud-cont.pbm, toolbar/gud-display.pbm,
2535 toolbar/gud-down.pbm, toolbar/gud-finish.pbm, toolbar/gud-goto.pbm,
2536 toolbar/gud-next.pbm, toolbar/gud-print.pbm, toolbar/gud-remove.pbm,
2537 toolbar/gud-run.pbm, toolbar/gud-step.pbm, toolbar/gud-up.pbm:
2538 Icons for debugger (pbm files).
2539
2540 2002-11-15 Richard M. Stallman <rms@gnu.org>
2541
2542 * international/mule.el (set-buffer-file-coding-system): Redo prev chg.
2543
2544 2002-11-15 John Paul Wallington <jpw@shootybangbang.com>
2545
2546 * ibuffer.el (ibuffer-use-other-window, ibuffer-use-header-line)
2547 (ibuffer-visit-buffer, ibuffer-redisplay, ibuffer-update): Doc fix.
2548 (ibuffer-mode-hooks): Remove spurious defvar.
2549 (ibuffer): Run `ibuffer-hook' instead of `ibuffer-hooks'.
2550 (ibuffer-mode): Run `ibuffer-mode-hook' instead of
2551 `ibuffer-mode-hooks'.
2552
2553 2002-11-15 Markus Rost <rost@math.ohio-state.edu>
2554
2555 * mail/rmailedit.el: Add provide call.
2556
2557 * play/bruce.el: Add provide call.
2558
2559 * emacs-lisp/gulp.el: Add provide call.
2560
2561 2002-11-14 Richard M. Stallman <rms@gnu.org>
2562
2563 * international/mule.el (set-buffer-file-coding-system): Undo prv chg.
2564
2565 2002-11-14 Markus Rost <rost@math.ohio-state.edu>
2566
2567 * custom.el (custom-declare-group): Remove unnecessary line of code.
2568
2569 * cus-dep.el (custom-make-dependencies): Bind load-file-name.
2570
2571 2002-11-14 Edward M. Reingold <reingold@emr.cs.iit.edu>
2572
2573 * calendar/diary-lib.el (make-diary-entry): Allow for local variables
2574 at end of diary file.
2575
2576 2002-11-14 Kim F. Storm <storm@cua.dk>
2577
2578 * files.el (mode-name): Mark it as risky-local-variable like the
2579 other mode-line elements (moved from bindings.el).
2580
2581 * bindings.el (mode-name): Moved mark as risky-local-variable to
2582 files.el.
2583
2584 2002-11-14 Juanma Barranquero <lektu@terra.es>
2585
2586 * gud.el: Fix feature name in `provide'.
2587
2588 * gdb-ui.el: Fix feature name in `require'.
2589
2590 2002-11-14 Per Cederqvist <ceder@lysator.liu.se> (tiny change)
2591
2592 * progmodes/etags.el (find-tag-default): Copy text at point without
2593 properties.
2594
2595 2002-11-14 Kenichi Handa <handa@m17n.org>
2596
2597 * progmodes/cc-vars.el: Don't cc-bytecomp-defun char-table-p.
2598
2599 2002-11-14 Kim F. Storm <storm@cua.dk>
2600
2601 * textmodes/fill.el (fill-nobreak-invisible): New var.
2602 (fill-nobreak-p): Test it; return t if set and point invisible.
2603 (fill-newline): Test it; remove invisible prop on newline if set.
2604
2605 * info.el (Info-fontify-node): New local list paragraph-markers.
2606 Record markers for mangled *note references on that list.
2607 When done, go back through those markers and fill each mangled
2608 paragraph with `fill-nobreak-invisible' let-bound to t.
2609 Don't use `display' property; insert "see" directly in buffer.
2610
2611 2002-11-14 Nick Roberts <nick@nick.uklinux.net>
2612
2613 * gdb-ui.el: New file, User Interface for running GDB
2614
2615 * gud.el:(gud-find-file): Set up GDB tool bar.
2616 (gud-menu-map): New commands: run, goto.
2617 Enable some commands for gdba.
2618 (gud-query-cmdline): Pass default directory to gdba.
2619 (gdb): Defune gud-goto and gud-run.
2620 (gud-gdb-complete-command): Maybe use gdba-complete-filter.
2621 (gud-mode): Set up local tool bar.
2622 (gud-display-line): For gdba, call gdb-display-source-buffer.
2623 (gud-basic-call): For gdba, maybe delete the current prompt.
2624 (gud-tool-bar-map): New variable.
2625 (gud-read-address): Correction.
2626
2627 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-display.xpm,
2628 toolbar/gud-down.xpm, toolbar/gud-finish.xpm, toolbar/gud-goto.xpm,
2629 toolbar/gud-next.xpm, toolbar/gud-print.xpm, toolbar/gud-remove.xpm,
2630 toolbar/gud-run.xpm, toolbar/gud-step.xpm, toolbar/gud-up.xpm:
2631 Icons for debugger.
2632
2633 2002-11-13 Stefan Monnier <monnier@cs.yale.edu>
2634
2635 * pcvs.el (cvs-mode-run): Don't pass "." if not needed.
2636
2637 2002-11-13 Andre Spiegel <spiegel@gnu.org>
2638
2639 * vc-rcs.el (vc-rcs-registered): Improve comment.
2640
2641 * vc-sccs.el (vc-sccs-registered): Improve comment.
2642
2643 2002-11-13 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
2644
2645 * progmodes/compile.el (compilation-error-regexp-alist):
2646 Don't include colon and space after a file name as part of the name.
2647
2648 2002-11-13 Richard M. Stallman <rms@gnu.org>
2649
2650 * gud.el (gdb): Undo 10-26 change.
2651
2652 2002-11-13 Kenichi Handa <handa@m17n.org>
2653
2654 * replace.el (occur-engine): Set buffer-file-coding-system of
2655 OUT-BUF to that of one of BUFFERS if they locally bind that variable.
2656
2657 2002-11-13 Markus Rost <rost@math.ohio-state.edu>
2658
2659 * custom.el (custom-handle-all-keywords): Fix arg passed to
2660 custom-add-to-group.
2661
2662 2002-11-12 Stefan Monnier <monnier@cs.yale.edu>
2663
2664 * pcvs-defs.el (cvs-mode-map): Remove M-f binding.
2665 (cvs-minor-mode-map): Add e binding in log-view-mode.
2666
2667 * progmodes/perl-mode.el (perl-hanging-paren-p): New fun.
2668 (perl-indent-line): Look at the open-paren to indent a close-paren.
2669 (perl-calculate-indent): Try to better indent args after hanging paren.
2670 Remove special code for open-paren-in-column-0.
2671
2672 * textmodes/sgml-mode.el (sgml-namify-char): New cmd.
2673 (sgml-name-char): Use it.
2674 (sgml-tag-last, sgml-tag-history): New vars.
2675 (sgml-tag): Use them.
2676 (sgml-skip-tag-forward): Use sgml-tag-syntax-table.
2677 (sgml-delete-tag): Remove resulting empty lines.
2678 (sgml-tag) <symbol-plist>: Don't make intangible.
2679 (sgml-parse-tag-backward): Add limit argument.
2680 (html-autoview-mode): Use define-minor-mode.
2681
2682 2002-11-12 Markus Rost <rost@math.ohio-state.edu>
2683
2684 * vc-rcs.el (vc-rcs-registered): Handle the autoload cookie so
2685 that the definition is found by `find-function-search-for-symbol'
2686 and etags.
2687
2688 * vc-sccs.el (vc-sccs-registered): Ditto.
2689
2690 * emulation/edt.el (defgroup edt): Arrange that definition starts
2691 at beginning of line.
2692
2693 * ls-lisp.el (defgroup ls-lisp): Remove autoload cookie.
2694
2695 * hi-lock.el (defgroup hi-lock-interactive-text-highlighting):
2696 Remove autoload cookie.
2697
2698 * newcomment.el (defgroup comment): Remove autoload cookie.
2699
2700 2002-11-11 Markus Rost <rost@math.ohio-state.edu>
2701
2702 * mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
2703 Declare with defvar, not with defcustom.
2704
2705 * cus-dep.el: Don't require 'autoload.
2706 (custom-make-dependencies): Handle :version also for autoloaded
2707 options.
2708
2709 * winner.el (defgroup winner): Arrange that definition starts at
2710 beginning of line.
2711
2712 * emulation/edt.el: Simplify Emacs 19 compatibility.
2713
2714 2002-11-11 Fabrice Bauzac <fabrice.bauzac@wanadoo.fr> (tiny change)
2715
2716 * dired-aux.el (dired-show-file-type): Format filename with "%s" to
2717 escape any format-like sequences it could contain.
2718
2719 2002-11-11 Per Abrahamsen <abraham@dina.kvl.dk>
2720
2721 * cus-edit.el (custom-save-delete): Force emacs-lisp-mode.
2722
2723 2002-11-11 Juanma Barranquero <lektu@terra.es>
2724
2725 * bindings.el (mode-name): Mark it as risky-local-variable.
2726
2727 2002-11-09 Dave Love <fx@gnu.org>
2728
2729 * international/mule-cmds.el (current-language-environment):
2730 Fix :type.
2731
2732 * international/ucs-tables.el: Revert to using
2733 translation-table-for-input instead of keyboard-translate-table.
2734
2735 * international/quail.el (quail-input-string-to-events):
2736 Revert last change.
2737
2738 * simple.el (quoted-insert): Bind translation-table-for-input,
2739 not keyboard-translate-table.
2740
2741 2002-11-08 Stefan Monnier <monnier@cs.yale.edu>
2742
2743 * arc-mode.el (archive-zip-summarize): Don't hardcode (point-min) = 1.
2744
2745 * complete.el (PC-do-completion): Make partial-completion work
2746 with incomplete directory names.
2747
2748 * textmodes/tex-mode.el (latex-standard-block-names): Rename from
2749 standard-latex-block-names.
2750 (tex-font-lock-keywords-1): Add providecommand, renewenvironment,
2751 and renewtheorem. Highlight \it and \bf separately since they
2752 may overlap.
2753 (tex-font-lock-suscript, tex-font-lock-unfontify-region): New funs.
2754 (tex-font-lock-keywords-3, tex-verbatim-environments)
2755 (tex-font-lock-syntactic-keywords): New vars.
2756 (superscript, subscript, tex-verbatim-face): New faces.
2757 (tex-font-lock-syntactic-face-function): Handle \verb construct.
2758 (tex-common-initialization): Update font-lock-defaults setting.
2759 (tex-insert-braces): Make it into a skeleton.
2760 (latex-fill-nobreak-predicate): Don't break after \.
2761 (latex-insert-block): Rename from tex-latex-block.
2762 (latex-down-list): Use tex-mode-syntax-table when skipping parens
2763 rather than the indentation syntax-table.
2764 (latex-close-block): Rename from tex-close-latex-block.
2765 (latex-split-block): New fun.
2766 (latex-indent): Don't indent inside a verbatim block.
2767 (latex-find-indent): Stick \begin{verbatim} to the margin.
2768
2769 2002-11-08 John Wiegley <johnw@gnu.org>
2770
2771 * calendar/timeclock.el (timeclock-modeline-display): Use assq as
2772 well as memq to find `global-mode-string' within
2773 `mode-line-format'. The structure of that variable has changed in
2774 21.3.
2775
2776 2002-11-07 Stefan Monnier <monnier@cs.yale.edu>
2777
2778 * format.el (format-decode): Be careful with the order in `format'.
2779
2780 * eshell/esh-cmd.el (function-p-func): Avoid `xemacs-p'.
2781
2782 * eshell/em-glob.el: Require esh-util.
2783 (eshell-glob-initialize): Don't assume
2784 eshell-special-chars-outside-quoting is available.
2785
2786 * textmodes/fill.el (fill-paragraph): Consider a comment-start as
2787 a paragraph starter when filling non-comments.
2788 (fill-comment-paragraph): Don't narrow while doing the fill.
2789 Recognize paragraph starters and separators within comments.
2790 Use adaptive-fill-prefix when it works. Use comment-search-forward.
2791
2792 * progmodes/compile.el (grep-default-command): New fun.
2793 (grep): Use it.
2794 (compilation-menu-map): New var.
2795 (compilation-minor-mode-map, compilation-shell-minor-mode-map): Use it.
2796 (compilation-mode-map): Simplify.
2797 (compilation-shell-minor-mode, compilation-minor-mode):
2798 Use define-minor-mode.
2799
2800 * elide-head.el (elide-head): Don't make intangible.
2801
2802 * help.el (where-is): Rename map to defs (a list of syms is not a map).
2803 Test fboundp first, to speed things up. Use push.
2804
2805 * isearch.el (isearch-hidden): New var.
2806 (isearch-search-and-update): Test it.
2807 (isearch-range-invisible): Set it.
2808
2809 * progmodes/tcl.el (tcl-mode): Don't set paragraph-start,
2810 paragraph-separate, comment-column, and fill-paragraph-function.
2811 Simplify outline-regexp.
2812 (tcl-do-fill-paragraph): Remove.
2813
2814 2002-11-07 Markus Rost <rost@math.ohio-state.edu>
2815
2816 * mail/sendmail.el (mail-default-directory): Set the version to 21.4.
2817
2818 * progmodes/compile.el (grep-compute-defaults): Undo previous change.
2819 Definition moved down.
2820 (grep-command, grep-find-command, grep-tree-command): Allow value nil.
2821 Do not declare :get property.
2822 (grep-use-null-device): Fix type. Do not declare :get property.
2823
2824 * emacs-lisp/checkdoc.el (checkdoc-find-error):
2825 Use get-file-buffer instead of get-buffer.
2826
2827 * cus-dep.el (custom-make-dependencies): Fix comment inserted in
2828 cus-load.el.
2829
2830 2002-11-07 Juanma Barranquero <lektu@terra.es>
2831
2832 * help.el (where-is): Report also aliases of the passed command.
2833
2834 2002-11-06 Dave Love <fx@gnu.org>
2835
2836 * simple.el (quoted-insert): Bind keyboard-translate-table around
2837 read-char.
2838
2839 * international/ucs-tables.el: Use keyboard-translate-table coding
2840 system property, not translation-table-for-input, for
2841 vietnamese-viscii & al.
2842 (translation-table-for-input): Set,
2843 don't defvar, and make permanent-local.
2844 (ucs-unify-8859, ucs-unify-8859, ucs-fragment-8859): Add/remove
2845 set-buffer-major-mode-hook, not quail-activate-hook.
2846 (ucs-set-table-for-input): Renamed from ucs-quail-activate.
2847 (ucs-unify-8859, ucs-unify-8859, ucs-fragment-8859):
2848 Setup keyboard-translate-table, not translation-table-for-input.
2849 Modify set-buffer-major-mode-hook, not quail-activate-hook.
2850 (ucs-fragment-8859): Don't use translation-table-for-input coding
2851 system property.
2852 (ucs-quail-activate): Deleted.
2853 (ucs-set-table-for-input): New.
2854 (ucs-minibuffer-setup): Use it.
2855
2856 * international/quail.el (quail-input-string-to-events):
2857 Use keyboard-translate-table, not translation-table-for-input.
2858
2859 * files.el (normal-mode): Call ucs-set-table-for-input.
2860
2861 * international/mule.el (set-buffer-file-coding-system):
2862 Call ucs-set-table-for-input.
2863
2864 2002-11-06 Richard M. Stallman <rms@gnu.org>
2865
2866 * replace.el (query-replace, query-replace-regexp): Doc fixes.
2867
2868 * emacs-lisp/bytecomp.el (byte-compile-lambda):
2869 Handle progn like let, inside interactive spec.
2870
2871 * textmodes/tex-mode.el (tex-dvi-view-command): Value can be sexp.
2872 Initialize to a suitable sexp.
2873 (tex-view): Evaluate tex-dvi-view-command and use the value.
2874
2875 2002-11-06 Kenichi Handa <handa@m17n.org>
2876
2877 * international/mule.el (coding-system-eol-type-mnemonic):
2878 Use eol-mnemonic-undecided if CODING-SYSTEM is nil.
2879
2880 2002-11-06 Kim F. Storm <storm@cua.dk>
2881
2882 * info.el (Info-fontify-node): Fixed hiding of *note references
2883 with embedded file names like (xxx.yyy).
2884 Avoid making any lines visibly longer if hiding newlines inside
2885 note references by wrapping line after references if it contained
2886 a newline (unfortunaly this makes more lines appear "shorter").
2887 Properly reindent multi-line menu entry descriptions.
2888
2889 2002-11-05 Juanma Barranquero <lektu@terra.es>
2890
2891 * language/cyrillic.el ("Bulgarian"): Fix typo.
2892
2893 * international/mule.el (coding-system-eol-type-mnemonic):
2894 Move from mule-util.el.
2895
2896 * international/mule-util.el (coding-system-eol-type-mnemonic):
2897 Move to mule.el.
2898
2899 2002-11-04 Juanma Barranquero <lektu@terra.es>
2900
2901 * files.el (find-buffer-visiting): Accept new optional PREDICATE
2902 argument to return only a buffer that satisfies the predicate.
2903 (insert-file-1): New function.
2904 (insert-file-literally): Use it.
2905 (insert-file): Use it.
2906
2907 2002-11-04 Robert Fenk <Robert.Fenk@gmx.de> (tiny change)
2908
2909 * desktop.el (desktop-relative-file-names): New variable.
2910 (desktop-save): Use it.
2911
2912 2002-11-03 Andre Spiegel <spiegel@gnu.org>
2913
2914 * vc.el (vc-dired-mode): Adapt dired-move-to-filename-regexp to
2915 its current version in dired.el.
2916
2917 2002-11-03 Stefan Monnier <monnier@cs.yale.edu>
2918
2919 * emacs-lisp/autoload.el (generate-file-autoloads)
2920 (update-file-autoloads): Strip .gz and other such extensions.
2921 (update-autoloads-from-directories): Also consider compressed files.
2922
2923 * info.el (Info-streamline-headings): New var.
2924 (Info-dir-remove-duplicates): New fun.
2925 (Info-insert-dir): Use it. Simplify the code with push,mapc,dolist.
2926 (Info-select-node): Simplify handling of Info-header-line.
2927 (Info-forward-node): Undo 2000/12/15 since we don't narrow any more.
2928 (Info-mode): Set header-line-format once and for all.
2929 (Info-fontify-node): Accept bogus first line with `File:' missing.
2930 Only make first line invisible if Info-use-header-line.
2931 Don't use `intangible': it's evil. Use inhibit-read-only.
2932 (Info-follow-reference, Info-next-reference, Info-prev-reference)
2933 (Info-try-follow-nearest-node): Don't bind inhibit-point-motion-hooks
2934 since we don't use intangible any more.
2935
2936 * image.el (insert-image): Don't make intangible since
2937 adjust_point_for_property should be sufficient by default.
2938
2939 2002-11-02 Stefan Monnier <monnier@cs.yale.edu>
2940
2941 * textmodes/fill.el (fill-paragraph-handle-comment): New var.
2942 (fill-comment-paragraph): New fun (generalizes of lisp-fill-paragraph).
2943 (fill-paragraph): Use them.
2944
2945 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph):
2946 Use fill-comment-paragraph.
2947
2948 2002-11-02 Stefan Monnier <monnier@cs.yale.edu>
2949
2950 * bindings.el (mode-line-change-eol)
2951 (mode-line-eol-desc-cache, mode-line-eol-desc): New.
2952 (mode-line-mule-info): Use them for the EOL part of the modeline.
2953
2954 * server.el (server-sentinel): Kill buffers if applicable.
2955 (server-temp-file-p): Make arg optional.
2956 (server-done): Use it to simplify.
2957 (server-switch-buffer): If server-window is a function, use it.
2958
2959 * mail/undigest.el (rmail-digest-end-regexps): Simplify.
2960 (undigestify-rmail-message): Fix paren-bug and simplify.
2961
2962 2002-11-02 Kim F. Storm <storm@cua.dk>
2963
2964 * info.el (Info-hide-note-references): nil value now does no
2965 reformatting at all. New choice 'tag reformats tag but shows
2966 the section reference.
2967 (Info-fontify-node): Use it.
2968
2969 2002-11-01 Stefan Monnier <monnier@cs.yale.edu>
2970
2971 * textmodes/tex-mode.el (tex-common-initialization):
2972 comment-start-skip shouldn't match on the next line.
2973
2974 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Use match-string.
2975 Don't bother making paragraph-start a superset of paragraph-separate.
2976 Use line-beginning-position.
2977
2978 * textmodes/sgml-mode.el (sgml-skip-tag-backward)
2979 (sgml-skip-tag-forward): Deal with xml-style <foo/> empty tags.
2980
2981 2002-11-01 Kim F. Storm <storm@cua.dk>
2982
2983 * info.el (Info-hide-note-references): New defcustom.
2984 (Info-fontify-node): Use it.
2985
2986 2002-10-31 Kim F. Storm <storm@cua.dk>
2987
2988 * shell.el (explicit-bash-args): Bash 1.x doesn't grok
2989 --noediting option; added run-time check to exclude it.
2990
2991 * info.el (Info-follow-reference, Info-next-reference)
2992 (Info-prev-reference, Info-try-follow-nearest-node):
2993 Bind inhibit-point-motion-hooks to t while parsing reference.
2994 (Info-fontify-node): When font-lock-mode is enabled, display
2995 "*note" and "* menu" references in a more user friendly format.
2996
2997 2002-10-30 Stefan Monnier <monnier@cs.yale.edu>
2998
2999 * textmodes/fill.el (fill-move-to-break-point): Skip white space
3000 _before_ checking to see if we're hitting the margin.
3001 (fill-region-as-paragraph): Don't fiddle with the undo-list any more:
3002 it's now done by the C primitives. Don't use narrowing.
3003 Reorganize the line-breaking part of the code to simplify the control
3004 flow and make it work in the absence of narrowing.
3005 (fill-region): Don't use narrowing.
3006
3007 2002-10-30 Dave Love <fx@gnu.org>
3008
3009 * textmodes/po.el (po-content-type-charset-alist): Delete most entries.
3010 (po-find-charset): Doc fix. Remove interactive spec.
3011 (po): Provide.
3012 (po-find-file-coding-system-guts): Re-written to use
3013 coding-system-alist, and code-pages, not codepage stuff.
3014
3015 * term/x-win.el: Remove some ancient compatibility code.
3016 Populate x-keysym-table.
3017
3018 2002-10-30 Andreas Schwab <schwab@suse.de>
3019
3020 * subr.el (replace-regexp-in-string): Doc fix.
3021
3022 2002-10-29 Dave Love <fx@gnu.org>
3023
3024 * cus-start.el (selection-coding-system, scalable-fonts-allowed): Add.
3025
3026 * progmodes/scheme.el (syntax-case): Define scheme-indent-function.
3027
3028 * international/mule-conf.el: Doc fixes.
3029
3030 2002-10-29 Richard M. Stallman <rms@gnu.org>
3031
3032 * server.el (server-switch-buffer): Say when no server buffers remain.
3033
3034 * net/goto-addr.el (goto-address-url-regexp): Don't match `mailto'.
3035
3036 2002-10-28 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
3037
3038 * progmodes/make-mode.el (makefile-warn-continuations):
3039 Call re-search-forward with NOERROR t.
3040
3041 2002-10-29 Kim F. Storm <storm@cua.dk>
3042
3043 * ido.el (ido-wide-find-dirs-or-files): Fixed problem that caused
3044 incomplete list of matches to be returned.
3045
3046 2002-10-29 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
3047
3048 * textmodes/texinfo.el (texinfo-environments): Add environment;
3049 copying, documentdescription, ifplaintext, ifnotplaintext, and
3050 verbatim.
3051
3052 * textmodes/texinfmt.el (texinfo-format-ifplaintext): New function.
3053 (ifplaintext, ifnotplaintext)
3054 (afourpaper, afivepaper, afourlatex, afourwide)
3055 (documentlanguage, documentencoding): New aliases.
3056
3057 2002-10-29 John Paul Wallington <jpw@shootybangbang.com>
3058
3059 * ibuffer.el (ibuffer-mouse-popup-menu): Set point before popping
3060 up filter groups menu. Preserve point unless a menu command has
3061 moved it from point clicked.
3062
3063 2002-10-29 David Kastrup <dak@lola.goethe.zz>
3064
3065 * calc/calc.el (calc-any-evaltos): Initialize to nil, since
3066 calc-refresh-evaltos appears to need this.
3067
3068 2002-10-28 Dave Love <fx@gnu.org>
3069
3070 * international/mule-diag.el (non-iso-charset-alist): Move to
3071 avoid compilation warning.
3072 (mule-diag): Provide.
3073
3074 * international/code-pages.el (cp-make-coding-system):
3075 Use utf-translation-table-for-decode, not
3076 utf-8-translation-table-for-decode.
3077 (mule-diag): Require.
3078
3079 * language/thai-util.el (thai-composition-function): Don't use prog1.
3080
3081 * language/lao-util.el (lao-composition-function): Don't use prog1.
3082
3083 * language/european.el (diacritic-composition-function):
3084 Modify confused prog1 form.
3085
3086 * international/quail.el (quail-keyboard-layout-alist): Fix pc105-uk.
3087 (quail-keyboard-layout): Customize.
3088 Move after quail-keyboard-layout-alist.
3089
3090 2002-10-28 Miles Bader <miles@gnu.org>
3091
3092 * progmodes/make-mode.el (makefile-warn-continuations):
3093 Don't barf when there _aren't_ any suspicious continuations.
3094
3095 2002-10-28 Matthew Swift <swift@alum.mit.edu>
3096
3097 * progmodes/compile.el (grep-find-use-xargs): Fix docstring.
3098
3099 2002-10-27 Michael Kifer <kifer@cs.stonybrook.edu>
3100
3101 * ediff-wind.el (ediff-control-frame-parameters): Add scrollbar-height.
3102
3103 2002-10-27 Andreas Schwab <schwab@suse.de>
3104
3105 * progmodes/sh-script.el (sh-mode-syntax-table): Don't make ^L
3106 end-of-comment syntax.
3107
3108 2002-10-27 Kim F. Storm <storm@cua.dk>
3109
3110 * ido.el (ido-cannot-complete-command): New defcustom, default to
3111 ido-completion-help (similar to iswitchb-cannot-complete-hook).
3112 (ido-complete): Call value of ido-cannot-complete-command rather
3113 than ido-completion-help when no common completion.
3114
3115 2002-10-27 Dave Love <fx@gnu.org>
3116
3117 * international/code-pages.el (iso-8859-11): New.
3118
3119 2002-10-27 Kim F. Storm <storm@cua.dk>
3120
3121 * pcvs.el (cvs-checkout): Use read-directory-name.
3122 (cvs-query-directory): Likewise.
3123
3124 2002-10-26 Richard M. Stallman <rms@gnu.org>
3125
3126 * progmodes/make-mode.el (makefile-cleanup-continuations):
3127 Default for variable is nil.
3128 (makefile-warn-continuations): New function.
3129 (makefile-mode): Put it on write-file-functions.
3130
3131 * international/mule-cmds.el (select-safe-coding-system):
3132 Delete debugging setq.
3133
3134 * shell.el (shell): Look for .emacs_SHELL under ~/.emacs.d
3135 after looking in ~.
3136
3137 * startup.el (command-line): Look for .emacs under ~/.emacs.d
3138 after looking in ~.
3139
3140 * simple.el (toggle-truncate-lines): When turning off truncation,
3141 clear out the hscroll value in this buffer's windows.
3142
3143 * simple.el (display-message-or-buffer): Don't display empty
3144 output in the echo area.
3145
3146 * man.el (Man-default-man-entry): Don't look for all word chars,
3147 look only for characters that are normally part of a shell command.
3148
3149 * gud.el (gdb): Pass default-directory to GDB via -cd option.
3150
3151 * font-lock.el (c++-font-lock-keywords...): Add `restrict' keyword.
3152
3153 * find-file.el (ff-find-related-file): Fix autoload cookie.
3154
3155 * emacs-lisp/unsafep.el (unsafep-variable): Pass second arg to
3156 risky-local-variable-p.
3157
3158 * files.el (risky-local-variable-p): VAL=nil has special meaning.
3159
3160 * Makefile.in (compile-always): Avoid error in old Bash versions.
3161
3162 2002-10-26 John Paul Wallington <jpw@shootybangbang.com>
3163
3164 * textmodes/picture.el (picture-mouse-set-point): New command.
3165 (picture-mode-map): Bind it.
3166 (picture-motion-reverse): Doc fix.
3167
3168 2002-10-25 Stefan Monnier <monnier@cs.yale.edu>
3169
3170 * textmodes/outline.el (outline-next-heading): Make sure the match-data
3171 is really correct where returning.
3172
3173 2002-10-24 Matthew Swift <swift@alum.mit.edu>
3174
3175 * textmodes/outline.el (outline-minor-mode): Add customization group.
3176
3177 2002-10-23 Richard M. Stallman <rms@gnu.org>
3178
3179 * files.el (risky-local-variable-p): New arg VAL.
3180 (compile-command): Use `stringp' for `safe-local-variable' prop.
3181 (hack-one-local-variable): Pass VAL to `risky-local-variable-p'.
3182
3183 2002-10-23 Francis J. Wright <F.J.Wright@qmul.ac.uk>
3184
3185 * woman.el (woman-version): Update to 0.551 (beta).
3186 (woman-parse-colon-path): Add support for current Cygwin mount
3187 conventions.
3188 (woman-Cyg-to-Win): New function to convert absolute filename from
3189 Cygwin to Windows form by executing external program cygpath if
3190 possible.
3191 (woman-man.conf-path): Update default to current common locations
3192 and to support Cygwin; update documentation.
3193 (woman-parse-man.conf): Generalize regexp to "man.*\\.conf" to
3194 match possible names of man.conf file; tidy code and documentation.
3195 (woman-manpath): Simplify default and documentation; essentially
3196 move code that was here into `woman-parse-colon-path'.
3197 (woman-default-indent): Change Linux to GNU in documentation.
3198 (woman-addition-face): Make documentation consistent with other
3199 WoMan faces.
3200 (woman-emulate-tbl): New variable, determines whether tbl
3201 emulation is required.
3202 (woman-decode-region): Add check for preprocessor requests.
3203 (woman0-process-escapes, woman-special-characters)
3204 (woman-get-next-char, woman-parse-numeric-value): Add support for
3205 long groff names of the form [xxx].
3206 (woman-strings, woman-change-fonts): Now call `woman-match-name'.
3207 (woman2-PD, woman2-na): Doc fix.
3208 (woman-match-name): New function.
3209 (woman2-TS): New function.
3210 (woman2-TE): New alias for `woman2-fi'.
3211
3212 2002-10-23 Kim F. Storm <storm@cua.dk>
3213
3214 * ido.el (ido-restrict-to-matches): New command.
3215 (ido-define-mode-map): Bind it to C-SPC and C-@ in ido-mode-map.
3216
3217 2002-10-22 Bob Halley <halley@play-bow.org> (tiny change)
3218
3219 * eshell/esh-io.el (eshell-set-output-handle): Fix so that
3220 multiple redirection can work.
3221
3222 2002-10-21 Stefan Monnier <monnier@cs.yale.edu>
3223
3224 * ielm.el (inferior-emacs-lisp-mode): If hexl not found, use cat.
3225 Don't hardcode point-min == 1.
3226
3227 * hexl.el (hexl-mode-old-write-contents-hooks): Remove.
3228 (hexl-mode, hexl-current-address, hexl-address-to-marker)
3229 (hexl-insert-char): Don't hardcode point-min == 1.
3230 (hexl-isearch-search-function): New fun.
3231 (hexl-mode-old-isearch-search-fun-function): New var.
3232 (hexl-mode): Use them.
3233 (hexl-mode, hexl-mode-exit, hexl-maybe-dehexlify-buffer):
3234 Use write-contents-functions rather then write-contents-hooks.
3235
3236 * textmodes/text-mode.el (text-mode-syntax-table): Make ' a prefix.
3237 (paragraph-indent-text-mode-abbrev-table)
3238 (paragraph-indent-text-mode-syntax-table): Remove.
3239 (paragraph-indent-text-mode): Use the :abbrev and :syntax-table args.
3240
3241 2002-10-21 Juanma Barranquero <lektu@terra.es>
3242
3243 * eshell/esh-util.el (directory-files-and-attributes): Copy docstring
3244 from Emacs 21. Arg DIR renamed to DIRECTORY for consistency.
3245
3246 2002-10-20 Andreas Schwab <schwab@suse.de>
3247
3248 * apropos.el (apropos-group): Use customize-group-other-window.
3249
3250 2002-10-18 Stefan Monnier <monnier@rum.cs.yale.edu>
3251
3252 * progmodes/perl-mode.el (perl-mode-syntax-table): Change $ back
3253 to just "/" instead of "/ p".
3254 (perl-font-lock-syntactic-keywords): Use ". p" for the `$'.
3255
3256 2002-10-18 Juanma Barranquero <lektu@terra.es>
3257
3258 * textmodes/artist.el (artist-ff-is-bottommost-line): Fix misplaced
3259 ELSE expression on IF.
3260
3261 2002-10-17 Juanma Barranquero <lektu@terra.es>
3262
3263 * align.el (align-rules-list, align-exclude-rules-list): Fix typos.
3264
3265 * subr.el (remq): Likewise.
3266
3267 * vc-cvs.el (vc-cvs-sticky-tag-display): Likewise.
3268
3269 * vc-hooks.el (vc-insert-file): Likewise.
3270
3271 * vcursor.el (vcursor-other-window): Likewise.
3272
3273 * wid-edit.el (widget-choose): Likewise.
3274
3275 * calendar/diary-lib.el (diary-name-pattern): Likewise.
3276
3277 * emacs-lisp/elint.el (elint-error, elint-warning): Likewise.
3278
3279 * emacs-lisp/lisp.el (beginning-of-defun): Likewise.
3280
3281 * emulation/edt-mapper.el (top-level): Likewise.
3282
3283 * eshell/esh-var.el (eshell/define): Likewise.
3284
3285 * mail/feedmail.el (feedmail-nuke-body-in-fcc)
3286 (feedmail-queue-draft-directory): Likewise.
3287
3288 * net/netrc.el (netrc-parse): Likewise.
3289
3290 * obsolete/cplus-md.el (c++-empty-arglist-indent): Likewise.
3291
3292 * progmodes/ebrowse.el (ebrowse-ts)
3293 (ebrowse-view/find-file-and-search-pattern)
3294 (ebrowse-draw-file-member-info): Likewise.
3295
3296 * progmodes/idlwave.el (idlwave-region-active-p): Likewise.
3297
3298 * progmodes/idlw-shell.el (idlwave-shell-set-bp): Likewise.
3299
3300 * progmodes/sh-script.el (sh-indent-for-then): Likewise.
3301
3302 * textmodes/bibtex.el (bibtex-find-entry-location): Likewise.
3303
3304 * textmodes/sgml-mode.el (sgml-close-tag, html-imenu-index): Likewise.
3305
3306 2002-10-17 Dave Love <fx@gnu.org>
3307
3308 * international/mule-diag.el (non-iso-charset-alist): Add koi8-u.
3309
3310 * international/code-pages.el (cp-make-translation-table): Use
3311 ucs-mule-to-mule-unicode.
3312 (cp-fix-safe-chars): Fix typo.
3313 (non-iso-charset-alist): Don't define.
3314 (cp-make-coding-system): Use utf-8-translation-table-for-decode.
3315 Define translation-table-for-input.
3316 (cp866): Reinstate.
3317 (alternativnj): Don't define alias.
3318 (koi8-u): Deleted.
3319
3320 * language/european.el ("Slovenian"): Use slovenian input-method.
3321 (encode-mac-roman): Use ucs-mule-to-mule-unicode.
3322
3323 * language/cyrillic.el (cyrillic-alternativnyj-decode-table): Fix
3324 the table.
3325 (cyrillic-alternativnyj): Don't give it `mime-charset' property.
3326 (cp866): Delete this alias.
3327 ("Bulgarian"): Fix the value of `input-method'.
3328
3329 2002-10-16 Luc Teirlinck <teirllm@mail.auburn.edu>
3330
3331 * dired-aux.el (dired-add-entry): Put point in correct position
3332 before inserting marker char.
3333
3334 2002-10-16 Andreas Schwab <schwab@suse.de>
3335
3336 * dired.el (dired-readin-insert): Expand dired-directory.
3337
3338 * dired-aux.el (dired-insert-subdir-doinsert): Preserve point.
3339
3340 2002-10-16 Markus Rost <rost@math.ohio-state.edu>
3341
3342 * textmodes/reftex-vars.el: Move reftex-set-dirty here from
3343 reftex.el. Move the provide call to end of file.
3344
3345 * textmodes/reftex.el: Move reftex-set-dirty to reftex-vars.el.
3346
3347 2002-10-15 Dave Love <fx@gnu.org>
3348
3349 * man.el (Man-getpage-in-background): Set width in environment.
3350
3351 2002-10-15 Kenichi Handa <handa@m17n.org>
3352
3353 * mail/sendmail.el (sendmail-send-it): Call
3354 select-message-coding-system before changing the current bufer to
3355 " sendmail temp".
3356
3357 2002-10-14 Andre Spiegel <spiegel@gnu.org>
3358
3359 * files.el (insert-directory): Handle //SUBDIRED// lines in
3360 recursive listings from ls --dired.
3361
3362 * vc.el (vc-dired-reformat-line): Simplified. Handles text
3363 properties correctly now.
3364
3365 2002-10-14 Juanma Barranquero <lektu@terra.es>
3366
3367 * international/mule.el (set-selection-coding-system): Fix spacing.
3368
3369 2002-10-13 Richard M. Stallman <rms@gnu.org>
3370
3371 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
3372 Treat `ignore' specially--prevent warnings about functions
3373 called for effect, in its args.
3374 Don't warn when `pop' is used for effect.
3375
3376 * emacs-lisp/autoload.el (autoload-print-form): Cleanup.
3377
3378 * uniquify.el (uniquify-get-proposed-name):
3379 Don't use directory-sep-char.
3380
3381 * thingatpt.el (read-from-whole-string): Add call to `ignore'.
3382
3383 * find-file.el (ff-related-file-alist): New alias.
3384 (ff-find-related-file): New alias.
3385
3386 2002-10-13 Andreas Schwab <schwab@suse.de>
3387
3388 * dired.el (dired-insert-directory): When looking for existing
3389 indentation, goto OPOINT instead of beginning of buffer.
3390
3391 2002-10-12 Stefan Monnier <monnier@cs.yale.edu>
3392
3393 * cus-dep.el (custom-make-dependencies): Ignore preloaded files.
3394
3395 2002-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
3396
3397 * ediff-init.el (ediff-frame-char-height): Use frame-selected-window.
3398
3399 * ediff-util.el (ediff-file-checked-in-p): Changed progn with and.
3400
3401 * ediff-wind.el (ediff-skip-unsuitable-frames): Distinguish selected
3402 frame from frame of selected window.
3403 (ediff-frame-has-dedicated-windows): Don't select any frames to avoid
3404 changing selected windows.
3405 (ediff-setup-control-frame): Make sure auto-rase is properly set for
3406 the control frame.
3407
3408 2002-10-10 Simon Josefsson <jas@extundo.com>
3409
3410 * browse-url.el (browse-url-mozilla): Doc fix.
3411
3412 2002-10-10 Steve Youngs <youngs@xemacs.org>
3413
3414 * browse-url.el (browse-url-mozilla-new-window-is-tab): New.
3415 (browse-url-mozilla): Use it.
3416
3417 2002-10-11 Miles Bader <miles@gnu.org>
3418
3419 * vc-cvs.el (vc-cvs-parse-entry): Don't barf when an `Entries'
3420 files contains an invalid timestamp.
3421
3422 2002-10-11 Simon Josefsson <jas@extundo.com>
3423
3424 * mail/sendmail.el (mail-envelope-from): New option `header' to
3425 use RFC 2822 From: header as the envelope address.
3426 (mail-envelope-from): New function, this should be used instead of
3427 looking at the `mail-envelope-from' variable.
3428 (sendmail-send-it): Use it.
3429
3430 * mail/smtpmail.el (smtpmail-via-smtp): Use it.
3431
3432 2002-10-11 Andre Spiegel <spiegel@gnu.org>
3433
3434 * dired.el (dired-insert-directory): Fix check for indentation
3435 from ls --dired.
3436
3437 * vc.el (vc-dired-reformat-line): As a temporary fix, remove all text
3438 properties from the reformatted line.
3439
3440 2002-10-10 Stefan Monnier <monnier@cs.yale.edu>
3441
3442 * textmodes/paragraphs.el (forward-paragraph): Keep track of
3443 remaining paragraphs to skip more carefully.
3444
3445 * add-log.el (add-change-log-entry): Don't call find-file at all
3446 if we're already in the proper buffer.
3447 (change-log-resolve-conflict): New fun.
3448 (change-log-mode): Use it and use define-derived-mode.
3449 (change-log-merge): Allow other-log to be a buffer.
3450 Don't add a \n if there are already enough \n's.
3451
3452 * finder-inf.el, subdirs.el, cus-load.el: Remove.
3453
3454 * finder.el ("finder-inf"): Don't fail if the file is absent.
3455
3456 * cus-dep.el (custom-make-dependencies): Don't use find-file.
3457 Use feature names rather than file names if applicable.
3458
3459 * cus-edit.el (customize-mode): New command.
3460
3461 * custom.el (custom-group-of-mode): New fun.
3462 (custom-load-symbol): Don't use preloaded-file-list now that
3463 load-history is always complete. Don't look up the expanded file
3464 name in load-history (looked like an XEmacsism).
3465
3466 * smerge-mode.el (smerge-ediff): Autoload.
3467 (smerge-match-conflict): Don't assume as much about smerge-begin-re.
3468 (smerge-resolve-function): New var.
3469 (smerge-resolve): New command.
3470 (smerge-basic-map): Bind it.
3471
3472 2002-10-10 Andre Spiegel <spiegel@gnu.org>
3473
3474 * vc-cvs.el (vc-cvs-parse-entry): Parse the time stamp found in
3475 CVS/Entries, rather than comparing it textually.
3476
3477 2002-10-10 Markus Rost <rost@math.ohio-state.edu>
3478
3479 * international/encoded-kb.el: Add `provide' call.
3480
3481 2002-10-09 David Kastrup <David.Kastrup@t-online.de>
3482
3483 * calc/calc-alg.el (calcFunc-ln): In symbolic manipulations,
3484 ln(-1) should be i*pi, not pi.
3485
3486 2002-10-09 Markus Rost <rost@math.ohio-state.edu>
3487
3488 * vc-cvs.el (vc-cvs-registered): In the autoload version use load
3489 instead of require to avoid loops when loaddefs.el is loaded after
3490 vc-cvs.el.
3491
3492 * cus-edit.el (Custom-reset-current): Don't test for default-boundp.
3493 (Custom-reset-saved): Don't test for saved-value.
3494
3495 2002-10-08 Stefan Monnier <monnier@cs.yale.edu>
3496
3497 * vc.el (vc-find-version): Use the new backend op `find-version'.
3498 (vc-default-find-version): Provide the new backend op `find-version'
3499 in terms of the old `checkout' op.
3500
3501 * vc-rcs.el (vc-rcs-find-version): New fun.
3502 (vc-rcs-checkout): Remove `workfile' arg and simplify.
3503
3504 * vc-sccs.el (vc-sccs-find-version): New fun.
3505 (vc-sccs-checkout): Remove `workfile' arg and simplify.
3506
3507 * vc-cvs.el (vc-cvs-find-version): New fun.
3508
3509 2002-10-08 John Paul Wallington <jpw@shootybangbang.com>
3510
3511 * info.el (Info-next-menu-item, Info-last-menu-item)
3512 (info-emacs-manual): Add docstrings.
3513 (Info-index): Use `string-to-number' instead of `string-to-int'.
3514
3515 2002-10-08 Kenichi Handa <handa@m17n.org>
3516
3517 * international/ucs-tables.el (ucs-translation-table-for-decode):
3518 Define it as a translation-table.
3519
3520 2002-10-07 Richard M. Stallman <rms@gnu.org>
3521
3522 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
3523
3524 * progmodes/compile.el (grep-compute-defaults): Set the standard-value
3525 properties of the variables being initialized.
3526
3527 * thingatpt.el (thing-at-point-url-path-regexp): Doc fix.
3528
3529 2002-10-07 Kim F. Storm <storm@cua.dk>
3530
3531 * emulation/cua-base.el (cua-normal-cursor-color):
3532 Fixed initialization to make "Erase Customization" work.
3533
3534 2002-10-07 Stefan Monnier <monnier@cs.yale.edu>
3535
3536 * vc.el (vc-maybe-resolve-conflicts): Always call vc-resolve-conflicts
3537 in case some other package redefined it.
3538 (vc-resolve-conflicts): Make it into an alias for smerge-ediff.
3539
3540 * textmodes/fill.el (fill-paragraph): Go to BOL before calling
3541 forward-paragraph to make sure its return value is meaningful.
3542
3543 2002-10-06 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
3544
3545 * net/tramp.el: Version 2.0.25 released.
3546 (tramp-handle-file-truename): If it's a directory,
3547 append slash only if result doesn't end in a slash already.
3548 (tramp-handle-file-truename): Restructure logic. If list of steps
3549 is nil, return "/" as the real name.
3550 (tramp-completion-mode): Add "\\(" and "\\)". Otherwise,
3551 `match-string' doesn't make sense. From Michael Albinus.
3552 (tramp-host-with-port-regexp): New defcustom. Equal to previous
3553 `tramp-host-regexp'. From Michael Albinus.
3554 (tramp-host-regexp): Taken off hashes in host names. Otherwise,
3555 scanning files like .rhosts would take comments as host names.
3556 From Michael Albinus.
3557 (tramp-file-name-structure, tramp-multi-file-name-hop-structure):
3558 Replace `tramp-host-regexp' by `tramp-host-with-port-regexp'.
3559 From Michael Albinus.
3560 (tramp-action-terminal): New function.
3561 (tramp-terminal-prompt-regexp): New variable, matches "tset" prompts.
3562 (tramp-actions-before-shell): Use them.
3563 (tramp-handle-shell-command): Logic error. From Ivan
3564 Zakharyaschev <imz@altlinux.org>.
3565
3566 2002-10-06 Markus Holmberg <markush@acc.umu.se> (tiny change)
3567
3568 * thingatpt.el (thing-at-point-uri-schemes): New variable.
3569 (thing-at-point-url-regexp): Use it.
3570
3571 2002-10-06 Glenn Morris <gmorris@ast.cam.ac.uk>
3572
3573 * progmodes/fortran.el (fortran-beginning-do): Ignore labelled DO
3574 loops.
3575
3576 2002-10-05 Stefan Monnier <monnier@cs.yale.edu>
3577
3578 * vc.el (vc-log-mode-map): Explicitly inherit from text-mode.
3579 (vc-maybe-resolve-conflicts): Don't check smerge-mode and smerge-ediff.
3580 (vc-print-log): Don't check log-view-mode.
3581 (vc-default-show-log-entry): Don't check log-view-goto-rev.
3582 (vc-log-mode): Remove.
3583 (vc-log-edit): Don't check log-edit.
3584
3585 2002-10-04 Stefan Monnier <monnier@cs.yale.edu>
3586
3587 * vc-cvs.el (vc-cvs-show-log-entry):
3588 * vc-rcs.el (vc-rcs-show-log-entry): Delete.
3589
3590 * smerge-mode.el (smerge-ediff): Add name-{mine,other,base} args.
3591
3592 2002-10-04 Markus Rost <rost@math.ohio-state.edu>
3593
3594 * vc.el (vc-default-show-log-entry): Fix typo.
3595
3596 2002-10-04 Steven Tamm <steventamm@mac.com>
3597
3598 * term/mac-win.el: Add lines to handle the new [return] event.
3599
3600 2002-10-03 Stefan Monnier <monnier@cs.yale.edu>
3601
3602 * textmodes/fill.el (fill-paragraph): Give up if there's no
3603 paragraph at or after point.
3604
3605 * textmodes/paragraphs.el (forward-paragraph): Return the steps left.
3606
3607 * vc.el (vc-print-log): Unconditionally use `show-log-entry'.
3608 (vc-default-show-log-entry): New fun.
3609
3610 * subr.el (read-key-auxiliary-map, read-key): Remove.
3611 (read-quoted-char): Undo the `read-key' change of 2002-06-23.
3612
3613 2002-10-03 Markus Rost <rost@math.ohio-state.edu>
3614
3615 * progmodes/ada-stmt.el (ada-stmt-add-to-ada-menu): Handle the
3616 menu pseudo-keys generated by easymenu which are lowercase in
3617 Emacs 21.4.
3618
3619 * progmodes/ada-xref.el
3620 (ada-xref-update-project-menu,ada-add-ada-menu): Ditto.
3621
3622 2002-10-03 John Paul Wallington <jpw@shootybangbang.com>
3623
3624 * frame.el (delete-frame-hook): Variable alias for
3625 `delete-frame-functions'. Mark obsolete.
3626
3627 2002-10-02 Stefan Monnier <monnier@cs.yale.edu>
3628
3629 * textmodes/outline.el (outline-1, outline-2, outline-3, outline-4)
3630 (outline-5, outline-6, outline-7, outline-8): New faces.
3631 (outline-font-lock-faces, outline-font-lock-levels): New vars.
3632 (outline-font-lock-face): New fun.
3633 (outline-font-lock-keywords): Use it.
3634 (outline-font-lock-level): Remove.
3635 (outline-mode, outline-next-preface, outline-next-heading)
3636 (outline-previous-heading, outline-next-visible-heading):
3637 Use shy group.
3638 (outline-level) <var>: Update calling convention.
3639 (outline-level) <fun>: Take advantage of it.
3640 (outline-demote): Don't assume the match-data is still uptodate.
3641 (outline-up-heading): Simplify and make sure the match data is
3642 properly set at the end.
3643
3644 2002-10-02 Markus Rost <rost@math.ohio-state.edu>
3645
3646 * progmodes/sh-script.el (sh-alias-alist): Use append instead of
3647 nconc.
3648
3649 * startup.el (normal-top-level): Reset standard-value property of
3650 `user-full-name' here.
3651
3652 2002-10-02 Per Abrahamsen <abraham@dina.kvl.dk>
3653
3654 * wid-edit.el (widget-default-get): Change to return external
3655 value.
3656 (widget-choice-action): Update caller.
3657 (widget-editable-list-entry-create): Update caller.
3658
3659 * wid-edit.el (widget-types-copy): New function.
3660 (default): Added :copy keyword.
3661 (menu-choice): Ditto.
3662 (checklist): Ditto.
3663 (radio-button-choice): Ditto.
3664 (editable-list): Ditto.
3665 (group): Ditto.
3666 (widget-copy): New function.
3667 (widget-create-child): Use it.
3668 (widget-create-child-value): Use it.
3669
3670 2002-10-01 Bill Wohler <wohler@newt.com>
3671
3672 * mail/mh-comp.el, mail/mh-e.el, mail/mh-funcs.el,
3673 mail/mh-mime.el, mail/mh-pick.el, mail/mh-seq.el,
3674 mail/mh-utils.el, mail/mh-xemacs-compat.el, mail/reply2.pbm,
3675 mail/reply2.xpm, toolbar/execute.pbm, toolbar/execute.xpm,
3676 toolbar/page-down.pbm, toolbar/page-down.xpm, toolbar/refile.pbm,
3677 toolbar/refile.xpm, toolbar/repack.pbm, toolbar/repack.xpm,
3678 toolbar/rescan.pbm, toolbar/rescan.xpm, toolbar/show.pbm,
3679 toolbar/show.xpm, toolbar/widen.pbm, toolbar/widen.xpm:
3680 Upgraded to mh-e version 6.1.1. Full ChangeLog available in
3681 http://prdownloads.sourceforge.net/mh-e/mh-e-6.1.tgz?download .
3682 There were no user-visible changes in 6.1.1 from 6.1--only the
3683 section of the Makefile that installs the files into Emacs was changed.
3684
3685 2002-10-01 Stefan Monnier <monnier@cs.yale.edu>
3686
3687 * pcvs.el (cvs-mode-find-file): Look up font-lock-face so it also
3688 works when font-lock is turned off.
3689
3690 * jit-lock.el (jit-lock-fontify-now): Don't widen.
3691 Let the jit-lock-functions do it if they want to.
3692
3693 2002-10-01 Juanma Barranquero <lektu@terra.es>
3694
3695 * eshell/esh-module.el (eshell-load-defgroups):
3696 Add "no-byte-compile: t" to subdirs.el.
3697
3698 * makefile.w32-in (update-subdirs-CMD): Likewise.
3699
3700 * forms-d2.el:
3701 * forms-pass.el:
3702 * generic-x.el:
3703 * patcomp.el:
3704 * paths.el:
3705 * version.el:
3706 * international/mule-conf.el:
3707 * language/czech.el:
3708 * language/devanagari.el:
3709 * language/english.el:
3710 * language/georgian.el:
3711 * language/greek.el:
3712 * language/hebrew.el:
3713 * language/japanese.el:
3714 * language/korean.el:
3715 * language/lao.el:
3716 * language/misc-lang.el:
3717 * language/romanian.el:
3718 * language/slovak.el:
3719 * language/thai.el:
3720 * language/utf-8-lang.el:
3721 * emacs-lisp/cl-specs.el:
3722 * eshell/esh-maint.el:
3723 * mail/blessmail.el:
3724 * play/bruce.el:
3725 * term/apollo.el:
3726 * term/AT386.el:
3727 * term/bobcat.el:
3728 * term/internal.el:
3729 * term/iris-ansi.el:
3730 * term/keyswap.el:
3731 * term/linux.el:
3732 * term/lk201.el:
3733 * term/news.el:
3734 * term/vt102.el:
3735 * term/vt125.el:
3736 * term/vt200.el:
3737 * term/vt201.el:
3738 * term/vt220.el:
3739 * term/vt240.el:
3740 * term/vt300.el:
3741 * term/vt320.el:
3742 * term/vt400.el:
3743 * term/vt420.el:
3744 * term/wyse50.el: Add "no-byte-compile: t" in first line.
3745
3746 2002-10-01 Kenichi Handa <handa@m17n.org>
3747
3748 * international/utf-16.el: Don't provide utf-16.
3749
3750 * international/utf-8.el (ccl-decode-mule-utf-8):
3751 Remove unnecessary line.
3752
3753 2002-09-30 Kenichi Handa <handa@m17n.org>
3754
3755 * language/thai.el (thai-tis620): Add `mime-charset' property.
3756
3757 * language/indian.el: Don't register "ISO10646.*-1" in
3758 font-ccl-encoder-alist.
3759
3760 * language/cyrillic.el (ccl-decode-koi8): Refer to
3761 ucs-translation-table-for-decode.
3762 (ccl-decode-koi8-u): Likewise.
3763 (ccl-decode-alternativnyj): Likewise.
3764 (cyrillic-koi8): Put `dependency' property.
3765 (koi8-u): Likewise.
3766 (cyrillic-alternativnyj): Likewise.
3767
3768 * international/utf-8.el (ucs-mule-to-mule-unicode): Don't define
3769 this translation-table name here.
3770 (utf-translation-table-for-encode): New translation-table name.
3771 (utf-fragmentation-table): Renamed from utf-8-fragmentation-table.
3772 (utf-defragmentation-table): New variable.
3773 (ucs-mule-cjk-to-unicode): Renamed from utf-8-subst-rev-table.
3774 (utf-subst-table-for-encode): New translation-table name.
3775 (ucs-unicode-to-mule-cjk): Renamed from utf-8-subst-table.
3776 (utf-subst-table-for-decode): New translation-table name.
3777 (utf-fragment-on-decoding): Renamed from
3778 utf-8-fragment-on-decoding. Correctly handle the case that
3779 unify-8859-on-encoding-mode is off. Handle mule-utf-16-le and
3780 mule-utf-16-be too.
3781 (utf-translate-cjk): Renamed from utf-8-translate-cjk.
3782 Handle mule-utf-16-le and mule-utf-16-be too.
3783 (ccl-decode-mule-utf-8): Refer to utf-translation-table-for-decode
3784 and utf-subst-table-for-decode.
3785 (ccl-encode-mule-utf-8): Refer to utf-translation-table-for-encode
3786 and utf-subst-table-for-encode.
3787 (mule-utf-8): Fix `safe-charsets' property, put `dependency' property.
3788
3789 * international/utf-8-subst.el: Setup ucs-unicode-to-mule-cjk and
3790 ucs-mule-cjk-to-unicode, not utf-8-subst-table and
3791 utf-8-subst-rev-table.
3792
3793 * international/utf-16.el (utf-16-decode-ucs): Look up
3794 utf-subst-table-for-decode. Fix for the case that the looking up
3795 succeeds.
3796 (ccl-decode-mule-utf-16-le): Translate characters by
3797 utf-translation-table-for-decode.
3798 (ccl-decode-mule-utf-16-be): Likewise.
3799 (ccl-encode-mule-utf-16-le): Look up utf-subst-table-for-encode
3800 at first. Translate characters by utf-translation-table-for-encode.
3801 (ccl-encode-mule-utf-16-be): Likewise.
3802 (mule-utf-16-le, mule-utf-16-be): Add `dependency' property.
3803
3804 * loadup.el: Preload international/utf-16. Don't call ucs-unify-8859.
3805
3806 * international/ucs-tables.el: Don't bind
3807 utf-8-translation-table-for-decode while setting up
3808 ucs-mule-8859-to-ucs-table, etc. Add `depenency' property to
3809 iso-8859-* coding systems.
3810 (ucs-unify-8859): Arguments changed to FOR-ENCODE and FOR-DECODE.
3811 If FOR-DECODE is non-nil, make ucs-mule-8859-to-mule-unicode
3812 populate the translation table named
3813 ucs-translation-table-for-decode. If FOR-ENCODE is non-nil, make
3814 ucs-mule-to-mule-unicode populates the translation table named
3815 utf-translation-table-for-encode. Call register-char-codings for
3816 mule-utf-16-be and mule-utf-16-le too.
3817 (ucs-fragment-8859): Arguments changed to FOR-ENCODE and
3818 FOR-DECODE. If FOR-DECODE is non-nil, make the translation table
3819 named ucs-translation-table-for-decode vacant. If FOR-ENCODE is
3820 non-nil, make a proper char-table populates the translation table
3821 name utf-translation-table-for-encode. Call register-char-codings
3822 for all mule-utf-* to to reset their status to the origianl.
3823 (unify-8859-on-encoding-mode): Call ucs-unify-8859 and
3824 ucs-fragment-8859 with fixed arguments. Set the version to 21.3.
3825 (unify-8859-on-decoding-mode): Likewise. Remove dependency.
3826 (ccl-encode-unicode-font): Delete.
3827 (ucs-tables-unload-hook): Delete.
3828
3829 * international/mule.el (decode-char): Refer to the translation
3830 hash table named utf-subst-table-for-decode. Refer to the
3831 translation table named utf-translation-table-for-decode instead
3832 of utf-8-translation-table-for-decode.
3833 (encode-char): Refer to the translation hash table named
3834 utf-subst-table-for-encode. Refer to the translation table named
3835 utf-translation-table-for-encode instead of
3836 utf-8-translation-table-for-encode.
3837
3838 * international/mule-diag.el (describe-coding-system):
3839 Describe `dependency' property.
3840
3841 * international/mule-conf.el (emacs-mule): Add property `composition'.
3842
3843 * international/fontset.el (ucs-mule-to-mule-unicode): Define this
3844 translation table name here.
3845 (ucs-mule-cjk-to-unicode): New translation table name.
3846 (ccl-encode-unicode-font): Merge the code in ucs-tables.el.
3847 (font-ccl-encoder-alist): Change the font registry pattern to
3848 "ISO10646.*-*".
3849
3850 2002-09-30 Colin Walters <walters@gnu.org>
3851
3852 * calc/calc-stuff.el (calc-flush-caches): Add optional arg
3853 `inhibit-msg'.
3854
3855 * calc/calc-prog.el (calc-kbd-report, calc-kbd-query): Don't bind
3856 `executing-kbd-macro' and `defining-kbd-macro'.
3857
3858 * calc/calc-ext.el (calc-reset): Don't bind `executing-kbd-macro'.
3859 Call `calc-flush-caches' with inhibit-msg arg.
3860 (calc-change-mode): Remove extra arg for `calc-save-modes'.
3861
3862 * calc/calc-mode.el (calc-save-modes): Remove `quiet' arg.
3863 Don't bind `executing-kbd-macro'.
3864
3865 2002-09-29 Noah Friedman <friedman@splode.com>
3866
3867 * subr.el (read-key): Use read-key-auxiliary-map, not read-key-aux-map.
3868
3869 2002-09-29 Richard M. Stallman <rms@gnu.org>
3870
3871 * startup.el (user-mail-address): Initialize to a useful value
3872 once Emacs is started up; initialize to "" at loadup time.
3873 (command-line): "", not nil, means user-mail-address not set yet.
3874
3875 2002-09-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
3876
3877 * net/tramp.el: Version 2.0.24 released.
3878 (tramp-methods, tramp-completion-function-alist):
3879 Rename "*-old" methods to "*_old". From Michael Albinus.
3880 (tramp-completion-function-alist):
3881 Use `tramp-completion-function-alist-ssh' for the "fcp" method.
3882 From Michael Albinus.
3883 (tramp-default-method-alist): Use "su" for "root@localhost".
3884 (tramp-host-regexp): Allow "#" for "host#port" kludge.
3885 (tramp-ange-ftp-file-name-p): If METHOD is nil, find the right
3886 default method. Require additional args USER and HOST for this.
3887 Callers changed.
3888 (tramp-handle-file-local-copy): More local bindings. Bind results
3889 of tramp-get-{remote,local}-{de,en}coding earlier to avoid nasty
3890 "are you awake" problem.
3891 (tramp-action-password): Protect against clobbered match data.
3892 (tramp-open-connection-setup-interactive-shell): Explicitly set
3893 tramp-last-cmd-time before invoking tramp-send-command the first
3894 time. Otherwise, tramp-send-command would issue "echo are you
3895 awake" right at the first time, which is not what we want.
3896 Reported by Douglas Gray Stephens.
3897 (tramp-find-inline-encoding): Don't redirect stdout to
3898 /dev/null to avoid "chmode go-rwx" operation from "mimencode
3899 >/dev/null" as root(!), and to check the output of the decoding
3900 command.
3901 (tramp-maybe-open-connection): Don't send "are you awake" if
3902 process has died.
3903
3904 2002-09-29 Colin Walters <walters@gnu.org>
3905
3906 * calc/calc.el (calc-dispatch-map): Actually set to keymap.
3907
3908 2002-09-29 Mike Williams <mdub@bigfoot.com>
3909
3910 * textmodes/sgml-mode.el (sgml-guess-indent): Handle tabs correctly.
3911
3912 2002-09-29 Richard M. Stallman <rms@gnu.org>
3913
3914 * custom.el (defcustom): Doc fix.
3915
3916 2002-09-28 Richard M. Stallman <rms@gnu.org>
3917
3918 * loadhist.el (unload-feature): When undefining a variable,
3919 delete its buffer-local bindings.
3920
3921 2002-09-28 Luc Teirlinck <teirllm@mail.auburn.edu>
3922
3923 * subr.el (remove-yank-excluded-properties): Fix bugs in
3924 handling of category properties.
3925
3926 2002-09-28 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3927
3928 * ps-print.el (ps-print-emacs-type): Error if ps-print is
3929 activated in Epoch, inLucid or in Emacs v19 or lesser.
3930 Value can no longer be `lucid'.
3931 (ps-print-version): New version number (6.5.8).
3932 (faces): Never do (require 'faces).
3933
3934 2002-09-28 Simon Josefsson <jas@extundo.com>
3935
3936 * mail/smtpmail.el (smtpmail-via-smtp): Only negotiate starttls on
3937 streams that were opened using starttls.
3938
3939 2002-09-28 Paul Reilly <pmr@pajato.com>
3940
3941 * files.el (auto-mode-alist): Add support for Java Enterprise
3942 ARchive (ear/EAR) and Web ARchive (war/WAR) files.
3943
3944 2002-09-28 John Paul Wallington <jpw@shootybangbang.com>
3945
3946 * progmodes/m4-mode.el (m4-font-lock-keywords)
3947 (m4-mode-syntax-table, m4-mode-abbrev-table, m4-m4-buffer)
3948 (m4-m4-region): Doc fixes.
3949
3950 2002-09-27 Stefan Monnier <monnier@cs.yale.edu>
3951
3952 * emacs-lisp/cl-macs.el: Use the new usage-in-docstring syntax.
3953 (cl-push, cl-pop): Remove.
3954 Use pop and push throughout the file instead.
3955 (cl-transform-lambda): Add usage info to docstring if the arglist
3956 is complex.
3957
3958 * emacs-lisp/autoload.el (make-autoload): Add usage info to docstring.
3959 (autoload-print-form): Also quote open-[-in-column 0.
3960
3961 * help-fns.el (help-with-tutorial): Use minibuffer-completion-help.
3962 (help-split-fundoc): Don't support old syntax any more.
3963 (help-add-fundoc-usage): New fun.
3964
3965 * emacs-lisp/cl-extra.el (cl-push, cl-pop): Remove.
3966 Use pop and push throughout the file instead.
3967 (cl-hash-lookup): Remove.
3968 (cl-make-hash-table, cl-hash-table-p, cl-gethash, cl-puthash)
3969 (cl-remhash, cl-clrhash, cl-maphash, cl-hash-table-count): Simplify.
3970
3971 * emacs-lisp/cl-seq.el (cl-push, cl-pop): Remove.
3972 Use pop and push throughout the file instead.
3973
3974 * emacs-lisp/edebug.el: Don't precompute menu shortcuts during
3975 loading since the current keymaps might be all weird.
3976
3977 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't add properties
3978 to the name since they're added by mode-line-format already.
3979 (define-minor-mode): Run (,mode -1) when needed.
3980
3981 * tar-mode.el (tar-untar-buffer): Handle dir-entries.
3982 (tar-summarize-buffer, tar-mode, tar-extract, tar-copy, tar-expunge)
3983 (tar-alter-one-field, tar-subfile-save-buffer, tar-mode-write-file):
3984 Don't hardcode 1 == point-min.
3985
3986 * abbrev.el (write-abbrev-file): Don't hardcode point-min == 1.
3987
3988 * subr.el (read-key-auxiliary-map): New var.
3989 (read-key): Use it.
3990 (make-temp-file): Make the file have mode 600.
3991 (add-minor-mode): Don't add properties to the name since it's
3992 added by mode-line-format already.
3993 Be more careful with the mode-line-menu entry name.
3994
3995 * userlock.el (ask-user-about-supersession-threat): Don't abort
3996 when the user hits mouse-2.
3997
3998 * register.el (set-register): Use push.
3999 (point-to-register): Set kill-buffer-hook in this buffer.
4000 (register-swap-out): Use dolist.
4001 (kill-buffer-hook): Don't change globally.
4002
4003 * server.el (server-select-display): New function.
4004 (server-process-filter): Add support for `-display' and `-eval' args.
4005 (server-visit-files): Use save-current-buffer, push, and dolist.
4006 Add server-kill-buffer to kill-buffer-hook.
4007 (kill-buffer-hook): Don't modify globally.
4008 (server-switch-buffer): Be a bit more careful with multiple displays.
4009 (server-socket-name): Always use /tmp and non-qualified hostname.
4010
4011 * uniquify.el (uniquify-rationalize-file-buffer-names):
4012 Add to kill-buffer-hook for buffers with conflict.
4013 (rename-buffer): Check kill-buffer-hook to see if there was a conflict.
4014 (uniquify-delay-rationalize-file-buffer-names): Remove useless check.
4015 (kill-buffer-hook): Don't change globally.
4016
4017 2002-09-27 Stefan Monnier <monnier@cs.yale.edu>.
4018
4019 * calc/calc.el (calc-bug-address, calc-scan-for-dels, calc-stack)
4020 (calc-stack-top, calc-always-load-extensions)
4021 (calc-line-numbering, calc-line-breaking, calc-display-just)
4022 (calc-display-origin, calc-number-radix, calc-leading-zeros)
4023 (calc-group-digits, calc-group-char, calc-point-char)
4024 (calc-frac-format, calc-prefer-frac, calc-hms-format)
4025 (calc-date-format, calc-float-format, calc-complex-format)
4026 (calc-full-float-format, calc-complex-mode, calc-infinite-mode)
4027 (calc-display-strings, calc-matrix-just, calc-break-vectors)
4028 (calc-full-vectors, calc-full-trail-vectors, calc-vector-commas)
4029 (calc-vector-brackets, calc-matrix-brackets, calc-language)
4030 (calc-language-option, calc-function-open, calc-function-open)
4031 (calc-function-close, calc-language-output-filter)
4032 (calc-language-input-filter, calc-radix-formatter)
4033 (calc-left-label, calc-right-label, calc-word-size)
4034 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
4035 (calc-display-raw, calc-internal-prec, calc-inverse-flag)
4036 (calc-hyperbolic-flag, calc-keep-args-flag, calc-angle-mode)
4037 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
4038 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
4039 (calc-window-height, calc-display-trail, calc-show-selections)
4040 (calc-use-selections, calc-assoc-selections)
4041 (calc-display-working-message, calc-auto-why, calc-timing)
4042 (calc-display-sci-high, calc-display-sci-low, calc-other-modes)
4043 (calc-other-modes, calc-Y-help-msgs, calc-loaded-settings-file):
4044 Make into real defvars.
4045 (calc-mode-var-list): Delete.
4046 (calc-mode-save-mode, calc-standard-date-formats)
4047 (calc-autorange-units, calc-was-keypad-mode, calc-full-mode)
4048 (calc-user-parse-tables, calc-gnuplot-default-device)
4049 (calc-gnuplot-default-output, calc-gnuplot-print-device)
4050 (calc-gnuplot-print-output, calc-gnuplot-geometry)
4051 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
4052 (calc-invocation-macro, calc-show-banner): Make into defvars,
4053 taken from `calc-mode-var-list'.
4054 (calc-emacs-type-epoch, calc-emacs-type-19)
4055 (calc-emacs-type-lucid, calc-emacs-type-gnu19): Make into defvars.
4056 (calc-version, calc-version-date, calc-trail-pointer)
4057 (calc-trail-overlay, calc-undo-list, calc-redo-list)
4058 (calc-main-buffer, calc-trail-buffer, calc-why, calc-next-why)
4059 (calc-inverse-flag, calc-hyperbolic-flag, calc-keep-args-flag)
4060 (calc-last-kill, calc-previous-alg-entry, calc-dollar-values)
4061 (calc-dollar-used, calc-hashes-used, calc-quick-prev-results)
4062 (calc-said-hello, calc-executing-macro, calc-any-selections)
4063 (calc-help-phase, calc-full-help-flag, calc-refresh-count)
4064 (calc-display-dirty, calc-prepared-composition)
4065 (calc-selection-cache-default-entry, calc-embedded-info)
4066 (calc-embedded-active, calc-standalone-flag, var-EvalRules)
4067 (math-eval-rules-cache-tag, math-radix-explicit-format)
4068 (math-expr-function-mapping, math-expr-variable-mapping)
4069 (math-read-expr-quotes, math-working-step, math-working-step-2)
4070 (var-i, var-pi, var-e, var-phi, var-gamma, var-Modes): Make into
4071 defvars, from toplevel setq.
4072 (calc-mode-map): Set up keymap in more modern fashion.
4073 (calc-dispatch-map): Ditto.
4074 (calc-command-flags, calc-final-point-line)
4075 (calc-final-point-column): Defvar.
4076 (calc-do): Use `save-current-buffer' instead of `save-excursion'.
4077 (sel-mode): Defvar.
4078 (calc-any-evaltos): Ditto.
4079 (calc-buffer, calc-prev-char, calc-prev-prev-char)
4080 (calc-digit-value): Ditto.
4081 (math-eval-rules-cache, math-eval-rules-cache-other): Ditto.
4082 (math-sub-bignum): Bind `diff'.
4083 (calc-selection-cache-entry): Defvar.
4084 (calc-count-lines): Reference `pos' instead of `newpos'.
4085
4086 2002-09-27 Simon Josefsson <jas@extundo.com>
4087
4088 * mail/mail-hist.el (mail-hist-next-input): Fix docstring.
4089
4090 2002-09-26 Richard M. Stallman <rms@gnu.org>
4091
4092 * mail/unrmail.el (unrmail): Do the work directly,
4093 without actually selecting the messages in the from file.
4094 (unrmail-unprune): New subroutine.
4095
4096 * files.el (backup-buffer): Bind local var MODES.
4097 Don't use renaming for a suid or sgid file.
4098 Use backup-buffer-copy to do copying.
4099 (backup-buffer-copy): New subroutine.
4100 Clear suid and sgid bits for the copy.
4101
4102 2002-09-26 Edward M. Reingold <reingold@emr.cs.iit.edu>
4103
4104 * calendar/solar.el (solar-equinoxes-solstices):
4105 Use time properly adjusted for DST in the result.
4106
4107 2002-09-26 Richard M. Stallman <rms@gnu.org>
4108
4109 * follow.el (follow-generic-filter): Simply bind deactivate-mark.
4110 Bind inhibit-read-only; don't mess with buffer-read-only.
4111
4112 * speedbar.el (speedbar-refresh): Simply bind deactivate-mark.
4113
4114 2002-09-26 Luc Teirlinck <teirllm@mail.auburn.edu>
4115
4116 * ielm.el (inferior-emacs-lisp-mode): Treat the header as
4117 output, if comint-use-prompt-regexp-instead-of-fields is nil.
4118
4119 2002-09-26 John Paul Wallington <jpw@shootybangbang.com>
4120
4121 * ibuffer.el (ibuffer-update): Call `minibufferp' with argument
4122 instead of within `with-current-buffer'.
4123
4124 2002-09-26 Stephen Eglen <stephen@gnu.org>
4125
4126 * iswitchb.el (iswitchb-completions): Test that
4127 iswitchb-common-match-string is a string, before printing common
4128 completions.
4129
4130 2002-09-25 Stefan Monnier <monnier@cs.yale.edu>
4131
4132 * server.el: Use built-in network primitives.
4133 (server-program, server-previous-string): Remove.
4134 (server-previous-strings): New var.
4135 (server-socket-name): New var.
4136 (server-log): Minor change to the output format.
4137 (server-sentinel): Clean up global state when a client disconnects.
4138 (server-unquote-arg): New fun.
4139 (server-start): Use server-socket-name and make-network-process.
4140 (server-process-filter): Now talks to the clients directly.
4141 Normalize file name after unquoting and decoding.
4142 (server-buffer-done): Just close the connection.
4143 (server-switch-buffer): Handle the case where all windows are
4144 dedicated or minibuffers.
4145
4146 * font-lock.el (fast-lock-mode, lazy-lock-mode, jit-lock-mode):
4147 Don't bind them variables.
4148 (font-lock-turn-off-thing-lock, font-lock-after-fontify-buffer)
4149 (font-lock-after-unfontify-buffer): Check that the vars are bound.
4150 (font-lock-dont-widen): New var.
4151 (font-lock-default-fontify-region): Use it.
4152
4153 * emacs-lisp/find-func.el (find-library-name):
4154 Correctly find "file.el.gz" from "file.elc" or "file.elc.gz".
4155
4156 2002-09-25 Kenichi Handa <handa@etl.go.jp>
4157
4158 * international/mule-cmds.el (select-safe-coding-system):
4159 Handle safe but rejected default coding systems and unsafe default
4160 coding systems differently.
4161
4162 * international/mule-diag.el (list-character-sets): Use the buffer
4163 name "*Character Set List*", not "*Help*". List also indirectly
4164 supported character sets.
4165 (list-charset-chars): Use the buffer name "*Character List*", not
4166 "*Help*". Display the current charset name in the modeline.
4167 (non-iso-charset-alist): Add mapped charset list for `mac-roman'.
4168 (sort-listed-character-sets): Don't alter the region showing
4169 indirectly supported charsets.
4170
4171 2002-09-24 Simon Josefsson <jas@extundo.com>
4172
4173 * mail/mail-extr.el (mail-extr-ignore-single-names): Change default.
4174 (mail-extract-address-components): Doc fix.
4175
4176 2002-09-24 Markus Rost <rost@math.ohio-state.edu>
4177
4178 * simple.el (edit-and-eval-command): Protect command-history.
4179 (repeat-complex-command): Protect command-history.
4180
4181 2002-09-24 Juanma Barranquero <lektu@terra.es>
4182
4183 * replace.el (occur-find-match): New function.
4184 (occur-next, occur-prev): Use it.
4185
4186 * progmodes/sh-script.el (sh-mark-init): Don't set `occur-buffer'.
4187 (sh-mark-line): Likewise. Use 'occur-target and 'occur-match
4188 instead of 'occur and 'occur-point.
4189
4190 * eshell/em-unix.el (eshell-occur-mode-mouse-goto)
4191 (eshell-poor-mans-grep): Remove references to `occur-buffer'.
4192
4193 2002-09-24 Stefan Monnier <monnier@cs.yale.edu>
4194
4195 * descr-text.el (describe-text-category): Use *Help*.
4196 Don't kill-buffer.
4197 (describe-text-properties, describe-char):
4198 Delay self-inspection test. Use *Help*.
4199 Use syntax-after. Use `pos' rather than (point).
4200 Distinguish the before/after part of a composition.
4201
4202 2002-09-23 Kenichi Handa <handa@etl.go.jp>
4203
4204 * international/quail.el (quail-completion): Be sure to scroll
4205 quail-completion-buf.
4206
4207 2002-09-23 Richard M. Stallman <rms@gnu.org>
4208
4209 * ielm.el (*1): Fix previous change.
4210
4211 2002-09-23 Juanma Barranquero <lektu@terra.es>
4212
4213 * net/tramp.el (tramp-unified-filenames): Autoload it.
4214
4215 2002-09-23 Michael Kifer <kifer@cs.stonybrook.edu>
4216
4217 * ediff-init.el (ediff-get-next-window): Bug fix.
4218
4219 2002-09-22 Oliver Scholz <alkibiades@gmx.de>
4220
4221 * play/gamegrid.el (gamegrid-face): New variable to emulate a
4222 buffer-local default face.
4223 (gamegrid-xbm): New variable; XBM image as a replacement for
4224 `gamegrid-xpm' on Emacsen compiled without XPM-support.
4225 (gamegrid-colorize-glyph): Ported XEmacs-code for the generation
4226 of images to Emacs.
4227 (gamegrid-match-spec): Call `gamegrid-make-image-from-vector' to
4228 convert XEmacs-type image descriptors.
4229 (gamegrid-color-display-p): Remove (use `display-colors-p' instead.)
4230 (gamegrid-make-image-from-vector): New function. Convert XEmacs'
4231 image descriptors.
4232 (gamegrid-display-type): Use Emacs' standard `display-.*-p'
4233 functions to check for display capabilities. Fix the recognition
4234 of image-support in Emacs 21 by this way.
4235 (gamegrid-hide-cursor): Removed.
4236 (gamegrid-setup-default-font): Ported the code from XEmacs to
4237 Emacs: create a new face and assign the variable `gamegrid-face'
4238 to it. Make sure that the face is not higher than the smallest
4239 image used by the game.
4240 (gamegrid-initialize-display): Use `(setq cursor-type nil)'
4241 instead of `gamegrid-hide-cursor'.
4242 (gamegrid-set-face): If `gamegrid-display-mode' is 'glyph, put an
4243 image in the buffer, instead of applying a face. [This is because
4244 Emacs display-tables are not as capable as the display-tables in
4245 XEmacs. Maybe this function should be renamed to reflect the change?]
4246 (gamegrid-init-buffer): If `gamegrid-display-mode' is 'glyph, put
4247 the face held by `gamegrid-face' in an overlay over the whole
4248 buffer to emulate a buffer-local default-face.
4249
4250 2002-09-22 Markus Triska <triska@gmx.at> (iny change)
4251
4252 * play/doctor.el (doctor-doc): Add 2 question words.
4253 (doctor-getnoun): Parse and save the complete object phrase.
4254
4255 2002-09-22 Richard M. Stallman <rms@gnu.org>
4256
4257 * international/mule-cmds.el (select-safe-coding-system): Cope if
4258 default-coding-system gives nil which was then used in `min'.
4259
4260 * mail/sendmail.el (sendmail-send-it): If user's buffer
4261 is unibyte, make tembuf unibyte.
4262
4263 2002-09-22 Kai Gro\e,A_\e(Bjohann <grossjoh@ls6.informatik.uni-dortmund.de>
4264
4265 * net/tramp.el: Version 2.0.22 released.
4266 (tramp-parse-rhosts, tramp-parse-shosts)
4267 (tramp-parse-hosts, tramp-parse-passwd): Apply `push' but
4268 `add-to-list' for performance reasons.
4269 (tramp-get-completion-user-host): Return `nil' in case both `user'
4270 and 'host' are empty (not necessarily `nil'.
4271 (tramp-parse-netrc, tramp-parse-netrc-group): New functions.
4272 (tramp-user-regexp): " \t" are not user regexp characters.
4273 (tramp-completion-handle-file-name-all-completions):
4274 Remove Ange-FTP cmpletion. It has a bug not handling the "/ftp:" prefix
4275 completely, and it returns local completions as well.
4276 (tramp-completion-function-alist-ftp): New constant.
4277 (tramp-completion-function-alist): Add completion function for "ftp".
4278 From Michael Albinus <Michael.Albinus@alcatel.de>.
4279
4280 2002-09-22 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4281
4282 * net/tramp.el: Version 2.0.21 released.
4283 (tramp-handle-file-newer-than-file-p): If mtime of both files is
4284 known, return a useful result. Better error message in case one
4285 is a Tramp file and one isn't.
4286 (tramp-handle-file-local-copy, tramp-handle-write-region)
4287 (tramp-find-shell, tramp-open-connection-telnet)
4288 (tramp-open-connection-rsh, tramp-open-connection-su)
4289 (tramp-open-connection-setup-interactive-shell)
4290 (tramp-post-connection, tramp-maybe-open-connection)
4291 (tramp-method-out-of-band-p): Correct number of args for
4292 `tramp-get-rsh-program' and similar functions.
4293
4294 2002-09-22 Kai Gro\e,A_\e(Bjohann <grossjoh@ls6.informatik.uni-dortmund.de>
4295
4296 * net/tramp.el: Version 2.0.20 released.
4297
4298 2002-09-20 Kai Gro\e,A_\e(Bjohann <grossjoh@ls6.informatik.uni-dortmund.de>
4299
4300 * net/tramp.el (tramp-completion-function-alist): Escape open
4301 paren in docstring.
4302 (tramp-user-regexp, tramp-host-regexp): Allow empty strings.
4303 (tramp-handle-insert-file-contents): Call tramp-message-for-buffer
4304 instead of tramp-message.
4305 (tramp-open-connection-rsh): Handle empty string as user name.
4306 (tramp-open-connection-su): Handle empty string as host name.
4307 Handle nil user name.
4308 (tramp-handle-file-local-copy, tramp-handle-write-region)
4309 (tramp-completion-handle-file-name-all-completions)
4310 (tramp-open-connection-telnet, tramp-open-connection-rsh)
4311 (tramp-open-connection-su, tramp-post-connection)
4312 (tramp-maybe-open-connection, tramp-method-out-of-band-p)
4313 (tramp-get-connection-function, tramp-get-remote-sh)
4314 (tramp-get-rsh-program, tramp-get-rsh-args)
4315 (tramp-get-rcp-program, tramp-get-rcp-args)
4316 (tramp-get-rcp-keep-date-arg, tramp-get-su-program)
4317 (tramp-get-su-args, tramp-get-telnet-program)
4318 (tramp-get-telnet-args): Use `tramp-find-method', perhaps require
4319 additional args USER, HOST.
4320 (tramp-action-password, tramp-open-connection-telnet)
4321 (tramp-open-connection-su, tramp-open-connection-multi)
4322 (tramp-method-out-of-band-p): `tramp-method-out-of-band-p' now
4323 takes USER and HOST arguments, to be able to use
4324 `tramp-find-method'. Update callers.
4325 (tramp-find-method): New function.
4326
4327 2002-09-20 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4328
4329 * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
4330 in SWITCHES (by removing it).
4331
4332 2002-09-18 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4333
4334 * net/tramp.el (tramp-file-name-handler): Add `file-remote-p' property.
4335
4336 2002-09-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4337
4338 * net/tramp.el (top-level): Maybe autoload uudecode-decode-region.
4339
4340 2002-09-16 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4341
4342 * net/tramp.el (tramp-bug): Add tramp-methods.
4343
4344 2002-09-16 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4345
4346 * net/tramp.el (tramp-methods): Update docstring:
4347 tramp-encoding-command, tramp-decoding-command,
4348 tramp-encoding-function and tramp-decoding-function are not
4349 parameters anymore.
4350 (tramp-uuencode-region): Autoload it.
4351
4352 2002-09-13 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4353
4354 * net/tramp.el: Version 2.0.19 released.
4355
4356 * net/tramp-uu.el: New file, implements uuencode in Lisp.
4357
4358 * net/tramp.el (tramp-coding-commands):
4359 Use `tramp-uuencode-region' as local encoder for the uuencode based
4360 entries.
4361
4362 2002-09-13 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4363
4364 * net/tramp.el (tramp-handle-write-region): Wrong parens.
4365
4366 2002-09-13 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4367
4368 * net/tramp.el: Version 2.0.18 released.
4369
4370 * net/tramp.el (tramp-perl-decode): Perl changes to accomodate
4371 older versions of Perl. Now tested with 5.004. Suggestion from
4372 Michael Albinus.
4373
4374 2002-09-12 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4375
4376 * net/tramp.el (tramp-find-inline-encoding):
4377 Call tramp-call-local-coding-command with nil for INPUT and OUTPUT.
4378 (tramp-call-local-coding-command): OUTPUT equals nil means to
4379 discard the output. INPUT equals nil means /dev/null.
4380
4381 2002-09-12 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4382
4383 * net/tramp.el (tramp-encoding-shell): Default to environment
4384 variable COMSPEC on Windows.
4385 (tramp-handle-write-region): More debugging output.
4386 (tramp-find-inline-encoding): Ditto.
4387
4388 2002-09-11 Michael Albinus <Michael.Albinus@alcatel.de>
4389
4390 * net/tramp.el (tramp-completion-handle-file-name-all-completions):
4391 Define `result1'.
4392 (tramp-parse-hosts-group): Discard IPv6 entries.
4393
4394 2002-09-11 Kai Gro\e,A_\e(Bjohann <grossjoh@ls6.informatik.uni-dortmund.de>
4395
4396 * net/tramp.el (tramp-post-connection): Only send Perl
4397 mime-encode/decode implementations when using inline method.
4398 (tramp-handle-file-local-copy)
4399 (tramp-handle-write-region, tramp-post-connection)
4400 (tramp-coding-commands, tramp-find-inline-encoding): For the
4401 inline encodings, distinguish between local and remote commands,
4402 instead of between commands and functions. (The local commands
4403 can be functions, too.) If the local host is a Windows machine,
4404 we can't expect the same commands to work there as on the remote host.
4405 (tramp-call-local-coding-command): New function for calling local
4406 encoding and decoding commands.
4407 (tramp-set-remote-encoding, tramp-get-remote-encoding)
4408 (tramp-set-remote-decoding, tramp-get-remote-decoding)
4409 (tramp-set-local-encoding, tramp-get-local-encoding)
4410 (tramp-set-local-decoding, tramp-get-local-decoding): New functions.
4411 (tramp-get-encoding-command, tramp-set-encoding-command)
4412 (tramp-get-decoding-command, tramp-set-decoding-command)
4413 (tramp-get-encoding-function, tramp-set-encoding-function)
4414 (tramp-get-decoding-function, tramp-set-decoding-function):
4415 Old functions, removed.
4416
4417 2002-09-10 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4418
4419 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
4420 Change command to invoke /bin/sh slightly to make it compatible
4421 with the `rc' shell. Suggested by Daniel Pittman.
4422
4423 2002-09-10 Michael Albinus <Michael.Albinus@alcatel.de>
4424
4425 * net/tramp.el (tramp-handle-write-region): Added missing
4426 `)'. Hope it's the right place.
4427
4428 2002-09-09 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4429
4430 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
4431 Do "exec env PS1='$ ' /bin/sh" instead of just "exec /bin/sh" in
4432 order to get a sane shell prompt. If people have ${CWD}, say, in
4433 their shell prompt, then the default login shell might display
4434 something harmless, but the /bin/sh will display a dollar sign
4435 which confused the subsequent prompt recognition.
4436 (tramp-multi-action-password): More debugging output.
4437 (tramp-encoding-shell): Renamed from tramp-sh-program.
4438 More documentation. Default to cmd.exe on Windows NT.
4439 (tramp-encoding-command-switch): New variable. Use instead of
4440 hard-wired "-c" which is only good for /bin/sh.
4441 (tramp-encoding-reads-stdin): New variable. If t, commands are
4442 called like "/bin/sh -c COMMAND <INPUT", if nil, they are called
4443 like "/bin/sh -c COMMAND INPUT", ie the input file is the last arg.
4444 (tramp-multi-sh-program): Always default to tramp-encoding-shell.
4445 (tramp-handle-file-local-copy, tramp-handle-write-region):
4446 Respect tramp-encoding-shell and friends.
4447 (tramp-find-inline-encoding): Use new-style calls for checking if
4448 the local commands work.
4449
4450 2002-09-07 Michael Albinus <Michael.Albinus@alcatel.de>
4451
4452 * net/tramp.el (tramp-methods): Remove `tramp-completion-function'
4453 entries. They are handled now by `tramp-completion-function-alist'.
4454 (tramp-completion-function): Defvar removed. I've never used
4455 it. Hmm.
4456 (tramp-get-completion-function)
4457 (tramp-get-completion-rsh, tramp-get-completion-ssh)
4458 (tramp-get-completion-telnet, tramp-get-completion-su):
4459 Functions removed as well. Not necessary any longer due to extended
4460 customization means.
4461 (tramp-completion-function-alist): New defcustom. Holds all
4462 FUNCTION FILE pairs used for user and host name completion
4463 relevant for METHOD.
4464 (tramp-completion-function-alist-rsh)
4465 (tramp-completion-function-alist-ssh)
4466 (tramp-completion-function-alist-telnet)
4467 (tramp-completion-function-alist-su): Defconst for initializing
4468 `tramp-completion-function-alist'. Unfortunately, mainly UNIX-like
4469 values are known for me until now. Needs to be completed for at
4470 least VMS++ like operating systems.
4471 (tramp-set-completion-function)
4472 (tramp-get-completion-function): New functions for configuration
4473 of `tramp-completion-function-alist'. The old definition of
4474 `tramp-get-completion-function' has been discarded.
4475 (tramp-completion-handle-file-name-all-completions):
4476 Change function call for user/host completion according to definition
4477 in `tramp-completion-function-alist'.
4478 (tramp-parse-passwd): Added exception handling for "root", because
4479 `tramp-get-completion-su' (the previous place for this stuff)
4480 doesn't exist any longer.
4481
4482 2002-09-07 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4483
4484 * net/tramp.el (tramp-enter-password):
4485 Use `tramp-password-end-of-line' to terminate the line.
4486 (tramp-bug): Include new variable `tramp-password-end-of-line'.
4487 (tramp-password-end-of-line): New variable. People who use plink
4488 under Windows might have to issue "\r\n" after the password, but
4489 they need to send just "\n" after the other commands. So this
4490 variable was introduced to complement `tramp-rsh-end-of-line'.
4491 (tramp-wait-for-output, tramp-post-connection): Allow "\r" at end
4492 of line of the output delimiter.
4493
4494 2002-09-06 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4495
4496 * net/tramp.el (tramp-handle-file-local-copy, tramp-find-shell)
4497 (tramp-open-connection-setup-interactive-shell): Add some comments
4498 about Douglas Grey Stephen's suggestions to make Tramp work better
4499 with plink under Windows. I'm not sure what to think of them, but
4500 now I have a guinea pig to try it out on. Said guinea pig is
4501 having other problems, though... Also remove some commented-out code.
4502
4503 2002-09-06 Michael Albinus <Michael.Albinus@alcatel.de>
4504
4505 * net/tramp.el (tramp-get-completion-methods): Algorithm slightly
4506 tuned.
4507 (tramp-get-completion-user-host): Accept user names as they are if
4508 typed until "@".
4509 (tramp-completion-mode): Replace `last-input-char' by modern
4510 `last-input-event'. Check for `event-modifiers'.
4511
4512 2002-09-06 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4513
4514 * net/tramp.el (file-expand-wildcards): Corrected check to see if
4515 advising is necessary.
4516
4517 2002-09-05 Michael Albinus <Michael.Albinus@alcatel.de>
4518
4519 * net/tramp.el (tramp-postfix-single-method-format)
4520 (tramp-postfix-multi-method-format)
4521 (tramp-postfix-multi-hop-format)
4522 (tramp-postfix-user-format): New format strings.
4523 (tramp-postfix-single-method-regexp)
4524 (tramp-postfix-multi-method-regexp)
4525 (tramp-postfix-multi-hop-regexp)
4526 (tramp-postfix-user-regexp)
4527 (tramp-make-multi-tramp-file-format)
4528 (tramp-make-tramp-file-name): Apply them.
4529 (tramp-completion-handle-file-name-all-completions): Fix for
4530 invoking ange-ftp in case of "/ftp:xxx" file names.
4531
4532 2002-09-04 Michael Albinus <Michael.Albinus@alcatel.de>
4533
4534 * net/tramp.el (tramp-prefix-format)
4535 (tramp-postfix-host-format): New format strings.
4536 (tramp-prefix-regexp, tramp-method-regexp)
4537 (tramp-postfix-single-method-regexp)
4538 (tramp-postfix-multi-method-regexp)
4539 (tramp-postfix-multi-hop-regexp)
4540 (tramp-user-regexp, tramp-postfix-user-regexp)
4541 (tramp-host-regexp, tramp-postfix-host-regexp)
4542 (tramp-path-regexp): New atomar regular expressions.
4543 If corresponding format strings exist, derived from them.
4544 (tramp-file-name-structure)
4545 (tramp-multi-file-name-structure)
4546 (tramp-multi-file-name-hop-structure)
4547 (tramp-make-multi-tramp-file-format)
4548 (tramp-completion-mode)
4549 (tramp-completion-dissect-file-name)
4550 (tramp-parse-rhosts-group)
4551 (tramp-parse-shosts-group)
4552 (tramp-parse-hosts-group)
4553 (tramp-parse-passwd-group): Apply these expressions.
4554 (tramp-file-name-structure-unified)
4555 (tramp-file-name-structure-separate)
4556 (tramp-make-tramp-file-format-unified)
4557 (tramp-make-tramp-file-format-separate)
4558 (tramp-make-tramp-file-format)
4559 (tramp-make-tramp-file-user-nil-format-unified)
4560 (tramp-make-tramp-file-user-nil-format-separate)
4561 (tramp-make-tramp-file-user-nil-format)
4562 (tramp-multi-file-name-structure-unified)
4563 (tramp-multi-file-name-structure-separate)
4564 (tramp-multi-file-name-hop-structure-unified)
4565 (tramp-multi-file-name-hop-structure-separate)
4566 (tramp-make-multi-tramp-file-format-unified)
4567 (tramp-make-multi-tramp-file-format-separate): Removed.
4568 (tramp-make-tramp-file-name): Allow partial tramp file
4569 names. Generate tramp file format on-the-fly depending on
4570 parameters. Apply atomar format strings resp expressions.
4571 (tramp-get-completion-methods)
4572 (tramp-get-completion-user-host): Apply `tramp-make-tramp-file-name'.
4573 (tramp-parse-hosts-group): Take all host names and IP addresses
4574 into account.
4575 (tramp-bug): Remove `tramp-make-tramp-file-format'.
4576
4577 2002-09-01 Michael Albinus <Michael.Albinus@alcatel.de>
4578
4579 * net/tramp.el (tramp-methods): Add `tramp-completion-function'
4580 for "su" and "sudo".
4581 (tramp-get-completion-telnet): Implement it.
4582 (tramp-parse-hosts)
4583 (tramp-parse-hosts-group)
4584 (tramp-get-completion-su)
4585 (tramp-parse-passwd)
4586 (tramp-parse-passwd-group): New functions.
4587
4588 2002-08-31 Michael Albinus <Michael.Albinus@alcatel.de>
4589
4590 * net/tramp.el (tramp-completion-mode): Check for `last-input-char'.
4591 (tramp-completion-file-name-handler-alist): Add handler for
4592 `file-exists-p.
4593 (tramp-completion-handle-file-exists-p): New function.
4594 (tramp-completion-handle-file-name-completion): Simplified.
4595 (tramp-completion-dissect-file-name): Regexp's reorganised.
4596 (tramp-completion-handle-file-name-all-completions):
4597 Call completion-function only if `user' or `host' is given.
4598 (tramp-get-completion-user-host): New function.
4599 (tramp-get-completion-rsh)
4600 (tramp-get-completion-ssh): Apply it.
4601
4602 2002-08-29 Michael Albinus <Michael.Albinus@alcatel.de>
4603
4604 * net/tramp.el (tramp-completion-file-name-handler-alist):
4605 Add handler for `expand-file-name'.
4606 (tramp-completion-handle-expand-file-name): New function.
4607
4608 2002-08-26 Michael Albinus <Michael.Albinus@alcatel.de>
4609
4610 * net/tramp.el (tramp-completion-mode): New function.
4611 (tramp-completion-handle-file-name-directory)
4612 (tramp-completion-handle-file-name-all-completions): Apply it.
4613 (tramp-methods): Remove double definition of `ssh1-old' and `ssh2-old'.
4614 (tramp-point-at-eol): New defalias.
4615 (tramp-parse-rhosts-group)
4616 (tramp-parse-shosts-group):: Apply it.
4617
4618 2002-08-25 Michael Albinus <Michael.Albinus@alcatel.de>
4619
4620 * net/tramp.el (tramp-get-completion-methods)
4621 (tramp-get-completion-rsh)
4622 (tramp-get-completion-ssh): Add "[" for Xemacs.
4623 (tramp-completion-file-name-regexp-separate): Expression adapted.
4624 (tramp-completion-file-name-handler-alist): Add handler for
4625 `file-name-directory' and `file-name-nondirectory'.
4626 (tramp-completion-handle-file-name-directory)
4627 (tramp-completion-handle-file-name-nondirectory)
4628 (tramp-completion-run-real-handler): New functions.
4629 (tramp-completion-file-name-handler)
4630 (tramp-completion-handle-file-name-all-completions):
4631 Apply `tramp-completion-run-real-handler'.
4632 (tramp-parse-rhosts)
4633 (tramp-parse-shosts): Use `with-temp-buffer'. `result\e$,1!=\e(B renamed to
4634 `res' (otherwise side effects in XEmacs).
4635
4636 2002-08-24 Michael Albinus <Michael.Albinus@alcatel.de>
4637
4638 * net/tramp.el (tramp-completion-file-name-regexp)
4639 (tramp-completion-file-name-handler-alist)
4640 (tramp-flatten-list)
4641 (tramp-completion-dissect-file-name)
4642 (tramp-get-completion-rsh)
4643 (tramp-parse-rhosts)
4644 (tramp-parse-rhosts-group)
4645 (tramp-get-completion-ssh): Doc string tuned.
4646 (tramp-methods): Doc string and custom type extended for
4647 `tramp-completion-function'.
4648 (tramp-completion-function): Variable added. Is it really used?
4649 Other variables like `tramp-completion-function' aren't used.
4650 (tramp-completion-file-name-handler-alist): Add handler for
4651 `file-name-completion'.
4652 (tramp-completion-handle-file-name-completion): New function.
4653
4654 2002-08-18 Michael Albinus <Michael.Albinus@alcatel.de>
4655
4656 * net/tramp.el (tramp-parse-rhosts)
4657 (tramp-parse-rhosts-group)
4658 (tramp-parse-shosts)
4659 (tramp-parse-shosts-group): New functions.
4660
4661 2002-08-17 Michael Albinus <Michael.Albinus@alcatel.de>
4662
4663 * net/tramp.el (tramp-completion-dissect-file-name)
4664 (tramp-completion-dissect-file-name1): New functions.
4665
4666 2002-08-16 Michael Albinus <Michael.Albinus@alcatel.de>
4667
4668 * net/tramp.el (tramp-get-completion-function)
4669 (tramp-get-completion-rsh)
4670 (tramp-get-completion-ssh)
4671 (tramp-get-completion-telnet): New functions.
4672 (tramp-methods): Add `tramp-completion-function' for all methods.
4673
4674 2002-08-15 Michael Albinus <Michael.Albinus@alcatel.de>
4675
4676 * net/tramp.el (tramp-get-completion-methods): New function.
4677 (tramp-find-default-method): Allow host to be nil (like user).
4678
4679 2002-08-14 Michael Albinus <Michael.Albinus@alcatel.de>
4680
4681 * net/tramp.el (tramp-completion-file-name-regexp-unified)
4682 (tramp-completion-file-name-regexp-separate)
4683 (tramp-completion-file-name-regexp)
4684 (tramp-completion-file-name-handler-alist): New defcustoms.
4685 (tramp-completion-file-name-handler): New function.
4686 Add `tramp-completion-file-name-handler' to `file-name-handler-alist'.
4687 (tramp-run-real-handler): Add `tramp-completion-file-name-handler'
4688 to `inhibit-file-name-handlers'.
4689 (tramp-completion-handle-file-name-all-completions)
4690 (tramp-completion-handle-file-name-completion): New functions.
4691
4692 2002-08-12 Michael Albinus <Michael.Albinus@alcatel.de>
4693
4694 * net/tramp.el (tramp-invoke-ange-ftp): `tramp-disable-ange-ftp'
4695 must be called again after activating `ange-ftp'.
4696 (tramp-ange-ftp-file-name-p): Check for Xemacs.
4697
4698 2002-08-08 Michael Albinus <Michael.Albinus@alcatel.de>
4699
4700 * net/tramp.el (tramp-do-copy-or-rename-file): Don't pass
4701 KEEP-DATE to tramp-invoke-ange-ftp 'rename.
4702 (tramp-handle-write-region): Don't pass LOCKNAME and CONFIRM to
4703 tramp-invoke-ange-ftp 'write-region.
4704 (tramp-handle-set-file-modes): Change order of FILENAME and MODE
4705 passing to tramp-invoke-ange-ftp 'set-file-modes.
4706 (tramp-flatten-list): New function. Maybe this functionality does
4707 exist already elsewhere in the libraries.
4708 (tramp-invoke-ange-ftp): Apply `tramp-flatten-list' to parameter
4709 list in order to avoid nested lists, f.e. when invoked from
4710 `tramp-handle-dired-call-process'.
4711
4712 2002-09-05 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4713
4714 * net/tramp.el (tramp-chunksize): New kluge variable.
4715 (tramp-send-region): If tramp-chunksize is non-nil, send region in
4716 parts and sleep 0.1 seconds between chunks.
4717
4718 2002-09-03 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4719
4720 * net/tramp.el (tramp-handle-insert-directory):
4721 Use `insert-buffer-substring' instead of `insert-buffer', which is not
4722 supposed to be used from Lisp. Remember old point in a variable
4723 instead of using `mark'. Suggestion from Stefan Monnier.
4724 (tramp-unified-filenames): New variable. Use it in default value
4725 of other filename variables.
4726 (file-expand-wildcards): Don't advise unless "[" and "]" are used
4727 in the filename format.
4728
4729 2002-09-01 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4730
4731 * net/tramp.el (tramp-methods): Remove duplicate definition of
4732 ssh1-old and ssh2-old.
4733
4734 2002-09-22 Kai Gro\e,A_\e(Bjohann <grossjoh@ls6.informatik.uni-dortmund.de>
4735
4736 * dired.el (dired-insert-directory): Always add "--dired" to to
4737 SWITCHES for remote files.
4738 * files.el (insert-directory): Comment saying that "--dired"
4739 might be in the SWITCHES.
4740 * net/ange-ftp.el (ange-ftp-ls): Handle "--dired" in LSARGS.
4741 (ange-ftp-insert-directory): Comment explaining "--dired" handling.
4742
4743 2002-09-21 Markus Rost <rost@math.ohio-state.edu>
4744
4745 * mail/mailabbrev.el (mail-abbrev-make-syntax-table): Give %!._-
4746 word constituent syntax.
4747
4748 2002-09-21 Richard M. Stallman <rms@gnu.org>
4749
4750 * cus-dep.el (custom-make-dependencies): Bind to t
4751 around evaluating the def-form.
4752
4753 * custom.el (custom-dont-initialize): New variable.
4754 (custom-declare-variable): Don't init the variable
4755 if custom-dont-initialize is non-nil.
4756
4757 2002-09-21 John Paul Wallington <jpw@shootybangbang.com>
4758
4759 * net/eudc.el (eudc-install-menu): Use `define-key' and
4760 `easy-menu-create-menu' to avoid duplication of menu.
4761
4762 2002-09-20 Kim F. Storm <storm@cua.dk>
4763
4764 * kmacro.el (kmacro-step-edit-query): Use RET to execute rest of
4765 macro and terminate editing.
4766 (kmacro-step-edit-macro): Push previous macro onto ring if changed
4767 by step editing.
4768
4769 2002-09-19 Tom Tromey <tromey@redhat.com>
4770
4771 * play/blackbox.el (bb-right): Respect prefix argument.
4772 (bb-left, bb-up, bb-down): Likewise.
4773
4774 2002-09-19 Richard M. Stallman <rms@gnu.org>
4775
4776 * cus-dep.el (custom-make-dependencies): Fix previous change.
4777
4778 2002-09-19 Juanma Barranquero <lektu@terra.es>
4779
4780 * ielm.el (ielm-eval-input): Call `error-message-string' instead
4781 of the non-existent `ielm-format-error'.
4782
4783 2002-09-19 Stefan Monnier <monnier@cs.yale.edu>
4784
4785 * emacs-lisp/easymenu.el (easy-menu-remove):
4786 * emacs-lisp/ewoc.el (ewoc--node-branch): Add docstring.
4787
4788 * international/mule-diag.el (describe-coding-system):
4789 Remove unused `coding-spec' variable.
4790 (list-input-methods): Be more careful when setting up the help buffer.
4791
4792 * international/ucs-tables.el (unify-8859-on-encoding-mode):
4793 Set init value to t to reflect reality.
4794 (ucs-minibuffer-setup): Use minibuffer-selected-window.
4795
4796 2002-09-18 Stefan Monnier <monnier@cs.yale.edu>
4797
4798 * progmodes/make-mode.el (makefile-cleanup-continuations-p):
4799 Rename to makefile-cleanup-continuations.
4800 (makefile-mode): Use write-file-functions.
4801 (makefile-fill-paragraph): Use match-string-no-properties.
4802 (makefile-fill-paragraph): Use line-end-position.
4803 (makefile-add-log-defun): Simplify.
4804
4805 2002-09-18 Richard M. Stallman <rms@gnu.org>
4806
4807 * dired.el (dired-mark-pop-up): Doc fix.
4808
4809 * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Put the
4810 definition straight into loaddefs.el as well as executing it here.
4811
4812 2002-09-18 Colin Walters <walters@debian.org>
4813
4814 * calc/calc.el (calc-mode): Add font-lock-defontify to
4815 change-major-mode-hook.
4816
4817 2002-09-18 Richard M. Stallman <rms@gnu.org>
4818
4819 * Makefile.in (bootstrap-clean): Use cd to shorten arg strings.
4820 Don't ignore errors in rm line.
4821
4822 * menu-bar.el (menu-bar-search-menu): Nicer help string.
4823
4824 * replace.el (occur-engine-add-prefix): Use 7 spaces.
4825 (occur-engine): Use 7 digits to align tabs in the data.
4826
4827 * emacs-lisp/bytecomp.el (byte-compile-output-docform):
4828 Don't make the definition dynamic if it shares structure
4829 with the arg list.
4830
4831 * gud.el (gud-pdb-marker-regexp): Allow : and \ in file name.
4832 (pdb): In gud-remove, pass down the file name.
4833
4834 * cus-dep.el (custom-make-dependencies): Sort MEMBERS before use.
4835
4836 2002-09-18 Luc Teirlinck <teirllm@mail.auburn.edu>
4837
4838 * ielm.el: (*1, *2, *3): New variables.
4839 (ielm-eval-input): Make temporary buffers current on entry and
4840 exit to the let bindings for *, ** and ***.
4841 (inferior-emacs-lisp-mode): Mention *1, *2 and *3 in the docstring.
4842 Do not overrule global bindings for *, ** and ***.
4843
4844 2002-09-18 Tom Tromey <tromey@redhat.com>
4845
4846 * progmodes/make-mode.el (makefile-fill-paragraph): Find comment
4847 boundaries before filling.
4848
4849 2002-09-18 Stefan Monnier <monnier@cs.yale.edu>
4850
4851 * server.el (server-done): Fix harmlessly wrong arg to save-buffer.
4852 (server-switch-buffer): Only select a different window if
4853 next-buffer is non-nil. Don't switch in a dedicated window.
4854 If next-buffer is already displayed, reuse that window.
4855
4856 * diff-mode.el (diff-mode): Use compilation-minor-mode.
4857 Don't unbind compilation-last-buffer after autoloading compile.el.
4858 Hide the compilation-minor-mode bindings altogether.
4859
4860 2002-09-18 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
4861
4862 * dired.el (dired-insert-directory): Never add "--dired" when
4863 listing remote directories.
4864
4865 2002-09-18 Michael Kifer <kifer@cs.stonybrook.edu>
4866
4867 * ediff-hooks.el: Put back the autoloads (for XEmacs compatibility).
4868
4869 * ediff-init.el: Use defalias instead of fset.
4870
4871 * ediff-util.el: Use defalias instead of fset.
4872
4873 * viper-util.el (viper-chars-in-region): Simplification.
4874
4875 * viper.el (viper-emacs-state-mode-list): Added modes.
4876
4877 2002-09-18 Jonathan Yavner <jyavner@engineer.com>
4878
4879 * emacs-lisp/testcover.el: New file. Uses edebug to instrument a
4880 module of code, with graphical display of poor-coverage spots.
4881
4882 * emacs-lisp/testcover-ses.el: New file. Demonstrates use of
4883 testcover on a interactive module like ses.
4884
4885 * emacs-lisp/testcover-unsafep.el: New file. Demonstrates use of
4886 testcover on a noninteractive module like unsafep.
4887
4888 2002-09-18 Miles Bader <miles@gnu.org>
4889
4890 * diff-mode.el (diff-mode): Don't evaluate `compilation-last-buffer'
4891 unless it's bound.
4892
4893 2002-09-17 Stefan Monnier <monnier@cs.yale.edu>
4894
4895 * server.el (server-log): Add `client' arg.
4896 (server-start): Don't bother canceling the sentinel.
4897 (server-process-filter): Use replace-regexp-in-string and
4898 handle the new &n quoting. Use push. Use server-log's new arg.
4899 Don't output the C-x # message if `nowait'.
4900 (server-buffer-done): Use server-log's new arg.
4901
4902 2002-09-16 Jonathan Yavner <jyavner@engineer.com>
4903
4904 * ses.el: New file.
4905
4906 * emacs-lisp/unsafep.el: New file.
4907
4908 * files.el (auto-mode-alist): Add ".ses" for ses-mode.
4909 (inhibit-quit): This is risky for unsafep, doesn't matter much for
4910 anybody else.
4911 (risky-local-variable-p): New function. Split off from
4912 hack-one-local-variable so unsafep can use it. Add \|-history$ to
4913 the list of disallowed local variable names (malicious user could
4914 stuff a `display' property in there that would be activated when
4915 na\e,Ao\e(Bve user called up the history).
4916
4917 2002-09-16 Markus Rost <rost@math.ohio-state.edu>
4918
4919 * ls-lisp.el (ls-lisp-format-time-list): Fix type and provide :tag's.
4920
4921 2002-09-16 Richard M. Stallman <rms@gnu.org>
4922
4923 * play/gomoku.el (gomoku-move-up, gomoku-move-down):
4924 Use forward-line and move-to-column.
4925
4926 * cus-edit.el (custom-variable-backup-value): New function.
4927 (custom-variable-reset-backup): New function.
4928 (custom-variable-menu): Add item for custom-variable-reset-backup.
4929 (custom-variable-set, custom-variable-reset-saved)
4930 (custom-variable-reset-standard): Call custom-variable-backup-value.
4931
4932 2002-09-16 Stefan Monnier <monnier@cs.yale.edu>
4933
4934 * dired.el (dired-font-lock-keywords): Use regexp-opt.
4935 (dired-move-to-filename): Better message when we fail to find the file.
4936 (dired-sort-toggle): Minor optimization.
4937
4938 2002-09-16 Juanma Barranquero <lektu@terra.es>
4939
4940 * dired-aux.el (dired-add-entry): Add missing argument to
4941 `dired-mark'.
4942
4943 2002-09-16 John Paul Wallington <jpw@shootybangbang.com>
4944
4945 * xscheme.el (scheme-interaction-mode): Doc fix.
4946
4947 * net/eudc.el (eudc-plist-get): Doc fix.
4948
4949 2002-09-16 Kim F. Storm <storm@cua.dk>
4950
4951 * menu-bar.el (menu-bar-last-search-type): New var.
4952 (nonincremental-repeat-search-forward)
4953 (nonincremental-repeat-search-backward): Repeat string or
4954 regexp search depending on menu-bar-last-search-type.
4955 (nonincremental-search-forward, nonincremental-re-search-forward)
4956 (nonincremental-search-backward, nonincremental-re-search-backward):
4957 Set menu-bar-last-search-type to string or regexp.
4958 (nonincremental-repeat-re-search-forward): Removed.
4959 (nonincremental-repeat-re-search-backward): Removed.
4960 (menu-bar-replace-menu): New keymap for "Edit->Replace" submenu.
4961 (menu-bar-i-search-menu): New keymap for "Incremental Search" submenu.
4962 (menu-bar-adv-search-menu): Removed.
4963 (menu-bar-search-menu): Reorganized.
4964 (menu-bar-edit-menu): Added "Replace" submenu.
4965
4966 2002-09-15 Richard M. Stallman <rms@gnu.org>
4967
4968 * scroll-bar.el (scroll-bar-mode): Specify :initialize.
4969
4970 * menu-bar.el (menu-bar-make-mm-toggle): Don't put a quote befor FNAME
4971 when it's not being evaluated.
4972
4973 2002-09-15 Markus Rost <rost@math.ohio-state.edu>
4974
4975 * dired.el (dired-move-to-filename): Fix previous change.
4976
4977 2002-09-14 Kim F. Storm <storm@cua.dk>
4978
4979 * emulation/keypad.el (keypad-setup, keypad-shifted-setup)
4980 (keypad-numlock-setup, keypad-numlock-shifted-setup):
4981 Change `Remove Binding' option to `Unspecified/User-defined'.
4982 (keypad-setup): Enhance explanation of setup type `none'.
4983
4984 2002-09-14 Richard M. Stallman <rms@gnu.org>
4985
4986 * time.el (display-time-mode): Set display-time-load-average here.
4987 (display-time-load-average): Initialize to nil.
4988 (display-time-default-load-average): Add "None" alternative.
4989 (display-time-update): Handle "None" alternative for load-average.
4990
4991 * dired-aux.el (dired-bunch-files): Put the arg FILES
4992 back as it was after temporary destrucive mods.
4993 (dired-add-entry): Use dired-insert-directory to handle indentation.
4994 Explicitly restore the line's marker character.
4995 Preserve the old file name's text properties.
4996 (dired-add-entry-do-indentation): Function deleted.
4997 (dired-relist-file): Doc fix.
4998 (dired-rename-file): Change argument names.
4999 (foo-rename-file): New function.
5000 (dired-do-hardlink): Use dired-hardlink.
5001 (dired-hardlink): New function.
5002 (dired-insert-subdir-doinsert): Use dired-insert-directory;
5003 that handles indentation, text props and header line.
5004 dired-readin-insert gets no args.
5005 Use `last' instead of `reverse'.
5006
5007 * dired.el (dired-use-ls-dired): New variable.
5008 (dired-directory): Document the rules better.
5009
5010 * dired.el (dired-insert-headerline): Function deleted.
5011 (dired-revert): Pass no args to dired-readin.
5012 (dired-move-to-filename): First try using dired-filename property.
5013 (dired-move-to-end-of-filename): Likewise.
5014 (dired-why): Try to show the start of this page of warnings.
5015 (dired-log): Insert the buffer name at start of page, not end.
5016 (dired-log-summary): If just one failure, explain it in echo area.
5017
5018 * dired.el (dired-internal-noselect):
5019 Always set dired-directory, when buffer is not new.
5020 Pass dir-or-list, not dirname, to dired-mode.
5021 Call dired-readin with no args.
5022 Don't call dired-after-readin-hook here.
5023 (dired-find-buffer-nocreate): Expand dirname.
5024 Expand the dir from dired-directory to compare with dirname.
5025
5026 (dired-readin): Take no args. Get the directory from dired-directory.
5027 Run dired-before-reading hook inside save-excursion.
5028 Run dired-after-readin-hook here.
5029 Don't make undo entries at all.
5030 Call dired-readin-insert with no args.
5031 Don't change indentation here.
5032 Don't insert headerline here.
5033
5034 (dired-readin-insert): Take no args.
5035 Get dir and file-list from dired-directory.
5036 Call dired-insert-directory the new way.
5037 Don't insert "wildcard" info here.
5038
5039 (dired-insert-directory): New arg FILE-LIST.
5040 First arg now DIR, always just the directory.
5041 This function fully handles setting up the buffer text:
5042 update indentation, insert headerline and "wildcard" info.
5043 Pass --dired arg if appropriate; put info in dired-filename props.
5044 Don't expand file names here.
5045
5046 * warnings.el (display-warning): In batch mode,
5047 exclude the final newline from the arg to `message'.
5048
5049 2002-09-13 Markus Rost <rost@math.ohio-state.edu>
5050
5051 * files.el (diff-buffer-with-file): Check whether associated file
5052 exists. Display message for 1 second. Always return nil.
5053
5054 2002-09-13 Stefan Monnier <monnier@cs.yale.edu>
5055
5056 * diff-mode.el (diff-mode): Turn on compilation-minor-mode
5057 support again, but more carefully this time.
5058
5059 * progmodes/perl-mode.el (perl-mode-syntax-table): Mark $, % and @
5060 such that backward-sexp correctly skips them.
5061 (perl-font-lock-keywords-2): Use regexp-opt.
5062 (perl-font-lock-syntactic-keywords)
5063 (perl-font-lock-syntactic-face-function): Better handle PODs.
5064 Handle package names with ' in them and ($$) in `sub' declarations.
5065 Handle format staements. Handle regexp and quote-like ops.
5066 (perl-empty-syntax-table): New var.
5067 (perl-quote-syntax-table): New fun.
5068
5069 * pcvs.el (cvs-mode-find-file): Work even if point is at beg-of-line.
5070 (cvs-do-removal): Bind inhibit-read-only while modifying the buffer.
5071
5072 * newcomment.el (comment-with-narrowing): Use the `declare' thingy.
5073
5074 * derived.el (define-derived-mode): Properly ignore unknown args.
5075
5076 * emacs-lisp/easy-mmode.el (define-minor-mode): Add a :require arg.
5077 Don't call the function during init if mode is on by default.
5078
5079 * simple.el: Provide `simple'.
5080 (transient-mark-mode, line-number-mode, column-number-mode):
5081 Pass an explicit `:require nil' argument.
5082
5083 2002-09-13 Francesco Potort\e,Al\e(B <pot@gnu.org>
5084
5085 * play/tetris.el (tetris-blank-options, tetris-cell-options):
5086 Remove various redundant `(t nil)'.
5087
5088 * play/snake.el (snake-border-options): Use color on tty if available.
5089
5090 * play/tetris.el (tetris-border-options): Likewise.
5091
5092 * play/pong.el (pong-border-options): Likewise, plus reset
5093 color on tty to be [0.5 0.5 0.5].
5094
5095 2002-09-13 Kim F. Storm <storm@cua.dk>
5096
5097 * kmacro.el (kmacro-start-macro): Doc fix.
5098
5099 2002-09-13 Juanma Barranquero <lektu@terra.es>
5100
5101 * progmodes/idlw-shell.el (idlwave-shell-cleanup): Fix reference
5102 to `idlwave-idlwave_routine_info-compiled'.
5103
5104 * whitespace.el (whitespace-unload-hook): Call `remove-hook' with
5105 three arguments, not four.
5106
5107 2002-09-13 Kim F. Storm <storm@cua.dk>
5108
5109 * kmacro.el (kmacro-keymap): Changed bindings:
5110 C-x C-k s to kmacro-start-macro, C-x C-k b to kmacro-bind-to-key.
5111
5112 2002-09-12 Richard M. Stallman <rms@gnu.org>
5113
5114 * international/mule-cmds.el (universal-coding-system-argument):
5115 Read the coding system inside `interactive' spec, for command-history.
5116
5117 2002-09-12 Stefan Monnier <monnier@cs.yale.edu>
5118
5119 * emacs-lisp/find-func.el (find-library-name): Don't forget
5120 the empty suffix. Fix stale variable name.
5121
5122 * gud.el (gud-gdb-massage-args, gud-sdb-massage-args)
5123 (gud-pdb-massage-args): Delete.
5124 (gdb, sdb, pdb): Don't pass gud-*-massage-args any more.
5125 (gud-gdb-command-name): New var. Put "--fullname" in there.
5126 (gud-query-cmdline): Use the most recent executable as the default.
5127 Don't add "--fullname" (it's only valid/meaningful for GDB).
5128 (gud-xdb-marker-filter): Use match-string.
5129 (gud-perldb-massage-args): Don't add "-d".
5130 (gud-perldb-command-name): Add "-d".
5131 (gud-common-init): If `massage-args' is nil, don't call it.
5132 (gud-format-command): Don't hardcode point-min==1.
5133
5134 * derived.el: Require CL when compiling.
5135
5136 2002-09-12 Simon Josefsson <jas@extundo.com>
5137
5138 * mail/smtpmail.el (smtpmail-send-it): Don't use : in filenames
5139 (for cygwin). Suggested by Andrew Senior <aws@watson.ibm.com>.
5140 Use expand-file-name. Also don't require time-stamp.
5141
5142 2002-09-11 Richard M. Stallman <rms@gnu.org>
5143
5144 * derived.el (define-derived-mode): When making new abbrev table,
5145 don't try to copy the parent's abbrev table.
5146
5147 * ruler-mode.el (ruler-mode-left-scroll-bar-cols):
5148 Always round scroll-bar-width parameter up.
5149 If it is nil, use 14.
5150
5151 * abbrev.el (copy-abbrev-table): New function.
5152
5153 2002-09-11 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5154
5155 * ps-print.el: Adjust ps-print-color-p, ps-default-fg and
5156 ps-default-bg setting.
5157 (ps-print-version): New version number (6.5.7).
5158 (ps-mark-active-p): New fun.
5159 (ps-print-preprint-region): Adjust code.
5160
5161 2002-09-11 Dave Love <fx@gnu.org>
5162
5163 * international/mule.el (non-standard-designations-alist)
5164 (ctext-pre-write-conversion): Don't generate invalid extended
5165 segments for iso8859.
5166
5167 * language/cyrillic.el ("Ukrainian"): Fix nonascii-translation.
5168 (cyrillic-alternativnyj-decode-table): Fix some entries.
5169
5170 * international/ucs-tables.el: Fix last change.
5171
5172 * international/utf-8.el (utf-8-fragment-on-decoding): Fix last
5173 change.
5174
5175 2002-09-11 Kim F. Storm <storm@cua.dk>
5176
5177 * edmacro.el (edit-kbd-macro): Recognize new C-x e binding,
5178 kmacro-end-and-call-macro.
5179
5180 2002-09-11 Juanma Barranquero <lektu@terra.es>
5181
5182 * newcomment.el (uncomment-region): Fix let/let* use.
5183
5184 2002-09-11 Simon Josefsson <jas@extundo.com>
5185
5186 * time-stamp.el (time-stamp-hhmmss): New function.
5187
5188 * gud.el (gud-gdb-massage-args): Don't secretly add -fullname.
5189 (gud-query-cmdline): Add --fullname to the user cmdline.
5190
5191 * mail/smtpmail.el (smtpmail-default-smtp-server): Doc fix.
5192
5193 2002-09-11 Kim F. Storm <storm@cua.dk>
5194
5195 * kmacro.el (kmacro-call-macro): Rephrase repeat prompt.
5196 (kmacro-step-edit-map): Bind "A" to `append-end'.
5197 (kmacro-step-edit-prompt): Fix prompt.
5198 (kmacro-step-edit-query): Handle `append-end' response.
5199 (kmacro-step-edit-pre-command): Activate `append-end' at end of
5200 macro when required.
5201
5202 2002-09-11 Stefan Monnier <monnier@cs.yale.edu>
5203
5204 * derived.el (define-derived-mode): Fix typo.
5205
5206 * menu-bar.el (line-number-mode, column-number-mode)
5207 (transient-mark-mode): Use minor mode directly.
5208 (menu-bar-make-toggle): Remove `props' arg.
5209 Move customize-mark-as-set directly into the toggle function.
5210
5211 * whitespace.el (whitespace-global-mode): Use define-minor-mode.
5212 Use the new file hook names.
5213 (whitespace-describe): Remove. Move the text to `Commentary:'.
5214 (whitespace-unload-hook): Use the new file hook names.
5215
5216 * finder.el (finder-find-library): Remove.
5217 (finder-commentary): Use find-library-name and add completion.
5218
5219 * simple.el (transient-mark-mode, line-number-mode)
5220 (column-number-mode): Use define-minor-mode.
5221 (define-mail-user-agent): Delete. Moved to subr.el.
5222
5223 * loadup.el ("simple.el"): Move to after loaddefs.el.
5224
5225 * subr.el (define-mail-user-agent): Moved from simple.el.
5226
5227 2002-09-10 Richard M. Stallman <rms@gnu.org>
5228
5229 * pcvs-info.el (cvs-check-fileinfo): Don't use boolp.
5230 (boolp): Function deleted.
5231
5232 2002-09-10 Dave Love <fx@gnu.org>
5233
5234 * international/utf-8.el (ucs-mule-to-mule-unicode):
5235 Define unconditionally.
5236 (utf-8-fragmentation-table): New. Use it in top-level mapc.
5237 (utf-8-fragment-on-decoding): Use it to keep
5238 utf-8-translation-table-for-decode variable and translation table
5239 in sync.
5240
5241 * international/ucs-tables.el: Bind utf-8-translation-table-for-decode
5242 when setting up tables and remove useless optimize-char-table.
5243 (ucs-mule-to-mule-unicode): Deleted.
5244 (ucs-unify-8859): Maybe optimize ucs-mule-to-mule-unicode.
5245
5246 * international/utf-16.el (utf-16-le-pre-write-conversion)
5247 (utf-16-be-pre-write-conversion): Deleted.
5248 (mule-utf-16-le, mule-utf-16-be): Register encoding translation table.
5249
5250 2002-09-10 Richard M. Stallman <rms@gnu.org>
5251
5252 * files.el (diff-buffer-with-file): Simplify.
5253 Don't signal an error if buffer has no file.
5254 Call sit-for after `diff' returns.
5255
5256 * play/gamegrid.el (gamegrid-make-color-tty-face):
5257 Handle string as COLOR arg.
5258 (gamegrid-display-type): Don't assume display-color-p
5259 implies a color-x terminal.
5260 (gamegrid-hide-cursor): Set `cursor-type' local variable.
5261
5262 * descr-text.el (describe-text-mode): Add font-lock-defontify to
5263 change-major-mode-hook.
5264
5265 * ibuffer.el (ibuffer-mode): Add font-lock-defontify to
5266 change-major-mode-hook.
5267
5268 * comint.el (comint-mode): Add font-lock-defontify to
5269 change-major-mode-hook.
5270
5271 * info.el (Info-mode): Add font-lock-defontify to
5272 change-major-mode-hook.
5273
5274 * replace.el (occur-mode): Add font-lock-defontify to
5275 change-major-mode-hook.
5276
5277 * font-core.el (font-lock-defontify): New function.
5278
5279 2002-09-10 Richard M. Stallman <rms@gnu.org>
5280
5281 * ps-print.el (ps-printer-name-option): Doc fix.
5282
5283 2002-09-10 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5284
5285 * ps-print.el: Adjust ps-postscript-code-directory setting.
5286 XEmacs version check was adjusted.
5287 (ps-print-version): New version number (6.5.6).
5288 (ps-print-color-p, ps-page-dimensions-database): Autoload var.
5289 (ps-print-code, ps-print-preprint-region): Adjust code.
5290
5291 2002-09-10 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
5292
5293 * files.el (auto-mode-alist): ~/.gnus, ~/.viper are in
5294 emacs-lisp-mode, like ~/.emacs.
5295
5296 2002-09-10 Stefan Monnier <monnier@cs.yale.edu>
5297
5298 * newcomment.el (uncomment-region): Be more careful with `='.
5299
5300 2002-09-10 Deepak Goel <deego@glue.umd.edu>
5301
5302 * play/doctor.el (doc//): Rename from `//'. Update callers.
5303 (doc$): Rename from `$'. Update callers.
5304
5305 2002-09-10 Miles Bader <miles@gnu.org>
5306
5307 * simple.el (do-auto-fill): `fill-indent-according-to-mode' is a
5308 variable, not a function.
5309
5310 * kmacro.el (kmacro-call-macro): Deal with a non-numeric prefix arg.
5311
5312 2002-09-10 Kim F. Storm <storm@cua.dk>
5313
5314 * macros.el (apply-macro-to-region-lines): Let-bind mark-active to
5315 nil while executing macro to avoid triggering delete-selection-mode.
5316
5317 * simple.el (keyboard-quit): Set defining-kbd-macro to nil to
5318 cancel defining keyboard macro when applicable.
5319
5320 2002-09-09 Markus Rost <rost@math.ohio-state.edu>
5321
5322 * simple.el (transient-mark-mode, line-number-mode)
5323 (column-number-mode): Undo previous change because of bootstrapping.
5324
5325 2002-09-09 Stefan Monnier <monnier@cs.yale.edu>
5326
5327 * derived.el (define-derived-mode): Add keyword arguments.
5328 (derived-mode-make-docstring): Take abbrev and syntax table names.
5329
5330 * font-core.el (font-lock-change-mode): Just turn off font-lock-mode.
5331 (font-lock-default-function): Change arg name.
5332
5333 * cus-start.el (transient-mark-mode): Delete. Done in simple.el.
5334
5335 * paren.el (show-paren-function): Use syntax-after.
5336
5337 * emacs-lisp/syntax.el (syntax-after): Delete. Moved to subr.el.
5338
5339 * subr.el (symbol-file): Also work for autoloaded funcs.
5340 (syntax-after): New fun moved from syntax.el.
5341
5342 * find-file.el (ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
5343 (ff-not-found-hook, ff-file-created-hook): Rename from *-hooks.
5344 Update callers (but still run the old hooks as well).
5345
5346 * emacs-lisp/find-func.el (find-library-suffixes, find-library-name)
5347 (find-library): New funs.
5348 (find-function-search-for-symbol): Use it.
5349
5350 * emacs-lisp/bytecomp.el (byte-compile-file): Don't switch buffer.
5351
5352 * isearch.el (isearch-cmds): Add docstring.
5353 (isearch-mouse-2): Lookup binding in the proper buffer.
5354 Use call-interactively and remove the now useless `arg'.
5355 (isearch-search-fun-function): New var.
5356 (isearch-search-fun): New fun.
5357 (isearch-search, isearch-lazy-highlight-search): Use it.
5358
5359 2002-09-09 Stefan Monnier <monnier@cs.yale.edu>
5360
5361 * simple.el (what-line): Don't hard-code 1.
5362 (transient-mark-mode, line-number-mode, column-number-mode):
5363 Use define-minor-mode.
5364 (do-auto-fill): Only ignore prefix if it's really empty.
5365
5366 2002-09-09 Markus Rost <rost@math.ohio-state.edu>
5367
5368 * files.el (save-some-buffers-action-alist): Use lower case for
5369 help string of diff-buffer-with-file.
5370
5371 2002-09-09 Richard M. Stallman <rms@gnu.org>
5372
5373 * calendar/calendar.el (mouse-scroll-calendar-left)
5374 (mouse-scroll-calendar-right, mouse-calendar-other-month):
5375 New commands.
5376 (calendar-mode-line-format): Use them.
5377
5378 * emacs-lisp/bytecomp.el (byte-recompile-directory):
5379 Set and then bind default-directory.
5380
5381 * startup.el (fancy-splash-head, normal-splash-screen):
5382 Change the messages that explain about GNU or GNU/Linux.
5383
5384 * info.el (Info-search): Add (point-min) to subfile positions
5385 to get them right. Skip the current subfile using forward-line.
5386
5387 * files.el (make-backup-file-name-1): When make-directory fails,
5388 ignore backup-directory-alist.
5389 (make-directory): Expand DIR before looking for handler.
5390
5391 2002-09-09 Jari Aalto <jari.aalto@poboxes.com>
5392
5393 * progmodes/cperl-mode.el (cperl-noscan-files-regexp):
5394 In addition to RCS, exclude CVS directories.
5395
5396 * ls-lisp.el (ls-lisp-format-time-list): New variable.
5397 (ls-lisp-format-time): Use it.
5398
5399 * files.el (auto-mode-alist): Use sh-mode for .bash files.
5400
5401 2002-09-09 Dave Love <d.love@dl.ac.uk>
5402
5403 * ps-print.el: Many doc fixes.
5404
5405 2002-09-09 John Paul Wallington <jpw@shootybangbang.com>
5406
5407 * play/doctor.el (doctor-cadr, doctor-caddr, doctor-cddr): Remove.
5408 Update callers.
5409
5410 2002-09-08 Markus Rost <rost@math.ohio-state.edu>
5411
5412 * diff.el (diff): Doc fix.
5413
5414 2002-09-08 Richard M. Stallman <rms@gnu.org>
5415
5416 * emacs-lisp/bytecomp.el (byte-compile-delete-errors): Default to nil.
5417
5418 * simple.el (undo-elt-in-region): Fix one-off error at END.
5419 (forward-visible-line): Handle invisibility by ignoring
5420 invisible newlines. Also include entire invisible lines beyond
5421 the stopping point.
5422
5423 * cus-edit.el (custom-save-variables, custom-save-faces):
5424 Clarify the comments written into .emacs.
5425
5426 2002-09-08 Markus Triska <triska@gmx.at>
5427
5428 * play/doctor.el (doctor-doc): Recognize question words
5429 and use qlist. Use doctor-shorten's return value.
5430 (doctor-shorten): Compute a return value, don't alter `sent'.
5431 (doctor-hates1): Add a question mark.
5432 (doctor-strangelove): Unused function deleted.
5433
5434 2002-09-08 Kim F. Storm <storm@cua.dk>
5435
5436 * kmacro.el (kmacro-end-and-call-macro): New command to end and
5437 call keyboard macro in one step. Bind it to C-x e by default.
5438 (kmacro-call-macro): Use format-kbd-macro.
5439 (kmacro-step-edit-macro): New command to interactively step edit
5440 and execute last keyboard macro.
5441 (kmacro-keymap): Bind SPC [C-x C-k SPC] to kmacro-step-edit-macro.
5442 (kmacro-step-edit-mini-window-height): New custom var.
5443 (kmacro-step-edit-map): New keymap (parent is query-replace-map).
5444 (kmacro-step-edit-prefix-commands): New var.
5445 (kmacro-step-edit-prompt, kmacro-step-edit-query)
5446 (kmacro-step-edit-insert, kmacro-step-edit-pre-command)
5447 (kmacro-step-edit-minibuf-setup, kmacro-step-edit-post-command):
5448 New aux functions for step editing keyboard macros.
5449
5450 * subr.el (read-quoted-char): Apply listify-key-sequence to vector
5451 returned by this-single-command-raw-keys before appending it to
5452 unread-command-event.
5453
5454 2002-09-07 Colin Walters <walters@debian.org>
5455
5456 * progmodes/compile.el (compile-internal): Add optional argument
5457 no-async.
5458
5459 * diff.el (diff): Add optional argument no-async, and use the
5460 above argument.
5461
5462 * files.el (diff-buffer-with-file): Call diff synchronously, so we
5463 don't delete the temporary file before diff has a chance to read
5464 it.
5465
5466 * ibuf-ext.el (ibuffer-diff-with-file): Just call
5467 `diff-buffer-with-file'.
5468
5469 2002-09-07 John Paul Wallington <jpw@shootybangbang.com>
5470
5471 * emacs-lisp/cl-indent.el (extended-loop-p): Doc fix.
5472
5473 * emacs-lisp/find-func.el (find-function-recenter-line):
5474 Add custom type. Doc fix.
5475
5476 2002-09-06 Stefan Monnier <monnier@cs.yale.edu>
5477
5478 * menu-bar.el (menu-bar-make-mm-toggle): New macro.
5479 (showhide-menu-bar, showhide-toolbar, menu-bar-toggle-auto-compression)
5480 (toggle-highlight-paren-mode, toggle-global-lazy-font-lock-mode):
5481 Remove. Use the minor mode function directly instead.
5482 (menu-bar-mode): Add message and customize-mark-as-set and return
5483 the new value as do other minor modes.
5484
5485 * edmacro.el (edmacro-subseq): Don't use cl-push/cl-pop.
5486
5487 2002-09-06 Simon Marshall <simon@gnu.org>
5488
5489 * progmodes/etags.el (find-tag-tag, complete-tag):
5490 Bind completion-ignore-case based on tags-case-fold-search, so that
5491 case-sensitivity of tag completion matches that of tag search.
5492
5493 2002-09-06 Juanma Barranquero <lektu@terra.es>
5494
5495 * calendar/solar.el (calendar-time-display-form): Fix spacing.
5496
5497 * double.el (double-prefix-only): Likewise.
5498
5499 * emacs-lisp/easymenu.el (easy-menu-define): Likewise.
5500
5501 * emacs-lisp/find-func.el (find-function-search-for-symbol): Likewise.
5502
5503 * emacs-lisp/float.el (string-to-float): Likewise.
5504
5505 * emacs-lisp/rx.el (rx): Likewise.
5506
5507 * faces.el (copy-face): Likewise.
5508
5509 * hilit-chg.el (highlight-changes-colours)
5510 (highlight-changes-active-string)
5511 (highlight-changes-passive-string)
5512 (highlight-changes-rotate-faces, global-highlight-changes): Likewise.
5513
5514 * international/mule.el (decode-char): Likewise.
5515
5516 * progmodes/idlwave.el (idlwave-support-inheritance)
5517 (idlwave-routine-entry-compare): Likewise.
5518
5519 * progmodes/idlw-shell.el (idlwave-shell-use-breakpoint-glyph):
5520 Likewise.
5521
5522 * progmodes/pascal.el (pascal-start-keywords): Likewise.
5523
5524 * progmodes/sh-script.el (sh-indent-for-fi, sh-indent-for-done):
5525 Likewise.
5526
5527 * progmodes/vhdl-mode.el (vhdl-progress-interval)
5528 (vhdl-corresponding-begin): Likewise.
5529
5530 * simple.el (choose-completion-string-functions): Likewise.
5531
5532 * textmodes/reftex.el (reftex-TeX-master-file): Likewise.
5533
5534 * textmodes/fill.el (fill-nonuniform-paragraphs)
5535 (fill-individual-paragraphs): Likewise.
5536
5537 * vcursor.el (vcursor-toggle-vcursor-map): Likewise.
5538
5539 * warnings.el (warning-level-aliases): Likewise.
5540
5541 * speedbar.el (speedbar-mode): Fix spacing and typos.
5542
5543 * textmodes/reftex-vars.el (reftex-label-menu-flags): Fix typo.
5544
5545 2002-09-05 Markus Rost <rost@math.ohio-state.edu>
5546
5547 * textmodes/table.el (table-command-prefix): Fix type.
5548
5549 2002-09-05 Andre Spiegel <spiegel@gnu.org>
5550
5551 * vc-hooks.el: Don't require vc.el at compile-time; it causes
5552 recursive requirements during bootstrap.
5553
5554 2002-09-05 Kenichi Handa <handa@etl.go.jp>
5555
5556 * international/mule.el (decode-char): Cancel the previous change.
5557
5558 2002-09-04 Mats Lidell <matsl@contactor.se> (tiny change)
5559
5560 * language/european.el ("Swedish"): New set-language-info-alist call.
5561
5562 2002-09-04 Richard M. Stallman <rms@gnu.org>
5563
5564 * help-fns.el (help-with-tutorial): Properly set up
5565 completion-reference-buffer in the *Completion* buffer.
5566
5567 2002-09-04 John Paul Wallington <jpw@shootybangbang.com>
5568
5569 * startup.el (use-fancy-splash-screens-p): If `fancy-splash-frame'
5570 returns nil, return nil.
5571
5572 2002-09-04 Andre Spiegel <spiegel@gnu.org>
5573
5574 * vc-hooks.el: Require vc.el at compile-time.
5575 (vc-workfile-unchanged-p, vc-default-workfile-unchanged-p):
5576 Moved here from vc.el.
5577
5578 * vc.el (vc-workfile-unchanged-p, vc-default-workfile-unchanged-p):
5579 Moved to vc-hooks.el.
5580
5581 * vc-rcs.el (vc-rcs-state): Don't require vc.el.
5582
5583 2002-09-04 Kenichi Handa <handa@etl.go.jp>
5584
5585 * international/mule.el (decode-char): Translate a character by
5586 utf-8-translation-table-for-decode only when
5587 utf-8-fragment-on-decoding is non-nil.
5588
5589 2002-09-02 Stefan Monnier <monnier@cs.yale.edu>
5590
5591 * textmodes/text-mode.el (paragraph-indent-text-mode-abbrev-table)
5592 (paragraph-indent-text-mode-syntax-table, paragraph-indent-text-mode):
5593 Use text-mode's syntax-table and abbrev-table.
5594 (text-mode): Set require-final-newline to t.
5595
5596 * newcomment.el (comment-make-extra-lines): Only use the
5597 dummy `=' char when there's really nothing else.
5598 Don't remove spaces if it leads to an incorrect comment.
5599
5600 * pcvs.el (cvs-run-process): Use a pty rather than a pipe to work
5601 around the cvs/ssh/libc bug.
5602 (cvs-update-header): Understand `cvs admin -m<rev>:<msg>' syntax.
5603 (defun-cvs-mode): Use the new `declare' thingy.
5604 (cvs-edit-log-text-at-point, cvs-mode-edit-log, cvs-do-edit-log)
5605 (cvs-edit-log-minor-wrap, cvs-edit-log-filelist): New funs.
5606 (cvs-mode-undo): Use `cvs add' for (CONFLICT. REMOVED).
5607
5608 * pcvs-parse.el (cvs-parse-table): Create a `need-update'
5609 node rather than a message for new directories.
5610 (cvs-parse-status): Add support for `Entry Invalid'.
5611
5612 * smerge-mode.el (smerge-diff-buffer-name): Default to *vc-diff*.
5613 (smerge-combine-with-next): New function.
5614 (smerge-diff): Don't output `wrote /tmp/foo' messages.
5615 Insert message if no diffs were found.
5616
5617 * mail/sendmail.el (mail-mode): Don't set local-abbrev-table.
5618 (mail-mode-abbrev-table): Set to text-mode-abbrev-table.
5619
5620 2002-09-02 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
5621
5622 * net/tramp.el: Version 2.0.15 released.
5623 (require 'base64): Most modern Emacsen have the base64
5624 encode/decode functions built in, so test to see if they are bound
5625 before we go blindly requiring base64.el.
5626 From Steve Youngs <youngs@xemacs.org>.
5627 (tramp-feature-write-region-fix): XEmacs doesn't have a
5628 'find-operation-coding-system' and this variable doesn't seem to
5629 be used anywhere so wrap it in (unless (featurep 'xemacs)).
5630 From Steve Youngs <youngs@xemacs.org>.
5631 (tramp-methods): Remove duplicate definition of ssh1-old and ssh2-old.
5632 (tramp-open-connection-su): Use user name "root" if no user name
5633 is given.
5634
5635 From Michael Albinus <Michael.Albinus@alcatel.de>:
5636 * net/tramp.el (tramp-invoke-ange-ftp):
5637 (tramp-ange-ftp-file-name-p): Check for Xemacs.
5638 (tramp-do-copy-or-rename-file): Don't pass KEEP-DATE to
5639 tramp-invoke-ange-ftp 'rename.
5640 (tramp-handle-write-region): Don't pass LOCKNAME and CONFIRM to
5641 tramp-invoke-ange-ftp 'write-region.
5642 (tramp-handle-set-file-modes): Change order of FILENAME and MODE
5643 passing to tramp-invoke-ange-ftp 'set-file-modes.
5644 (tramp-invoke-ange-ftp): `tramp-disable-ange-ftp' must be called
5645 again after activating `ange-ftp'.
5646
5647 2002-09-02 Kim F. Storm <storm@cua.dk>
5648
5649 * ido.el (ido-ignore-item-temp-list): New variable.
5650 (ido-read-internal): Don't set ido-default-item if the default is
5651 member of ido-ignore-item-temp-list.
5652 Don't return first match for C-j if no text is entered.
5653 (ido-buffer-internal): Check for empty string return.
5654 (ido-make-buffer-list1): Use member instead of memq.
5655 (ido-window-buffer-p): Likewise.
5656 (ido-get-bufname): Ignore buffers on ido-ignore-item-temp-list.
5657 (ido-ignore-item-p): Ignore items on ido-ignore-item-temp-list.
5658
5659 * replace.el (multi-occur): Made "ido-aware":
5660 Changed prompt to use C-j instead of RET to end.
5661 Set ido-ignore-item-temp-list to the selected buffers so far, so
5662 they are automatically excluded from the list of choices.
5663 Use add-to-list instead of push.
5664
5665 2002-09-01 Richard M. Stallman <rms@gnu.org>
5666
5667 * term/x-win.el (function-key-map): Define S-iso-lefttab.
5668
5669 2002-09-01 Kim F. Storm <storm@cua.dk>
5670
5671 * edmacro.el (edit-kbd-macro): Recognize new default binding for
5672 C-x e in addition to old binding.
5673
5674 2002-09-01 Mario Lang <mlang@debian.org>
5675
5676 * files.el (save-some-buffers-action-alist): New variable.
5677 (save-some-buffers): Use that.
5678 (diff-buffer-with-file): New function.
5679
5680 2002-09-01 Richard M. Stallman <rms@gnu.org>
5681
5682 * ruler-mode.el (defgroup ruler-mode): Use `convenience' as parent.
5683
5684 * dired.el (defgroup dired): Use `files' as parent.
5685 (dired-get-filename): Ignore handler if it has safe-magic prop.
5686
5687 * jka-compr.el (jka-compr-handler): Add safe-magic property.
5688
5689 2002-08-31 Richard M. Stallman <rms@gnu.org>
5690
5691 * simple.el (kill-line): Use end-of-visible-line to determine
5692 if rest of line is blank.
5693 (end-of-visible-line): Cope if end-of-line moved back over
5694 invisible intangible chars at end of line.
5695
5696 * simple.el (completion-setup-function): Don't use directory-sep-char.
5697
5698 2002-09-01 Glenn Morris <gmorris@ast.cam.ac.uk>
5699
5700 * progmodes/f90.el (f90-menu): Remove ":active" keyword where not
5701 needed.
5702 (f90-menu, f90-add-imenu-menu): Use lookup-key.
5703 Remove (eval-when-compile) for free variables.
5704
5705 2002-08-31 Andreas Schwab <schwab@suse.de>
5706
5707 * font-core.el (font-lock-change-mode): Avoid changing buffer
5708 state in any way.
5709
5710 2002-08-30 Stefan Monnier <monnier@cs.yale.edu>
5711
5712 * emacs-lisp/easymenu.el (easy-menu-filter-return):
5713 Handle the case where the filter returns a single menu entry.
5714 (easy-menu-add): Improve docstring.
5715 (easy-menu-current-active-maps): Remove.
5716 (easy-menu-get-map): Use current-active-maps.
5717
5718 * cus-edit.el (custom-unlispify-menu-entry): Don't remove
5719 the -p prefix from variables since they shouldn't have it anyway.
5720 (custom-group-menu-create, customize-menu-create):
5721 Only cdr if applicable, since custom-menu-create might return
5722 a vector (i.e. a single menu entry).
5723
5724 2002-08-30 Edward M. Reingold <reingold@emr.cs.iit.edu>
5725
5726 * calendar/diary-lib.el (diary-mail-entries): Don't overwrite
5727 user's value of diary-list-include-blanks, but generate message
5728 instead if there are no entries.
5729
5730 2002-08-30 ARISAWA Akihiro <ari@mbf.sphere.ne.jp> (tiny change)
5731
5732 * ps-print.el (ps-lp-system): Fixed typo in `usg-unix-v'.
5733
5734 2002-08-30 Markus Rost <rost@math.ohio-state.edu>
5735
5736 * menu-bar.el (menu-bar-read-mail): Doc fix.
5737
5738 2002-08-30 John Paul Wallington <jpw@shootybangbang.com>
5739
5740 * ibuffer.el (ibuffer-update): Revert expansion of `caddr'.
5741 (ibuffer-fontification-alist): Check hidden buffer case isn't
5742 visiting a file and change its face to italic.
5743
5744 2002-08-30 Juanma Barranquero <lektu@terra.es>
5745
5746 * replace.el (occur-mode): Add interactive declaration.
5747
5748 * bs.el (bs-message-without-log): Fix typo.
5749
5750 * font-core.el (font-lock-defaults): Likewise.
5751
5752 * font-lock.el (font-lock-add-keywords): Likewise.
5753
5754 * mouse-copy.el (mouse-copy-work-around-drag-bug): Likewise.
5755
5756 * textmodes/bibtex.el (bibtex-mode): Likewise.
5757
5758 * emulation/viper-ex.el (ex-compile-command): Likewise.
5759
5760 * progmodes/idlwave.el (idlwave-max-extra-continuation-indent):
5761 Likewise.
5762
5763 * progmodes/dcl-mode.el (dcl-calc-cont-indent-relative): Likewise.
5764
5765 * allout.el (my-mark-marker): Likewise.
5766
5767 2002-08-30 Simon Josefsson <jas@extundo.com>
5768
5769 * mail/smtpmail.el (smtpmail-via-smtp): Delete process buffer
5770 unless s-debug-info is enabled.
5771
5772 2002-08-29 John Paul Wallington <jpw@shootybangbang.com>
5773
5774 * ibuffer.el (ibuffer-update): Use `minibufferp'. Expand `caddr'.
5775
5776 * mwheel.el (mouse-wheel-up-button): Doc fix.
5777
5778 2002-08-29 Juanma Barranquero <lektu@terra.es>
5779
5780 * replace.el (occur-mode-hook): New hook.
5781 (occur-mode): Use it.
5782 (occur-hook): Set default to nil.
5783
5784 2002-08-29 Stefan Monnier <monnier@cs.yale.edu>
5785
5786 * net/ange-ftp.el: Use match-string and drop useless `function's.
5787 (ange-ftp-get-process): Bind `ange-ftp-this-user' and
5788 `ange-ftp-this-host' before running ange-ftp-process-startup-hook.
5789 (ange-ftp-ls-parser): Use `switches' arg instead of dynamic binding.
5790 (ange-ftp-parse-dired-listing): Update the calls.
5791 (dired-local-variables-file): Declare to shut quieten the compiler.
5792 (ange-ftp-file-entry-active-p): Remove.
5793 (ange-ftp-file-name-all-completions, ange-ftp-file-name-completion):
5794 Don't exclude dangling symlinks.
5795 (ange-ftp-file-name-completion-1): Make predicate optional.
5796 (ange-ftp-parse-list-func-alist): Use add-to-list to update.
5797 (ange-ftp-fix-name-for-bs2000): Use subst-char-in-string.
5798 (ange-ftp-bs2000-posix-hook-installed): Remove.
5799 (ange-ftp-add-bs2000-posix-host): Don't use it anymore.
5800 (ange-ftp-bs2000-cd-to-posix): Use `ange-ftp-this-user' and
5801 `ange-ftp-this-host' instead of `user' and `host'.
5802
5803 2002-08-29 Richard M. Stallman <rms@gnu.org>
5804
5805 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
5806 Decide here whether to print which form we're compiling.
5807 If we do that, still print file and line. Make file name
5808 relative to default-directory. Print fewer newlines.
5809 (byte-compile-log-file): Print something even if no file.
5810 Print messages for entering and leaving directories,
5811 and set default-directory.
5812 (displaying-byte-compile-warnings): Only sometimes bind warning-series.
5813 (byte-compile-warning-series): New function.
5814 (byte-compile-file): Set byte-compile-last-logged-file, don't bind it.
5815 (byte-compile-display-log-head-p): Function deleted.
5816
5817 * warnings.el (warning-series): Now can be a marker, not an integer.
5818 (display-warning): Handle new value for warning-series.
5819
5820 * emacs-lisp/bytecomp.el (byte-compile-log-file): Use \f.
5821 (byte-compile-cl-warn): Add cl-macroexpand-all, cl-compiling-file
5822 to don't-warn list.
5823
5824 2002-08-29 Kim F. Storm <storm@cua.dk>
5825
5826 * kmacro.el: Change default bindings from F7/F8 to F3/F4.
5827 Change default binding of C-x e to kmacro-end-or-call-macro.
5828 (kmacro-call-repeat-key, kmacro-call-repeat-with-arg): New custom
5829 variables.
5830 (kmacro-get-prefix-arg): New function.
5831 (kmacro-repeat-on-last-key): Rename from kmacro-repeat-loop and
5832 improve. Callers changed.
5833 (kmacro-call-macro): Repeat macro by repeating last key or
5834 key defined in kmacro-call-repeat-key. New third arg non-nil
5835 means to end current macro.
5836 (kmacro-end-or-call-macro): Call kmacro-call-macro appropriately
5837 to get repeat last key functionality.
5838 (kmacro-start-macro-or-insert-counter): Improve doc string.
5839
5840 2002-08-28 Luc Teirlinck <teirllm@mail.auburn.edu>
5841
5842 * files.el (find-buffer-visiting): Compare file attributes
5843 using buffer-file-truename.
5844
5845 2002-08-28 Richard M. Stallman <rms@gnu.org>
5846
5847 * files.el (make-auto-save-file-name, make-backup-file-name-1):
5848 Don't use directory-sep-char.
5849
5850 2002-08-28 Juanma Barranquero <lektu@terra.es>
5851
5852 * replace.el (occur-hook): Renamed from `occur-mode-hook'.
5853 (occur-mode): Remove call to `occur-mode-hook'.
5854 (occur-rename-buffer): Fix reference to `occur-mode-hook' in docstring.
5855 (occur-1): Add call to `occur-hook'.
5856
5857 * subr.el (make-variable-frame-localizable): Alias for
5858 `make-variable-frame-local'.
5859
5860 2002-08-28 Miles Bader <miles@gnu.org>
5861
5862 * rfn-eshadow.el (read-file-name-electric-shadow-properties)
5863 (read-file-name-electric-shadow-tty-properties)
5864 (read-file-name-electric-shadow-mode): Remove compatibility defs.
5865
5866 * comint.el (comint-carriage-motion): Start at START.
5867
5868 2002-08-27 Francesco Potort\e,Al\e(B <pot@gnu.org>
5869
5870 * net/ange-ftp.el (ange-ftp-skip-msgs): Skip the 530 response
5871 given by vsFTPd when accessed with a kerberised FTP client.
5872
5873 2002-08-27 Richard M. Stallman <rms@gnu.org>
5874
5875 * files.el (find-alternate-file):
5876 Bind kill-buffer-query-functions locally, don't set it.
5877
5878 2002-08-27 Andreas Schwab <schwab@suse.de>
5879
5880 * kmacro.el (kmacro-start-macro): Doc fix.
5881
5882 2002-08-27 Carsten Dominik <dominik@sand.science.uva.nl>
5883
5884 * textfile/reftex-ref.el (reftex-goto-label): New command.
5885
5886 * textfile/reftex-vars.el (reftex-part-resets-chapter): New option.
5887
5888 * textfile/reftex-parse.el (reftex-roman-number): New function.
5889 (reftex-section-number): Better handling of parts: No chapter
5890 counter resets.
5891
5892 * textfile/reftex.el (reftex-highlight-overlays): Added a third
5893 overlay.
5894 (reftex-mode-menu): Added entry for `reftex-toc-recenter.
5895 Also moved `reftex-reset-mode' to top level.
5896
5897 * textfile/reftex-toc.el (reftex-toc-recenter): New command.
5898 (reftex-toc-pre-command-hook): Don't remove highlight overlay.
5899 (reftex-toc-post-command-hook): Use overlay no 2 for highlighting.
5900
5901 * textfile/reftex-sel.el (reftex-get-offset): Get offset of
5902 document pointer *before* position, not after.
5903 (reftex-insert-docstruct): Get offset of document pointer *before*
5904 position, not after.
5905
5906 * textfiles/reftex-parse.el (reftex-where-am-I): Prefer marker
5907 match over section title match.
5908
5909 * textfiles/reftex-cite.el (reftex-bib-or-thebib): New function
5910 which determines on a per-file-basis if BibTeX is being used
5911 locally for citations.
5912 (reftex-offer-bib-menu): Use `reftex-bib-or-thebib' for better
5913 cooperation with chapterbib.
5914 (reftex-bibtex-selection-callback): Use `reftex-bib-or-thebib' for
5915 better cooperation with chapterbib.
5916
5917 * textfiles/reftex-dcr.el (reftex-view-cr-cite):
5918 Use `reftex-bib-or-thebib' for better cooperation with chapterbib.
5919
5920 2002-08-26 Kim F. Storm <storm@cua.dk>
5921
5922 * subr.el (suppress-keymap): Use command remapping instead of
5923 substitute-key-definition to undefine self-inserting keys.
5924
5925 2002-08-26 Juanma Barranquero <lektu@terra.es>
5926
5927 * makefile.w32-in (WINS): Add calc and obsolete.
5928
5929 2002-08-26 Stefan Monnier <monnier@cs.yale.edu>
5930
5931 * emacs-lisp/easy-mmode.el (define-minor-mode):
5932 Use customize-mark-as-set for global minor modes.
5933
5934 2002-08-25 Miles Bader <miles@gnu.org>
5935
5936 * rfn-eshadow.el (file-name-shadow-properties-custom-type):
5937 Renamed from `read-file-name-electric-shadow-properties-custom-type'.
5938 Change name of face.
5939 (file-name-shadow-properties): Renamed from
5940 `read-file-name-electric-shadow-properties'.
5941 (file-name-shadow-tty-properties): Renamed from
5942 `read-file-name-electric-shadow-tty-properties'.
5943 (file-name-shadow): Renamed from `read-file-name-electric-shadow'.
5944 (rfn-eshadow-setup-minibuffer): Update references to renamed variables.
5945 (file-name-shadow-mode): Renamed from
5946 `read-file-name-electric-shadow-mode'. Update references to
5947 renamed variables.
5948
5949 2002-08-24 Sam Steingold <sds@gnu.org>
5950
5951 * subr.el (eval-after-load): Do not call
5952 load-symbol-file-load-history (deleted yesterday).
5953
5954 2002-08-24 John Paul Wallington <jpw@shootybangbang.com>
5955
5956 * startup.el (normal-splash-screen): Ensure splash buffer is
5957 killed. Use tabs in output. Fix test whether previous buffer was
5958 *scratch* buffer.
5959
5960 * progmodes/simula.el (simula-abbrev-keyword-default)
5961 (simula-abbrev-keyword, simula-abbrev-stdproc-default)
5962 (simula-abbrev-stdproc): Doc fix - escape open parens in column 0.
5963
5964 * apropos.el (command-apropos): Use `defalias' instead of `fset'.
5965
5966 * mail/rmail.el (rmail-speedbar-match-folder-regexp): Doc fix.
5967
5968 2002-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
5969
5970 * progmodes/f90.el (f90-xemacs-flag, f90-xemacs-menu)
5971 (f90-menu-bar-menu, f90-change-case-menu, f90-font-lock-on)
5972 (f90-font-lock-off, f90-font-lock-menu): Delete.
5973 Use easy-menu-define instead.
5974 (f90-mode): Use easy-menu-add.
5975 No longer (require 'imenu) when compiling.
5976 (f90-mark-subprogram, f90-indent-region, f90-fill-region)
5977 (f90-abbrev-start): Use fboundp.
5978 (f90-imenu-flag): Delete - use imenu--index-alist instead.
5979
5980 2002-08-23 Richard M. Stallman <rms@gnu.org>
5981
5982 * loadhist.el (unload-feature): Distinguish functions from
5983 variables in load-history.
5984 (feature-symbols): Doc fix.
5985
5986 * files.el (ange-ftp-completion-hook-function): Add safe-magic prop.
5987
5988 * subr.el (symbol-file-load-history-loaded)
5989 (load-symbol-file-load-history): Deleted.
5990 (symbol-file): Don't call load-symbol-file-load-history.
5991
5992 2002-08-23 Andre Spiegel <spiegel@gnu.org>
5993
5994 * vc-hooks.el (vc-kill-buffer-hook): Add it to kill-buffer-hook again.
5995
5996 2002-08-22 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
5997
5998 * frame.el (select-frame-by-name, select-frame-set-input-focus):
5999 Always call x-focus-frame, if using x.
6000 Use set-mouse-position on all systems, if focus-follows-mouse.
6001
6002 2002-08-22 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6003
6004 * net/tramp.el: Version 2.0.14 released.
6005 (tramp-shell-prompt-pattern): New variable.
6006 (tramp-actions-before-shell, tramp-multi-actions)
6007 (tramp-find-shell, tramp-open-connection-multi)
6008 (tramp-open-connection-setup-interactive-shell): Use it.
6009 (tramp-open-connection-telnet, tramp-open-connection-rsh)
6010 (tramp-open-connection-su): Mention `tramp-shell-prompt-pattern'
6011 in the docstring.
6012 (tramp-bug): Report `tramp-shell-prompt-pattern'.
6013 (tramp-process-one-multi-action, tramp-process-one-action):
6014 Make message clearer so people don't confuse it with Emacs asking
6015 them a question if the regexp happens to end with "?".
6016 (tramp-verbose): Change default value from 10 to 9. Also change
6017 some logging levels so that 10 is reserved for stuff which is
6018 needed for debugging only, but 9 catches everything that people
6019 might like to see in order to see that Tramp is actually working.
6020
6021 2002-08-22 Kim F. Storm <storm@cua.dk>
6022
6023 * emacs-lisp/authors.el (authors-aliases, authors-fixed-entries):
6024 Corrected spelling mistakes (for Joseph Arceneaux).
6025
6026 2002-08-21 Glenn Morris <gmorris@ast.cam.ac.uk>
6027
6028 * progmodes/f90.el: eval-when-compile a few defvars.
6029 (f90-xemacs-flag): Wrap in eval-and-compile.
6030 (f90-font-lock-keywords): Doc fix.
6031 (f90-mode-abbrev-table): Work with or without 6th arg of define-abbrev.
6032 (f90-mark-subprogram-overlay): Variable deleted.
6033 (f90-mark-subprogram): Remove overlay bit. Don't be silent about
6034 pushing mark.
6035 (f90-abbrev-start): unread-command-event is obsolete in XEmacs.
6036
6037 2002-08-21 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6038
6039 * net/tramp.el: Version 2.0.13 released.
6040 (tramp-handle-write-region): Don't check to see if remote end is
6041 awake after sending data to remote host: we want to send "EOF" not
6042 "echo are you awake"...
6043 (tramp-maybe-open-connection): Swap args for tramp-time-diff.
6044 (tramp-yn-prompt-regexp): New variable.
6045 (tramp-action-yn): New function, using it.
6046 (tramp-feature-write-region-fix): New internal variable. Not yet
6047 used. Should be used in `tramp-handle-write-region'.
6048
6049 2002-08-21 Kim F. Storm <storm@cua.dk>
6050
6051 * bindings.el (mode-line-format): Moved global-mode-string last.
6052 (mode-line-position): Moved %p first. Added padding to %l/%c to
6053 eliminate jumpyness in modeline. Use (%l,%c) format if both
6054 line-number-mode and column-number-mode are enabled.
6055
6056 2002-08-20 Martin Stjernholm <bug-cc-mode@gnu.org>
6057
6058 * progmodes/cc-engine.el (c-forward-syntactic-ws): Fixed a bug
6059 that could cause an infinite loop if something that looks like
6060 a macro begins in the middle of a line.
6061
6062 * progmodes/cc-engine.el (c-parse-state): Fixed a bug that
6063 could cause `c-state-cache' to contain two conses in sequence
6064 when there's an unbalanced open paren in a macro.
6065
6066 2002-08-20 Glenn Morris <gmorris@ast.cam.ac.uk>
6067
6068 * progmodes/fortran.el (fortran-current-defun): Use save-excursion.
6069
6070 * imenu.el (imenu--generic-function): Use mapc.
6071 (imenu-syntax-alist): Doc fix.
6072
6073 2002-08-20 Richard M. Stallman <rms@gnu.org>
6074
6075 * font-core.el (font-lock-change-mode): New function.
6076 (font-lock-mode): Use font-lock-change-mode instead of
6077 font-lock-unfontify-buffer.
6078 (font-lock-maximum-size, font-lock-verbose): Add defvars.
6079
6080 2002-08-20 Carsten Dominik <dominik@astro.uva.nl>
6081
6082 * textfiles/reftex-cite.el (reftex-bib-or-thebib): New function
6083 which determines on a per-file-basis if BibTeX is being used
6084 locally for citations.
6085 (reftex-offer-bib-menu): Use `reftex-bib-or-thebib' for better
6086 cooperation with chapterbib.
6087 (reftex-bibtex-selection-callback): Use `reftex-bib-or-thebib' for
6088 better cooperation with chapterbib.
6089
6090 * textfiles/reftex-dcr.el (reftex-view-cr-cite):
6091 Use `reftex-bib-or-thebib' for better cooperation with chapterbib.
6092
6093 2002-08-20 Kim F. Storm <storm@cua.dk>
6094
6095 * kmacro.el: Major rework based on discussions with RMS.
6096 Most important change is that C-x C-k is now bound to a keymap
6097 with keyboard macro related commands. The original binding on
6098 C-x C-k is moved to C-x C-k e.
6099
6100 * binding.el: Remove macro related bindings (now in kmacro.el).
6101
6102 * edmacro.el: Remove C-x C-k binding (now in kmacro.el).
6103
6104 2002-08-19 Stefan Monnier <monnier@cs.yale.edu>
6105
6106 * help-fns.el (help-split-fundoc): Replace the function name
6107 from the docstring with the one that should be displayed.
6108 (help-make-usage): Understand CL style arglists.
6109 (describe-function-1): Adapt to the new behavior of help-split-fundoc.
6110 (describe-variable): Use delete-region.
6111
6112 2002-08-19 Kenichi Handa <handa@etl.go.jp>
6113
6114 * international/mule.el (sgml-xml-auto-coding-function):
6115 Call re-search-forward with NOERROR t.
6116
6117 2002-08-19 Miles Bader <miles@gnu.org>
6118
6119 [original idea from Luc Teirlinck <teirllm@mail.auburn.edu>]
6120 * comint.el (comint-inhibit-carriage-motion): New variable.
6121 (comint-carriage-motion): Argument STRING removed. New arguments
6122 START and END; interpret characters between START and END rather
6123 than using special comint state.
6124 (comint-output-filter): Call `comint-carriage-motion'.
6125 (comint-output-filter-functions): Don't add `comint-carriage-motion'.
6126 * ielm.el (inferior-emacs-lisp-mode):
6127 Give `comint-inhibit-carriage-motion' a local value of t.
6128
6129 2002-08-18 Richard M. Stallman <rms@gnu.org>
6130
6131 * textmodes/table.el: New file.
6132
6133 * font-core.el (font-lock-mode): Set change-major-mode-hook locally.
6134
6135 2002-08-18 Andreas Schwab <schwab@suse.de>
6136
6137 * ibuf-ext.el (ibuffer-list-buffer-modes): Doc fix.
6138
6139 2002-08-17 Carsten Dominik <dominik@astro.uva.nl>
6140
6141 * textmodes/reftex.el (reftex-mode): Create special syntax tables.
6142 (reftex-syntax-table): Set a default in case this is being used
6143 outside a LaTeX file.
6144 (reftex-syntax-table-for-bib): Set a default in case this is being
6145 used outside a LaTeX file.
6146
6147 2002-08-17 Richard M. Stallman <rms@gnu.org>
6148
6149 * tar-mode.el (tar-subfile-mode): Use add-hook and remove-hook,
6150 and use write-file-functions instead of local-write-file-hooks.
6151 (tar-untar-buffer): Don't try to extract directories.
6152
6153 * menu-bar.el (fringe-mode): Set to nil.
6154
6155 * mail/rmail.el (rmail-search-mime-header-function): Doc fix.
6156
6157 2002-08-15 Richard M. Stallman <rms@gnu.org>
6158
6159 * calendar/appt.el (appt-delete): Use substring-no-properties.
6160 (appt-make-list): Don't use prin1-to-string; use the string unchanged.
6161
6162 2002-08-15 Jan Nieuwenhuizen <janneke@gnu.org> (tiny change)
6163
6164 * server.el (server-process-filter): Simplify code.
6165 (server-goto-line-column): New function.
6166 (server-visit-files): Use server-goto-line-column.
6167 Offer to revert only if file has changed.
6168
6169 2002-08-15 Richard M. Stallman <rms@gnu.org>
6170
6171 * files.el (recover-this-file): New function.
6172 (after-find-file): Recommend recover-this-file.
6173
6174 * font-core.el (font-lock-mode): Add font-lock-unfontify-buffer
6175 to change-major-mode-hook when font lock is enabled.
6176
6177 * simple.el (toggle-truncate-lines): Force redisplay.
6178 Display status message.
6179
6180 2002-08-15 Carsten Dominik <dominik@sand.science.uva.nl>
6181
6182 * textmodes/reftex.el (reftex-mode): Moved the creation of special
6183 syntax tables to top-level.
6184
6185 2002-08-15 David Kastrup <David.Kastrup@t-online.de>
6186
6187 * net/ange-ftp.el (ange-ftp-wipe-file-entries): Fix type mismatch;
6188 use `hash-table-size' instead of `length'.
6189
6190 2002-08-14 Stefan Monnier <monnier@cs.yale.edu>
6191
6192 * help-fns.el (locate-library): Use locate-file(-completion).
6193 (help-split-fundoc): Tighten the regexp and recognize a usage-info
6194 where the function name is `fn'.
6195 (help-function-arglist): Follow aliases and macros.
6196 (describe-function-1): Use keymapp.
6197 If the docstring contains a usage info, use it even if the function is
6198 not a subroutine. Find usage info in aliases' docstring if necessary.
6199 (describe-variable): Get the value before setting up the *Help* buffer.
6200
6201 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode):
6202 Use find-file-hook instead of find-file-hooks.
6203 (define-minor-mode): Get rid of this silly `togglep'.
6204 Add an explicit `toggle' argument (used for interactive calls).
6205 Emit a warning when a nil argument turns the mode off.
6206
6207 * language/ethio-util.el (setup-ethiopic-environment-internal)
6208 (exit-ethiopic-environment): Use find-file-hook and
6209 write-file-functions instead of find-file-hooks and write-file-hooks.
6210
6211 * window.el (handle-select-window): Don't do anything if the window
6212 has disappeared since the event was generated.
6213 (split-window-save-restore-data): Use push and with-current-buffer.
6214
6215 * saveplace.el:
6216 * play/meese.el:
6217 * obsolete/hilit19.el:
6218 * completion.el (dynamic-completion-mode):
6219 * emacs-lisp/find-func.el (find-function-search-for-symbol):
6220 Use find-file-hook instead of find-file-hooks.
6221
6222 * imenu.el (imenu-always-use-completion-buffer-p): Make obsolete.
6223 (imenu-use-popup-menu, imenu-eager-completion-buffer): New vars.
6224 (imenu-space-replacement): Allow nil value.
6225 (imenu--completion-buffer): Use new vars and simplify.
6226 Fix handling of minibuffer-setup-hook.
6227 Use minibuffer-completion-help instead of rolling our own.
6228 (imenu-choose-buffer-index): Use the new var.
6229
6230 * startup.el (command-line): Load custom-file if not done yet.
6231
6232 2002-08-14 Kenichi Handa <handa@etl.go.jp>
6233
6234 * select.el (xselect-convert-to-string): If TYPE is non-nil, encode
6235 the selection data string. Always return cons of type and string.
6236 (selection-converter-alist): Add (UTF8_STRING .
6237 xselect-convert-to-string).
6238
6239 2002-08-12 Stefan Monnier <monnier@cs.yale.edu>
6240
6241 * newcomment.el (comment-region): Force `lines' when `block' is set.
6242
6243 2002-08-12 Richard M. Stallman <rms@gnu.org>
6244
6245 * menu-bar.el (menu-bar-next-tag-other-window, menu-bar-next-tag)
6246 (menu-bar-right-scroll-bar, menu-bar-left-scroll-bar)
6247 (menu-bar-no-scroll-bar, menu-bar-toggle-auto-compression)
6248 (menu-bar-toggle-cua-mode, menu-bar-read-mail)
6249 (menu-bar-help-extra-packages, help-with-tutorial-spec-language)
6250 (menu-bar-text-mode-auto-fill): New commands, used
6251 in menu bar menus instead of lambda expressions.
6252
6253 (menu-bar-showhide-fringe-menu-customize-left)
6254 (menu-bar-showhide-fringe-menu-customize-right)
6255 (menu-bar-showhide-fringe-menu-customize-disable)
6256 (menu-bar-showhide-fringe-menu-customize-reset): Doc fixes.
6257
6258 (menu-bar-options-menu): Use toggle-truncate-lines.
6259 (showhide-date-time): Call customize-mark-as-set.
6260
6261 * emacs-lisp/find-func.el (find-function-search-for-symbol):
6262 Obey `definition-name' properties.
6263
6264 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode):
6265 Put `definition-name' properties on the functions whose
6266 names are constructed.
6267
6268 * textmodes/page-ext.el (pages-target-buffer): Add defvar.
6269 Renamed from target-buffer.
6270 (pages-directory, pages-copy-header-and-position): Uses changed.
6271
6272 * calendar/appt.el (appt-make-list): Correct the parsing of
6273 each appointment from time-string.
6274
6275 2002-08-12 Stefan Monnier <monnier@cs.yale.edu>
6276
6277 * scroll-all.el (scroll-all-mode): Use define-minor-mode.
6278 (scroll-all-mode) <defcustom>: Delete.
6279 (running-xemacs): Delete.
6280 (minor-mode-alist): Don't manipulate it directly.
6281
6282 2002-08-10 Kenichi Handa <handa@etl.go.jp>
6283
6284 * international/mule-cmds.el (search-unencodable-char): New function.
6285 (select-safe-coding-system): Show unencodable characters.
6286 (unencodable-char-position): Deleted, and implemented in C in coding.c.
6287
6288 2002-04-09 John Wiegley <johnw@gnu.org>
6289
6290 * esh-util.el: Removed eshell-under-cygwin-p, and all uses of it.
6291 * em-cmpl.el (eshell-cmpl-ignore-case): Ditto.
6292 * em-dirs.el (eshell/cd): Ditto.
6293 * em-glob.el (eshell-glob-case-insensitive): Ditto.
6294 * em-hist.el (eshell-previous-matching-input-string-position): Ditto.
6295 * esh-ext.el (eshell-binary-suffixes): Ditto.
6296
6297 2002-08-09 Richard M. Stallman <rms@gnu.org>
6298
6299 * textmodes/page-ext.el (pages-directory-mode): Undo previous change.
6300
6301 * simple.el (set-variable): Give locality status in prompt.
6302
6303 2002-08-09 Benjamin Rutt <rutt@cis.ohio-state.edu>
6304
6305 * simple.el (set-variable): If given a prefix argument, set
6306 variable buffer-locally.
6307
6308 2002-08-09 John Paul Wallington <jpw@shootybangbang.com>
6309
6310 * font-core.el (font-lock-function): Make it buffer-local.
6311
6312 2002-08-08 Richard M. Stallman <rms@gnu.org>
6313
6314 * emacs-lisp/checkdoc.el (checkdoc, checkdoc-interactive)
6315 (checkdoc-message-interactive, checkdoc-interactive-loop)
6316 (checkdoc-current-buffer, checkdoc-continue, checkdoc-comments)
6317 (checkdoc-defun):
6318 Update checkdoc-spellcheck-documentation-flag correctly.
6319 (checkdoc-ispell-docstring-engine): Don't test for
6320 checkdoc-autofix-flag = nil.
6321
6322 2002-08-07 John Paul Wallington <jpw@shootybangbang.com>
6323
6324 * xt-mouse.el (xterm-mouse-mode): Make it a global mode.
6325
6326 * wid-browse.el (widget-minor-mode): Fix doc typo.
6327
6328 2002-08-07 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6329
6330 * net/tramp.el: Version 2.0.12 released.
6331 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
6332 Comment out possibly obsolete "echo hello" commands.
6333 (tramp-run-real-handler): If operation is
6334 `ange-ftp-hook-function', use first arg as the real operation.
6335 (tramp-check-ls-commands): Use / instead of \ as directory
6336 separator. (Relevant for XEmacs on Windows.)
6337 (tramp-maybe-open-connection): Use tramp-wait-for-output when
6338 waiting for the "are you awake" command. Use a different string
6339 for the "are you awake" command.
6340 (tramp-send-command): New optional arg NEVEROPEN means to never
6341 invoke tramp-maybe-open-connection.
6342 (tramp-maybe-open-connection): Use it
6343
6344 2002-08-07 Richard M. Stallman <rms@gnu.org>
6345
6346 * warnings.el (warning-prefix-function, warning-series)
6347 (warning-fill-prefix, warning-group-format): Add autoload cookies.
6348
6349 2002-08-07 Kenichi Handa <handa@etl.go.jp>
6350
6351 * international/mule-cmds.el (select-safe-coding-system):
6352 Call pop-to-buffer inside save-window-excursion and save-excursion.
6353
6354 2002-08-06 John Paul Wallington <jpw@shootybangbang.com>
6355
6356 * help-fns.el (describe-function-1): Skip arglist note if
6357 function's definition is a keymap.
6358
6359 2002-08-06 Sam Steingold <sds@gnu.org>
6360
6361 * calendar/diary-lib.el (diary-mail-entries): Use `compose-mail'
6362 and `mail-user-agent' instead of straight sendmail.
6363 (diary-modified, diary-entries-list, displayed-year)
6364 (displayed-month, entry, date, number, date-string, d-file)
6365 (original-date): Defvar without binding to avoid compiler warnings.
6366
6367 2002-08-05 Alan Shutko <ats@acm.org>
6368
6369 * ibuffer.el (ibuffer-mode-map): Added ibuffer-filter-by-used-mode.
6370 (ibuffer-mode-map): Added ibuffer-filter-by-used-mode.
6371 (ibuffer-mode): Added ibuffer-filter-by-used-mode to doc string.
6372
6373 * ibuf-ext.el (ibuffer-list-buffer-modes): New.
6374 (ibuffer-filter-by-used-mode): New.
6375
6376 2002-08-05 John Paul Wallington <jpw@shootybangbang.com>
6377
6378 * ediff-util.el (ediff-copy-list): Use `defalias' instead of
6379 `fset' and `symbol-function'.
6380
6381 2002-08-05 John Wiegley <johnw@gnu.org>
6382
6383 * pcomplete.el (pcomplete-entries): Don't set `above-cutoff' to a
6384 value unless pcomplete-cycle-cutoff-length is non-nil.
6385
6386 2002-04-09 John Paul Wallington <jpw@shootybangbang.com>
6387
6388 * esh-util.el (eshell-under-cygwin-p): New function.
6389 * em-cmpl.el (eshell-cmpl-ignore-case): Use it.
6390 * em-dirs.el (eshell/cd): Ditto.
6391 * em-glob.el (eshell-glob-case-insensitive): Ditto.
6392 * em-hist.el (eshell-previous-matching-input-string-position): Ditto.
6393 * esh-ext.el (eshell-binary-suffixes): Ditto.
6394
6395 2002-08-05 Richard M. Stallman <rms@gnu.org>
6396
6397 * international/mule-cmds.el (select-safe-coding-system): Check for
6398 non-nil CODING-SYSTEM before warning it disagrees with AUTO-CS.
6399
6400 * net/ange-ftp.el (ange-ftp-smart-gateway): Doc fix.
6401
6402 2002-08-05 Gerd Moellmann <gerd@gnu.org>
6403
6404 * image.el (image-jpeg-p): Accept "Exif" marker.
6405
6406 2002-08-05 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6407
6408 * net/tramp.el: Version 2.0.11 released.
6409 (tramp-perl-file-attributes): Print uid and gid as signed integers.
6410 (tramp-invoke-ange-ftp): Correct check for Ange-FTP being loaded.
6411 Invoke Ange-FTP with tramp-run-real-handler to avoid Ange-FTP
6412 calling Tramp again.
6413 (tramp-find-file-exists-command): Check for `ls -d' last, after
6414 all the variants on `test -e'.
6415 (tramp-post-connection): Erase buffer before finding a command to
6416 check if file exists.
6417
6418 2002-08-05 David Kastrup <David.Kastrup@t-online.de>
6419
6420 * calc/calc.el (math-format-stack-value): Revert a broken
6421 if->when replacement and reformat so that this does not happen
6422 again. Fixes a pretty lethal line formatting/yanking bug.
6423
6424 2002-08-04 John Paul Wallington <jpw@shootybangbang.com>
6425
6426 * startup.el (fancy-splash-frame): Check selected frame last.
6427
6428 2002-08-04 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6429
6430 * net/tramp.el: Version 2.0.10 released.
6431 (tramp-uudecode): New shell function `tramp_uudecode' to decode to
6432 standard output even if `uudecode -p' and `uudecode -o -' don't work.
6433 (tramp-post-connection): After finding the right shell, wait a
6434 bit. This is a kludge to avoid a race condition, even though I
6435 don't understand why there is a race condition in the first place.
6436 (tramp-post-connection): Install the `tramp_uudecode' shell
6437 function on the remote host.
6438 (tramp-coding-commands): Add an alternative for `tramp_uudecode'.
6439 (tramp-bug): Include more variables in the report.
6440
6441 2002-08-04 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6442
6443 * net/tramp.el: Version 2.0.9 released.
6444 (tramp-bug): Add wording about additional info to include in bug
6445 report.
6446 (tramp-find-shell): Set $PS1 for invocation of second shell (for
6447 tilde expansion).
6448 (tramp-find-shell): Shell prompt must match at end of buffer.
6449 Do this also for fallback shell prompt.
6450 (tramp-find-shell): More debugging output.
6451 (tramp-find-inline-encoding): When checking the decoding command,
6452 some commands fail when reading from /dev/null. So we pass a
6453 known string through the encoding command and pass that through
6454 the decoding command. So we know whether the decoding command can
6455 deal with some real input.
6456
6457 2002-08-04 Andreas Schwab <schwab@suse.de>
6458
6459 * net/tramp.el (tramp-perl-encode, tramp-perl-decode): Doc fix.
6460
6461 2002-08-03 Andrew Choi <akochoi@shaw.ca>
6462
6463 * term/mac-win.el: Set keys to enable mouse wheel support.
6464
6465 2002-08-03 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6466
6467 * net/tramp.el: Version 2.0.8.
6468 (tramp-perl-encode, tramp-perl-encode): Double the backslashes.
6469
6470 2002-08-03 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6471
6472 * net/tramp.el: Version 2.0.7.
6473 (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
6474 (tramp-perl-encode, tramp-perl-decode): Escape `%' characters
6475 because of `format' and say so in the docstring.
6476
6477 2002-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
6478
6479 * progmodes/f90.el (f90-font-lock-keywords-1): Fix highlighting of
6480 `type' forms.
6481 (f90-font-lock-keywords-2): Fix `implicit type(foo)' case.
6482 (f90-type-def-re): Fix value.
6483
6484 2002-08-03 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6485
6486 * net/tramp.el: Version 2.0.6.
6487 (tramp-default-method): Change to "ssh" from "sm".
6488 (tramp-wrong-passwd-regexp): Restructure. Add additional alternative.
6489 (tramp-su-program): New internal variable for method parameter.
6490 (tramp-perl-encode-with-module, tramp-perl-decode-with-module):
6491 New variables. Very short Perl one-liner, but requires Perl
6492 module MIME::Base64 to be installed on the remote site.
6493 (tramp-perl-encode, tramp-perl-decode): New base64
6494 encoder/decoder. From Juanma Barranquero <lektu@terra.es>.
6495 (tramp-handle-file-truename): Invoke Ange-FTP properly (even
6496 though Ange-FTP doesn't do anything for this operation).
6497 (tramp-handle-set-visited-file-modtime): Comment change.
6498 (tramp-handle-make-directory): Save-excursion.
6499 (tramp-handle-expand-many-files): Don't try to invoke Ange-FTP
6500 twice, once is enough.
6501 (tramp-action-permission-denied): Show *tramp/foo* buffer so the
6502 user knows what's wrong.
6503 (tramp-post-connection): Support the two Perl encoders and decoders.
6504 (tramp-coding-commands): Ditto. Add some todo items.
6505
6506 2002-08-02 Richard M. Stallman <rms@gnu.org>
6507
6508 * international/mule.el (merge-coding-systems): New function.
6509 (set-buffer-file-coding-system): Use merge-coding-systems.
6510 Change prompt for args.
6511 (revert-buffer-with-coding-system): New command.
6512
6513 * international/mule-cmds.el (mule-keymap, set-coding-system-map):
6514 Add bindings for revert-buffer-with-coding-system.
6515 (set-coding-system-map): Clarify menu item info for
6516 set-buffer-file-coding-system.
6517 (set-coding-system-map): Reorder and add separators.
6518
6519 * emacs-lisp/edebug.el (edebug-eval-top-level-form):
6520 Use eval-expression.
6521
6522 * subr.el (atomic-change-group): Doc fix.
6523
6524 2002-07-31 Colin Walters <walters@debian.org>
6525
6526 * ibuffer.el (ibuffer-hooks): Rename to `ibuffer-hook'; Add
6527 defvaralias for compatibility.
6528 (ibuffer-mode-hooks): Rename to `ibuffer-mode-hook'; Add
6529 defvaralias for compatibility.
6530
6531 2002-07-31 John Paul Wallington <jpw@shootybangbang.com>
6532
6533 * ibuffer.el (ibuffer-fontification-alist):
6534 Use `font-lock-constant-face' instead of `font-lock-reference-face'.
6535
6536 2002-07-31 John Wiegley <johnw@gnu.org>
6537
6538 * pcomplete.el (pcomplete-comint-setup): Use `add-to-list', to
6539 prevent adding the symbol `pcomplete' to
6540 shell-dynamic-complete-functions to many times.
6541
6542 2002-07-31 Markus Rost <rost@math.ohio-state.edu>
6543
6544 * help-fns.el (describe-function-1): Test function for
6545 obsolescence only if it is a symbol.
6546
6547 * ediff.el (ediff-backup): New autoloaded command.
6548
6549 2002-07-31 Richard M. Stallman <rms@gnu.org>
6550
6551 * makefile.w32-in (compile-after-backup): Renamed from `compile'.
6552 Use `compile-always'.
6553 (bootstrap): Use `compile', not `compile-files'. Use `update-subdirs'.
6554 (compile): Renamed from `compile-files'.
6555 (compile-CMD, compile-SH): Renamed from `compile-files-*'.
6556
6557 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
6558 Check that (car elt) is a string.
6559
6560 * pcomplete.el (pcomplete-entries): Doc fix.
6561
6562 * international/mule.el (non-standard-icccm-encodings-alist): Doc fix.
6563
6564 2002-07-31 Andreas Schwab <schwab@suse.de>
6565
6566 * dired.el: Hide disabling of dired-find-alternate-file behind
6567 autoload-cookie.
6568
6569 2002-07-31 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
6570
6571 * makefile.w32-in: Revert some changes from 2002-07-23 because they
6572 don't work on MSVC/nmake builds.
6573 (update-subdirs-CMD): Generate the right list of subdirectories.
6574
6575 2002-07-30 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6576
6577 * net/tramp.el: New version 2.0.5.
6578 (tramp-methods): Remove inline encoding method parameters.
6579 The encoding is now autodetected. Also shorten the list of
6580 methods (u/m distinction gone) and rename the remaining methods to
6581 have longer, but more mnemonic, names.
6582 (tramp-login-prompt-regexp, tramp-password-prompt-regexp)
6583 (tramp-wrong-passwd-regexp): Trailing `$' not needed, regexp is
6584 matched at end of buffer anyway.
6585 (tramp-yesno-prompt-regexp): New variable, for questions where the
6586 user should say "yes" or "no".
6587 (tramp-file-name-structure-unified)
6588 (tramp-file-name-structure-separate): Allow dash in method names.
6589 (tramp-actions-before-shell): New variable, contains list of
6590 pattern/action pairs. Output sent by remote end is scanned for
6591 the patterns, then the actions are executed.
6592 (tramp-multi-actions): Like `tramp-actions-before-shell', but
6593 executed for each hop in a multi-hop connection.
6594 (tramp-last-cmd-time): New variable. If nothing has been sent to
6595 remote end for 60 seconds, look to see if the remote end is still
6596 alive.
6597 (tramp-perl-mime-encode, tramp-perl-mime-decode): Remove.
6598 It didn't work.
6599 (tramp-perl-encode, tramp-perl-decode): New variables, these
6600 require the MIME::Base64 module on the remote end.
6601 (tramp-handle-file-attributes): Restructure logic.
6602 (tramp-handle-file-attributes-with-ls)
6603 (tramp-handle-file-attributes-with-perl): More debugging.
6604 (tramp-handle-directory-files): Grok fifth arg `files-only' for XEmacs.
6605 (tramp-handle-make-directory, tramp-handle-delete-directory)
6606 (tramp-handle-delete-file, tramp-handle-insert-directory):
6607 Expand file name.
6608 (tramp-handle-shell-command): Use `when', not `if'.
6609 (tramp-handle-file-local-copy, tramp-handle-write-region):
6610 Adapt to autodetection of inline encoding.
6611 (tramp-invoke-ange-ftp): Require ange-ftp to make sure that
6612 variable ange-ftp-name-format is defined before binding it.
6613 (tramp-action-login, tramp-action-password, tramp-action-succeed)
6614 (tramp-action-permission-denied, tramp-action-yesno):
6615 Functions called from `tramp-actions-before-shell'.
6616 (tramp-multi-action-login, tramp-multi-action-password)
6617 (tramp-multi-action-succeed, tramp-multi-action-permission-denied):
6618 Functions called from `tramp-multi-actions'.
6619 (tramp-process-one-action, tramp-process-actions):
6620 Pattern matching and action invocation code for
6621 `tramp-actions-before-shell'.
6622 (tramp-process-one-multi-action, tramp-process-multi-actions):
6623 Same for `tramp-multi-actions'.
6624 (tramp-open-connection-telnet, tramp-open-connection-rsh)
6625 (tramp-open-connection-su): Process actions instead of hardwired logic.
6626 (tramp-multi-connect-telnet, tramp-multi-connect-rlogin)
6627 (tramp-multi-connect-su): Ditto.
6628 (tramp-post-connection): New method for tramp_encode and
6629 tramp_decode scripts.
6630 (tramp-post-connection): Invoke inline autodetection code.
6631 (tramp-coding-commands): List of inline codings.
6632 (tramp-find-inline-encoding): This is the inline autodetection code.
6633 (tramp-maybe-open-connection): If nothing was sent to connection
6634 for 60 seconds, look if it connection is still alive.
6635 (tramp-send-command): Remember that something was sent to the
6636 connection.
6637 (tramp-make-tramp-file-name, tramp-make-tramp-multi-file-name):
6638 Use backticks for constructing alist.
6639 (tramp-get-encoding-command, tramp-set-encoding-command)
6640 (tramp-get-decoding-command, tramp-set-decoding-command)
6641 (tramp-get-encoding-function, tramp-set-encoding-function)
6642 (tramp-get-decoding-function, tramp-set-decoding-function):
6643 Use for results of inline autodetection.
6644 (tramp-get-encoding-command, tramp-get-decoding-command)
6645 (tramp-get-encoding-function, tramp-get-decoding-function):
6646 Remove these old functions.
6647
6648 2002-07-30 Kenichi Handa <handa@etl.go.jp>
6649
6650 * language/indian.el (in-is13194): Give correct `safe-chars' property.
6651 (devanagari): Define it as an alias of in-is13194.
6652
6653 * international/mule.el (safe-chars):
6654 Put `char-table-extra-slots' property with value 0.
6655
6656 * files.el (revert-buffer): Fix previous change.
6657
6658 2002-07-29 Richard M. Stallman <rms@gnu.org>
6659
6660 * bindings.el (help-echo): If global-mode-string is non-nil,
6661 display some spaces after it.
6662
6663 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
6664 Don't call string-match on non-string.
6665 (displaying-byte-compile-warnings):
6666
6667 * textmodes/ispell.el (check-ispell-version): Bind default-directory
6668 to avoid errors. Kill the old temp buffer at the beginning.
6669
6670 2002-07-29 Glenn Morris <gmorris@ast.cam.ac.uk>
6671
6672 * scroll-all.el (scroll-all-mode): Make argument optional. Doc fix.
6673
6674 2002-07-29 John Paul Wallington <jpw@shootybangbang.com>
6675
6676 * scroll-all.el (scroll-all-mode): Handle numeric arg. Use `if'
6677 instead of `cond'.
6678
6679 2002-07-29 Kenichi Handa <handa@etl.go.jp>
6680
6681 * international/mule.el (ctext-post-read-conversion): Add support
6682 for embedded utf-8 encoding (ESC % G ... ESC % @).
6683
6684 2002-07-28 Kenichi Handa <handa@etl.go.jp>
6685
6686 * files.el (revert-buffer): Before calling insert-file-contents,
6687 kill the local variable buffer-file-coding-system.
6688
6689 2002-07-28 Richard M. Stallman <rms@gnu.org>
6690
6691 * bindings.el (mode-line-format): Handle vc-mode specially.
6692 Move mode-line-position to after global-mode-string.
6693 (mode-line-modes): Move the starting 3 spaces out of here.
6694 (mode-line-position): Separate with a space, not dashes.
6695
6696 * vc-hooks.el: Don't add to minor-mode-alist.
6697
6698 * emacs-lisp/edebug.el (edebug-debugger):
6699 If inside redisplay, just return.
6700
6701 * emacs-lisp/debug.el (debug): If inside redisplay, just return.
6702
6703 * info.el (Info-find-index-name): Improve last change.
6704
6705 2002-07-27 Richard M. Stallman <rms@gnu.org>
6706
6707 * files.el (file-name-sans-extension): Avoid expanding DIRECTORY.
6708
6709 * calendar/cal-hebrew.el (diary-rosh-hodesh): Cons mark on
6710 in the third case.
6711
6712 2002-07-27 Markus Rost <rost@math.ohio-state.edu>
6713
6714 * ps-print.el: Update copyright year.
6715 (ps-begin-cut-regexp, ps-end-cut-regexp): Fix type.
6716
6717 2002-07-26 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6718
6719 * eshell/eshell.el (eshell): Numeric prefix arg means to switch
6720 to the session with that number. Old behavior still available
6721 with nonumeric prefix args.
6722
6723 2002-07-08 Simon Josefsson <jas@extundo.com>
6724
6725 * mail/mail-extr.el (mail-extr-all-top-level-domains): Update names.
6726
6727 2002-07-26 Juanma Barranquero <lektu@terra.es>
6728
6729 * warnings.el (lwarn, warn, warning-levels): Doc fix.
6730 (warning-suppress-log-types): Fix typo.
6731 (display-warning): Fix typo. Remove useless assignment to free variable
6732 `group-string'.
6733
6734 2002-07-25 Markus Rost <rost@math.ohio-state.edu>
6735
6736 * ediff-wind.el (ediff-window-setup-function): Extend type declaration.
6737
6738 2002-07-25 Sam Steingold <sds@gnu.org>
6739
6740 * replace.el (occur-rename-buffer): New command.
6741 (occur-mode-map): Bind "r" to it. Added keybindings for
6742 `kill-this-buffer', `clone-buffer' and `quit-window'.
6743
6744 2002-07-25 Kevin Ryde <user42@zip.com.au>
6745
6746 * info.el (Info-find-index-name): Search for a function definition
6747 with a return type.
6748
6749 2002-07-25 David Ponce <david@dponce.com>
6750
6751 * emacs-lisp/bytecomp.el (byte-compile-set-symbol-position):
6752 Don't recompute `entry' on each iteration.
6753 (byte-compile-delete-first): Make it defsubst.
6754
6755 2002-07-25 Sam Steingold <sds@gnu.org>
6756
6757 * progmodes/cc-engine.el (c-search-uplist-for-classkey):
6758 When `search-end' is a cons, use its car.
6759
6760 2002-07-25 Dave Love <fx@gnu.org>
6761
6762 * obsolete/c-mode.el: Deleted.
6763
6764 2002-07-25 Carsten Dominik <dominik@astro.uva.nl>
6765
6766 * textmodes/reftex.el (reftex-compile-variables):
6767 Simplified regular expression.
6768
6769 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
6770 Simplified the regexp.
6771
6772 * textmodes/reftex-cite.el (reftex-get-bibkey-default): New function.
6773 (reftex-extract-bib-entries-from-thebibliography):
6774 Use `reftex-get-bibkey-default' to get a default regex.
6775 (reftex-extract-bib-entries): Use `reftex-get-bibkey-default' to
6776 get a default regex.
6777
6778 * textmodes/reftex-toc.el (reftex-toc-mode): Use `make-local-hook' for
6779 XEmacs compatibility (got OK from RMS).
6780
6781 * textmodes/reftex-index.el (reftex-index-mode): Likewise.
6782
6783 * textmodes/reftex-sel.el (reftex-select-label-mode): Likewise.
6784 (reftex-select-bib-mode): Likewise.
6785
6786 2002-07-25 Colin Walters <walters@debian.org>
6787
6788 * ibuffer.el (ibuffer-mouse-popup-menu): Allow point to be moved
6789 by menu functions.
6790
6791 2002-07-24 Dave Love <fx@gnu.org>
6792
6793 * international/mule.el (set-auto-coding): Doc fix.
6794
6795 * international/utf-16.el: New file.
6796
6797 * language/european.el ("German", "French", "Spanish", "Turkish"):
6798 Add alternative coding systems.
6799 ("Dutch"): Likewise. Add input method.
6800 ("Welsh", "Latin-7"): Add nonascii-translation.
6801
6802 * language/georgian.el ("Georgian"): Add nonascii-translation.
6803
6804 * international/titdic-cnv.el: Doc fixes.
6805 (tit-process-header): Add coding cookie.
6806 (titdic-convert): Force writing as iso-2022-7bit.
6807
6808 * international/ja-dic-cnv.el (skkdic-convert): Add coding cookie.
6809
6810 * international/mule-cmds.el: Doc fixes.
6811 (unencodable-char-position): New.
6812 (select-safe-coding-system): Use it to indicate problematic
6813 characters and add extra explanation. Avoid checking auto-coding
6814 for compressed files.
6815 (leim-list-header): Add coding cookie.
6816 (input-method-verbose-flag): Modify :type.
6817 (locale-language-names): Add bs, wa. Modify cy.
6818
6819 2002-07-24 Richard M. Stallman <rms@gnu.org>
6820
6821 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
6822 Bind warning-group-format.
6823
6824 * emacs-lisp/bytecomp.el (byte-compile-cl-functions): New variable.
6825 (byte-compile-cl-warn): Use that variable.
6826 (byte-compile-find-cl-functions): New function.
6827 (displaying-byte-compile-warnings):
6828 Call byte-compile-find-cl-functions.
6829
6830 * warnings.el (warning-levels): Add %s to the strings.
6831 (warning-group-format): New variable.
6832 (warning-suppress-log-types): Renamed from warning-suppress-log.
6833 (warning-suppress-types): Renamed from warning-suppress.
6834 (display-warning): Implement those changes.
6835
6836 2002-07-23 Richard M. Stallman <rms@gnu.org>
6837
6838 * warnings.el: Add `provide' call.
6839
6840 * files.el (basic-save-buffer-2): If there's an error writing the file,
6841 unrename the backup file if it was just made.
6842 (backup-buffer, basic-save-buffer-2, basic-save-buffer-1)
6843 (basic-save-buffer): Value now has form (MODES . BACKUPNAME)
6844 when a backup was just made by renaming. Otherwise it's nil.
6845
6846 * wid-edit.el (widget-convert): Handle an argument that's a keyword.
6847 Recognize explicit :args specification.
6848
6849 * international/mule-cmds.el (select-safe-coding-system):
6850 Don't ask for confirmation of mismatch if find-file-literally was used.
6851
6852 2002-07-23 Markus Rost <rost@math.ohio-state.edu>
6853
6854 * add-log.el (add-log-current-defun): Fix typo in documentation.
6855
6856 2002-07-22 Markus Rost <rost@math.ohio-state.edu>
6857
6858 * add-log.el (add-log-mailing-address): Fix type. Can be a string.
6859
6860 * ido.el (ido-separator): Fix type.
6861
6862 2002-07-23 Andrew Innes <andrewi@gnu.org>
6863
6864 * makefile.w32-in (DONTCOMPILE): Remove cus-start.el.
6865 (DONTCOMPILE): Add various language files.
6866 (DONTCOMPILE): Remove term/xterm.el.
6867 (finder-inf.el): Remove.
6868 (update-authors): New target.
6869 (TAGS-LISP): Remove $(lispsource).
6870 (compile-always): Renamed from `compile-files'.
6871 (compile): New target, adapted from `compile-files'.
6872 (compile-calc): New target.
6873 (recompile): Change `.' to $(lisp).
6874 (bootstrap): Add update-subdirs and finder-data
6875 to dependencies; change compile-files to compile.
6876
6877 2002-07-22 Andre Spiegel <spiegel@gnu.org>
6878
6879 * vc.el (vc-next-action-on-file): Preserve find-file-literally.
6880
6881 2002-07-22 Dan Nicolaescu <dann@ics.uci.edu>
6882
6883 * simple.el (undo, undo-more): Adjust messages when undoing in a
6884 region.
6885
6886 2002-07-22 John Paul Wallington <jpw@shootybangbang.com>
6887
6888 * net/browse-url.el (browse-url-lynx-input-attempts): Use defcustom.
6889 (browse-url-lynx-input-delay): Add custom type and group.
6890
6891 * cus-start.el (double-click-fuzz): Added.
6892
6893 2002-07-22 Alan Shutko <ats@acm.org>
6894
6895 * calendar/solar.el (diary-sabbath-candles): Add optional MARK
6896 parameter, specifying what face or character to use in the
6897 calendar display. These will now return (MARK . ENTRY).
6898
6899 * calendar/lunar.el (diary-phases-of-moon): Add optional MARK
6900 parameter, specifying what face or character to use in the
6901 calendar display. These will now return (MARK . ENTRY).
6902
6903 * calendar/cal-hebrew.el (diary-omer, diary-yahrzeit)
6904 (diary-rosh-hodesh, diary-parasha, diary-parasha): Add optional
6905 MARK parameter, specifying what face or character to use in the
6906 calendar display. These will now return (MARK . ENTRY).
6907
6908 * calendar/diary-lib.el (mark-sexp-diary-entries): Retrieve mark
6909 from diary-sexp-entry and pass it to mark-visible-calendar-date.
6910 (list-sexp-diary-entries): Update doc string for new docs for ....
6911 If diary-sexp-entry returns a cons, only add the text to the diary
6912 list.
6913 (diary-sexp-entry): Allow sexps to return a cons of the form (MARK
6914 . STRING) to specify what face or character mark should be used in
6915 the calendar display.
6916 (diary-date, diary-block, diary-float, diary-anniversary)
6917 (diary-cyclic): Add optional MARK parameter, specifying what face
6918 or character to use in the calendar display. These will now
6919 return (MARK . ENTRY).
6920
6921 * calendar/diary-lib.el (check-calendar-holidays, diary-iso-date)
6922 (calendar-holiday-list, diary-french-date, diary-mayan-date)
6923 (diary-julian-date, diary-astro-day-number, diary-chinese-date)
6924 (diary-islamic-date, list-islamic-diary-entries)
6925 (mark-islamic-diary-entries, mark-islamic-calendar-date-pattern)
6926 (diary-hebrew-date, diary-omer, diary-yahrzeit, diary-parasha)
6927 (diary-rosh-hodesh, list-hebrew-diary-entries)
6928 (mark-hebrew-diary-entries, mark-hebrew-calendar-date-pattern)
6929 (diary-coptic-date, diary-persian-date, diary-phases-of-moon)
6930 (diary-sunrise-sunset, diary-sabbath-candles):
6931 Remove interactive flag from autoloads.
6932
6933 2002-07-22 Carsten Dominik <dominik@astro.uva.nl>
6934
6935 * textmodes/reftex-vars.el (reftex-index-verify-function): New option.
6936 (reftex-bibliography-commands): New option.
6937 (reftex-toc-split-windows-horizontally): New option
6938 (reftex-toc-split-windows-horizontally-fraction): New option
6939 (reftex-include-file-commands): New option.
6940 (reftex-cite-format-builtin): Added ?n for nocite.
6941
6942 * textmodes/reftex-index.el (reftex-query-index-phrase):
6943 Use `reftex-index-verify-function'.
6944
6945 * textmodes/reftex-toc.el (reftex-re-enlarge):
6946 Handle horizontal splitting.
6947 (reftex-toc): Handle horizontal splitting
6948 (reftex-last-window-width): New variable.
6949
6950 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
6951 Use `reftex-bibliography-commands'.
6952 (reftex-locate-bibliography-files): Regexp relaxed to allow for
6953 cases where \bibliography is not the first thing on the line.
6954
6955 * textmodes/reftex.el (reftex-compile-variables):
6956 Use `reftex-include-file-commands'.
6957 (reftex-type-query-prompt): Changed defconst to defvar.
6958 (reftex-type-query-help, reftex-typekey-to-format-alist)
6959 (reftex-typekey-to-prefix-alist, reftex-env-or-mac-alist)
6960 (reftex-special-env-parsers, reftex-label-mac-list)
6961 (reftex-label-env-list, reftex-typekey-list)
6962 (reftex-words-to-typekey-alist, reftex-key-to-index-macro-alist)
6963 (reftex-query-index-macro-prompt, reftex-query-index-macro-help)
6964 (reftex-no-follow-message, reftex-no-info-message): Likewise.
6965 (reftex-mode): Define systax table for bibtex parsing.
6966 (reftex-syntax-table-for-bib): Syntax table for bibtex parsing.
6967
6968 * textmodes/reftex-cite.el (reftex-format-names): %a as name
6969 format lists all names.
6970 (reftex-parse-bibtex-entry): Use `reftex-syntax-table-for-bib'.
6971 (reftex-with-special-syntax-for-bib): New macro.
6972
6973 2002-07-21 Richard M. Stallman <rms@gnu.org>
6974
6975 * international/ucs-tables.el (ucs-quail-activate):
6976 Cope if buffer-file-coding-system is nil.
6977
6978 * bindings.el (last-buffer): Use buffer-list with frame arg.
6979 Create *scratch* if no other choice exists. Fix bugs.
6980
6981 2002-07-21 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6982
6983 * net/tramp.el: Bump version to 2.0.2.
6984 (tramp-methods): Rename methods invoking "ssh1" or "ssh2" to
6985 longer names. Use old names "sm1", "sm2" and so on for methods
6986 invoking "ssh -1" or "ssh -2".
6987 (tramp-multi-file-name-structure-separate): Typo, its name was set
6988 to "tramp-file-name-structure-separate". Trivial patch.
6989 From Steve Youngs <youngs@xemacs.org>.
6990 (tramp-multi-sh-program): New variable.
6991 (tramp-open-connection-multi): Use it. Now you can use multi
6992 methods from Windows (at least in principle).
6993 (tramp-do-copy-or-rename-via-buffer): New function.
6994 (tramp-do-copy-or-rename-file): Use it. Change and simplify
6995 logic. Omit special case of invoking rcp directly to copy the files.
6996 (tramp-open-connection-su, tramp-multi-connect-telnet)
6997 (tramp-multi-connect-rlogin, tramp-multi-connect-su)
6998 (tramp-make-tramp-file-name, tramp-make-tramp-multi-file-name):
6999 Use backticks in format-spec for brevity and to avoid
7000 character/number confusion in XEmacs.
7001
7002 2002-07-20 Richard M. Stallman <rms@gnu.org>
7003
7004 * wid-edit.el (widget-documentation-string-value-create):
7005 Say "Hide Rest", not just "Hide".
7006
7007 * cus-edit.el (custom-variable-value-create):
7008 Say "Show Value", not just "Show". Also "Hide Value".
7009 Output a newline before the doc string.
7010 (custom-face-value-create): Say "Show Face" and "Hide Face".
7011
7012 * files.el (toggle-read-only): Clean up the hint message.
7013
7014 * emacs-lisp/bytecomp.el: Use warnings.el.
7015 (byte-compile-warning-prefix): New function.
7016 (byte-compile-log-file): Return page start position.
7017 (byte-compile-log-warning): New function.
7018 (byte-compile-warn): Use byte-compile-log-warning.
7019 (byte-compile-report-error): Likewise. Also use error-message-string.
7020 (displaying-byte-compile-warnings): Bind warning-series.
7021 Don't bind or use byte-compile-warnings-point-max.
7022 Don't display the log buffer at the end.
7023 (byte-compile-warnings-point-max): Variable deleted.
7024 (byte-compile-log-1): Rewrite for trace info, not used for warnings.
7025 (byte-compile-last-warned-form, byte-compile-last-logged-file):
7026 Defvars moved.
7027
7028 * warnings.el: New file.
7029
7030 2002-07-19 Richard M. Stallman <rms@gnu.org>
7031
7032 * emacs-lisp/bytecomp.el (byte-compile-cl-warn): Delete `values'
7033 and `values-list' from list of CL functions.
7034
7035 2002-07-19 John Paul Wallington <jpw@shootybangbang.com>
7036
7037 * emacs-lisp/bytecomp.el (compile-defun):
7038 Bind `read-with-symbol-positions' to current buffer.
7039
7040 2002-07-19 Andre Spiegel <spiegel@gnu.org>
7041
7042 * vc-hooks.el (vc-insert-file): When called with a LIMIT regexp,
7043 delete anything that comes after LIMIT from the buffer.
7044
7045 * vc-rcs.el (vc-rcs-fetch-master-state): Be more careful to check
7046 if this is really an RCS master file.
7047
7048 * vc.el: Improve comment of vc-BACKEND-workfile-unchanged-p.
7049
7050 2002-07-19 Juanma Barranquero <lektu@terra.es>
7051
7052 * emacs-lisp/bytecomp.el (dot, dot-max, dot-min, dot-marker)
7053 (buffer-flush-undo, baud-rate, compiled-function-p, define-function)
7054 (unread-command-char, executing-macro, post-command-idle-hook)
7055 (post-command-idle-delay): Move obsolescence declarations to subr.el.
7056
7057 * subr.el (dot, dot-max, dot-min, dot-marker, buffer-flush-undo)
7058 (baud-rate, compiled-function-p, define-function, unread-command-char)
7059 (executing-macro, post-command-idle-hook, post-command-idle-delay):
7060 Move obsolescence declarations from emacs-lisp/bytecomp.el.
7061 (directory-sep-char, mode-line-inverse-video):
7062 Add obsolescence declaration.
7063
7064 2002-07-18 J.D. Smith <jdsmith@as.arizona.edu>
7065
7066 * progmodes/idlwave.el: Updated to IDLWAVE version 4.14. Too many
7067 changes to list them here.
7068
7069 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.14.
7070 Too many changes to list them here.
7071
7072 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.14.
7073 Too many changes to list them here.
7074
7075 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.14 with
7076 only minor documentation changes.
7077
7078 2002-07-18 Dave Love <fx@gnu.org>
7079
7080 * info-look.el: Support current auto{conf,make} manuals.
7081
7082 2002-07-18 Juanma Barranquero <lektu@terra.es>
7083
7084 * bindings.el (last-buffer): Add missing frame argument.
7085
7086 2002-07-18 Richard M. Stallman <rms@gnu.org>
7087
7088 * timer.el (timer-inc-time): Doc fix.
7089
7090 * replace.el (keep-lines, flush-lines): Interactively report
7091 read-only error before reading regexp argument.
7092
7093 * dabbrev.el (dabbrev--search): Use inhibit-point-motion-hooks.
7094
7095 * bindings.el (last-buffer): Handle buffer-list and buffer-predicate
7096 frame parameters like bury-buffer.
7097
7098 * simple.el (choose-completion-delete-max-match):
7099 Handle minibuffer prompts explicitly.
7100
7101 2002-07-18 Juanma Barranquero <lektu@terra.es>
7102
7103 * international/mule-util.el (string-to-sequence, truncate-string):
7104 Add autoload cookie to obsolescence declaration.
7105
7106 * rect.el (move-to-column-force): Likewise.
7107
7108 * composite.el (decompose-composite-char): Likewise; also remove
7109 redundant info.
7110
7111 2002-07-18 Kim F. Storm <storm@cua.dk>
7112
7113 * loadup.el: Load international/utf-8 before international/characters.
7114
7115 2002-07-17 Dave Love <fx@gnu.org>
7116
7117 * international/ucs-tables.el: Optimize tables. Deal with some
7118 non-8859 charsets.
7119 (ucs-mule-to-mule-unicode): New.
7120 (ucs-unify-8859): Use utf-8-fragment-on-decoding, set up Quail
7121 translation.
7122 (ucs-fragment-8859): Modified consistent with ucs-unify-8859.
7123 (unify-8859-on-encoding-mode): Doc mod. Fix custom version.
7124 (unify-8859-on-decoding-mode): Doc mod. Change code. Fix custom
7125 version. Add custom dependencies.
7126 (ucs-insert): Check for null from decode-char.
7127 (translation-table-for-input, ucs-quail-activate)
7128 (ucs-minibuffer-setup, ccl-encode-unicode-font)
7129 (ucs-tables-unload-hook): New.
7130
7131 * international/mule.el (define-translation-hash-table): New.
7132 (decode-char): Use utf-8-translation-table-for-decode.
7133 (encode-char): Use ucs-mule-to-mule-unicode.
7134
7135 * international/characters.el: Fix settings of U+2000-U+2027.
7136 Remove \e$(C'Y\e(B.
7137
7138 * international/mule-cmds.el (locale-language-names): Fix be, add
7139 sr_YU@cyrillic, modify tg.
7140 (locale-charset-language-names): Put @euro last.
7141
7142 * language/cyrillic.el (cyrillic-koi8-r-decode-table)
7143 (cyrillic-alternativnyj-decode-table): Fill out with mule-unicode.
7144 (cyrillic-koi8-r-decode-table): Make unbound after use.
7145 (ccl-decode-koi8, ccl-decode-alternativnyj): Change expansion
7146 factor. Use utf-8-translation-table-for-decode.
7147 (ccl-encode-koi8, ccl-encode-koi8): Don't check r0.
7148 (cyrillic-unify-encoding): New function.
7149 (cyrillic-koi8): Modify safe-chars, valid-codes.
7150 Remove charset-origin-alist.
7151 (Cp878, cp866): New alias.
7152 (ccl-encode-8859-5-font): New.
7153 (font-ccl-encoder-alist): Add ccl-encode-8859-5-font.
7154 (ccl-encode-koi8-font, ccl-encode-alternativnyj-font):
7155 Remove redundant parens.
7156 ("Cyrillic-KOI8"): Add cyrillic-iso-8bit to coding-priority.
7157 (cyrillic-koi8-u-decode-table, ccl-decode-koi8-u)
7158 (ccl-encode-koi8-u, koi8-u, ccl-encode-koi8-u-font, "Ukrainian"): New.
7159 (cyrillic-alternativnyj): Modify safe-chars, add mime-charset.
7160 ("Cyrillic-ALT"): Change input method.
7161 ("Windows-1251", "Tajik", "Bulgarian", "Belarusian"): New.
7162
7163 * international/utf-8.el (utf-8-subst-table)
7164 (utf-8-subst-rev-table, utf-8-translation-table-for-decode)
7165 (utf-8-fragment-on-decoding, ccl-untranslated-to-ucs)
7166 (utf-8-ccl-regs, utf-8-translate-cjk): New.
7167 (ccl-encode-mule-utf-8): Use utf-8-subst-rev-table.
7168 (ccl-decode-mule-utf-8, ccl-untranslated-to-ucs)
7169 (utf-8-untranslated-to-ucs, utf-8-compose): Rewritten.
7170 (mule-utf-8): Remove pre-write-conversion.
7171 (utf-8-post-read-conversion): Comment out.
7172
7173 * international/ccl.el (ccl-command-table): Add lookup-integer,
7174 lookup-character.
7175 (ccl-extended-code-table): Add lookup-int-const-tbl,
7176 lookup-char-const-tbl.
7177 (ccl-compile-lookup-integer, ccl-compile-lookup-character)
7178 (ccl-dump-lookup-int-const-tbl, ccl-dump-lookup-char-const-tbl):
7179 New functions.
7180 (define-ccl-program): Doc update.
7181
7182 * international/utf-8-subst.el: Populate utf-8-subst-rev-table.
7183 (utf-8-subst-table): Don't set.
7184
7185 2002-07-17 Kenichi Handa <handa@etl.go.jp>
7186
7187 * international/mule.el (define-coding-system-alias):
7188 Don't append ALIAS in the property `alias-coding-systems' if ALIAS's
7189 eol-type is not auto-detection.
7190
7191 * international/mule-diag.el (print-coding-system-briefly):
7192 Fix the handling of an alias of which eol-type is not auto-detection.
7193
7194 * international/mule-conf.el (us-ascii): Define it as an alias of
7195 iso-safe.
7196
7197 2002-07-17 Juanma Barranquero <lektu@terra.es>
7198
7199 * help-fns.el (describe-function-1): Put empty line before "Not
7200 documented" text.
7201
7202 * timer.el (timer-set-time-with-usecs): Mark obsolete.
7203
7204 2002-07-16 Stefan Monnier <monnier@cs.yale.edu>
7205
7206 * toolbar/tool-bar.el (tool-bar-add-item-from-menu):
7207 Make sure to change the global tool-bar-map.
7208
7209 * vc.el (vc-default-comment-history): Hard code *vc*.
7210 This is because print-log always prints there now.
7211 (vc-annotate-font-lock-keywords): New var.
7212 (vc-annotate-mode): Use it. Set truncate-lines as well.
7213 (vc-annotate-display-select): Unify the two error reports.
7214 (vc-annotate-offset): New var.
7215 (vc-annotate-lines): New fun extracted from vc-annotate-display.
7216 (vc-annotate-display): Use it, via font-lock.
7217
7218 * help-fns.el (help-split-fundoc, help-function-arglist)
7219 (help-make-usage): New funs, extracted from describe-function-1.
7220 (describe-function-1): Use them.
7221
7222 * help.el (help-key-description): Show the untranslated keys
7223 when they start with ESC and the ESC was not translated.
7224
7225 * help-mode.el (view): Always require.
7226 (help-xref-mule-regexp): Don't use defconst for variables.
7227 (help-setup-xref): Keep the last 10 elements of the stack.
7228 (help-xref-override-view-map): New var.
7229 (help-make-xrefs): Use it instead of building a new map each time.
7230 (help-function-def): Allow help-fun to take a buffer as arg.
7231
7232 * diff-mode.el (diff-reverse-direction): Simplify.
7233 (diff-after-change-function): Fix typo.
7234 (diff-post-command-hook): Take care of edge cases.
7235 (diff-current-defun): Do `goto-char' after setting the mode.
7236
7237 * mouse-sel.el (mouse-sel-mode): Use define-minor-mode.
7238 Fold mouse-sel-bindings into it.
7239 (mouse-sel-bound-events): Turn it into an alist.
7240 (mouse-insert-selection): Delegate to mouse-yank-at-click if
7241 mouse-sel-default-bindings asks for it.
7242
7243 2002-07-16 Andre Spiegel <spiegel@gnu.org>
7244
7245 * files.el: Bind toggle-read-only to C-x C-q.
7246 (toggle-read-only): Display a warning message if the file is under
7247 version control.
7248
7249 * vc-hooks.el: Don't bind vc-toggle-read-only to C-x C-q.
7250 (vc-toggle-read-only): Explain in the doc string that users can bind
7251 this to C-x C-q.
7252 (vc-checkout-model): Change doc string to refer to vc-next-action,
7253 not vc-toggle-read-only.
7254
7255 * vc.el (vc-next-action-on-file): Ignore buffer-read-only while
7256 comparing to file on disk. Fix the case when claiming the lock
7257 on a file that has unlocked changes.
7258 (vc-log-mode): Don't mention vc-toggle-read-only in the doc string.
7259
7260 2002-07-16 Richard M. Stallman <rms@gnu.org>
7261
7262 * simple.el (choose-completion-string): Doc fix.
7263
7264 * cus-edit.el: New operation :custom-standard-value.
7265 (Custom-reset-standard): Use it.
7266 (custom-variable, custom-face): Define it.
7267 (custom-variable-standard-value, custom-face-standard-value): New fns.
7268 (custom-face-save): Don't save a face whose value is standard.
7269 (custom-save-faces): Use SYMBOL, not 'default, to set NOW and COMMENT.
7270
7271 * cus-edit.el (custom-face-edit-fix-value):
7272 If VALUE is not a list, pass it thru.
7273
7274 * compare-w.el (compare-windows-whitespace): Always allow newline
7275 even if it does not have whitespace syntax.
7276
7277 2002-07-16 Juanma Barranquero <lektu@terra.es>
7278
7279 * timer.el (timer-set-time, timer-set-time-with-usecs): Fix docstring.
7280
7281 2002-07-15 Juanma Barranquero <lektu@terra.es>
7282
7283 * help-fns.el (describe-variable): Show documentation for aliased
7284 variable if alias does not have its own.
7285
7286 2002-07-15 Mike Williams <mdub@bigfoot.com>
7287
7288 * mouse-sel.el (mouse-sel-bindings): Save/restore interprogram
7289 cut/paste functions.
7290
7291 2002-07-14 Richard M. Stallman <rms@gnu.org>
7292
7293 * files.el (find-alternate-file): Offer to save a modified buffer.
7294 Handle kill-buffer-query-functions better.
7295
7296 * startup.el (normal-splash-screen, fancy-splash-text):
7297 Update name of help menu item for ordering printed manuals.
7298
7299 * emacs-lisp/checkdoc.el: Fix doc typos.
7300
7301 2002-07-14 Stefan Monnier <monnier@cs.yale.edu>
7302
7303 * textmodes/tex-mode.el: Set encoding to utf-8.
7304 (tex-start-options): Make it into always-a-string.
7305 Remove silly custom options that are covered by the other var.
7306 (tex-start-commands): Fix docstring.
7307 (tex-open-quote, tex-close-quote): Add options.
7308 (tex-command): Provide default.
7309 (tex-font-lock-keywords-1): Highlight $$...$$.
7310 (tex-font-lock-keywords-2): Fix latin-1 chars.
7311 (tex-mode-map): Remove redundant \t binding.
7312 (tex-mode): Add `subsection' and `newcommand' to known latex cmds.
7313 (latex-mode): Use add-hook for fill-nobreak-predicate.
7314 (tex-common-initialization): Set indent-tabs-mode to nil.
7315 (tex-insert-quote): Undo magic if invoked twice in a row.
7316 (latex-fill-nobreak-predicate): Don't use narrowing.
7317 (tex-latex-block): Don't cons uselessly.
7318 (tex-last-unended-begin): Signal user-friendlier error.
7319 (tex-goto-last-unclosed-latex-block): Don't catch signal.
7320 (tex-start-tex): Switch order of tex-start-options and
7321 tex-start-commands to make it obey docstrings.
7322
7323 2002-07-14 Mike Williams <mdub@bigfoot.com>
7324
7325 * mouse-sel.el (mouse-sel-bound-events): New constant.
7326 (mouse-sel-bindings): Save/restore original mouse-bindings.
7327
7328 2002-07-13 Stefan Monnier <monnier@cs.yale.edu>
7329
7330 * emacs-lisp/cl.el (cl-set-substring): Fix thinko.
7331 (cl-hack-byte-compiler): Avoid infinite require loop.
7332
7333 * net/ange-ftp.el: Use hash-tables.
7334 (ange-ftp-make-hashtable, ange-ftp-map-hashtable)
7335 (ange-ftp-make-hash-key, ange-ftp-get-hash-entry)
7336 (ange-ftp-put-hash-entry, ange-ftp-del-hash-entry): Remove.
7337 Replace with make-hash-table, maphash, gethash, puthash and remhash.
7338 (ange-ftp-hash-entry-exists-p): Rewrite.
7339 (ange-ftp-vms-delete-file-entry, ange-ftp-vms-add-file-entry):
7340 Change mapatom -> maphash.
7341 (ange-ftp-file-entry-active-p, ange-ftp-file-entry-not-ignored-p):
7342 Update to new calling mode.
7343
7344 * progmodes/ebrowse.el (ebrowse-symbol-regexp): Avoid cl-set-substring.
7345 (ebrowse-hash-table-to-alist): Delete.
7346 (ebrowse-tags-read-name, ebrowse-tags-list-members-in-file)
7347 (ebrowse-tags-complete-symbol): Use the hashtable for completion.
7348
7349 * textmodes/sgml-mode.el (sgml-quote): Use narrowing.
7350 Improve the regexp used when unquoting.
7351 (sgml-pretty-print): New function.
7352 (sgml-get-context): Better handling of improperly nested tags.
7353 (sgml-show-context): Don't use the FULL arg of sgml-get-context.
7354
7355 2002-07-13 Andreas Schwab <schwab@suse.de>
7356
7357 * mail/mailabbrev.el (mail-abbrev-make-syntax-table): Check the
7358 inherited table entry.
7359
7360 2002-07-13 Glenn Morris <gmorris@ast.cam.ac.uk>
7361
7362 * calendar/timeclock.el (timeclock-in): Handle the case where no
7363 log file exists (ie the very first call).
7364
7365 2002-07-13 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7366
7367 * net/ange-ftp.el: Do not hook into file-name-handler-alist, this
7368 is done by Tramp.
7369
7370 * net/tramp.el (tramp-multi-file-name-structure-unified):
7371 Add missing slash and move colon from start to end of each hop.
7372 (tramp-multi-file-name-hop-structure-unified): Move colon from
7373 start to end of each hop.
7374
7375 2002-07-13 Kim F. Storm <storm@cua.dk>
7376
7377 * progmodes/compile.el (grep-tree): Fixed autoload.
7378 Corrected use of undefined variable `match-files-aliases'.
7379
7380 2002-07-12 Glenn Morris <gmorris@ast.cam.ac.uk>
7381
7382 * calendar/timeclock.el (timeclock-get-workday-function):
7383 `timeclock-workday' is not a valid option, rather a possible
7384 return value.
7385
7386 2002-07-12 Richard M. Stallman <rms@gnu.org>
7387
7388 * net/ange-ftp.el (ange-ftp-write-region):
7389 Don't bind executing-kbd-macro; instead, pass non-nil VISIT arg
7390 to ange-ftp-real-write-region.
7391
7392 * replace.el (flush-lines, keep-lines): Convert REND to a marker.
7393
7394 * help-fns.el (help-with-tutorial): Display completion list right away.
7395
7396 * ediff-ptch.el (ediff-test-patch-utility): Catch error and return nil.
7397
7398 * startup.el (command-line): Set memory-signal-data.
7399 (fancy-splash-text, normal-splash-screen):
7400 Mention "Read the Emacs Manual" or C-h r.
7401 Rearrange the initial help to put the help cmds on left
7402 and the actions (exit, undo) on the right. Other small
7403 text clarifications.
7404 (fancy-splash-text, actions page): Add blank line to balance help page.
7405
7406 * help.el (help-map): Add binding for info-emacs-manual.
7407 (print-help-return-message): Doc fix.
7408
7409 * strokes.el (strokes-help): Call print-help-return-message
7410 while inside with-output-to-temp-buffer.
7411
7412 * info.el (info-emacs-manual): New function.
7413 (Info-use-header-line): Doc fix.
7414
7415 * emacs-lisp/cl.el (multiple-value-call): Add alias.
7416
7417 * progmodes/compile.el (compilation-normalize-filename):
7418 New subroutine, taken out of compilation-parse-errors.
7419 (compilation-parse-errors): Use that, and for directories too.
7420 Don't check whether a directory really exists.
7421
7422 2002-07-12 Juanma Barranquero <lektu@terra.es>
7423
7424 * help-fns.el (describe-variable): Remove useless "Documentation:"
7425 string.
7426
7427 * timer.el (timer-set-time-with-usecs): Fix documentation.
7428 Simplify extraction of time data.
7429
7430 2002-07-12 John Paul Wallington <jpw@shootybangbang.com>
7431
7432 * help-fns.el (describe-variable): Mention if the variable is an
7433 alias. Put `defvaralias' info before the documentation.
7434
7435 2002-07-12 Kenichi Handa <handa@etl.go.jp>
7436
7437 * international/mule-cmds.el (locale-language-names): Change "mk"
7438 (Macedoninan), "ru" (Russian), and "sp" (Serbian with Cyrillic
7439 alphabet) to "Cyrillic-ISO".
7440
7441 2002-07-11 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7442
7443 * net/tramp.el (tramp-default-method): New default method "sm"
7444 which I guess to be good for most people.
7445 (tramp-default-method-alist): Use "ftp" method (ie, forwarding to
7446 Ange-FTP) for some user/host combinations.
7447 (tramp-file-name-structure, tramp-file-name-regexp)
7448 (tramp-make-tramp-file-format, tramp-make-tramp-file-user-nil-format)
7449 (tramp-multi-file-name-structure, tramp-multi-file-name-hop-structure)
7450 (tramp-make-multi-tramp-file-format): New default value which
7451 unifies the filename syntax between Tramp and Ange-FTP. The new
7452 syntax is "/method:user@host:path". Note the colon after the method.
7453 (tramp-handle-file-name-directory): Don't return "/" when
7454 completing a remote root directory (where the filename looks like
7455 "/method:user@host:/").
7456 (tramp-handle-ange-ftp): Deleted.
7457 (tramp-disable-ange-ftp): New function, called at toplevel,
7458 deletes Ange-FTP from file-name-handler-alist.
7459 (tramp-handle-make-symbolic-link): Implement.
7460
7461 2002-07-10 Juanma Barranquero <lektu@terra.es>
7462
7463 * ido.el (ido-enter-single-matching-directory): Delete leftover comment.
7464
7465 * speedbar.el (speedbar-tag-hierarchy-method): Fix typos.
7466 (speedbar-vc-do-check): Likewise.
7467 (speedbar-obj-do-check): Likewise.
7468 (speedbar-mouse-hscroll): Likewise.
7469 (speedbar-file-lists): Likewise.
7470
7471 * emacs-lisp/authors.el (authors-obsolete-file-p): Fix typo.
7472
7473 2002-07-09 Ole Aamot <ole@gnu.org>
7474
7475 * compile.el (compilation-error-regexp-alist):
7476 Recognize Valgrind messages.
7477
7478 2002-07-09 Juanma Barranquero <lektu@terra.es>
7479
7480 * faces.el (face-id): Fix typo.
7481
7482 * hexl.el (hexl-mode): Likewise.
7483
7484 * progmodes/idlw-shell.el (idlwave-shell-set-bp): Likewise.
7485
7486 * progmodes/ebnf-yac.el (ebnf-yac-error): Likewise.
7487
7488 * speedbar.el (speedbar-make-specialized-keymap): Fix docstring.
7489 (speedbar-desired-buffer): Likewise.
7490 (speedbar-line-file): Likewise.
7491 (speedbar-special-mode-key-map): Fix typo.
7492 (speedbar-dynamic-tags-function-list): Likewise.
7493 (speedbar-use-images): Likewise.
7494 (speedbar-up-directory): Likewise.
7495 (speedbar-item-info): Likewise.
7496 (speedbar-set-timer): Likewise.
7497 (speedbar-insert-button): Likewise.
7498 (speedbar-make-button): Likewise.
7499 (speedbar-make-tag-line): Likewise.
7500 (speedbar-insert-files-at-point): Likewise.
7501 (speedbar-update-special-contents): Likewise.
7502 (speedbar-find-selected-file): Likewise.
7503 (speedbar-add-indicator): Likewise.
7504 (speedbar-do-function-pointer): Likewise.
7505 (speedbar-goto-this-file): Likewise.
7506 (speedbar-line-path): Likewise.
7507 (speedbar-mouse-event-p): Likewise.
7508 (speedbar-dir-follow): Likewise.
7509 (speedbar-tag-find): Likewise.
7510 (speedbar-fetch-etags-command): Likewise.
7511 (speedbar-fetch-etags-arguments): Likewise.
7512 (speedbar-toggle-etags): Likewise.
7513 (speedbar-extract-one-symbol): Likewise.
7514 (speedbar-parse-c-or-c++tag): Likewise.
7515 (speedbar-unhighlight-one-tag-line): Likewise.
7516 (speedbar-directory-face): Likewise.
7517 (defimage-speedbar): Likewise.
7518 (speedbar-convert-emacs21-imagespec-to-xemacs): Likewise.
7519 (defimage-speedbar): Likewise.
7520
7521 2002-07-09 Miles Bader <miles@gnu.org>
7522
7523 * hexl.el (hexl-find-file): Bind `completion-ignored-extensions'
7524 to nil when prompting for a filename.
7525
7526 2002-07-09 Kenichi Handa <handa@etl.go.jp>
7527
7528 * files.el (insert-directory): Be sure to bind
7529 coding-system-for-write to the just decided coding-system-for-read.
7530
7531 2002-07-09 Kim F. Storm <storm@cua.dk>
7532
7533 * ido.el (ido-make-merged-file-list): Move fully matching item to
7534 head of list.
7535 (ido-find-common-substring): Return substring instead of t.
7536
7537 2002-07-08 Juanma Barranquero <lektu@terra.es>
7538
7539 * info.el (Info-directory-list): Fix docstring.
7540
7541 2002-07-08 Miles Bader <miles@gnu.org>
7542
7543 * comint.el (comint-dynamic-list-completions): Sort COMPLETIONS
7544 before first use.
7545
7546 2002-07-08 Kim F. Storm <storm@cua.dk>
7547
7548 * files.el (after-find-file): Don't check for read-only status
7549 of files just created (and not yet saved on disk).
7550
7551 * ido.el (ido-completion-help): Changed xemacs specific code to
7552 avoid byte compiler warning in GNU emacs.
7553 (ido-set-matches1): Use regexp-quote instead of identity.
7554 (ido-complete-space): New function.
7555 (ido-define-mode-map): Bind it to SPACE.
7556
7557 2002-07-07 Stefan Monnier <monnier@cs.yale.edu>
7558
7559 * font-lock.el (font-lock-default-unfontify-region):
7560 Use remove-list-of-text-properties.
7561 (font-lock-extra-managed-props): Doc fix.
7562
7563 * facemenu.el: Move `provide' to the end.
7564 (facemenu-read-color): Don't cons unnecessarily.
7565
7566 * language/ind-util.el (indian-make-hash):
7567 * language/devan-util.el (dev-char-glyph-hash, dev-glyph-glyph-hash)
7568 (dev-glyph-glyph-2-hash): Switch makehash -> make-hash-table.
7569
7570 * subr.el (insert-string): Update the obsolete info.
7571 (makehash): Move from C and mark obsolete.
7572
7573 * emacs-lisp/debug.el (debug-on-entry): Fix the wrapper used for
7574 aliases to also work for interactive functions.
7575 Use the same wrapper for subroutines.
7576 (cancel-debug-on-entry): Get rid of the now-useless wrapper.
7577 (debug-on-entry-1): Correctly skip docstrings and interactive forms.
7578
7579 * textmodes/texinfo.el (texinfo-font-lock-keywords): Disable the
7580 automatic environment name update.
7581 (texinfo-clone-environment): Fix it not to incorrectly match prefixes.
7582
7583 2002-07-07 Richard M. Stallman <rms@gnu.org>
7584
7585 * emacs-lisp/easymenu.el (easy-menu-popup-menu): Function deleted.
7586
7587 * emacs-lisp/advice.el (ad-compile-function):
7588 Disable cl-function warnings if cl is loaded.
7589
7590 * files.el (safe-local-eval-forms): New user option.
7591 (hack-one-local-variable-eval-safep): Support it.
7592 Also allow `safe-local-eval-function' property to be a function
7593 or a list of functions.
7594 (c-add-style): Delete `safe-local-eval-function' property.
7595
7596 * files.el (after-find-file): Make buffer read-only if file is
7597 marked that way, even for root.
7598
7599 * files.el (save-some-buffers): Doc fix.
7600
7601 * bindings.el (completion-ignored-extensions): Add .gmo and .mo.
7602
7603 2002-07-06 Francesco Potort\e,Al\e(B <pot@gnu.org>
7604
7605 * dos-w32.el (file-name-buffer-file-type-alist): Add knowledge of
7606 .sx[dmicw] file suffixes for Open office data files.
7607
7608 * files.el (auto-mode-alist): Likewise.
7609
7610 * international/mule.el (auto-coding-alist): Likewise.
7611
7612 2002-07-05 Kim F. Storm <storm@cua.dk>
7613
7614 * emulation/cua-rect.el (cua--rectangle-operation): Don't call
7615 FCT if current column is outside rectangle.
7616 (cua--delete-rectangle): Do nothing if zero width or out of bounds.
7617
7618 2002-07-04 Stefan Monnier <monnier@cs.yale.edu>
7619
7620 * net/ange-ftp.el: Use add-hook and find-file-hook.
7621 (ange-ftp-parse-netrc): Use run-hooks and find-file-hook.
7622 (ange-ftp-ls-parser): Make it into a function.
7623 Ignore trailing @ in symlink targets.
7624 (ange-ftp-file-entry-p): Ignore FTP errors.
7625 (ange-ftp-insert-directory): Use ange-ftp-expand-symlink
7626 to correctly expand "/flint:/bla -> ./etc" to /flint:/etc.
7627
7628 2002-07-04 Per Abrahamsen <abraham@dina.kvl.dk>
7629
7630 * simple.el (toggle-truncate-lines): New command.
7631
7632 2002-07-04 Miles Bader <miles@gnu.org>
7633
7634 * comint.el (comint-displayed-dynamic-completions): New variable.
7635 (comint-dynamic-list-completions): Be more careful about choosing
7636 when to scroll an existing completions window.
7637
7638 2002-07-03 Andreas Schwab <schwab@suse.de>
7639
7640 * net/tramp.el (tramp-handle-ange-ftp): Move interactive spec
7641 after doc string.
7642
7643 2002-07-03 Juanma Barranquero <lektu@terra.es>
7644
7645 * net/tramp.el (tramp-send-eof): Fix typo.
7646 (tramp-kill-process): Likewise.
7647
7648 * play/dunnet.el (dun-physobj-desc): Likewise.
7649
7650 * textmodes/reftex-vars.el (reftex-label-alist): Likewise.
7651
7652 * calendar/timeclock.el (timeclock-workday-remaining): Likewise.
7653 (timeclock-workday-elapsed): Likewise.
7654
7655 * allout.el (outline-goto-prefix): Likewise.
7656
7657 * emulation/tpu-edt.el (tpu-delete-to-eol): Likewise.
7658 (tpu-delete-to-bol): Likewise.
7659
7660 * subr.el (chars-in-region): Add obsolescence declaration for
7661 `chars-in-region'.
7662
7663 2002-07-03 Miles Bader <miles@gnu.org>
7664
7665 * faces.el (header-line): Don't use a `common' clause for
7666 inheriting from the mode-line face, since we can't override it,
7667 and we don't want it for ttys.
7668
7669 2002-07-02 Richard M. Stallman <rms@gnu.org>
7670
7671 * net/ange-ftp.el (ange-ftp-hook-function): Add file-remote-p prop.
7672
7673 * files.el (hack-one-local-variable-constantp): New function.
7674 (hack-one-local-variable-eval-safep): New function.
7675 Check for `eval:' calling fn with `safe-local-eval-function' property.
7676 (hack-one-local-variable): Use hack-one-local-variable-eval-safep.
7677 (c-add-style, c-set-style): Add safe-local-eval-function property.
7678
7679 * files.el (insert-directory): Handle --dired option to ls.
7680
7681 * files.el (file-remote-p): New function.
7682
7683 * emacs-lisp/easymenu.el (easy-menu-popup-menu): New function.
7684
7685 * startup.el (fancy-splash-screens): Switch to a chosen frame.
7686 (fancy-splash-frame): Choose the right frame to use.
7687 (use-fancy-splash-screens-p): Check dimensions of the right frame
7688 in order to decide.
7689
7690 * emacs-lisp/bytecomp.el (byte-compile-warning-types):
7691 Rename cl-func to cl-functions. Enable it by default.
7692 (byte-compile-file-form-eval-boundary): Turn off cl-functions warnings
7693 if the file loads cl.
7694 (byte-compile-initial-macro-environment): For eval-and-compile,
7695 use byte-compile-eval-before-compile to eval.
7696 (byte-compile-eval-before-compile): New function to turn off
7697 cl-functions when appropriate, for eval-and-compile.
7698 (byte-compile-warnings): Doc fix.
7699
7700 2002-07-02 Dave Love <fx@gnu.org>
7701
7702 * emacs-lisp/bytecomp.el (byte-compile-warnings): Add cl-func option.
7703 (byte-compile-cl-warn): New function.
7704 (byte-compile-form): Use it, to warn about calling cl functions.
7705 (byte-compile-warning-types): Doc fix.
7706
7707 2002-07-02 Juanma Barranquero <lektu@terra.es>
7708
7709 * mail/rmailsum.el (rmail-user-mail-address-regexp): Fix typo.
7710
7711 * textmodes/reftex-cite.el (reftex-citation): Fix typo.
7712
7713 * progmodes/cperl-mode.el (cperl-break-one-line-blocks-when-indent):
7714 Fix typo.
7715
7716 2002-07-02 Kim F. Storm <storm@cua.dk>
7717
7718 * emacs-lisp/bindat.el: New file.
7719
7720 2002-07-01 Sam Steingold <sds@gnu.org>
7721
7722 * textmodes/tex-mode.el (tex-file): Call `save-some-buffers'
7723 before `tex-main-file' because if the current buffer is new, its
7724 file might not exist yet, and then `tex-main-file' will
7725 incorrectly return "foo.tex.tex".
7726
7727 2002-07-01 Juanma Barranquero <lektu@terra.es>
7728
7729 * ido.el (ido-minibuffer-setup-hook): Doc fix.
7730
7731 2002-07-01 Dave Love <fx@gnu.org>
7732
7733 Make strokes a proper minor mode, and don't try to overload
7734 mouse-2, which doesn't work satisfactorily.
7735
7736 * strokes.el: Doc fixes.
7737 (strokes-mode): Defcustom deleted; replaced by minor mode def with
7738 re-written function.
7739 (strokes-while-inhibiting-garbage-collector): Comment out.
7740 (define-stroke, strokes-fix-button2-command, strokes-insinuated)
7741 (strokes-insinuate, global-set-stroke, describe-stroke)
7742 (load-user-strokes, save-strokes, strokes-bug-address)
7743 (strokes-click-command): Deleted.
7744 (strokes-execute-stroke): Remove strokes-click-p case.
7745 (strokes-describe-stroke): Remove strokes-click-p stuff.
7746 (strokes-help): Fix.
7747 (strokes-report-bug): Alias to report-emacs-bug.
7748 (strokes-prompt-user-save-strokes): Modify format of the file.
7749 (strokes-mode-map, strokes-unload-hook): New.
7750 (strokes-buffer-name): Don't customize.
7751
7752 2002-07-01 Richard M. Stallman <rms@gnu.org>
7753
7754 * info.el (Info-index): Get immediate error if used in `dir'.
7755
7756 * textmodes/picture.el (picture-forward-column)
7757 (picture-move-down): Never deactivate the mark.
7758
7759 2002-06-30 Simon Josefsson <jas@extundo.com>
7760
7761 * menu-bar.el (menu-bar-options-menu): Move elisp mode names from
7762 menu entry into balloon help.
7763
7764 2002-06-30 Andreas Schwab <schwab@suse.de>
7765
7766 * files.el (directory-free-space-args): Don't use `-P' on Darwin.
7767 * term/mac-win.el: Don't set it here.
7768
7769 2002-06-29 Stefan Monnier <monnier@cs.yale.edu>
7770
7771 * pcvs-defs.el (cvs-mode-map): Bind ! to `force'.
7772
7773 2002-06-29 Andreas Schwab <schwab@suse.de>
7774
7775 * term/mac-win.el: Use directory-free-space-program instead of
7776 obsolete variable dired-free-space-program. On Darwin, don't set
7777 directory-free-space-program, shell-file-name and
7778 process-connection-type; set directory-free-space-args to not
7779 include `-P' and use utf-8 for file name coding system.
7780
7781 * simple.el (shell-command-on-region): Handle errors and signals
7782 from shell command execution.
7783 (display-message-or-buffer): Fix last change.
7784 (shell-command-default-error-buffer): Doc fix.
7785
7786 * dired.el (dired-view-file): Quote file name for
7787 dired-run-shell-command.
7788
7789 2002-06-29 Kim F. Storm <storm@cua.dk>
7790
7791 * kmacro.el: New file.
7792
7793 2002-06-28 John Wiegley <johnw@gnu.org>
7794
7795 * pcmpl-cvs.el: Added my name as the maintainer of this file.
7796
7797 2002-06-28 Andreas Schwab <schwab@suse.de>
7798
7799 * shell.el (explicit-bash-args): New user option.
7800
7801 2002-06-28 Kim F. Storm <storm@cua.dk>
7802
7803 * ido.el: New file.
7804
7805 2002-06-28 Stefan Monnier <monnier@cs.yale.edu>
7806
7807 * derived.el (define-derived-mode): Preserve the `mode-class' rather
7808 than the `special' symbol property.
7809 (derived-mode-class): Make it obsolete.
7810
7811 2002-06-27 Andreas Schwab <schwab@suse.de>
7812
7813 * net/tramp.el (tramp-handle-ange-ftp): Fix typo.
7814
7815 2002-06-27 Juanma Barranquero <lektu@terra.es>
7816
7817 * emacs-lisp/bytecomp.el (baud-rate): Fix obsolescence declaration.
7818 (meta-flag): Likewise.
7819
7820 * international/mule-util.el (string-to-sequence): Likewise.
7821
7822 * subr.el (char-bytes): Likewise.
7823 (make-local-hook): Likewise.
7824 (baud-rate): Remove redundant info from docstring.
7825
7826 * faces.el (frame-update-faces): Fix obsolescence declaration.
7827 (internal-get-face): Remove redundant info from docstring and
7828 fix obsolescence declaration.
7829
7830 * rect.el (move-to-column-force): Likewise.
7831
7832 * help-fns.el (describe-function-1): Use semicolon instead of dot.
7833 (describe-variable): Likewise.
7834
7835 2002-06-27 Stefan Monnier <monnier@cs.yale.edu>
7836
7837 * mwheel.el (mouse-wheel-change-button): Deactivate before changing.
7838 (mouse-wheel-up-button, mouse-wheel-down-button): Obsolete.
7839 (mouse-wheel-up-event, mouse-wheel-down-event): New vars.
7840 (mouse-wheel-follow-mouse): Change default to t.
7841 (mwheel-event-button): Return the basic event symbol.
7842 (mwheel-scroll): Work with non-mouse events.
7843 (mouse-wheel-mode): Use the new vars.
7844 (mwheel-install): Obey `uninstall'.
7845
7846 * term/xterm.el (function-key-map): Add some bindings.
7847
7848 * uniquify.el (uniquify-delay-rationalize-file-buffer-names):
7849 Rename from delay-uniquify-rationalize-file-buffer-names.
7850 Only rationalize if the buffer is under uniquify control.
7851 (uniquify-delayed-rationalize-file-buffer-names):
7852 Rename from delayed-uniquify-rationalize-file-buffer-names.
7853
7854 2002-06-27 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7855
7856 * net/tramp.el (tramp-file-name-structure)
7857 (tramp-multi-file-name-hop-structure): Split for easier readability.
7858 (tramp-handle-make-symbolic-link): Use user/host/method/... from
7859 LINKNAME, not FILENAME.
7860 (tramp-handle-verify-visited-file-modtime):
7861 Call tramp-ange-ftp-file-name-p with right parameters.
7862 (tramp-handle-verify-visited-file-modtime): `insert' does not
7863 work for integers, convert them to strings first.
7864 (tramp-handle-ange-ftp): New function to perform setup for
7865 replacing Ange-FTP with Tramp.
7866 (tramp-repair-jka-compr): New function to factor out some
7867 previously top-level code. Call the function at top-level.
7868
7869 2002-06-27 Juanma Barranquero <lektu@terra.es>
7870
7871 * composite.el (decompose-composite-char): Fix docstring.
7872
7873 * faces.el (describe-face): Capitalize "not documented" message.
7874
7875 * help-fns.el (describe-variable): Likewise.
7876 (describe-function-1): Likewise. Also, document the obsolescence
7877 of the function, if applicable.
7878
7879 2002-06-26 Juanma Barranquero <lektu@terra.es>
7880
7881 * info.el (info-menu-5): Fix documentation.
7882 (Info-fontify-maximum-menu-size): Remove reference to `Info-fontify'.
7883
7884 2002-06-26 Richard M. Stallman <rms@gnu.org>
7885
7886 * emacs-lisp/cl.el (values): Simplify definition.
7887
7888 * simple.el (shell-command): Match & only at end of whole command.
7889 (display-message-or-buffer): Don't use the echo area
7890 if output buffer is visible.
7891
7892 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Doc fixes.
7893
7894 * progmodes/cperl-mode.el: Many trivial doc fixes.
7895 (cperl-non-problems): Definition deleted.
7896 (cperl-menu): Don't refer to cperl-non-problems.
7897 (cperl-word-at-point): Add doc string.
7898 (cperl-beautify-regexp-piece): Fix error message.
7899 (cperl-invert-if-unless): Fix error message.
7900
7901 * dired.el (dired-find-alternate-file): Mark as disabled.
7902
7903 2002-06-25 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7904
7905 * net/tramp.el (tramp-ftp-method): New user option.
7906 (tramp-invoke-ange-ftp): New function to forward calls to Ange-FTP.
7907 (with-parsed-tramp-file-name): New macro for the usual big `let'
7908 statement to dissect a file-name.
7909 (tramp-handle-make-symbolic-link, tramp-handle-load)
7910 (tramp-handle-file-name-directory)
7911 (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
7912 (tramp-handle-file-truename, tramp-handle-file-directory-p)
7913 (tramp-handle-file-regular-p, tramp-handle-file-symlink-p)
7914 (tramp-handle-file-writable-p, tramp-handle-file-writable-p):
7915 Use the new macro and forward call to Ange-FTP if applicable.
7916 (tramp-make-ange-ftp-file-name): New helper function to convert a
7917 file name into an Ange-FTP file name, used by `tramp-invoke-ange-ftp'.
7918 (tramp-default-method-alist): New user option.
7919 (tramp-find-default-method): Use it.
7920 (tramp-sh-extra-args): New variable.
7921 (tramp-find-shell): Use it.
7922 (tramp-open-connection-rsh): Support a kludgy feature for the
7923 "-p" option to ssh. If host name is given as "host#42", uses the
7924 "-p 42" option.
7925
7926 2002-06-25 Andreas Schwab <schwab@suse.de>
7927
7928 * replace.el (occur-1): Avoid invalid message format string.
7929
7930 2002-06-24 Stefan Monnier <monnier@cs.yale.edu>
7931
7932 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn):
7933 Check for `noruntime' even if the function has a known sig.
7934 (byte-compile-file, byte-compile-output-docform):
7935 Don't hard code point-min = 1.
7936
7937 * pcvs.el (cvs-parse-process): Don't save/restore point.
7938 Fix last change not to introduce spurious dir FIs.
7939 (cvs-move-to-goal-column): New function extracted from
7940 cvs-mode-previous-line.
7941 (cvs-mode-previous-line, cvs-mode-next-line): Use it.
7942 (cvs-addto-collection): Use it to preserve point.
7943 (cvs-vc-command-advice): Ad-hoc workaround for `cvs -q add'.
7944
7945 * mwheel.el (mouse-wheel-scroll-amount,mwheel-scroll,mouse-wheel-mode):
7946 Don't require the first element to be modifier-free.
7947
7948 * pcvs-parse.el (cvs-parse-table):
7949 Handle `nothing known about' with more care.
7950
7951 * pcvs.el (cvs-fileinfo-kill): Remove.
7952 (cvs-parse-process): Add `old-fis' argument.
7953 (cvs-mode-run): Use it instead of cvs-fileinfo-kill.
7954
7955 * descr-text.el (describe-property-list): Make sure there's
7956 a space between the property name and its value.
7957 (describe-text-properties): Don't kill a pre-existing buffer.
7958
7959 * mwheel.el: Undo last patch from Stephen Gildea for now.
7960
7961 2002-06-24 Kim F. Storm <storm@cua.dk>
7962
7963 * emulation/keypad.el: Added :require 'keypad to defcustoms.
7964
7965 2002-06-23 Stefan Monnier <monnier@cs.yale.edu>
7966
7967 * subr.el (event-start, event-end, event-click-count):
7968 Accept non-mouse events as well.
7969 (read-key): New function.
7970 (read-quoted-char): Use it. Use this-single-command-raw-keys as well.
7971
7972 * files.el: Rename (and mark as obsolete)
7973 find-file-hooks to find-file-hook,
7974 find-file-not-found-hooks to find-file-not-found-functions,
7975 write-file-hooks to write-file-functions,
7976 write-contents-hooks to write-contents-functions.
7977 Mark local-write-file-hooks as obsolete.
7978 (locate-file-completion): Don't cons uselessly. Use test-completion.
7979 (basic-save-buffer): Use (point-min) rather than 1.
7980 (basic-save-buffer-2): Obey the `setmodes' returned by backup-buffer.
7981
7982 * help-fns.el (describe-variable): Only use `buffer' is still live.
7983 Use `delete-region' instead of save-excursion + delete-char.
7984 Document the obsolescence of the variable, if applicable.
7985
7986 2002-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
7987
7988 * progmodes/f90.el (f90-do-auto-fill): Respect the value of
7989 comment-auto-fill-only-comments.
7990
7991 2002-06-21 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7992
7993 * net/ange-ftp.el (backup-buffer): Delete `ange-ftp' property.
7994 This is not a handled operation.
7995
7996 2002-06-21 Kim F. Storm <storm@cua.dk>
7997
7998 * emulation/cua-base.el (cua--prefix-arg): Make register prefixes
7999 work again. Corrected error in check for C-u initiated prefix.
8000
8001 * emulation/keypad.el (keypad-setup): Handle kp-begin like kp-space.
8002
8003 2002-06-21 Richard M. Stallman <rms@gnu.org>
8004
8005 * net/browse-url.el (browse-url-at-mouse): Don't pass an arg
8006 to browse-url-at-point.
8007
8008 * play/zone.el (zone-idle): Var deleted.
8009
8010 * international/iso-acc.el (iso-languages) <french>:
8011 `~ ' now generates `~', `~,' definition deleted.
8012
8013 * format.el (format-annotate-function): Copy multibyte flag
8014 and selective-display into the new temp buffer.
8015
8016 * edmacro.el (edmacro-fix-menu-commands):
8017 Discard `help-echo' events. Handle (menu-bar) events.
8018 Simplify by converting key sequence to a list and then back to vector.
8019
8020 2002-06-21 Stephen Gildea <gildea@stop.mail-abuse.org>
8021
8022 * mwheel.el: Allow arbitrary keys for scrolling, add a third
8023 scrolling speed, fix an unwind-protect.
8024 (mouse-wheel-scroll-amount): Now a three-element list.
8025 (mouse-wheel-scroll-down-slow, mouse-wheel-scroll-up-slow)
8026 (mouse-wheel-scroll-down-normal, mouse-wheel-scroll-up-normal)
8027 (mouse-wheel-scroll-down-fast, mouse-wheel-scroll-up-fast):
8028 New functions.
8029
8030 2002-06-21 Andreas Schwab <schwab@suse.de>
8031
8032 * files.el (find-file-read-args): Add new argument `mustmatch' and
8033 pass it down to read-file-name.
8034 (find-file, find-file-other-window, find-file-other-frame)
8035 (find-file-read-only, find-file-read-only-other-window)
8036 (find-file-read-only-other-frame): Use it and fix prompts.
8037
8038 2002-06-21 Stefan Monnier <monnier@cs.yale.edu>
8039
8040 * pcvs-defs.el (cvs-version): Use cvs-program rather than "cvs".
8041
8042 2002-06-20 Emmanuel Briot <briot@act-europe.fr>
8043
8044 * progmodes/ada-mode.el: Update copyright notice.
8045 Synchronize with GNAT release 3.15a1.
8046 Do not attempt to load ada-support, which is only for compatibility
8047 with older Emacs versions, and is not needed for Emacs 21.
8048 Fix various calls to count-lines, that didn't work correctly when the
8049 buffer was narrowed.
8050 (ada-continuation-indent): New variable.
8051 (ada-contextual-menu): New entry "List local references", faster than
8052 "List References".
8053 (ada-mode): New alignment rules provided by S. Leake.
8054 Add support for which-function-mode.
8055 (ada-get-current-indent): Fix indentation of named parameter lists and
8056 nested boolean expressions.
8057 (ada-indent-on-previous-lines): Fix indentation of labels.
8058 (ada-search-prev-end-stmt): Fix searching of the previous
8059 end-statement, specially with regards to nested subprograms.
8060 (comment-region advice): Initially disabled, for better compatibility
8061 with other modes.
8062 (ada-fill-comment-paragraph): Fixed (no longer worked with Emacs 21).
8063
8064 * progmodes/ada-xref.el: Update copyright notice.
8065 (ada-xref-create-ali): The default is now not to create automatically
8066 the ALI files by compiling the unit, since this isn't always reliable
8067 and requires an up-to-date project file.
8068 (ada-prj-default-comp-cmd): No longer use gcc directly to compile
8069 a file, but use gnatmake instead, since this gives access to the GNAT
8070 project files.
8071 (ada-xref-search-with-egrep): New variable, suggested by P. Waroquiers.
8072 (ada-load-project-hook): New variable, for support of GNAT
8073 project files.
8074 (ada-update-project-menu): Fix the detection of the project file name.
8075 (ada-add-keymap): Change key binding for ada-find-file, that conflicted
8076 with another binding in ada-mode.el.
8077 (ada-add-menu): New menu "List Local References", to list the reference
8078 to the entity only in the current file, instead of looking in the whole
8079 project. Much faster.
8080 (ada-find-references): New parameters arg and local-only.
8081 (ada-find-any-references): New parameters local-only and append.
8082 (ada-goto-declaration): Fix handling of predefined entities in xref.
8083 (ada-get-all-references): Updated to the new xref format in GNAT 3.15,
8084 still compatible with GNAT 3.14 of course. Fix various calls to
8085 count-lines, that didn't work correctly when the buffer was narrowed.
8086
8087 * progmodes/ada-prj.el: Update copyright.
8088 (ada-prj-load-directory): Make sure we do not use one of the new Emacs
8089 21 dialogs to select the file, since we want a directory name only.
8090 (ada-customize): Add support for the new GNAT project files.
8091
8092 2002-06-20 Francesco Potort\e,Al\e(B <pot@gnu.org>
8093
8094 * progmodes/etags.el (tag-implicit-name-match-p): New function.
8095 (etags-recognize-tags-table): Use it for implicit tag names.
8096
8097 2002-06-20 Miles Bader <miles@gnu.org>
8098
8099 * comint.el (comint-get-old-input-default): Strip text properties
8100 for fields too.
8101
8102 * comint.el (comint-output-filter): Run output-filter functions
8103 before setting up the prompt.
8104
8105 * international/characters.el: Re-enable code giving word syntax
8106 to certain japanese-jisx0208 characters.
8107
8108 2002-06-19 Glenn Morris <gmorris@ast.cam.ac.uk>
8109
8110 * progmodes/f90.el (f90-type-def-re): Fix value.
8111 (f90-looking-at-type-like): Adapt for new `f90-type-def-re' value.
8112
8113 2002-06-18 Stefan Monnier <monnier@cs.yale.edu>
8114
8115 * international/quail.el (quail-help): Don't assume the buffer
8116 is displayed in the same frame.
8117
8118 * emacs-lisp/debug.el (cancel-debug-on-entry):
8119 * emacs-lisp/regexp-opt.el (regexp-opt-group): Don't cons uselessly.
8120
8121 * pcvs.el (cvs-vc-command-advice): Handle the case where args
8122 are passed to `cvs' before the command name.
8123 (cvs-fileinfo-kill): Mark old FIs as up-to-date rather than dead.
8124
8125 * pcvs-info.el (cvs-add-face): Minor rewrite.
8126 (cvs-fileinfo-pp): Use `cvs-goal-column' with directory entries.
8127
8128 * newcomment.el (comment-normalize-vars): Refresh the comment-foo-skip
8129 regexp when they don't match comment-foo any more.
8130
8131 2002-06-18 Juanma Barranquero <lektu@terra.es>
8132
8133 * filesets.el (filesets-update-pre010505): Fix typo.
8134
8135 * eshell/em-pred.el (eshell-modifier-help-string): Fix typos.
8136
8137 * emulation/edt.el (edt-substitute): Fix typo.
8138
8139 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine): Fix typo.
8140
8141 * comint.el (comint-next-prompt, comint-previous-prompt): Fix typos.
8142
8143 * progmodes/sh-script.el (sh-electric-rparen-needed): Remove.
8144
8145 2002-06-17 Richard M. Stallman <rms@gnu.org>
8146
8147 * facemenu.el (facemenu-map): Rename to Describe Text
8148 to Describe Properties and use describe-text-properties.
8149
8150 * simple.el (what-cursor-position): Use describe-char.
8151
8152 * descr-text.el (describe-char): Moved from mule-diag.el, renamed
8153 from describe-char-after. Now calls describe-text-properties.
8154 (describe-property-list): Renamed from describe-text-properties.
8155 (describe-text-properties): Renamed from describe-text-at.
8156 New arg OUTPUT-BUFFER.
8157 (describe-text-properties-1):
8158 New subroutine, broken out from describe-text-properties.
8159 Output a newline before each section of the output.
8160
8161 * international/mule-diag.el (describe-char-after):
8162 Moved to descr-text.el.
8163
8164 2002-06-17 Eli Zaretskii <eliz@is.elta.co.il>
8165
8166 * international/mule.el (ctext-pre-write-conversion): Fix the values
8167 of FROM and TO if we create a new buffer.
8168
8169 2002-06-17 John Paul Wallington <jpw@shootybangbang.com>
8170
8171 * comint.el (comint-insert-clicked-input): Insert clicked-on
8172 previous input without properties.
8173
8174 2002-06-16 Andrew Choi <akochoi@shaw.ca>
8175
8176 * term/mac-win.el (scalable-fonts-allowed): Set to t.
8177
8178 2002-06-15 Colin Walters <walters@debian.org>
8179
8180 * pcvs-info.el (global-font-lock-mode, font-lock-auto-fontify):
8181 Delete defvars.
8182 (cvs-highlight): Delete.
8183 (cvs-add-face): Use `font-lock-face'. Always add properties.
8184
8185 * ibuffer.el (ibuffer-movement-cycle): New variable.
8186 (ibuffer-backward-line, ibuffer-forward-line): Use it.
8187
8188 2002-06-15 Richard M. Stallman <rms@gnu.org>
8189
8190 * emacs-lisp/bytecomp.el (byte-recompile-directory): Doc fix.
8191 (batch-byte-recompile-directory): Undo previous change.
8192
8193 * comint.el (comint-skip-input): New function.
8194 (comint-interrupt-subjob, comint-kill-subjob, comint-quit-subjob)
8195 (comint-stop-subjob): Use comint-skip-input.
8196
8197 * ielm.el (ielm-eval-input): Use error-message-string.
8198 (ielm-format-error, ielm-format-errors): Functions deleted.
8199
8200 2002-06-14 Kim F. Storm <storm@cua.dk>
8201
8202 * progmodes/compile.el (grep-tree): Doc fixes.
8203 Added SUBDIRS arg for non-interactive use.
8204
8205 2002-06-14 Juanma Barranquero <lektu@terra.es>
8206
8207 * comint.el (comint-snapshot-last-prompt):
8208 Bind `inhibit-read-only' to t to support read-only prompts.
8209 (comint-output-filter): Likewise.
8210
8211 2002-06-14 Miles Bader <miles@gnu.org>
8212
8213 * subr.el (copy-tree): Use `nconc' and `nreverse' instead of `nreconc'.
8214 (pop): Move the call to `car' outside the prog1, as the compiler
8215 then generates better code.
8216
8217 2002-06-13 Richard M. Stallman <rms@gnu.org>
8218
8219 * play/zone.el (zone-timer): New variable holds the idle timer.
8220 (zone): Don't fiddle with the idle timer at all.
8221 (zone-when-idle): Put the idle timer in zone-timer.
8222 If one is already set up, cancel it and make a new one.
8223 (zone-leave-me-alone): Likewise.
8224
8225 2002-06-13 Jason Rumney <jasonr@gnu.org>
8226
8227 * w32-fns.el (w32-charset-info-alist): Reorder.
8228
8229 2002-06-13 Andreas Schwab <schwab@suse.de>
8230
8231 * files.el (auto-mode-alist): Move entry for ".in" to the end.
8232
8233 2002-06-13 Miles Bader <miles@gnu.org>
8234
8235 * comint.el (comint-mode): Don't set `font-lock-defaults'.
8236 (comint-mode-hook): Turn on font-lock by default.
8237
8238 2002-06-12 Karl Fogel <kfogel@red-bean.com>
8239
8240 * bookmark.el (bookmark-file-or-variation-thereof):
8241 Restore vc-backend check, thanks to Robert Thorpe for noticing.
8242
8243 2002-06-12 Eli Zaretskii <eliz@is.elta.co.il>
8244
8245 * textmodes/bibtex.el: Change the maintainer to "none".
8246
8247 2002-06-12 Juanma Barranquero <lektu@terra>
8248
8249 * term/w32-win.el (x-handle-switch): Fix handling of
8250 x-invocation-args for switches with arguments.
8251
8252 2002-06-12 Stefan Monnier <monnier@cs.yale.edu>
8253
8254 * menu-bar.el (menu-bar-showhide-fringe-menu): Don't use `fringe-mode'
8255 without first making sure it's bound.
8256
8257 2002-06-12 Richard M. Stallman <rms@gnu.org>
8258
8259 * info.el (Info-fontify-node): Compute header line specially
8260 if node has no next, previous or up links.
8261 Hide the part of the first line that is used in the header.
8262 Use Info-next-link-keymap, etc.
8263 (Info-next-link-keymap, Info-prev-link-keymap)
8264 (Info-up-link-keymap): New variables.
8265
8266 * international/mule-diag.el (describe-char-after): Doc fix.
8267
8268 * view.el (view-mode-enter): Clarify echo area message.
8269
8270 * info.el (Info-select-node): Turn header line on or off here.
8271 (Info-setup-header-line): Function deleted.
8272 (Info-mode): Make Info-header-line local.
8273 (Info-fontify-node): Ignore Info-use-header-line.
8274 Unconditionally compute what the header line should be, and
8275 store it on the `header-line' property of the node's first char.
8276 Bind [header-line down-mouse-1].
8277 Use `keymap' property, not `local-map'.
8278 Bind [mouse-2] for mouse clicks on the node line in the text.
8279
8280 * font-lock.el (font-lock-beginning-of-syntax-function): Doc fix.
8281
8282 2002-06-12 Miles Bader <miles@gnu.org>
8283
8284 * comint.el (comint-send-input): Properly handle empty and
8285 no-newline input regions.
8286
8287 2002-06-12 Colin Walters <walters@gnu.org>
8288
8289 * calc/calc.el: Use `when', `unless'.
8290 (calc-trail-mode): Use an italic `font-lock-face'.
8291 (calc-refresh): Ditto.
8292
8293 2002-06-12 Colin Walters <walters@debian.org>
8294
8295 * font-core.el (font-lock-core-only): Variable deleted.
8296 All uses removed.
8297 (font-lock-set-defaults): Variable alist settings moved back into
8298 font-lock-set-defaults-1.
8299 (turn-on-font-lock-if-enabled): Always turn on font-lock unless it
8300 is specifically excluded by the user.
8301
8302 * font-lock.el (font-lock-set-defaults-1): Set variable alist here.
8303
8304 * help-mode.el (help-mode): Don't set `font-lock-defaults'.
8305
8306 * ibuffer.el (ibuffer-mode): Don't set `font-lock-defaults'.
8307
8308 * info.el (Info-mode): Don't set `font-lock-defaults'.
8309
8310 * replace.el (occur-mode): Don't set `font-lock-defaults'.
8311
8312 * help-mode.el (help-highlight-p, help-highlight-face):
8313 Variable was unused; delete.
8314 (help-make-xrefs): Doc fix.
8315
8316 2002-06-11 Richard M. Stallman <rms@gnu.org>
8317
8318 * format.el (format-alist): Document new element PRESERVE.
8319 (format-write-file): Implement PRESERVE elt for a format.
8320
8321 * files.el (make-auto-save-file-name): Rename local `filename' to
8322 `file-name'.
8323
8324 2002-06-10 Richard M. Stallman <rms@gnu.org>
8325
8326 * progmodes/ebrowse.el (ebrowse-draw-tree-fn): Use copy-sequence.
8327 (ebrowse-copy-list): Function deleted.
8328
8329 * eshell/em-unix.el (eshell/diff): Use copy-sequence.
8330
8331 * eshell/esh-mode.el (eshell-mode, eshell-mode): Use copy-sequence.
8332
8333 * eshell/esh-util.el (eshell-copy-list): Function deleted.
8334 (eshell-sublist): Use copy-sequence.
8335 (eshell-copy-tree): Make it an alias for copy-tree.
8336
8337 * emacs-lisp/cl.el (copy-list): Moved back from subr.el.
8338
8339 * subr.el (copy-list): Moved to cl.el.
8340 (copy-tree): Don't use copy-list or cl-pop.
8341
8342 2002-06-10 Miles Bader <miles@gnu.org>
8343
8344 Make comint use text properties for highlighting instead of overlays:
8345 * comint.el (comint-last-output-overlay): Variable removed.
8346 (comint-send-input, comint-output-filter): Use text properties
8347 instead of overlays.
8348 (comint-insert-clicked-input): Rewrite to work with text
8349 properties as well as overlays
8350 (comint-snapshot-last-prompt): Snapshot using text properties.
8351 (comint-get-old-input-default, comint-extract-string): Don't copy
8352 text properties.
8353
8354 * simple.el (line-move-finish): Inhibit field motion when
8355 computing `line-end'.
8356
8357 * files.el (revert-buffer): Correct typo: variable name is
8358 `buffer-file-format', not `buffer-file-formats'.
8359
8360 * comint.el (comint-send-input, comint-output-filter): Use the
8361 `font-lock-face' property instead of `face'. Don't check the
8362 highlight-enabling variables anymore.
8363 (comint-highlight-input, comint-highlight-prompt): Variables removed.
8364
8365 * faces.el (display-supports-face-attributes-p): New function.
8366 (face-spec-set-match-display): Support `supports' predicate.
8367 (italic): Try underlining for displays that don't support real italics.
8368 * cus-edit.el (custom-display): Add support for `supports' predicate.
8369 * term/tty-colors.el (color-name-rgb-alist): Use 16-bit RGB values
8370 instead of 8-bit, for consistency with the rest of emacs.
8371 (tty-color-canonicalize): Only copy COLOR if we need to change it.
8372 (tty-color-approximate): Scale values from `color-name-rgb-alist'
8373 appropriately. Return the whole color description, rather than
8374 just the RGB values.
8375 (tty-color-standard-values): New function. Code mostly taken from
8376 `tty-color-translate'.
8377 (tty-color-translate, tty-color-values): Use `tty-color-desc' to
8378 do all the work.
8379 (tty-color-desc): Do color lookup here instead of calling
8380 `tty-color-translate' and `tty-color-by-index'; this is now the
8381 main place to do it.
8382
8383 2002-06-09 Martin Stjernholm <bug-cc-mode@gnu.org>
8384
8385 * progmodes/cc-style.el (c-set-style, c-set-style-1):
8386 Add another state for the `dont-override' flag where it only keeps
8387 globally set variables.
8388
8389 2002-06-08 Colin Walters <walters@gnu.org>
8390
8391 * descr-text.el (describe-text-properties): Sort the output by the
8392 size of the values. Put `font-lock-face' property on property names.
8393 (toplevel): Provide `descr-text'.
8394
8395 * international/mule-diag.el (describe-char-after): When there are
8396 text properties, require `descr-text', and just call
8397 `describe-text-properties'.
8398
8399 * international/mule.el (sgml-html-meta-auto-coding-function):
8400 New function.
8401 (auto-coding-from-file-contents): Delete; merge functionality into
8402 `set-auto-coding'.
8403 (set-auto-coding): Move tests from `auto-coding-functions' so that
8404 they have a lower priority than coding: tags.
8405 Put `auto-coding-regexp-alist' tests before coding: tag tests.
8406 (sgml-xml-auto-coding-function): Simply `intern' the match, and
8407 test if it's a valid coding system.
8408 (auto-coding-functions): Add `sgml-html-meta-auto-coding-function'.
8409
8410 2002-06-08 Colin Walters <walters@verbum.org>
8411
8412 * subr.el (copy-list): Moved here from cl.el.
8413 (copy-tree): Renamed here from `cl-copy-tree' in cl-extra.el.
8414
8415 * emacs-lisp/cl-extra.el (cl-copy-tree): Moved to `copy-tree' in
8416 subr.el. Add a defalias with the old name.
8417
8418 * emacs-lisp/cl.el (copy-list): Moved to subr.el.
8419
8420 * replace.el (occur-mode): Don't set up categories. Do set
8421 `font-lock-defaults', and be sure to set `font-lock-core-only'.
8422 (occur-1): Pass `list-matching-lines-face' and
8423 `list-matching-lines-buffer-name-face'.
8424 (occur-engine): Use `font-lock-face' instead of categories.
8425
8426 * info.el (Info-mode): Don't set up categories. Do set
8427 `font-lock-defaults', and be sure to set `font-lock-core-only'.
8428 (Info-fontify-menu-headers): Use `font-lock-face' instead of
8429 categories.
8430 (Info-fontify-node): Ditto.
8431
8432 * ibuffer.el (ibuffer-category-alist): Delete.
8433 (ibuffer-get-category): Delete.
8434 (ibuffer-compile-make-eliding-form): Use `font-lock-face' instead
8435 of categories.
8436 (ibuffer-compile-format): Don't treat `name' category specially.
8437 (ibuffer-column name): Use `font-lock-face'.
8438 (filename-and-process): Ditto.
8439 (ibuffer-buffer-name-category): Renamed to
8440 `ibuffer-buffer-name-face'. Don't use categories.
8441 (ibuffer-update-title-and-summary): Use `font-lock-face'.
8442 (ibuffer-insert-filter-group): Ditto.
8443 (ibuffer-mode): Don't set up categories. Do set
8444 `font-lock-defaults', and be sure to set `font-lock-core-only'.
8445 (ibuffer-compile-format): Don't pass third argument
8446 to column functions.
8447 (filename-and-process): Ditto.
8448
8449 * ibuf-macs.el (define-ibuffer-column): Don't create a third
8450 argument for the generated function.
8451
8452 * font-core.el (font-lock-category-alist): Delete.
8453 (turn-on-font-lock-if-enabled): Don't use it.
8454 (font-lock-symbol-category-alist): Delete.
8455 (font-lock-default-function): Use new `char-property-alias-alist'
8456 to make `font-lock-face' an alias for `face' when font-lock mode
8457 is enabled.
8458 (font-lock-core-only): New variable.
8459 (font-lock-set-defaults): Use it.
8460
8461 2002-06-08 Richard M. Stallman <rms@gnu.org>
8462
8463 * files.el (find-file-noselect-1): Undo previous change.
8464
8465 * bookmark.el (bookmark-file-or-variation-thereof): Doc fix.
8466
8467 2002-06-07 Karl Fogel <kfogel@red-bean.com>
8468
8469 * bookmark.el (bookmark-file-or-variation-thereof): Just use
8470 Info-suffix-list, as suggested by Stefan Monnier.
8471
8472 2002-06-05 Eli Zaretskii <eliz@is.elta.co.il>
8473
8474 * select.el (xselect-convert-to-string): If VALUE is a string,
8475 return a cons of TYPE and the string.
8476
8477 2002-06-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8478
8479 * language/cyrillic.el (cyrillic-alternativnyj-decode-table):
8480 Fix the table to contain correct characters.
8481
8482 2002-06-04 Richard M. Stallman <rms@gnu.org>
8483
8484 * simple.el: Don't require cl.
8485
8486 2002-06-03 Richard M. Stallman <rms@gnu.org>
8487
8488 * dired.el (dired-do-shell-command): Doc fix in autoload.
8489
8490 * info.el (Info-extract-pointer): Ignore Info-header-line.
8491
8492 * progmodes/cc-mode.el (c-postprocess-file-styles):
8493 Do nothing except in CC modes.
8494
8495 * international/mule-cmds.el (select-safe-coding-system):
8496 When computing auto-cs, narrow to FROM...TO.
8497 Put save-excursion outside save-restriction.
8498 New arg FILE; use that for set-auto-coding.
8499
8500 2002-06-01 Richard M. Stallman <rms@gnu.org>
8501
8502 * simple.el (choose-completion-string-functions): Doc fix.
8503 (choose-completion-string): Add doc string.
8504
8505 2002-06-01 Kim F. Storm <storm@cua.dk>
8506
8507 * simple.el: Reworked previous change.
8508 (choose-completion-string1): Merged back into choose-completion-string.
8509 (choose-completion-string): Run choose-completion-string-functions
8510 after checking for proper minibuffer window. Added mini-p arg to
8511 the hook functions. Insert choice if all hook functions return nil.
8512 (choose-completion-string-functions): Doc update.
8513
8514 2002-06-01 Sam Steingold <sds@gnu.org>
8515
8516 * files.el (auto-mode-alist): Strip trailing ".in" from the file
8517 name when deciding the mode (for config.h.in, Makefile.in etc).
8518
8519 2002-06-01 Thien-Thi Nguyen <ttn@gnu.org>
8520
8521 * progmodes/prolog.el (prolog-mode-syntax-table): Add flags to
8522 ?/ and ?* entries to support /* */ style comments.
8523 (prolog-font-lock-keywords): New var.
8524 (prolog-mode): Enable font-locking; set `font-lock-defaults'.
8525
8526 2002-06-01 Kim F. Storm <storm@cua.dk>
8527
8528 * simple.el (choose-completion-string-functions): New special hook.
8529 (choose-completion-string1): Renamed from choose-completion-string.
8530 (choose-completion-string): Run choose-completion-string-functions
8531 until success, and only call choose-completion-string1 if it fails.
8532
8533 2002-05-31 Stefan Monnier <monnier@cs.yale.edu>
8534
8535 * textmodes/ispell.el (autoloaded toplevel): Don't use
8536 ispell-library-directory without checking that it's bound.
8537
8538 2002-05-31 Kim F. Storm <storm@cua.dk>
8539
8540 * emulation/cua-base.el (cua--last-deleted-region-pos)
8541 (cua--last-deleted-region-text): New aux variables.
8542 (cua-delete-region): Set them.
8543 (cua-repeat-replace-region): Use them to find the replacement text.
8544
8545 2002-05-31 Juanma Barranquero <lektu@terra.es>
8546
8547 * emulation/viper-cmd.el (viper-smart-suffix-list, viper-ask-level):
8548 Fix typos.
8549
8550 2002-05-31 Kim F. Storm <storm@cua.dk>
8551
8552 * progmodes/compile.el (grep-tree-command, grep-tree-files-aliases)
8553 (grep-tree-ignore-CVS-directories, grep-tree-ignore-case):
8554 New custom variables.
8555 (grep-compute-defaults): Compute grep-tree-command's default value.
8556 (grep-expand-command-macros): New aux function.
8557 (grep-tree-last-regexp, grep-tree-last-files): New aux variables.
8558 (grep-tree): New command like grep-find but extended prompting.
8559
8560 2002-05-30 Richard M. Stallman <rms@gnu.org>
8561
8562 * files.el (find-file-default): Add defvar for var already used.
8563
8564 * menu-bar.el (menu-bar-showhide-fringe-menu): Use defvar.
8565
8566 * subr.el (open-network-stream, open-network-stream-nowait)
8567 (open-network-stream-server, process-kill-without-query):
8568 Moved from simple.el.
8569
8570 * simple.el (open-network-stream, open-network-stream-nowait)
8571 (open-network-stream-server, process-kill-without-query):
8572 Moved to subr.el.
8573
8574 * simple.el (byte-compiling-files-p): Function deleted.
8575
8576 * textmodes/ispell.el (ispell-library-directory): Renamed from
8577 ispell-library-path. If Ispell is not installed, init to nil.
8578 (check-ispell-version): Doc fix.
8579 (ispell-menu-map): Get rid of byte-compiling-files-p hackery;
8580 initialize this unconditionally when ispell-menu-map-needed is t.
8581 Local `path' renamed to `dir'.
8582
8583 2002-05-30 Miles Bader <miles@gnu.org>
8584
8585 * calc/calc.el (calc-show-banner): New variable.
8586 (calc-refresh): Only show banner if `calc-show-banner' is non-nil.
8587 (calc-mode-var-list): Add `calc-show-banner'.
8588 * calc/calc-ext.el (calc-init-extensions): Add binding for `d@'.
8589 (calc-toggle-banner): New function.
8590 * calc/calc-help.el (calc-d-prefix-help): Add `@'.
8591
8592 2002-05-29 Richard M. Stallman <rms@gnu.org>
8593
8594 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
8595 When recognizing a def... construct, make that indentation
8596 tentative, so that it can be overridden if the list in question
8597 is not actually an expression.
8598 (common-lisp-indent-call-method): New subroutine.
8599
8600 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
8601 Delete the output file if we get a file-error.
8602
8603 * tooltip.el (tooltip-mouse-motions-active): New variable.
8604 (tooltip-activate-mouse-motions): Don't kill track-mouse local
8605 if it was not made by us.
8606
8607 * mouse.el (mouse-set-font): Avoid misleading error message
8608 if user makes no selection.
8609
8610 * info.el (Info-setup-header-line): Don't hide the links line.
8611
8612 * files.el (find-file-noselect-1): Return the buffer we created
8613 even if it has been killed within `after-find-file'.
8614
8615 * files.el (auto-mode-alist): Use ada-mode for .ad[bs].dg files.
8616
8617 2002-05-29 Kim F. Storm <storm@cua.dk>
8618
8619 * simple.el (open-network-stream-server): Pass on optional args
8620 sentinel and filter to make-network-process (from Luke Gorrie).
8621
8622 2002-05-28 Colin Walters <walters@gnu.org>
8623
8624 * textmodes/sgml-mode.el (xml-mode): New alias for `sgml-mode'.
8625
8626 * emacs-lisp/bytecomp.el (byte-compile-last-line): Deleted.
8627 (byte-compile-delete-first): New function.
8628 (byte-compile-read-position): New variable.
8629 (byte-compile-last-position): New variable.
8630 (byte-compile-current-buffer): New variable.
8631 (byte-compile-log-1): Use it.
8632 (byte-compile-set-symbol-position): New function.
8633 (byte-compile-obsolete, byte-compile-callargs-warn)
8634 (byte-compile-arglist-warn, byte-compile-arglist-warn)
8635 (byte-compile-print-syms, byte-compile-file-form-defmumble)
8636 (byte-compile-check-lambda-list, byte-compile-lambda)
8637 (byte-compile-form, byte-compile-variable-ref)
8638 (byte-compile-subr-wrong-args, byte-compile-negation-optimizer)
8639 (byte-compile-condition-case, byte-compile-defun)
8640 (byte-compile-defvar, byte-compile-autoload)
8641 (byte-compile-lambda-form): Use it.
8642 (byte-compile-from-buffer): Set it, and bind
8643 `read-with-symbol-positions' and `read-symbol-positions-list'.
8644
8645 * emacs-lisp/bytecomp.el (byte-compile-debug): New variable.
8646
8647 2002-05-28 Kim F. Storm <storm@cua.dk>
8648
8649 * files.el (read-directory-name): New function.
8650 (cd): Use it instead of read-file-name.
8651
8652 2002-05-27 Kim F. Storm <storm@cua.dk>
8653
8654 * simple.el (push-mark-command): Added optional NOMSG arg.
8655
8656 * emulation/cua-base.el (cua-set-mark): Align pop to mark
8657 behaviour with standard set-mark-command.
8658 (cua--pre-command-handler): Use push-mark-command.
8659 (cua-repeat-replace-region): Improve functionality when
8660 repeated after moving point or changing buffer.
8661
8662 2002-05-26 Colin Walters <walters@verbum.org>
8663
8664 * startup.el (command-line): Use `when', `unless'.
8665 (command-line-1): New argument "--nosplash". Handle it.
8666
8667 * startup.el (inhibit-splash-screen): New variable alias for
8668 `inhibit-startup-message'.
8669
8670 * replace.el (perform-replace): Document return value. Use `pop'.
8671
8672 2002-05-26 Glenn Morris <gmorris@ast.cam.ac.uk>
8673
8674 * progmodes/f90.el (f90-previous-block, f90-next-block): New names,
8675 and slightly changed behaviour, for `f90-previous-block-start' and
8676 `f90-next-block-end'.
8677 (f90-beginning-of-subprogram, f90-end-of-subprogram): Simplify.
8678
8679 2002-05-26 Simon Josefsson <jas@extundo.com>
8680
8681 * fringe.el (set-fringe-mode): Work when updating
8682 `default-frame-alist'.
8683
8684 2002-05-26 Kim F. Storm <storm@cua.dk>
8685
8686 * emulation/cua-base.el (cua--repeat-replace-text): New variable.
8687 (cua-repeat-replace-region): New command.
8688 (cua--init-keymaps): Bind it to M-v in cua--cua-keys-keymap.
8689 Misc improvements to the commentary.
8690
8691 2002-05-26 Simon Josefsson <jas@extundo.com>
8692
8693 * fringe.el (fringe-query-style): New fringe style "minimal".
8694
8695 2002-05-24 Simon Josefsson <jas@extundo.com>
8696
8697 * rot13.el (rot13-translate-table): New variable.
8698 (rot13, rot13-string, rot13-region): New functions.
8699
8700 2002-05-25 Martin Stjernholm <bug-cc-mode@gnu.org>
8701
8702 * progmodes/cc-engine.el (c-add-stmt-syntax): Fixed some cases
8703 of wrong anchoring, e.g. for else-if compounds.
8704
8705 2002-05-25 Miles Bader <miles@gnu.org>
8706
8707 * menu-bar.el (menu-bar-showhide-fringe-menu-customize-left)
8708 (menu-bar-showhide-fringe-menu-customize-right)
8709 (menu-bar-showhide-fringe-menu-customize-disable):
8710 Use proper calling convention for `customize-set-value'.
8711 Require `fringe' before setting variable.
8712
8713 2002-05-25 Kim F. Storm <storm@cua.dk>
8714
8715 * emulation/cua-base.el (cua--self-insert-char-p): New function.
8716
8717 * emulation/cua-gmrk.el (cua--init-global-mark): Install default
8718 binding in cua--global-mark-keymap using cua--self-insert-char-p
8719 to handle all global self inserting characters in gmark mode.
8720
8721 * emulation/cua-rect.el (cua--init-rectangles): Install default
8722 binding in cua--rectangle-keymap using cua--self-insert-char-p
8723 to handle all global self inserting characters in rectangle mode.
8724
8725 2002-05-24 Stefan Monnier <monnier@cs.yale.edu>
8726
8727 * net/ange-ftp.el (read-file-name-internal): Remove the
8728 `ange-ftp' property.
8729 (ange-ftp-real-read-file-name-internal): Remove.
8730
8731 2002-05-24 Glenn Morris <gmorris@ast.cam.ac.uk>
8732
8733 * progmodes/f90.el: (f90-end-of-subprogram): Remove the final
8734 `forward-line'.
8735 (f90-end-of-block, f90-beginning-of-block, f90-next-block-end)
8736 (f90-previous-block-start): New navigation commands.
8737
8738 2002-05-20 Simon Josefsson <jas@extundo.com>
8739
8740 * fringe.el: New file.
8741
8742 * menu-bar.el (menu-bar-options-save): Add fringe-mode.
8743 (menu-bar-showhide-fringe-menu): New menu.
8744 (menu-bar-showhide-menu): Add Fringe sub-menu.
8745
8746 2002-05-23 Colin Walters <walters@verbum.org>
8747
8748 * replace.el (occur-engine): Include all text properties except
8749 mouse-face on the newline at the end of occurences.
8750
8751 2002-05-23 Kim F. Storm <storm@cua.dk>
8752
8753 * apropos.el (apropos-true-hit, apropos-false-hit-symbol)
8754 (apropos-false-hit-str, apropos-true-hit-doc): New functions.
8755 (apropos-command, apropos-value, apropos-documentation-internal)
8756 (apropos-documentation-check-doc-file)
8757 (apropos-documentation-check-elc-file): Use them to filter out
8758 false matches where only one keyword matches, but more than once.
8759
8760 * apropos.el (apropos-show-scores, apropos-orig-regexp)
8761 (apropos-all-regexp, apropos-synonyms, apropos-words)
8762 (apropos-all-words): New variables.
8763 (aprpos-words-to-regexp, apropos-rewrite-regexp)
8764 (apropos-calc-scores, apropos-score-str, apropos-score-doc)
8765 (apropos-score-symbol): New functions.
8766 (apropos-command, apropos, apropos-value, apropos-documentation):
8767 Allow keywords in addition to regexp. Added scoring.
8768 (apropos-documentation-check-doc-file)
8769 (apropos-documentation-check-elc-file): Added scoring.
8770 (apropos-print): Sort according to score.
8771
8772 2002-05-22 Colin Walters <walters@cis.ohio-state.edu>
8773
8774 * info.el (Info-mode-hook): Change `font-lock-mode' to
8775 `turn-on-font-lock'.
8776
8777 * font-core.el (font-lock-function): New variable.
8778 (font-lock-default-function): New function, created from
8779 `font-lock-mode'.
8780 (font-lock-mode): Just funcall `font-lock-function'.
8781 (font-lock-symbol-category-alist): New variable.
8782
8783 2002-05-22 Markus Rost <rost@math.ohio-state.edu>
8784
8785 * files.el (file-newest-backup): Use file-name-sans-versions.
8786
8787 * diff.el (diff-latest-backup-file): Replace the main code by
8788 a call of file-newest-backup.
8789
8790 2002-05-22 Mike Williams <mdub@bigfoot.com>
8791
8792 * textmodes/sgml-mode.el (sgml-guess-indent): Look further into
8793 the buffer.
8794
8795 2002-05-21 Stefan Monnier <monnier@cs.yale.edu>
8796
8797 * net/ange-ftp.el (ange-ftp-allow-child-lookup): Re-enable since
8798 the last patch works around the wu-ftpd misfeature that prompted
8799 the disabling of this optimization.
8800
8801 2002-05-21 Colin Walters <walters@gnu.org>
8802
8803 * international/mule.el (make-coding-system): Doc fixes.
8804
8805 * international/mule.el (auto-coding-functions): New variable.
8806 (auto-coding-from-file-contents): Use it.
8807 (set-auto-coding): Update docs.
8808 (sgml-xml-auto-coding-function): New function.
8809
8810 * international/mule-util.el (truncate-string-to-width):
8811 New optional argument `ellipsis'. Add commented-out test suite, and
8812 change coding to iso-2022-7bit.
8813
8814 2002-05-21 Colin Walters <walters@verbum.org>
8815
8816 * font-lock.el (font-lock-defaults, font-lock-defaults-alist)
8817 (font-lock-multiline, font-lock-fontified, font-lock-mode)
8818 (turn-on-font-lock, font-lock-add-keywords, global-font-lock-mode)
8819 (font-lock-global-modes): Moved to font-core.el.
8820 (font-lock-set-defaults-1): Partially moved to font-core.el.
8821
8822 * font-core.el: New file, with functions taken from font-lock.el.
8823 (font-lock-category-alist): New variable.
8824 (font-lock-mode): Use it.
8825 (font-lock-set-defaults): Partially taken from font-lock.el.
8826 Only load font-lock.el when necessary.
8827
8828 * loadup.el: Add font-core.el.
8829
8830 * replace.el (occur-mode-hook): New variable.
8831 (occur-fontify-region-function): Deleted.
8832 (occur-mode): Don't use it. Set up `font-lock-category-alist'
8833 instead.
8834 (occur-fontify-on-property): Deleted.
8835 (occur-engine): Use categories from `font-lock-category-alist'.
8836
8837 * info.el (Info-fontify): Deleted.
8838 (Info-select-node): Don't use it.
8839 (Info-mode-hook): New variable.
8840 (Info-mode): Set up categories.
8841 (Info-fontify-menu-headers, Info-fontify-node): Use categories.
8842
8843 * ibuffer.el (ibuffer-formats): Update docs.
8844 (ibuffer-category-alist): New variable.
8845 (ibuffer-get-category): New function.
8846 (ibuffer-compile-make-eliding-form): Use category property instead
8847 of face.
8848 (ibuffer-compile-format): Pass current ibuffer buffer to column
8849 functions too.
8850 (ibuffer-buffer-name-category): New function.
8851 (ibuffer-compile-format): If the current column is a `name'
8852 column, figure out the appropriate category to put on it.
8853 (filename-and-process): Use category property.
8854 (ibuffer-fontify-region-function): Deleted.
8855 (ibuffer-unfontify-region-function): Deleted.
8856 (ibuffer-update-title-and-summary): Use category properties.
8857 (ibuffer-insert-filter-group): Ditto.
8858 (ibuffer-mode): Set up category properties.
8859
8860 2002-05-21 Colin Walters <walters@debian.org>
8861
8862 * replace.el (occur-engine): Increment globalcount all at once
8863 after searching a buffer.
8864 (occur-mode-map): Don't escape plain "o".
8865
8866 * ibuf-macs.el (define-ibuffer-column): Add third argument
8867 `ibuffer-buf'.
8868
8869 * ibuffer.el (toplevel): Require font-lock, to get the face
8870 definitions.
8871 (ibuffer-use-fontification): Deleted.
8872 (column filename-and-process): New column.
8873 (ibuffer-formats): Use it by default.
8874 (ibuffer-name-map, ibuffer-mode-name-map)
8875 (ibuffer-filter-group-map): Don't set parent to `ibuffer-mode-map'.
8876 (ibuffer-do-save, ibuffer-do-toggle-modified)
8877 (ibuffer-do-toggle-read-only, ibuffer-do-delete)
8878 (ibuffer-do-kill-on-deletion-marks): Include name in definition.
8879 (ibuffer): New optional argument `formats'.
8880
8881 2002-05-21 Eli Zaretskii <eliz@is.elta.co.il>
8882
8883 * indent.el (indent-rigidly): Mention how to remove all indentation.
8884
8885 2002-05-21 Colin Walters <walters@gnu.org>
8886
8887 * international/mule-diag.el (describe-char-after): Order display
8888 of text properties by the size of their value, for clarity.
8889
8890 2002-05-20 Stefan Monnier <monnier@cs.yale.edu>
8891
8892 * net/ange-ftp.el (ange-ftp-generate-root-prefixes)
8893 (ange-ftp-file-name-completion): Don't cons unnecessarily.
8894 (ange-ftp-send-cmd): Always `cd' before doing `ls'.
8895
8896 * wid-edit.el (widget-color-complete):
8897 * progmodes/etags.el (tags-complete-tags-table-file):
8898 * progmodes/cpp.el (cpp-choose-symbol): Don't cons unnecessarily.
8899
8900 * textmodes/outline.el (outline-reveal-toggle-invisible):
8901 Reverse the meaning of the second arg.
8902
8903 * reveal.el (reveal-post-command): Reverse the semantics of
8904 reveal-toggle-invisible and support isearch-open-invisible-temporary.
8905
8906 2002-05-20 Markus Rost <rost@math.ohio-state.edu>
8907
8908 * mail/sendmail.el (mail-recover-1): Remove (debug).
8909 (mail-signature): Fix :type.
8910 (mail-default-directory): New user option.
8911 (mail, mail-recover): Use that option.
8912
8913 2002-05-20 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8914
8915 * international/mule.el (auto-coding-alist): Use emacs-mule
8916 for auto-save files.
8917
8918 2002-05-20 Miles Bader <miles@gnu.org>
8919
8920 * files.el (find-file-read-args): Don't trash existing value of
8921 `minibuffer-setup-hook', just add our hook to it.
8922
8923 2002-05-19 Markus Rost <rost@math.ohio-state.edu>
8924
8925 * international/ucs-tables.el (unify-8859-on-encoding-mode)
8926 (unify-8859-on-decoding-mode): Change :version attributes to strings.
8927
8928 * simple.el (yank-excluded-properties): Change :version attribute
8929 to a string.
8930
8931 * dired.el (dired-view-command-alist): Change :version attribute
8932 to a string.
8933
8934 * xscheme.el (xscheme-start-hook): Change :version attribute to a
8935 string.
8936
8937 * find-dired.el (find-dired): Implement revert-buffer-function.
8938
8939 * mail/emacsbug.el (report-emacs-bug-hook): Do another save-excursion.
8940
8941 2002-05-19 Glenn Morris <gmorris@ast.cam.ac.uk>
8942
8943 * progmodes/f90.el (f90-match-end, f90-break-line): Simplify a bit.
8944 (f90-get-present-comment-type): Fix earlier change.
8945 (f90-comment-indent): Doc fix.
8946 (f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
8947 (f90-looking-at-if-then): Remove lets.
8948 (f90-looking-at-where-or-forall): Handle if split over lines.
8949 (f90-change-keywords): Doc fix.
8950
8951 2002-05-19 Richard M. Stallman <rms@gnu.org>
8952
8953 * indent.el (indent-region): Make COLUMN arg optional.
8954
8955 * files.el (find-file-read-args): New function.
8956 (find-file, find-file-other-window, find-file-other-frame)
8957 (find-file-read-only, find-file-read-only-other-window)
8958 (find-file-read-only-other-frame): Use it.
8959
8960 * custom.el (custom-load-symbol): Verify that LOADED is a string.
8961
8962 * arc-mode.el (archive-zip-use-pkzip): Variable deleted.
8963 (archive-zip-extract, archive-zip-expunge, archive-zip-update)
8964 (archive-zip-update-case): Use locate-file to decide whether
8965 to use pkzip.
8966 (archive-zip-extract): Test for pkzip in value of archive-zip-extract.
8967
8968 * files.el (locate-file): Doc fix.
8969
8970 2002-05-19 John Paul Wallington <jpw@shootybangbang.com>
8971
8972 * mail/rmail.el (rmail-show-message-hook): Offer `goto-address'
8973 as an option.
8974
8975 2002-05-18 Stefan Monnier <monnier@cs.yale.edu>
8976
8977 * uniquify.el (uniquify-rationalize-file-buffer-names):
8978 Always strip the trailing / even if the file is not a directory.
8979
8980 2002-05-18 Glenn Morris <gmorris@ast.cam.ac.uk>
8981
8982 * progmodes/f90.el (f90-mode-syntax-table, f90-mode-map): Do the
8983 initialization in the defvar.
8984 (f90-font-lock-on, f90-font-lock-off): Add 'menu-alias property.
8985 (f90-font-lock-1, f90-font-lock-2, f90-font-lock-3)
8986 (f90-font-lock-4): Move the doc strings.
8987 (f90-menu-bar-menu): New internal variable to hold the top-level menu.
8988 (f90-change-case-menu, f90-font-lock-menu): Minor code changes.
8989 (f90-mode-abbrev-table): Initialize in the defvar, with
8990 define-abbrev-table.
8991
8992 2002-05-18 Eli Zaretskii <eliz@is.elta.co.il>
8993
8994 * tar-mode.el (tar-octal-time): Fix last change.
8995
8996 2002-05-18 Markus Rost <rost@math.ohio-state.edu>
8997
8998 * mail/emacsbug.el (report-emacs-bug-text-prompt): New variable.
8999 (report-emacs-bug): Store the prompt in
9000 `report-emacs-bug-text-prompt'. Move Configuration/Important
9001 settings information after the user's report.
9002 (report-emacs-bug-hook): Unclutter by deleting the content of
9003 `report-emacs-bug-text-prompt'.
9004
9005 2002-05-17 Thomas Morgan <tlm@pocketmail.com>
9006
9007 * forms.el (forms-jump-record, forms-insert-record)
9008 (forms-delete-record): Calculate lines from the beginning of the
9009 accessible portion rather than from the beginning of the buffer.
9010
9011 2002-05-16 Eli Zaretskii <eliz@is.elta.co.il>
9012
9013 * ps-mule.el (eval-and-compile): Add a trivial replacement for a
9014 possibly missing encode-char.
9015 (ps-mule-font-info-database-bdf): Add associations for Unicode
9016 fonts. Doc fix.
9017 (ps-mule-font-info-database-ps-bdf): Doc fix.
9018 (ps-mule-encode-ucs2): New function for encoding Unicode characters.
9019
9020 * tar-mode.el (tar-octal-time): Fix the last argument of logior.
9021
9022 2002-05-16 Stefan Monnier <monnier@cs.yale.edu>
9023
9024 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9025 Find funs defined with defun-cvs-mode.
9026 (find-function-space-re): New const. Skips comments as well.
9027 (find-function-regexp, find-variable-regexp): Use it.
9028
9029 * pcvs.el (cvs-cmd-do): Accept non-CVS dirs with CVS-ctrl'd subdirs.
9030 (cvs-mode-add-change-log-entry-other-window): Work on multiple files.
9031 (cvs-mode-set-flags): Don't cons unnecessarily.
9032
9033 2002-05-16 Colin Walters <walters@debian.org>
9034
9035 * menu-bar.el (menu-bar-tools-menu) <calculator>: Renamed to
9036 "Simple Calculator".
9037 (menu-bar-tools-menu) <calc>: New.
9038
9039 2002-05-16 Juanma Barranquero <lektu@terra.es>
9040
9041 * progmodes/hideshow.el (hs-adjust-block-beginning): Fix typo.
9042
9043 * filesets.el (filesets-ormap): Fix typo.
9044
9045 * faces.el (describe-face): Fix typo.
9046
9047 2002-05-15 Stefan Monnier <monnier@cs.yale.edu>
9048
9049 * emacs-lisp/easymenu.el (easy-menu-make-symbol):
9050 Don't treat (lambda () ...) as an expression.
9051
9052 2002-05-15 John Paul Wallington <jpw@shootybangbang.com>
9053
9054 * replace.el (occur-read-primary-args): Handle a bare 'C-u' correctly.
9055
9056 2002-05-15 Eli Zaretskii <eliz@is.elta.co.il>
9057
9058 * emacs-lisp/easymenu.el (easy-menu-add): Doc fix.
9059
9060 2002-05-14 Glenn Morris <gmorris@ast.cam.ac.uk>
9061
9062 * progmodes/fortran.el (fortran-directive-re): New name for
9063 fortran-preprocessor-re. All usage updated.
9064 (fortran-calculate-indent): Give directives zero indentation.
9065
9066 2002-05-14 Jason Rumney <jasonr@gnu.org>
9067
9068 * emacs-lisp/easymenu.el (easy-menu-name-match): Match both
9069 displayed text and internal name as string.
9070
9071 2002-05-14 Kim F. Storm <storm@cua.dk>
9072
9073 * emulation/cua-rect.el (cua--rectangle-operation):
9074 Don't highlight empty lines in rectangles.
9075
9076 * emulation/keypad.el: Improved commentary.
9077 (keypad-setup, keypad-shifted-setup): Added choice to setup
9078 Numeric keypad with decimal key; value is selected character.
9079 (keypad-decimal-key, keypad-shifted-decimal-key): Removed options.
9080 (keypad-numlock-setup, keypad-numlock-shifted-setup): New options.
9081 (keypad-setup): Arg list changed to support the new options.
9082
9083 2002-05-14 Richard M. Stallman <rms@gnu.org>
9084
9085 * dabbrev.el (dabbrev-case-distinction): New option.
9086 (dabbrev--try-find): Handle dabbrev-case-distinction.
9087 (dabbrev--search): Clean up the code.
9088 (dabbrev-upcase-means-case-search): Doc fix.
9089 (dabbrev-case-replace): Fix custom tags and docs.
9090
9091 2002-05-14 Jochen K\e,A|\e(Bpper <jochen@jochen-kuepper.de>
9092
9093 * calc/calc-units.el (math-standard-units): Update from CODATA.
9094
9095 2002-05-14 Stefan Monnier <monnier@cs.yale.edu>
9096
9097 * skeleton.el (skeleton-transformation): Default to `identity'.
9098 (skeleton-insert): Use `move-after' markers and `insert' rather
9099 than rely on insert-before-markers.
9100 (skeleton-internal-1): Handle `> \n' specially so that the newline
9101 is inserted before the first line is indented.
9102
9103 2002-05-14 Mike Williams <mdub@bigfoot.com>
9104
9105 * textmodes/sgml-mode.el (sgml-tag):
9106 Default skeleton-transformation to `identity'.
9107
9108 2002-05-14 Francesco Potort\e,Al\e(B <pot@gnu.org>
9109
9110 * shell.el (shell-mode): Make second part of initialisation
9111 depend on whether comint-input-ring is empty, rather than depend
9112 on it being nil.
9113
9114 2002-05-14 Richard M. Stallman <rms@gnu.org>
9115
9116 * files.el (make-auto-save-file-name):
9117 Delete the auto-save file after make-temp-file creates it.
9118
9119 2002-05-13 Kim F. Storm <storm@cua.dk>
9120
9121 * emulation/cua-base.el (cua-enable-cursor-indications): Default off.
9122 (cua-mode): Print Enabled/Disabled messages if interactive.
9123 Disable delete-selection-mode and pc-selection-mode when cua-mode
9124 is enabled; reenable if cua-mode is turned off.
9125 Remember setting of transient-mark-mode when cua-mode is enabled;
9126 restore if cua-mode is disabled.
9127
9128 2002-05-13 Richard M. Stallman <rms@gnu.org>
9129
9130 * mail/emacsbug.el (report-emacs-bug): Change the "English please" msg.
9131
9132 2002-05-13 Colin Walters <walters@gnu.org>
9133
9134 * ibuf-ext.el (ibuffer-format-filter-group-data): New function.
9135
9136 * ibuffer.el (ibuffer-insert-filter-group): New argument filter-string.
9137 (ibuffer-redisplay-engine): Handle it.
9138
9139 * add-log.el (add-log-mailing-address): Can be a list, too.
9140 (add-change-log-entry): If `add-log-mailing-address' is a list,
9141 then handle it.
9142
9143 2002-05-12 Colin Walters <walters@debian.org>
9144
9145 * replace.el (occur-1): New optional argument `buf-name'.
9146 (occur-revert-function): Use it.
9147
9148 (occur-1): Handle plurals.
9149
9150 (occur-engine): If there are no more matches, then finish
9151 searching the current buffer.
9152
9153 2002-05-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9154
9155 * net/ange-ftp.el (ange-ftp-try-passive-mode)
9156 (ange-ftp-passive-host-alist): Change :version attributes to be
9157 strings.
9158
9159 2002-05-12 Markus Rost <rost@math.ohio-state.edu>
9160
9161 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Define it with
9162 define-minor-mode.
9163
9164 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9165 Handle more whitespace/newline combinations in symbol definitions.
9166
9167 2002-05-12 Eli Zaretskii <eliz@is.elta.co.il>
9168
9169 * w32-vars.el (w32)
9170 * vc-cvs.el (vc-cvs-global-switches)
9171 (vc-cvs-sticky-date-format-string, vc-cvs-sticky-tag-display)
9172 * textmodes/sgml-mode.el (sgml-xml-mode)
9173 * ruler-mode.el (ruler-mode)
9174 * replace.el (query-replace-skip-read-only)
9175 * progmodes/fortran.el (fortran-preprocessor-re)
9176 * net/ange-ftp.el (ange-ftp-passive-host-alist)
9177 * mail/sendmail.el (mail-use-dsn)
9178 * faces.el (mode-line-inactive, minibuffer-prompt)
9179 * add-log.el (add-log-always-start-new-record): Change all
9180 post-21.1 :version attributes to 21.4.
9181
9182 2002-05-12 Richard M. Stallman <rms@gnu.org>
9183
9184 * mail/smtpmail.el (smtpmail-mail-address): New variable.
9185 (smtpmail-send-it): Bind and use that instead of `mail-address'.
9186 (smtpmail-via-smtp): Likewise.
9187
9188 * ansi-color.el (ansi-color-get-face): Avoid add-to-list on local var.
9189 (ansi-color-apply-sequence): Avoid duplicates in combined face list.
9190
9191 * dired-aux.el (dired-show-file-type): Use -- to say FILE's not option.
9192
9193 * subr.el (functionp): Catch errors in indirect-function.
9194
9195 2002-05-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9196
9197 * net/ldap.el (ldap-search-internal): Unfold folded lines before
9198 parsing.
9199
9200 * cus-edit.el (customize-set-value): Rename `var' to `variable'
9201 and `val' to `value'.
9202 (customize-save-variable): Rename `var' to `'variable.
9203
9204 2002-05-12 Glenn Morris <gmorris@ast.cam.ac.uk>
9205
9206 * progmodes/fortran.el (fortran-preprocessor-re): New variable.
9207 Use it for font-locking and indentation.
9208 (fortran-previous-statement, fortran-next-statement): Make them
9209 skip over preprocessor lines.
9210 (fortran-calculate-indent): Use fortran-preprocessor-re.
9211
9212 2002-05-10 Kim F. Storm <storm@cua.dk>
9213
9214 * emulation/cua-base.el (cua-enable-cua-keys)
9215 (cua-enable-register-prefix): Added value for `other' choice.
9216
9217 2002-05-10 Eli Zaretskii <eliz@is.elta.co.il>
9218
9219 * menu-bar.el (menu-bar-showhide-scroll-bar-menu)
9220 (menu-bar-showhide-menu): Use display-graphic-p, not window-system.
9221 (menu-bar-showhide-menu) <showhide-menu-bar, showhide-tool-bar>:
9222 Run a named function.
9223 (showhide-menu-bar, showhide-toolbar): Invoke customize-mark-as-set.
9224 (menu-bar-showhide-menu) <column-number-mode, line-number-mode>:
9225 Fix help text.
9226
9227 2002-05-10 Kim F. Storm <storm@cua.dk>
9228
9229 * emulation/cua-base.el (cua-mode): Misc. changes to use
9230 emulation-mode-map-alists instead of minor-mode-map-alist.
9231
9232 2002-05-09 Richard M. Stallman <rms@gnu.org>
9233
9234 * mail/rmail.el (rmail-show-message):
9235 Catch error in check-coding-system.
9236
9237 * progmodes/compile.el (compilation-error-regexp-alist):
9238 New element to recognize Python error messages.
9239
9240 * shell.el (shell-replace-by-expanded-directory):
9241 If there's already a / at the end, don't add one.
9242
9243 2002-05-09 Colin Walters <walters@verbum.org>
9244
9245 * ibuffer.el (ibuffer-mode-map): Add :enable guards for
9246 `ibuffer-filter-disable', `ibuffer-pop-filter',
9247 `ibuffer-or-filter', `ibuffer-negate-filter',
9248 `ibuffer-decompose-filter', `ibuffer-save-filters',
9249 `ibuffer-switch-to-saved-filters', `ibuffer-delete-saved-filters',
9250 `ibuffer-save-filter-groups',
9251 `ibuffer-switch-to-saved-filter-groups',
9252 `ibuffer-delete-saved-filter-groups'.
9253
9254 * ibuf-ext.el (ibuffer-do-occur): Default to 0 context lines.
9255
9256 2002-05-09 Markus Rost <rost@math.ohio-state.edu>
9257
9258 * woman.el (woman-menu): Move symbol before the comment so that
9259 find-function-search-for-symbol finds it.
9260
9261 2002-05-10 Miles Bader <miles@gnu.org>
9262
9263 * facemenu.el (list-colors-display): Don't use
9264 `display-color-cells' unless the display class is one for which
9265 that info is relevant.
9266
9267 2002-05-09 Simon Josefsson <jas@extundo.com>
9268
9269 * mail/smtpmail.el (smtpmail-send-it): Use user-mail-address from
9270 calling buffer.
9271 (smtpmail-auth-credentials): Bump :version to 21.4 (21.3 will not
9272 have the patch).
9273
9274 2002-05-09 Kim F. Storm <storm@cua.dk>
9275
9276 * wid-edit.el (checkbox): New check-mark image.
9277
9278 2002-05-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9279
9280 * filesets.el (filesets-running-xemacs): Fix last change.
9281
9282 2002-05-08 Markus Rost <rost@math.ohio-state.edu>
9283
9284 * help-fns.el (describe-function-1): If the source is
9285 `loaddefs.el', look for the real source. This is necessary only
9286 for defaliases.
9287
9288 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9289 Add autoload cookie.
9290 (find-function-regexp): Include
9291 "\(quote " to match the defaliases in loaddefs.el.
9292
9293 * filesets.el (filesets-conditional-sort): Use copy-sequence,
9294 not copy-list.
9295 (filesets-menu-path, filesets-menu-before, filesets-menu-in-menu):
9296 Defvar them to nil if running in Emacs.
9297
9298 2002-05-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9299
9300 * textmodes/flyspell.el (make-flyspell-overlay): Add help text
9301 to flyspell overlays.
9302
9303 * info.el (Info-mode-map): Bind `c' to Info-copy-current-node-name.
9304
9305 2002-05-08 Richard M. Stallman <rms@gnu.org>
9306
9307 * diff.el (diff-regexp-alist): Doc fix.
9308
9309 * mail/smtpmail.el (netrc-machine, netrc-get): Add autoloads.
9310
9311 2002-05-08 Simon Marshall <simon@gnu.org>
9312
9313 * msb.el (msb-menu-bar-update-buffers): Fixed frame menu to use
9314 the frame name as the car of a menu entry, rather than the frame.
9315
9316 2002-05-08 Juanma Barranquero <lektu@terra.es>
9317
9318 * rfn-eshadow.el (read-file-name-electric-shadow-mode): Fix typos
9319 in docstring.
9320
9321 2002-05-07 Colin Walters <walters@verbum.org>
9322
9323 * replace.el (occur-unfontify-region-function): Delete.
9324 (occur-mode): Don't use it.
9325 (occur-engine): Respect `keep-props'.
9326 (occur-accumulate-lines): If we're moving forward, decrement;
9327 don't increment, and vice versa.
9328
9329 2002-05-08 Toru Tomabechi <Toru.Tomabechi@orient.unil.ch>
9330
9331 * language/tibet-util.el (tibetan-canonicalize-for-unicode-alist)
9332 (tibetan-canonicalize-for-unicode-regexp): New variables.
9333 (tibetan-canonicalize-for-unicode-region): New function.
9334 (tibetan-strict-unicode): New variable.
9335 (tibetan-pre-write-canonicalize-for-unicode): New function.
9336
9337 2002-05-07 Markus Rost <rost@math.ohio-state.edu>
9338
9339 * net/ange-ftp.el (ange-ftp-re-read-dir): Don't hide it behind
9340 the autoload-cookie. Remove comment.
9341
9342 * ffap.el (ffap): Don't hide it behind the autoload-cookie.
9343
9344 * rect.el (close-rectangle): Don't hide it behind the
9345 autoload-cookie.
9346
9347 2002-05-07 Juanma Barranquero <lektu@terra.es>
9348
9349 * windmove.el (windmove-default-keybindings): Add optional
9350 parameter to allow using a modifier other than 'shift.
9351
9352 2002-05-07 Thomas Link <t.link@gmx.at>
9353
9354 * filesets.el:
9355 (filesets-external-viewers): Fix customization problem.
9356 (filesets-some): Replaces cl's `some'. Calls changed.
9357 (filesets-member): Replaces cl's `member*'. Calls changed.
9358 (filesets-ormap): New function.
9359
9360 2002-05-07 John Paul Wallington <jpw@shootybangbang.com>
9361
9362 * ibuffer.el (toplevel): Specialize `ibuffer-mode-groups-popup'
9363 menu items.
9364
9365 2002-05-07 Colin Walters <walters@gnu.org>
9366
9367 * ibuf-ext.el (ibuffer-pop-filter-group): Doc fix.
9368 (ibuffer-clear-filter-groups): Likewise.
9369 (ibuffer-kill-filter-group): Likewise.
9370 (ibuffer-kill-line): Likewise.
9371 (ibuffer-read-filter-group-name): New function.
9372 (ibuffer-jump-to-filter-group): Use it.
9373 (ibuffer-kill-filter-group): Likewise.
9374 (ibuffer-yank-filter-group): Likewise.
9375 (ibuffer-decompose-filter-group): New function.
9376
9377 * ibuffer.el (ibuffer-mode-map): Bind it. Add :enable guard
9378 around `ibuffer-filters-to-filter-group' menu item. Fix :enable
9379 guards for `ibuffer-pop-filter-group' and
9380 `ibuffer-clear-filter-groups'.
9381
9382 2002-05-06 Markus Rost <rost@math.ohio-state.edu>
9383
9384 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9385 Use with-syntax-table.
9386
9387 2002-05-06 Francesco Potort\e,Al\e(B <pot@gnu.org>
9388
9389 * mail/rmail.el (rmail-font-lock-keywords): Highlight Resent-[Ff]rom:.
9390
9391 2002-05-05 Markus Rost <rost@math.ohio-state.edu>
9392
9393 * time-stamp.el (time-stamp-format): Doc fix: escape open
9394 parenthesis in column 0.
9395
9396 2002-05-04 Richard M. Stallman <rms@gnu.org>
9397
9398 * toolbar/tool-bar.el (tool-bar-local-item-from-menu):
9399 Handle both cases: when the menu item has cached info
9400 and when it doesn't.
9401
9402 * filesets.el (filesets-browse-dir-function): Renamed from ...-fn.
9403 (filesets-open-file-function, filesets-save-buffer-function): Likewise.
9404 (filesets-tree-max-level): Doc fix.
9405 (filesets-commands, filesets-external-viewers)
9406 (filesets-ingroup-patterns): Mark as risky.
9407 (filesets-cache-hostname-flag): Doc fix.
9408 (filesets-menu-cache-file): Doc fix. Mark as risky.
9409 (filesets-menu-before, filesets-menu-path, filesets-menu-in-menu):
9410 Don't defcustom them if running in Emacs.
9411
9412 2002-05-04 Thomas Link <t.link@gmx.at>
9413
9414 * filesets.el (filesets-ingroup-collect-files):
9415 Fix problem with inclusion groups' :scan-depth property.
9416
9417 2002-05-04 Colin Walters <walters@verbum.org>
9418
9419 * ibuf-ext.el (ibuffer-kill-filter-group): Test for killing
9420 "Default" group earlier. Push killed group on
9421 `ibuffer-filter-group-kill-ring'.
9422 (ibuffer-kill-line): Document. Don't push killed group ourselves.
9423 (ibuffer-yank-filter-group): Renamed from `ibuffer-yank'.
9424 (ibuffer-insert-filter-group-before): New function, broken out
9425 from `ibuffer-yank'.
9426 (ibuffer-yank): Now just call `ibuffer-yank-filter-group'.
9427
9428 * ibuffer.el (ibuffer-mode-operate-menu, ibuffer-mode-mark-menu)
9429 (ibuffer-mode-view-menu): Unused variables; deleted.
9430 (ibuffer-find-file): Pass wildcard flag to `find-file' correctly.
9431
9432 2002-05-04 John Paul Wallington <jpw@shootybangbang.com>
9433
9434 * ibuffer.el (ibuffer-mode-groups-popup): New variable.
9435 (toplevel): Bind filter group menu entries in it. Add :enable
9436 forms for some menu items.
9437 (toplevel): Bind [down-mouse-3] in `ibuffer-mode-filter-group-map'
9438 to `ibuffer-mouse-popup-menu'.
9439 (ibuffer-mouse-popup-menu): Test whether or not we're on a filter
9440 group name, and if so, pop up a filter group menu.
9441
9442 2002-05-04 Jason Rumney <jasonr@gnu.org>
9443
9444 * mwheel.el (mwheel-event-button): Translate mouse-wheel events.
9445 (mwheel-scroll): Recognize nil scroll amount as documented.
9446
9447 * term/w32-win.el (mouse-wheel-scroll-line)
9448 (mouse-wheel-scroll-screen): Remove.
9449 ([mouse-wheel], [C-mouse-wheel], [S-mouse-wheel]): Use mwheel-scroll.
9450
9451 * w32-vars.el: (mouse-wheel-scroll-amount): Removed.
9452
9453 2002-05-04 Markus Rost <rost@math.ohio-state.edu>
9454
9455 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9456 Bind case-fold-search when searching.
9457
9458 2002-05-04 Eli Zaretskii <eliz@is.elta.co.il>
9459
9460 * apropos.el (apropos-print): Fix the reference to mouse-2.
9461
9462 2002-05-04 Daniel Pfeiffer <occitan@esperanto.org>
9463
9464 * play/mpuz.el (mpuz-switch-to-window): Set buffer-read-only directly.
9465
9466 2002-05-04 Kim F. Storm <storm@cua.dk>
9467
9468 * cus-edit.el (custom-buffer-verbose-help): New variable.
9469 (custom-buffer-create-internal): Remove verbose introduction
9470 in customization buffer when it is nil.
9471
9472 2002-05-03 Dave Love <fx@gnu.org>
9473
9474 * international/mule-cmds.el (select-safe-coding-system):
9475 Don't offer coding systems that use locking shift.
9476 Ask for confirmation if chosen coding system disagrees with
9477 a `coding:' spec in the file.
9478
9479 2002-05-03 John Wiegley <johnw@gnu.org>
9480
9481 * eshell/esh-var.el (eshell-modify-global-environment): Added this
9482 customization variable, which will cause any "export" commands
9483 within any eshell buffer to modify the global Emacs environment.
9484 It defaults to nil, which means that such commands will only
9485 modify that Eshell buffer's environment.
9486 (eshell-var-initialize): Initialize `eshell-modify-global-environment'.
9487
9488 * eshell/em-cmpl.el (eshell-command-completions-alist):
9489 Improve default completion targets for objdump, nm and readelf.
9490
9491 2002-05-03 Colin Walters <walters@verbum.org>
9492
9493 * play/gamegrid.el (gamegrid-user-score-file-directory): New variable.
9494 (gamegrid-add-score-with-update-game-score):
9495 Use `shared-game-score-directory'. Correctly handle non-setuid case.
9496
9497 2002-05-02 Colin Walters <walters@verbum.org>
9498
9499 * replace.el (occur-mode-map): Bind "q" to `delete-window'.
9500 (occur-1): If one of the buffers we're searching is the *Occur*
9501 buffer itself, handle it by creating a temporary buffer. If any
9502 of the buffers being searched are killed, note that in the search
9503 result message. Also, set local variables before we possibly kill
9504 the buffer.
9505
9506 2002-05-02 Kim F. Storm <storm@cua.dk>
9507
9508 * menu-bar.el (menu-bar-make-toggle): Added optional PROPS arg.
9509 (menu-bar-options-save): Added cua-mode.
9510 (menu-bar-options-menu): Added toggle for cua-mode.
9511 Disable toggle for transient-mark-mode if cua-mode is enabled.
9512
9513 * emulation/cua-base.el (cua-inhibit-cua-keys): New buffer-local
9514 variable.
9515
9516 2002-05-01 Richard M. Stallman <rms@gnu.org>
9517
9518 * help.el (view-todo): New function.
9519 (help-map): Bind C-h C-t to view-todo.
9520 (help-for-help): Change the text.
9521
9522 2002-05-01 Glenn Morris <gmorris@ast.cam.ac.uk>
9523
9524 * progmodes/f90.el: Yet more doc string, commment and whitespace
9525 changes.
9526 (f90-imenu-flag): New name for internal variable f90-imenu.
9527 (f90-blocks-re, f90-program-block-re, f90-end-if-re)
9528 (f90-no-break-re): Use regexp-opt.
9529 (f90-end-type-re): Add closing "\\>".
9530 (f90-indent-region): Correctly indent comments embedded in
9531 continued lines.
9532 (f90-indent-new-line): Make it indent the current line, as it should.
9533 (f90-line-continued, f90-get-present-comment-type)
9534 (f90-looking-at-if-then, f90-indent-line, f90-indent-new-line)
9535 (f90-indent-region, f90-indent-subprogram, f90-do-auto-fill)
9536 (f90-join-lines, f90-fill-region, f90-match-end, f90-insert-end)
9537 (f90-change-keywords): Minor code tidying.
9538
9539 * progmodes/fortran.el (fortran-strip-sequence-nos): Rename from
9540 typo `fortran-strip-sqeuence-nos'.
9541
9542 2002-05-01 Eli Zaretskii <eliz@is.elta.co.il>
9543
9544 * simple.el (clone-indirect-buffer-other-window): Fix a typo in
9545 pop-up-window.
9546
9547 2002-05-01 Kim F. Storm <storm@cua.dk>
9548
9549 * emulation/cua-base.el (cua--pre-command-handler):
9550 Only interpret delete-selection property if mark-active.
9551 (cua-mode): Fixed require in defcustom.
9552
9553 2002-05-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9554
9555 * calendar/cal-menu.el (cal-menu-x-popup-menu): Fix argument of
9556 error call.
9557
9558 2002-05-01 Colin Walters <walters@verbum.org>
9559
9560 * textmodes/tex-mode.el (tex-validate-buffer):
9561 Use `occur-revert-arguments' instead of setting `occur-nlines' and
9562 `occur-buffer'. Don't test for `input-pending-p' in loop.
9563 Set text property `occur-target' instead of `occur'.
9564
9565 2002-04-30 John Wiegley <johnw@gnu.org>
9566
9567 * align.el (align-region): Fixed the fix to align-region, because
9568 the "name" argument was appearing twice.
9569
9570 2002-05-01 Martin Stjernholm <bug-cc-mode@gnu.org>
9571
9572 * progmodes/cc-engine.el (c-beginning-of-decl-1): Better way
9573 to handle protection labels, one which doesn't get confused by
9574 inherit colons.
9575
9576 * progmodes/cc-engine.el (c-end-of-decl-1): Don't treat
9577 functions that have "class" or "struct" in the return type as
9578 classes or structs.
9579
9580 2002-04-30 Kim F. Storm <storm@cua.dk>
9581
9582 * menu-bar.el (menu-bar-custom-menu): Change "Recently Changed
9583 Options" to "New Options..."; rephrase tooltip.
9584 Rephrase tooltip for "Specific Option...".
9585 Added "Saved Options" item. [from Simon Marshall]
9586
9587 2002-04-30 Richard M. Stallman <rms@gnu.org>
9588
9589 * time.el (display-time-mail-directory)
9590 (display-time-mail-function): Doc fixes.
9591
9592 * ediff-hook.el: Remove autoload cookies.
9593
9594 * language/tibetan.el (tibetan-obsolete-glyphs): Now in tibet-util.el.
9595
9596 * language/tibet-util.el (tibetan-obsolete-glyphs): From tibetan.el.
9597
9598 * align.el (align-region): Fix call to `message'.
9599 Check that (car rule) is a symbol.
9600
9601 * autoinsert.el (auto-insert-directory): Doc fix.
9602
9603 * facemenu.el (describe-text-at and stuff): Moved to descr-text.el.
9604
9605 * descr-text.el: New file, broken out of facemenu.el.
9606
9607 * emacs-lisp/advice.el (documentation): Add ad-define-subr-args call.
9608
9609 2002-04-29 Markus Rost <rost@math.ohio-state.edu>
9610
9611 * mail/emacsbug.el (report-emacs-bug-hook):
9612 Use replace-match only if search was successful.
9613
9614 2002-04-29 Richard M. Stallman <rms@gnu.org>
9615
9616 * net/zone-mode.el (zone-mode): Add write-file-hooks hook locally.
9617
9618 * mail/emacsbug.el (report-emacs-bug-hook): Don't fail completely
9619 if the user edits the Emacs version number in the text.
9620
9621 * filesets.el (filesets-running-xemacs): Make defvar unconditional.
9622 (filesets-ingroup-files): Renamed from filesets-ingroup-paths.
9623 (filesets-error): Simplify definition and make conditional
9624 on filesets-running-xemacs.
9625 (filesets-find-file-using): Renamed from fsfind-file-using.
9626
9627 2002-04-29 Stefan Monnier <monnier@cs.yale.edu>
9628
9629 * info.el (Info-find-in-tag-table-1, Info-read-subfile): Use point-min.
9630 (Info-read-node-name-1): Complete file names.
9631 (Info-complete-menu-item): Don't cons unnecessarily.
9632
9633 * files.el (locate-file): New fun.
9634 (locate-file-completion): Rename from load-completion and generalize.
9635 (load-library): Use it.
9636 (make-auto-save-file-name): Expand caddr.
9637
9638 * newcomment.el (comment-fill-column): New var.
9639 (comment-indent): Use it.
9640 (comment-or-uncomment-region): New fun.
9641 (comment-dwim): Use it.
9642
9643 2002-04-29 Colin Walters <walters@verbum.org>
9644
9645 * ibuf-ext.el (ibuffer-kill-filter-group): Call `delete' function.
9646 (ibuffer-kill-line): Copy the filter group data structure when killing.
9647 (ibuffer-yank): Handle case where we're yanking on the default
9648 group correctly.
9649 (ibuffer-delete-saved-filter-groups): Doc fix.
9650
9651 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
9652 Test whether or not update-game-score is setuid, and do the right
9653 thing.
9654
9655 2002-04-29 Kim F. Storm <storm@cua.dk>
9656
9657 * subr.el (remove-yank-excluded-properties): New helper function.
9658 (insert-for-yank, insert-buffer-substring-as-yank): Use it.
9659
9660 * simple.el (yank-excluded-properties): Added help-echo to list.
9661
9662 2002-04-29 Glenn Morris <gmorris@ast.cam.ac.uk>
9663
9664 * autoinsert.el (auto-insert-directory): Doc fix.
9665
9666 * progmodes/f90.el: Add/change doc strings for many inline
9667 functions. Whitespace changes.
9668 (f90-indent-line-no, f90-update-line): Minor code changes.
9669
9670 2002-04-29 Kim F. Storm <storm@cua.dk>
9671
9672 * emulation/cua-base.el: New file.
9673
9674 * emulation/cua-rect.el: New file.
9675
9676 * emulation/cua-gmrk.el: New file.
9677
9678 * emulation/keypad.el: New file.
9679
9680 2002-04-29 Triet Hoai Lai <thlai@ee.usyd.edu.au>
9681
9682 * language/vietnamese.el (viet-tcvn-decode-table, ccl-decode-tcvn)
9683 (ccl-encode-tcvn, ccl-encode-tcvn-font, vietnamese-tcvn):
9684 New Vietnamese coding system.
9685
9686 * language/viet-util.el: Update Commentary section.
9687
9688 2002-04-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9689
9690 * filesets.el (filesets-data): Doc fix.
9691 (filesets-running-xemacs): Define even when compiling.
9692
9693 * recentf.el (recentf-cancel-dialog): Remove dot at the end of
9694 sentence.
9695
9696 2002-04-29 Stefan Monnier <monnier@cs.yale.edu>
9697
9698 * textmodes/fill.el (fill-context-prefix): Fix last change with
9699 yet-another-approach.
9700
9701 2002-04-28 Markus Rost <rost@math.ohio-state.edu>
9702
9703 * net/ange-ftp.el (ange-ftp-passive-host-alist)
9704 (ange-ftp-bs2000-additional-pubsets): Fix custom type.
9705
9706 * files.el (small-temporary-file-directory): Fix custom type.
9707
9708 2002-04-28 Glenn Morris <gmorris@ast.cam.ac.uk>
9709
9710 * progmodes/f90.el (f90-xemacs-flag): New variable.
9711 (f90-mark-subprogram-overlay): New variable.
9712 (f90-mark-subprogram): Now it highlights the subprogram.
9713 (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
9714 Fix highlighting of various "type" forms.
9715
9716 2002-04-28 Colin Walters <walters@verbum.org>
9717
9718 * ibuffer.el (ibuffer-mode): Additional documentation on filter
9719 groups.
9720
9721 2002-04-28 John Paul Wallington <jpw@shootybangbang.com>
9722
9723 * ibuf-ext.el (ibuffer-set-filter-groups-by-mode): Don't make an
9724 ibuffer-mode filter group if `ibuffer-view-ibuffer' is nil.
9725
9726 2002-04-28 Richard M. Stallman <rms@gnu.org>
9727
9728 * mail/sendmail.el (mail-recover-1): Decrease non-random-len
9729 by 1 for the newly-readded #.
9730
9731 * files.el (make-auto-save-file-name): Specify # as suffix
9732 in the non-file-visiting case.
9733
9734 * subr.el (make-temp-file): New arg SUFFIX.
9735
9736 * filesets.el: New file.
9737
9738 * replace.el (occur-accumulate-lines): Avoid incf and decf.
9739 (occur-engine-add-prefix): New function.
9740 (occur-engine): Avoid using macrolet, incf and decf.
9741 Use occur-engine-add-prefix instead.
9742 Rename `l' to `lines' and `c' to `matches'.
9743
9744 * replace.el (occur-engine, occur-mode-mouse-goto)
9745 (occur-mode-find-occurrence, occur-mode-goto-occurrence)
9746 (occur-mode-goto-occurrence-other-window)
9747 (occur-mode-display-occurrence): A position is just a marker,
9748 not a list.
9749
9750 * replace.el (occur-revert-arguments):
9751 Renamed from occur-revert-properties. All uses changed.
9752
9753 2002-04-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9754
9755 * recentf.el (recentf-menu-before): Use string to specify path in
9756 the menu.
9757
9758 * international/mule-cmds.el (read-language-name): Take care of
9759 non-list values.
9760
9761 2002-04-27 Richard M. Stallman <rms@gnu.org>
9762
9763 * custom.el (custom-load-symbol): Moved from cus-edit.el.
9764 (custom-load-recursion): Likewise.
9765
9766 * cus-edit.el (custom-load-symbol): Moved to custom.el.
9767 (custom-load-recursion): Likewise.
9768
9769 * progmodes/ada-xref.el (ada-add-ada-menu): Menu pseudo-keys
9770 generated by easymenu are now lowercase.
9771
9772 2002-04-27 Richard M. Stallman <rms@gnu.org>
9773
9774 * menu-bar.el (menu-bar-update-buffers): Add menu items
9775 Next Buffer and Previous Buffer.
9776
9777 * simple.el (next-buffer, prev-buffer): New commands.
9778 Bind C-x left and C-x right to them.
9779
9780 * info.el (Info-header-line): Mark it as risky-local-variable.
9781
9782 * subr.el (insert-for-yank): Replace `category' property
9783 with whatever properties it stands for.
9784
9785 * subr.el (member-ignore-case): Ignore non-strings in LIST.
9786
9787 2002-04-27 Miles Bader <miles@gnu.org>
9788
9789 * faces.el (read-face-name): Format the prompt correctly when
9790 there's no default.
9791
9792 2002-04-26 Andrew Choi <akochoi@shaw.ca>
9793
9794 * term/mac-win.el: Don't call ediff-toggle-multiframe.
9795 Set default directory. Set process-connection-type to nil.
9796
9797 2002-04-26 Richard M. Stallman <rms@gnu.org>
9798
9799 * loadup.el: Explicitly load cus-face and timer.
9800
9801 * isearch.el: Don't require timer.
9802
9803 * faces.el: Don't require cus-face.
9804
9805 * cus-edit.el (customize-face): Use read-face-name
9806 and handle multiple faces.
9807 (customize-face-other-window): Make it work similarly.
9808
9809 * faces.el (read-face-name): New defaulting features.
9810 New args STRING-DESCRIBING-DEFAULT and MULTIPLE.
9811 (list-faces-display): Use the face, not its name string,
9812 as arg when running customize-face.
9813 Put a `read-face-name' prop on the entire line.
9814 (describe-face): Handle multiple faces via read-face-name.
9815
9816 * textmodes/tex-mode.el (tex-start-options): New variable.
9817 (tex-start-commands): New variable.
9818 (tex-start-options-string): Variable deleted.
9819 (tex-start-tex): Use tex-start-options and tex-start-commands,
9820 not tex-start-options-string.
9821 (tex-command): Doc fix.
9822
9823 2002-04-26 Sam Steingold <sds@gnu.org>
9824
9825 * mail/smtpmail.el (smtpmail-try-auth-methods): When `host' is
9826 not in the authinfo/netrc, keep `cred' at nil.
9827
9828 2002-04-26 Gerd Moellmann <gerd@gnu.org>
9829
9830 * find-file.el: Remove Ada-specific example code.
9831
9832 2002-04-25 Michael Kifer <kifer@cs.stonybrook.edu>
9833
9834 * ediff-hooks.el: Put back the autoloads.
9835
9836 2002-04-25 Colin Walters <walters@verbum.org>
9837
9838 * ibuffer.el (define column process): Use `ibuffer-aif'.
9839
9840 * ibuf-ext.el (ibuffer-saved-filter-groups): Don't include broken
9841 defaults.
9842 (ibuffer-yank): Be sure to `setq' after we use `nconc'.
9843 (ibuffer-save-filter-groups): Correctly structure filter groups.
9844 (ibuffer-switch-to-saved-filter-groups): Correctly extract filter
9845 groups.
9846
9847 2002-04-25 Simon Josefsson <jas@extundo.com>
9848
9849 * mail/sendmail.el (mail-use-dsn): New variable to request
9850 delivery status notification from MTA.
9851 (sendmail-send-it): Use it.
9852
9853 * mail/smtpmail.el (smtpmail-queue-counter): New variable.
9854 (smtpmail-send-it): Use it to construct new queue filenames
9855 (needed if you send more than one message per second, which is
9856 possible if you use Gnus Agent).
9857
9858 * mail/smtpmail.el (smtpmail-auth-credentials): Support netrc
9859 files as well.
9860 (smtpmail-try-auth-methods): Support netrc data.
9861 (netrc-parse): Autoload netrc.
9862
9863 2002-04-25 Colin Walters <walters@verbum.org>
9864
9865 * replace.el (multi-occur-by-filename-regexp): Doc fix.
9866 (occur-engine): Go to `point-min'. Make nlines argument actually
9867 mean number of context lines. Handle it. Pad digits to the right.
9868
9869 * ibuf-ext.el (ibuffer-filtering-groups): Renamed to
9870 `ibuffer-filter-groups'. All users updated.
9871 (ibuffer-show-empty-filter-groups): New variable.
9872 (ibuffer-saved-filter-groups): New variable.
9873 (ibuffer-maybe-save-stuff): Renamed from
9874 `ibuffer-maybe-save-saved-filters'. Callers updated.
9875 Handle `ibuffer-saved-filter-groups'.
9876 (ibuffer-hidden-filtering-groups): Renamed to
9877 `ibuffer-hidden-filter-groups'.
9878 (ibuffer-filter-group-kill-ring): New variable.
9879 (ibuffer-save-with-custom): Doc fix.
9880 (ibuffer-set-filter-groups-by-mode): New function.
9881 (ibuffer-clear-filter-groups): New function.
9882 (ibuffer-current-filter-groups-with-position): Renamed from
9883 `ibuffer-current-filter-groups'. Callers updated.
9884 (ibuffer-kill-filter-group): New function.
9885 (ibuffer-kill-line): New function.
9886 (ibuffer-yank): New function.
9887 (ibuffer-save-filter-groups): New function.
9888 (ibuffer-delete-saved-filter-groups): New function.
9889 (ibuffer-switch-to-saved-filter-groups): New function.
9890 (ibuffer-mark-on-buffer): Add optional arguments for adding a
9891 specific mark, and marking on a specific group.
9892
9893 * ibuffer.el (ibuffer-formats): Doc fix.
9894 (ibuffer-mode-map): Bind <up> to `ibuffer-backward-line'.
9895 Bind new functions from ibuf-ext.el. Add menu entries for them.
9896 Remove superfluous tooltips.
9897 (ibuffer-toggle-marks): If on a group name, then toggle marks just
9898 in that group.
9899 (ibuffer-mark-interactive): Handle filter groups.
9900 (ibuffer-mark-forward, ibuffer-unmark-forward)
9901 (ibuffer-mark-for-delete, ibuffer-unmark-backward)
9902 (ibuffer-mark-for-delete-backwards): Update docs.
9903 (ibuffer-current-filter-groups): Moved to ibuf-ext.el, and renamed
9904 to `ibuffer-current-filter-groups-with-position'.
9905 (ibuffer-redisplay-engine): Handle `ibuffer-show-empty-filter-groups'.
9906 (ibuffer-mode): Add some documentation about filter groups.
9907
9908 2002-04-25 Andreas Schwab <schwab@suse.de>
9909
9910 * find-dired.el (find-name-dired): Don't quote pattern twice.
9911
9912 2002-04-26 Miles Bader <miles@gnu.org>
9913
9914 * cus-edit.el (customize-face, customize-face-other-window):
9915 Use default instead of initial-input for suggested face.
9916
9917 2002-04-25 Gerd Moellmann <gerd@gnu.org>
9918
9919 * cus-edit.el (customize-face-other-window, customize-face):
9920 Interactively, when point is on text with a face, suggest to
9921 customize that face.
9922
9923 2002-04-25 Glenn Morris <gmorris@ast.cam.ac.uk>
9924
9925 * progmodes/f90.el: General tidy-up of commentary and some doc
9926 strings.
9927
9928 2002-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
9929
9930 * scroll-all.el (scroll-all-function-all) New function to do the
9931 actual work.
9932 (scroll-all-scroll-down-all, scroll-all-scroll-up-all,
9933 scroll-all-page-down-all, scroll-all-page-up-all,
9934 scroll-all-beginning-of-buffer-all, scroll-all-end-of-buffer-all):
9935 Make them use scroll-all-function-all.
9936
9937 * progmodes/f90.el (f90-get-beg-of-line): Removed and replaced
9938 with line-beginning-position.
9939 (f90-get-end-of-line): Removed and replaced with line-end-position.
9940 (f90-match-piece): Removed and replaced with match-string.
9941 (f90-current-indentation): Remove `current-column'.
9942 (f90-get-present-comment-type): Use match-string rather than
9943 buffer-substring.
9944 (f90-match-end): Use line-beginning-position, line-end-position
9945 rather than beginning-of-line, end-of-line.
9946 (f90-startup-message): Variable removed.
9947
9948 2002-04-24 Colin Walters <walters@verbum.org>
9949
9950 * replace.el (occur-accumulate-lines): Add optional argument
9951 `no-props'. Handle it.
9952 (occur-engine): Use it.
9953
9954 * ibuf-ext.el (toplevel): Remove byte-compile-dynamic. Try to set
9955 up autoloads manually.
9956 (ibuffer-split-list): New function.
9957 (ibuffer-filtering-groups): New variable.
9958 (ibuffer-hidden-filtering-groups): New variable.
9959 (ibuffer-mouse-toggle-filter-group): New function.
9960 (ibuffer-toggle-filter-group): New function.
9961 (ibuffer-toggle-filter-group-1): New function.
9962 (ibuffer-forward-filter-group): New function.
9963 (ibuffer-backward-filter-group): New funtion.
9964 (ibuffer-generate-filter-groups): New function.
9965 (ibuffer-filters-to-filter-group): New function.
9966 (ibuffer-pop-filter-group): New function.
9967 (ibuffer-jump-to-filter-group): New function.
9968 (ibuffer-do-occur): Just use `occur-read-primary-args'
9969
9970 * ibuffer.el (ibuffer-filter-group-name-face): New.
9971 (ibuffer-mode-map): Bind and add menu entries for most new
9972 functions; also, bind the arrow keys to the movement functions.
9973 (ibuffer-mode-filter-group-map): New.
9974 (ibuffer-mouse-toggle-mark): Handle group names.
9975 (ibuffer-mouse-visit-buffer): Error if the current buffer is killed.
9976 (ibuffer-skip-properties): New function.
9977 (ibuffer-backward-line, ibuffer-forward-line): Optionally skip
9978 group names. Also, handle new properties.
9979 (ibuffer-visit-buffer, ibuffer-visit-buffer-other-window):
9980 Move error handling to `ibuffer-current-buffer'.
9981 (ibuffer-visit-buffer-other-frame, ibuffer-bury-buffer): Ditto.
9982 (ibuffer-visit-tags-table, ibuffer-do-view-1): Ditto.
9983 (ibuffer-toggle-marks): Add optional group argument.
9984 (ibuffer-mark-interactive): Skip group names.
9985 (ibuffer-current-buffer): Clean up error handling.
9986 (ibuffer-fontify-region-function): Fontify group names.
9987 (ibuffer-map-lines): Add extra group argument. Handle it.
9988 (ibuffer-current-filter-groups): New function.
9989 (ibuffer-redisplay): Handle hidden filtering groups.
9990 (ibuffer-sort-bufferlist): New function, taken from
9991 `ibuffer-insert-buffers-and-marks'.
9992 (ibuffer-insert-filter-group): New function.
9993 (ibuffer-redisplay-engine): Renamed from
9994 `ibuffer-insert-buffers-and-marks'. Handle new filtering groups.
9995 (ibuffer): Add filter-groups argument. Handle it.
9996 Use `save-selected-window'.
9997 (ibuffer-mode): Make `ibuffer-filtering-groups' and
9998 `ibuffer-hidden-filtering-groups' buffer-local.
9999
10000 * ibuf-macs.el (ibuffer-save-marks): Call `ibuffer-redisplay-engine'.
10001
10002 2002-04-24 Richard M. Stallman <rms@gnu.org>
10003
10004 * emacs-lisp/easymenu.el (easy-menu-intern): Downcase before interning.
10005 (easy-menu-define-key-intern): Function deleted; callers intern
10006 and then call easy-menu-define-key.
10007 (easy-menu-do-add-item): Explicitly intern the key, but not BEFORE.
10008 (easy-menu-define-key): Use easy-menu-name-match to match BEFORE.
10009 (easy-menu-name-match): New function.
10010 (add-submenu): New function.
10011 (easy-menu-get-map-look-for-name): Use easy-menu-name-match.
10012
10013 2002-04-24 Eli Zaretskii <eliz@is.elta.co.il>
10014
10015 * menu-bar.el (menu-bar-adv-search-menu)
10016 (menu-bar-adv-search-menu): Improve the help text.
10017
10018 2002-04-24 Simon Josefsson <jas@extundo.com>
10019
10020 * net/netrc.el: New file.
10021
10022 2002-04-24 Thomas DeWeese <tdeweese@rochester.rr.com>
10023
10024 * term/x-win.el (x-select-text, x-cut-buffer-or-selection-value):
10025 Check if any of the available selection sources has new content
10026 and if so it will return that content.
10027
10028 2002-04-24 Miles Bader <miles@gnu.org>
10029
10030 * menu-bar.el (buffers-menu-show-directories)
10031 (buffers-menu-show-status): New variables.
10032 (menu-bar-update-buffers-1): Use them.
10033
10034 2002-04-24 Martin Stjernholm <mast@lysator.liu.se>
10035
10036 * progmodes/cc-cmds.el (c-mask-comment): More fixes when used
10037 from `c-do-auto-fill' and point is at or near the limit of the
10038 comment. Fixed bug when the prefix from `c-guess-fill-prefix'
10039 is longer than the text on the first line of the comment when
10040 it's masked.
10041
10042 2002-04-24 Miles Bader <miles@gnu.org>
10043
10044 * menu-bar.el (menu-bar-update-buffers-1): Make sure
10045 `uniquify-buffer-name-style' is bound.
10046
10047 2002-04-23 Colin Walters <walters@verbum.org>
10048
10049 * replace.el (toplevel): Require `cl' while compiling.
10050 (occur-buffer, occur-nlines): Delete.
10051 (occur-revert-properties): Rename to `occur-revert-properties'.
10052 (occur-mode): Handle it. Set up font lock.
10053 (occur-revert-function): Simply apply `occur-1'.
10054 (occur-mode-find-occurence, occur-mode-mouse-goto)
10055 (occur-mode-goto-occurrence-other-window)
10056 (occur-mode-display-occurrence): Handle buffer property.
10057 (list-matching-lines-face): Use defcustom.
10058 (list-matching-lines-buffer-name-face): New variable.
10059 (occur-accumulate-lines): Renamed from `ibuffer-accumulate-lines',
10060 in ibuffer.el.
10061 (occur-read-primary-args): Move out of `occur'.
10062 (occur): Delete. Now simply call `occur-1'.
10063 (multi-occur, multi-occur-by-filename-regexp): New functions.
10064 (occur-1): New function.
10065 (occur-engine): Renamed from `ibuffer-occur-engine' to replace the
10066 previous implementation of `occur'; taken from ibuf-ext.el.
10067 (occur-fontify-on-property): New function.
10068 (occur-fontify-region-function, occur-unfontify-region-function):
10069 New functions.
10070
10071 * ibuffer.el (ibuffer-accumulate-lines): Moved to replace.el.
10072
10073 * ibuf-ext.el (ibuffer-depropertize-string): Delete.
10074 (ibuffer-occur-match-face): Delete.
10075 (ibuffer-occur-props, ibuffer-occur-mode): Delete.
10076 (ibuffer-occur-mouse-display-occurence): Delete.
10077 (ibuffer-occur-goto-occurence, ibuffer-occur-display-occurence)
10078 (ibuffer-do-occur-1, ibuffer-occur-revert-buffer-function): Delete.
10079 (ibuffer-occur-engine): Moved to replace.el.
10080 (ibuffer-do-occur): Simply call `occur-1'.
10081
10082 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
10083 Handle the case where we're already viewing the score file.
10084
10085 2002-04-23 Andreas Schwab <schwab@suse.de>
10086
10087 * menu-bar.el (menu-bar-goto-menu): Fix bindings for next-tag and
10088 next-tag-otherw.
10089
10090 2002-04-23 Miles Bader <miles@gnu.org>
10091
10092 * menu-bar.el (menu-bar-update-buffers-1): Don't display a
10093 directory separator if there's no directory. Don't display
10094 directories at all if uniquify is active. Some code cleanup.
10095 (uniquify-buffer-name-style): Declare (but don't initialize).
10096
10097 * menu-bar.el (menu-bar-update-buffers): Don't use constant lists
10098 for command menu entries, since the low-level menu code modifies
10099 them. Cache the resulting list.
10100 (menu-bar-buffers-menu-command-entries): New variable.
10101
10102 * menu-bar.el (menu-bar-update-buffers): Add `Select Named Buffer'.
10103 Add separator line before commands
10104 Remove old crufty code that tried to line things up by adding
10105 spaces to entries (it doesn't work).
10106 Move `Frames' submenu after the normal buffers, and add a
10107 separator line before it.
10108 (menu-bar-buffers-menu-list-buffers-entry): Variable removed.
10109
10110 2002-04-22 Richard M. Stallman <rms@gnu.org>
10111
10112 * files.el (after-find-file): Use %s to output MSG.
10113
10114 * dired.el (dired-mouse-find-file-other-window):
10115 Handle events that move out of the window.
10116
10117 2002-04-23 Martin Stjernholm <mast@lysator.liu.se>
10118
10119 * progmodes/cc-cmds.el (c-mask-comment): Fixed bug where point
10120 was moved to the following line when it was at the first line
10121 of a block comment where comment-start-skip matched to eol.
10122
10123 2002-04-22 Richard M. Stallman <rms@gnu.org>
10124
10125 * simple.el (line-move-finish): Find beg and end of line
10126 before calling line-move-to-column. Do consider intangible
10127 when finding the end. Take more care in analyzing the results
10128 of intangibility after line-move-to-column.
10129
10130 2002-04-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10131
10132 * international/mule-diag.el (list-input-methods-1): Doc fix
10133 (LEIM is now part of the standard distribution).
10134
10135 * tmm.el (tmm-completion-prompt): Doc fix.
10136
10137 * hilit-chg.el (global-highlight-changes): Capitalize status texts.
10138
10139 2002-04-22 Edward M. Reingold <reingold@emr.cs.iit.edu>
10140
10141 * diary-lib.el (include-other-diary-files): Allow modifying
10142 included buffer, to turn off selective display.
10143
10144 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10145
10146 * progmodes/cc-mode.el: (c-define-abbrev-table): New function to
10147 pass the SYSTEM-FLAG to `define-abbrev' in a way that works in
10148 emacsen that doesn't support it.
10149
10150 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10151
10152 * progmodes/cc-align.el, progmodes/cc-engine.el,
10153 progmodes/cc-styles.el, progmodes/cc-vars.el
10154 (c-guess-basic-syntax, c-lineup-topmost-intro-cont):
10155 Find correct anchor for statement-cont in top level constructs.
10156 Analyze variable initializations in top level constructs as
10157 topmost-intro-cont instead of statement-cont. That is an
10158 incompatible change but it gives better consistency. The new
10159 lineup function c-lineup-topmost-intro-cont' compensates for
10160 it and is now put on topmost-intro-cont by default.
10161
10162 * progmodes/cc-align.el, progmodes/cc-engine.el,
10163 progmodes/cc-langs.el (c-lineup-argcont): Lineup function
10164 contributed by Kevin Ryde.
10165
10166 (c-in-gcc-asm-p): Function to recognize asm statements.
10167 Contributed by Kevin Ryde.
10168
10169 (c-opt-asm-stmt-key): New language variable to recognize the
10170 beginning of asm statements.
10171
10172 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10173
10174 * progmodes/cc-engine.el (c-guess-basic-syntax):
10175 Detect variable declarations after class and struct declarations
10176 correctly. Fixed limit error when finding the anchor for
10177 template-args-cont and topmost-intro-cont.
10178
10179 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10180
10181 * progmodes/cc-cmds.el (c-beginning-of-defun)
10182 (c-declaration-limits): Find the "line oriented" declaration
10183 start too, just like the "line oriented" end is found.
10184
10185 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10186
10187 * progmodes/cc-vars.el (c-offsets-alist): A more sane default
10188 for `inexpr-statement'. This is not compatible, though.
10189 I think the benefit of a good default style outweights that in
10190 this case. Besides, `inexpr-statement' is not very common.
10191
10192 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10193
10194 * progmodes/cc-cmds.el (c-electric-delete-forward):
10195 Fix silly bug that caused it to delete backwards in hungry delete
10196 mode. (It's amazing that this bug hasn't been reported.)
10197
10198 * progmodes/cc-cmds.el (c-declaration-limits, c-mark-function):
10199 Extracted the code to get the declaration limits from
10200 `c-mark-function' to a new `c-declaration-limits'.
10201
10202 (c-indent-defun): Use the same method to get the limits of the
10203 declaration or macro as `c-mark-function'.
10204
10205 * progmodes/cc-engine.el (c-beginning-of-decl-1): Handle brace
10206 list initializers correctly (but costly; it ought to be
10207 integrated into `c-beginning-of-statement-1').
10208
10209 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10210
10211 * progmodes/cc-cmds.el, progmodes/cc-engine.el
10212 (c-beginning-of-defun, c-end-of-defun, c-mark-function):
10213 Rewritten to detect the declaration limits better.
10214 Now handles K&R argdecls, class definitions followed by variables etc.
10215
10216 (c-in-knr-argdecl): Broke out the K&R argdecl test in
10217 `c-beginning-of-decl-1' to this new function.
10218
10219 (c-end-of-statement-1, c-end-of-decl-1):
10220 Replace `c-end-of-statement-1' with `c-end-of-decl-1', which correctly
10221 handles declarations that continue after the block.
10222
10223 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
10224 Added an option to restrict matching to the top level of the
10225 current paren sexp.
10226
10227 * progmodes/cc-langs.el (c-opt-block-decls-with-vars-key):
10228 New regexp to recognize declarations that continue after the block.
10229
10230 (c-syntactic-eol): New regexp to match a "syntactic" eol.
10231
10232 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10233
10234 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed a bug
10235 that often caused the backward limit to be lost at the top
10236 level. This improves performance a bit.
10237
10238 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
10239 New function that works like `re-search-forward' but only returns
10240 matches in syntactically significant text.
10241
10242 * progmodes/cc-engine.el: Fixed a faster and more accurate way
10243 to recognize K&R argdecls.
10244
10245 (c-beginning-of-decl-1): New function that put point at the
10246 beginning of the declaration. It handles K&R argdecl blocks.
10247
10248 (c-guess-basic-syntax): Replaced the `knr-argdecl' recognition
10249 code with one that doesn't depend on the current indentation.
10250 The anchor position for `knr-argdecl' has also changed, but in
10251 a way that is unlikely to cause compatibility problems.
10252
10253 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10254
10255 * progmodes/cc-defs.el, progmodes/cc-engine.el
10256 (c-forward-comment): `forward-comment' in XEmacs skips over
10257 line continuations in the backward direction. Correct for
10258 that. Also made this a defun since it has grown too large now
10259 to be a defsubst.
10260
10261 * progmodes/cc-langs.el: More convenient and decentralized
10262 setup of the language specific variables. The regexp-opt
10263 mangling is also done at compile time now.
10264
10265 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10266
10267 * progmodes/cc-cmds.el (c-indent-line-or-region):
10268 Call `c-indent-line' directly instead of through
10269 `indent-according-to-mode' so that this function always
10270 indents syntactically.
10271
10272 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed a bug
10273 where a class beginning with a nested class could cause an
10274 infinite loop (the state outside the narrowed out class is
10275 never used now).
10276
10277 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10278
10279 * progmodes/cc-align.el, progmodes/cc-cmds.el,
10280 progmodes/cc-engine.el, progmodes/cc-vars.el: Fixes so that
10281 the context sensitive analysis inside macros is restricted to
10282 the bodies of #define's; other things, like #if expressions,
10283 never have anything in common with their surroundings.
10284 The old `cpp-macro-cont' syntax is now used in situations where
10285 the syntactic analysis isn't applicable, and a new syntactic
10286 element `cpp-define-intro' is used to add indentation in
10287 #define bodies.
10288
10289 (c-lineup-cpp-define): New name for `c-lineup-macro-cont' to
10290 better reflect its use.
10291
10292 * progmodes/cc-engine.el (c-guess-basic-syntax): Ignore line
10293 continuation backslashes in the detection of `arglist-cont-nonempty'.
10294
10295 * progmodes/cc-align.el: Use the vector form in the return
10296 value in all cases where lineup functions return absolute columns.
10297
10298 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10299
10300 * progmodes/cc-engine.el (c-add-stmt-syntax)
10301 (c-guess-basic-syntax): Anchor `brace-list-intro' and
10302 `bracec-list-close' better for brace lists nested inside expressions.
10303
10304 * progmodes/cc-engine.el, progmodes/cc-langs.el,
10305 progmodes/cc-mode.el, progmodes/cc-styles.el: Cleaned up the
10306 various language specific variables and their initialization.
10307 The keyword regexps are now lists that are combined with
10308 regexp-opt. Some variables have changed names to fit better
10309 with the naming convention.
10310
10311 * progmodes/cc-defs.el, progmodes/cc-vars.el
10312 (c-buffer-is-cc-mode): The value is the mode symbol of the
10313 original CC Mode mode.
10314
10315 (c-major-mode-is): Compare against the buffer local variable
10316 `c-buffer-is-cc-mode', which is faster than using `derived-mode-class'.
10317
10318 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10319
10320 * progmodes/cc-engine.el (c-forward-syntactic-ws)
10321 (c-backward-syntactic-ws, c-forward-token-1)
10322 (c-backward-token-1, c-in-literal, c-literal-limits)
10323 (c-collect-line-comments, c-literal-type, c-on-identifier)
10324 (c-guess-basic-syntax): These functions are now considered part
10325 of the "CC Mode API" and may be used by other code.
10326 That's signified by making their documentation into docstrings.
10327
10328 (c-whack-state, c-hack-state, c-skip-case-statement-forward):
10329 Removed these internal functions since they aren't used.
10330
10331 (c-forward-to-cpp-expression): Classified this function as internal.
10332
10333 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10334
10335 * progmodes/cc-langs.el (c-ObjC-class-key, c-Java-class-key):
10336 Simplified these regexps; the class keywords they contain
10337 ought to be enough to avoid false matches, so checking for
10338 following identifiers etc is just unnecessary (and might also
10339 fail for oddly formatted code).
10340
10341 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10342
10343 * progmodes/cc-engine.el, progmodes/cc-cmds.el
10344 (c-forward-comment-lc): New function that behaves like
10345 `c-forward-comment', with the exception that line
10346 continuations are treated as whitespace.
10347
10348 (c-beginning-of-statement): Use `c-forward-comment-lc', to
10349 work correctly in macros and other places where line
10350 continuations should be treated as whitespace.
10351
10352 * progmodes/cc-engine.el (c-guess-basic-syntax): Analyze a
10353 normal label in a switch block as a case label, to get
10354 consistent lineup with the case labels.
10355
10356 * progmodes/cc-engine.el (c-backward-syntactic-ws): Fixed bug
10357 in skipping over a macro that ends with an empty line.
10358
10359 * progmodes/cc-styles.el: Require cc-align since styles added
10360 with `c-add-style' often contains references to functions
10361 defined there, and so the `c-valid-offset' check might
10362 otherwise complain on them.
10363
10364 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10365
10366 * progmodes/cc-align.el, progmodes/cc-mode.texi,
10367 progmodes/cc-vars.el: Added two new lineup functions:
10368
10369 (c-lineup-knr-region-comment): A new lineup function to get
10370 (what most people think is) better indentation of comments in
10371 the "K&R region" between the function header and its body.
10372
10373 (c-lineup-gcc-asm-reg): New lineup function for better
10374 indentation inside gcc asm blocks. Contributed by Kevin Ryde.
10375
10376 (c-offsets-alist): Use `c-lineup-gcc-asm-reg' and
10377 `c-lineup-knr-region-comment' in the default offset
10378 configuration, since these two functions have little impact
10379 outside their intended use, and they generally do the right
10380 thing when they kick in.
10381
10382 * progmodes/cc-engine.el (c-guess-continued-construct)
10383 (c-guess-basic-syntax): Handle nested functions in all
10384 languages, not just Pike. In C and C++ there's a gcc
10385 extension for this, and it also gives better treatment of
10386 macros that are followed by blocks.
10387
10388 * progmodes/cc-langs.el (c-symbol-key): Made this variable
10389 mode specific, to handle Pike special symbols like `== better.
10390
10391 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10392
10393 * progmodes/cc-cmds.el, progmodes/cc-engine.el,
10394 progmodes/cc-vars.el (c-report-syntactic-errors): A new
10395 variable to control the syntactic error messages. It defaults
10396 to off; since CC Mode ignores most syntactic errors it might
10397 as well ignore them all for the sake of consistency.
10398
10399 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10400
10401 * progmodes/cc-engine.el (c-looking-at-inexpr-block):
10402 Optimization. Can give a noticeable speedup if there's a
10403 large preceding function or class body.
10404
10405 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10406
10407 * progmodes/cc-align.el, progmodes/cc-cmds.el: Use more
10408 efficient and correct insertion functions in many places.
10409 Always inherit text properties correctly if the text is
10410 permanent. Also do it for speed in temporary insertions,
10411 since I figure it's less work to continue the surrounding text
10412 properties than to break them.
10413
10414 * progmodes/cc-styles.el (c-read-offset): Unbind SPC in the
10415 completion to make it easier to enter lists.
10416
10417 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10418
10419 * progmodes/cc-cmds.el (c-beginning-of-defun): Fixed bug where
10420 c-state-cache was clobbered.
10421
10422 * progmodes/cc-cmds.el, progmodes/cc-engine.el
10423 (c-calculate-state): Moved from cc-cmds.el to cc-engine.el due
10424 to dependency.
10425
10426 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10427
10428 * progmodes/cc-engine.el (c-parse-state): Ignore unbalanced
10429 open parens in macros (if point isn't in the same one).
10430
10431 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10432
10433 * progmodes/cc-cmds.el (c-context-open-line): New function
10434 that is the `open-line' equivalent to `c-context-line-break'.
10435
10436 * progmodes/cc-mode.el (c-mode-base-map): Compatibility fix
10437 for Emacs 21 since `indent-new-comment-line' has been changed
10438 to `comment-indent-new-line' there.
10439
10440 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10441
10442 * progmodes/cc-engine.el, progmodes/cc-langs.el
10443 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma):
10444 New variables containing the character sets used to recognize
10445 statement/declaration boundaries. These variables might help
10446 to support languages like javascript and awk, where newlines
10447 sometimes delimits statements.
10448
10449 (c-crosses-statement-barrier-p): Use `c-stmt-delim-chars' as
10450 the set of statement delimiting characters, to allow it to be
10451 changed dynamically and per-mode.
10452
10453 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10454
10455 * progmodes/cc-engine.el (c-looking-at-bos)
10456 (c-looking-at-inexpr-block, c-add-stmt-syntax)
10457 (c-guess-basic-syntax): Treat blocks directly inside function
10458 calls like "bare" statements inside function calls, and not
10459 like in-expression statements. This to make indentation of
10460 such blocks consistent with other statements inside macro calls.
10461
10462 * progmodes/cc-engine.el (c-guess-basic-syntax):
10463 Made arglist-cont anchor correctly in arglists that contain statements.
10464
10465 * progmodes/cc-engine.el (c-guess-basic-syntax):
10466 Fixed consistent anchoring of defun-block-intro in defuns in code
10467 blocks (can only occur in Pike).
10468
10469 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
10470 (c-looking-at-inexpr-block-backward): Changed the arguments to
10471 require containing sexps and paren state, for better efficiency.
10472
10473 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10474
10475 * progmodes/cc-cmds.el, progmodes/cc-engine.el,
10476 progmodes/cc-vars.el: Improved anchoring of statement and
10477 handling of labels in front of substatements.
10478
10479 (c-guess-continued-construct, c-guess-basic-syntax):
10480 Improved and unified anchoring at statements. Statements beginning
10481 with comments or labels are now avoided, by going out of
10482 blocks and containing statements if necessary. This nesting
10483 handling also fixes the case when there's a statement after a
10484 block open brace. Added the syntactic symbol `substatement-label'.
10485
10486 (c-electric-colon): Map the new `substatement-label' to
10487 `label' when consulting `c-hanging-colons-alist'.
10488
10489 (c-offsets-alist): Added substatement-label. Updated the
10490 comments for the new anchoring positions at statements.
10491
10492 * progmodes/cc-engine.el (c-guess-basic-syntax): Use more sane
10493 anchor points for knr-argdecl-intro and access-label.
10494 They used to refer to some point on the same line, a bug which was
10495 neutralized by a kludge in `c-get-syntactic-indentation' which
10496 ignored such anchor points.
10497
10498 (c-get-syntactic-indentation): Removed the kludge that was
10499 necessary due to buggy anchor points.
10500
10501 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not check
10502 the absence of a comma before arglist-close (case 7A) in any
10503 language, since there's nothing better to do that case anyway.
10504 Added special case to make in-expression statements be
10505 recognized as normal arglist-cont if we're directly in a macro
10506 arglist, for consistency with other "bare" statements.
10507
10508 * progmodes/cc-engine.el (c-looking-at-bos): Added optional
10509 limit arg for backward searches.
10510
10511 * progmodes/cc-engine.el (c-looking-at-inexpr-block):
10512 Anchor gcc in-expression statements at the surrounding open
10513 parenthesis. Treat a class body as an in-expression class if
10514 it's used in an object clone expression in Pike.
10515
10516 * progmodes/cc-engine.el (c-get-offset)
10517 (c-get-syntactic-indentation): Allow several anchor positions
10518 in the list of syntactic symbols. Only the first is used as
10519 the base for the offset calculation.
10520
10521 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10522
10523 * progmodes/cc-cmds.el (c-indent-defun): Indent the current
10524 macro if inside one at the top level. Do not throw an error
10525 if used at the top level outside a macro.
10526
10527 * progmodes/cc-cmds.el (c-backslash-region): Do tab width
10528 alignment only if the backslashes can't be aligned with
10529 surrounding backslashes.
10530
10531 * progmodes/cc-engine.el (c-end-of-macro): New function.
10532
10533 * progmodes/cc-engine.el (c-least-enclosing-brace):
10534 Rewritten to not be destructive.
10535
10536 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10537
10538 * progmodes/cc-cmds.el (c-context-line-break): Only do a macro
10539 line break when point is inside the content of it; if it's in
10540 the cpp keyword a normal line break is done.
10541
10542 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not add
10543 cpp-macro-cont inside the argument list to a #define.
10544
10545 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10546
10547 * progmodes/cc-defs.el (c-forward-comment): Implemented a
10548 kludge to avoid the problem most forward-comment incarnations
10549 have with `\' together with comment parsing.
10550
10551 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10552
10553 * progmodes/cc-engine.el (c-check-state-cache): Fixed bug
10554 which could cause the state returned by `c-parse-state' to
10555 lack a closed paren element. That in turn could result in
10556 very long searches, since it's common that they start from the
10557 last preceding close brace.
10558
10559 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10560
10561 * progmodes/cc-engine.el (c-beginning-of-statement-1): Do not
10562 treat else-if as a single continuation, since that'd make it
10563 hard to get the right anchor point when there's a line break
10564 between the two keywords. This change causes else-clause to
10565 be anchored on the closest preceding else-if and not always on
10566 the starting if, but that doesn't affect the indentation for
10567 any reasonably sane style. Also introduced a noerror flag.
10568
10569 (c-beginning-of-closest-statement): Removed;
10570 c-beginning-of-statement-1 now avoids the problem this one solved.
10571
10572 * progmodes/cc-engine.el (c-guess-continued-construct)
10573 (c-guess-basic-syntax): Better and more uniform anchor points
10574 for 'statement-cont and 'substatement. The effect is
10575 noticeable mostly when there's a label on the same line as the
10576 beginning of the statement, or when there are more stuff
10577 before the start of the statement.
10578
10579 * progmodes/cc-engine.el (c-looking-at-inexpr-block):
10580 Added flag to disable looking at the type of the surrounding paren
10581 since that confuses c-beginning-of-statement-1 and a couple of
10582 other places.
10583
10584 * progmodes/cc-engine.el (c-guess-basic-syntax):
10585 Avoid stepping to the previous statement in case 18.
10586 Improvements in recognition of statement blocks on the top level.
10587
10588 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10589
10590 * progmodes/cc-engine.el (c-beginning-of-statement-1)
10591 (c-crosses-statement-barrier-p): Rewritten to get a well
10592 defined and documented behavior. This fixes some tricky cases
10593 in recognition of do-while constructs.
10594
10595 (c-backward-to-start-of-do, c-backward-to-start-of-if):
10596 Removed; use c-beginning-of-statement-1 instead.
10597
10598 (c-guess-continued-construct, c-guess-basic-syntax):
10599 Various fixes to not depend on the bugs previously in
10600 c-beginning-of-statement-1. Cleanups in cases 18 and 17 to
10601 use the new behavior of c-beginning-of-statement-1 better.
10602 Fixed recognition of catch blocks inside macros.
10603
10604 * progmodes/cc-engine.el (c-backward-syntactic-ws): Fixed bug
10605 in skipping over a macro.
10606
10607 * progmodes/cc-langs.el (c-label-kwds): New variable to
10608 contain the appropriate c-*-label-kwds value.
10609
10610 * progmodes/cc-vars.el (defcustom-c-stylevar): Fixed value
10611 evaluation bug that caused the widget for
10612 c-block-comment-prefix to bug out.
10613
10614 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10615
10616 * progmodes/cc-engine.el (c-guess-basic-syntax):
10617 Improved recognition of statements: They are now recognized in
10618 contexts where they normally can't occur, e.g. on the top level or
10619 in function call arguments. This is mainly useful to recognize
10620 statements in macros at the top level, and in arguments to
10621 macros. The cases has been moved around quite a bit, and case
10622 10 has been copied to case 18. (The cases has not been
10623 renumbered because of this.)
10624
10625 (c-guess-continued-construct): New function which has the
10626 rules which are common between cases 10 and 18.
10627
10628 * progmodes/cc-engine.el (c-beginning-of-statement-1)
10629 (c-backward-to-start-of-do, c-backward-to-start-of-if):
10630 Fixes so that they really obey the passed limits.
10631
10632 (c-safe-position): Return nil if the state doesn't contain a
10633 suitable position.
10634
10635 (c-guess-basic-syntax): Fixes some too short limits in calls
10636 to c-beginning-of-statement-1. Some fixes for top level
10637 analysis in ObjC mode.
10638
10639 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10640 Fixed bug in do-while statements where the body is not a block.
10641
10642 * progmodes/cc-styles.el (c-set-style):
10643 Reset c-special-indent-hook to its global value if in override mode.
10644 Fixes problem where functions on that hook remained after
10645 style switch.
10646
10647 * progmodes/cc-engine.el (c-evaluate-offset, c-get-offset):
10648 Use c-benign-error to report the c-strict-syntax-p error.
10649
10650 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10651
10652 * progmodes/cc-align.el, progmodes/cc-defs.el,
10653 progmodes/cc-cmds.el, progmodes/cc-engine.el, cc-vars.el:
10654 Several fixes to treat macros as code and not literals and to
10655 handle line continuations transparently.
10656
10657 (c-skip-ws-forward, c-skip-ws-backward): New macros to skip
10658 through whitespace and line continuations, but not comments
10659 and macros.
10660
10661 (c-in-literal): No longer recognizes macros as literals by
10662 default. An extra flag argument is required to do that.
10663
10664 (c-macro-start, c-query-macro-start)
10665 (c-query-and-set-macro-start): Added a cache for the macro
10666 start position.
10667
10668 (c-forward-syntactic-ws, c-backward-syntactic-ws): Fixes for
10669 more speed when limits are given. Workaround for bad behavior
10670 in forward-comment in some emacsen when it hits a buffer limit
10671 with a large repeat count.
10672
10673 (c-lineup-macro-cont): Improved behavior when
10674 c-syntactic-indentation-in-macros is nil.
10675
10676 (c-syntactic-indentation-in-macros, c-backslash-max-column)
10677 (c-auto-align-backslashes): New customization variables to
10678 control macro handling.
10679
10680 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression):
10681 Fixes to handle line continuations.
10682
10683 * progmodes/cc-defs.el, progmodes/cc-styles.el
10684 (c-get-style-variables, c-set-offset): Report style errors
10685 with message and ding instead of error signal. This to avoid
10686 interrupted mode init if there's some style problem.
10687
10688 (c-benign-error): New macro to report errors that doesn't need
10689 to interrupt the operation.
10690
10691 * progmodes/cc-defs.el (c-point): Added eonl and eopl positions.
10692
10693 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10694
10695 * progmodes/cc-cmds.el (c-electric-brace, c-indent-region):
10696 Removed most of the c-state-cache fiddling, since the global
10697 state cache now handles this.
10698
10699 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed bug
10700 when there's an open paren at the very first char of the
10701 visible buffer region.
10702
10703 * progmodes/cc-engine.el (c-parse-state, c-check-state-cache):
10704 Cache the state globally and invalidate it below every buffer
10705 change with the new after change function
10706 `c-check-state-cache'. This gives a considerable performance
10707 boost when editing large functions or classes.
10708
10709 * progmodes/cc-engine.el (c-whack-state-after): Slight optimization.
10710
10711 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10712
10713 * progmodes/cc-engine.el, progmodes/cc-langs.el,
10714 progmodes/cc-align.el: Improvements to syntactic analysis
10715 inside macros:
10716
10717 (c-block-stmt-1-kwds, c-block-stmt-2-kwds): New variables used
10718 by `c-guess-basic-syntax'.
10719
10720 (c-parse-state): Fixed bug with braces inside macros when
10721 using cached state info.
10722
10723 (c-forward-to-cpp-expression): New function to aid in
10724 syntactic analysis inside macros.
10725
10726 (c-beginning-of-statement-1, c-backward-syntactic-ws):
10727 Fixes to work better inside macros.
10728
10729 (c-forward-syntactic-ws): Whitespace between the # and the
10730 command should be allowed in preprocessor directives.
10731
10732 (c-lineup-macro-cont): New lineup function to get context
10733 sensitive indentation inside macros.
10734
10735 (c-offsets-alist): Made `c-lineup-macro-cont' the default for
10736 cpp-macro-cont.
10737
10738 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10739
10740 * progmodes/cc-engine.el (c-beginning-of-statement-1)
10741 (c-forward-syntactic-ws): Fixes to handle continued lines.
10742
10743 (c-backward-to-start-of-if, c-guess-basic-syntax):
10744 Do syntactic analysis inside macros.
10745
10746 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10747
10748 * progmodes/cc-cmds.el (c-indent-region): Did a speedup made
10749 possible by the more flexible state cache.
10750
10751 * progmodes/cc-engine.el (c-parse-state, c-whack-state-before)
10752 (c-whack-state-after, c-hack-state)
10753 (c-narrow-out-enclosing-class, c-guess-basic-syntax):
10754 Improved the state cache system. It now can use partial info from
10755 an old cached state to calculate a new one at a different
10756 position. Removed some kludges to avoid the state cache.
10757 The new functions `c-whack-state-before' and `c-whack-state-after'
10758 replace the now obsolete `c-whack-state'.
10759
10760 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10761 Optimized backing through a macro. This can speed things up
10762 quite a bit when there are long macros before point.
10763
10764 (c-beginning-of-macro): Do not ignore the limit.
10765
10766 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10767
10768 * progmodes/cc-cmds.el (c-electric-continued-statement):
10769 Fixed a bug where the keyword wasn't reindented correctly if
10770 followed by another keyword or identifier.
10771
10772 * progmodes/cc-engine.el (c-parse-state): Ignore closed brace
10773 pairs that are in macros. Fixes some cases where e.g. the
10774 second of two "do { } while (0)" macros after each other
10775 indented differently.
10776
10777 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10778
10779 * progmodes/cc-engine.el (c-beginning-of-macro)
10780 (c-forward-syntactic-ws): Recognize "#!" as a preprocessor
10781 directive when it begins a line, to allow for script
10782 interpreter lines like "#!/usr/bin/pike" at the beginning of
10783 the file.
10784
10785 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10786
10787 * progmodes/cc-engine.el (c-looking-at-inexpr-block):
10788 Recognize brace blocks inside a parenthesis expression as
10789 inexpr-statement. Useful when writing statements as macro arguments.
10790
10791 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10792
10793 * progmodes/cc-cmds.el (c-fill-paragraph, c-do-auto-fill)
10794 (c-mask-comment): Broke out the comment masking code from
10795 `c-fill-paragraph' to a new function `c-mask-comment', to be
10796 able to do the same thing in `c-do-auto-fill'. This should
10797 make auto-fill-mode behave better.
10798
10799 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10800
10801 * progmodes/cc-cmds.el (c-electric-brace, c-electric-paren):
10802 Check `executing-macro' to avoid blinking parens when macros
10803 are executed.
10804
10805 * progmodes/cc-mode.el, progmodes/cc-styles.el
10806 (c-setup-filladapt): Moved from cc-mode.el to cc-styles.el for
10807 consistency with `c-setup-paragraph-variables' (which was
10808 placed there due to the dependency from `c-set-style').
10809
10810 * progmodes/cc-styles.el, progmodes/cc-vars.el: Fixed bug with
10811 incomplete initialization from the style variable fallbacks if
10812 there already is a style called "user" defined when CC Mode
10813 starts up for the first time.
10814
10815 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10816
10817 * progmodes/cc-cmds.el, progmodes/cc-vars.el
10818 (c-comment-indent, c-indent-comment-alist): Added new variable
10819 `c-indent-comment-alist' to allow better control over
10820 `c-comment-indent'.
10821
10822 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10823
10824 * progmodes/cc-align.el (c-lineup-C-comments): Try to match
10825 both `comment-start-skip' and the comment prefix on the
10826 current line with the comment starter, so that we line up
10827 comments which matches `c-comment-prefix-regexp' on the first
10828 line (after the `/') without the need to make
10829 `comment-start-skip' match whatever `c-comment-prefix-regexp' matches.
10830
10831 * progmodes/cc-mode.el, progmodes/cc-styles.el (c-common-init)
10832 (c-set-style-1, c-setup-paragraph-variables): Moved the
10833 variable initialization based on `c-comment-prefix-regexp' to
10834 a new function `c-setup-paragraph-variables', which is now
10835 used both at mode init and when a style that sets
10836 `c-comment-prefix-regexp' is activated.
10837
10838 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10839
10840 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
10841 Better handling of C++ template args to avoid confusion with
10842 `<' and `>' used as operators in member init expressions.
10843
10844 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10845
10846 * progmodes/cc-engine.el (c-most-enclosing-brace)
10847 (c-least-enclosing-brace): Added optional second arg to limit
10848 the search to before a certain point.
10849
10850 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed bug
10851 which could cause incorrect analysis if a cached state is used
10852 (usually only happens when an electric key reindents a line).
10853
10854 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10855
10856 * progmodes/cc-defs.el (c-forward-comment): More idiosyncrasy
10857 insulation. This time for XEmacs 21.
10858
10859 * progmodes/cc-engine.el, progmodes/cc-langs.el:
10860 Improved handling of inheritance lists:
10861
10862 (c-beginning-of-inheritance-list): Rewritten to use a more
10863 syntactically correct method that doesn't get confused by
10864 badly placed linebreaks and comments.
10865
10866 (c-guess-basic-syntax): Several fixes to the handling of
10867 inheritance lists in combination with templates. 'inher-intro
10868 is now anchored on the start of the class declaration and not
10869 the indentation of the current line. Switched places on cases
10870 5D.3 and 5D.4 and made them use more syntactically correct methods.
10871
10872 (c-inher-key): Removed since the code in
10873 `c-guess-basic-syntax' now uses token-based search.
10874
10875 * progmodes/cc-cmds.el, progmodes/cc-mode.el (c-mode-menu):
10876 Added a submenu to access some toggles.
10877
10878 (c-toggle-syntactic-indentation): New function to toggle the
10879 variable `c-syntactic-indentation'.
10880
10881 * progmodes/cc-styles.el (c-set-style): Improved the error
10882 message for incorrect offsets a bit.
10883
10884 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10885
10886 * progmodes/cc-cmds.el (c-indent-exp): Don't require that the
10887 sexp follows point immediately, instead find the closest
10888 following open paren that ends on another line.
10889
10890 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10891
10892 * progmodes/cc-align.el (c-lineup-cascaded-calls):
10893 New indentation function.
10894
10895 * progmodes/cc-engine.el (c-beginning-of-macro): Bugfix for
10896 directives with whitespace between the '#' and the name.
10897
10898 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10899
10900 * progmodes/cc-engine.el (c-forward-syntactic-ws)
10901 (c-backward-syntactic-ws): Handle line continuations as
10902 whitespace. Don't move past a macro if that'd take us past
10903 the limit.
10904
10905 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10906
10907 * progmodes/cc-engine.el (c-beginning-of-macro)
10908 (c-forward-syntactic-ws): Multiline strings begin with `#"' in
10909 Pike, and that shouldn't be confused with a preprocessor directive.
10910
10911 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10912
10913 * progmodes/cc-cmds.el: Extended the kludge to interoperate
10914 with the delsel and pending-del packages wrt to the new
10915 function `c-electric-delete-forward'.
10916
10917 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10918
10919 * progmodes/cc-cmds.el (c-indent-exp): Keep the indentation of
10920 the block itself, i.e. only indent the contents in it.
10921
10922 * progmodes/cc-styles.el (c-set-style): Use the default
10923 argument to completing-read instead of initial-contents, if
10924 the function is recent enough to support it.
10925
10926 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10927
10928 * progmodes/cc-mode.el (c-mode-help-address):
10929 Removed bug-gnu-emacs@gnu.org from the receiver list for bug reports.
10930 I've almost never seen a bug reported this way that should go
10931 to that list, but it's rather common that the reports concern
10932 the combination CC Mode and XEmacs instead.
10933
10934 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10935
10936 * progmodes/cc-cmds.el (c-electric-paren): Fixed bug when both
10937 brace-elseif-brace and brace-catch-brace are active and
10938 there's a "else if"-block before the catch block.
10939
10940 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression):
10941 Detect function headers that span lines.
10942
10943 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10944
10945 * progmodes/cc-cmds.el (c-electric-brace)
10946 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
10947 Check for last on line only for doing the auto-newline-mode
10948 stuff, not for the reindentation.
10949
10950 * progmodes/cc-cmds.el (c-electric-brace): Fixed bugs in the
10951 handling of c-syntactic-indentation: When it's nil, indent the
10952 new lines but don't reindent the current one. Reindent the
10953 line only when the inserted brace comes first on it, instead
10954 of last.
10955
10956 * progmodes/cc-cmds.el (c-electric-brace)
10957 (c-electric-semi&comma): Fixed two places where
10958 c-syntactic-indentation wasn't heeded.
10959
10960 * progmodes/cc-cmds.el (c-electric-pound): Don't be electric
10961 inside a macro.
10962
10963 * progmodes/cc-engine.el (c-backward-to-start-of-if): Try a
10964 little harder to find a fallback position when an orphan else
10965 is found. Fixed case where an else following a do-while
10966 statement could be associated with an if inside the do-while.
10967
10968 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10969
10970 * progmodes/cc-cmds.el (c-guess-fill-prefix): Tuned the dwim
10971 for the fallback to add a single space after the comment prefix.
10972
10973 * progmodes/cc-cmds.el (c-indent-new-comment-line): Somewhat better
10974 behavior in some special cases, especially for single-line comments.
10975 Avoid breaking up a comment starter or ender.
10976
10977 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10978
10979 * progmodes/cc-cmds.el (c-outline-level): Applied patch from
10980 the Emacs sources to make this work in invisible text.
10981
10982 * progmodes/cc-langs.el (c-switch-label-key): Fixed regexp to
10983 not be confused by a later ':' on the same line as the label.
10984
10985 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10986
10987 * progmodes/cc-cmds.el, progmodes/cc-mode.el
10988 (c-electric-delete, c-electric-delete-forward):
10989 Split `c-electric-delete' into two functions where
10990 `c-electric-delete-forward' always deletes forward and
10991 `c-electric-delete' only contains the code necessary for
10992 XEmacs to choose between backward and forward deletion.
10993 `c-electric-delete-forward' is now bound to C-d to get the
10994 electric behavior on that key too.
10995
10996 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
10997
10998 * progmodes/cc-cmds.el (c-fill-paragraph): Fixed bogus direct
10999 use of c-comment-prefix-regexp, which caused an error when
11000 it's a list.
11001
11002 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
11003
11004 * progmodes/cc-mode.el, progmodes/cc-vars.el (c-common-init)
11005 (c-default-style): Removed the hardcoded switch to "java" style
11006 in Java mode. It's instead taken care of by the default value
11007 for c-default-style.
11008
11009 2002-04-22 Martin Stjernholm <bug-cc-mode@gnu.org>
11010
11011 * progmodes/cc-align.el (c-lineup-math): Fix bug where lineup
11012 was triggered by equal signs in string literals.
11013
11014 2002-04-21 Kim F. Storm <storm@cua.dk>
11015
11016 * subr.el (insert-buffer-substring-no-properties): New function.
11017 (insert-buffer-substring-as-yank): New function.
11018
11019 2002-04-21 Glenn Morris <gmorris@ast.cam.ac.uk>
11020
11021 * scroll-all.el (minor-mode-alist): Fix usage of `scroll-all-mode'.
11022 (scroll-all-page-down-all, scroll-all-page-up-all) Remove `fkey-'
11023 prefix from scroll commands. Ignore end-of-buffer errors from
11024 other windows.
11025 (scroll-all-check-to-scroll): Remove `fkey-' prefix from scroll
11026 commands.
11027 (scroll-all-beginning-of-buffer-all, scroll-all-end-of-buffer-all):
11028 New functions.
11029
11030 * files.el: (auto-mode-alist): .f95 files in f90-mode.
11031
11032 * progmodes/fortran.el: (fortran-beginning-do): Make regexp match
11033 a DO statement irrespective of numeric label.
11034
11035 2002-04-20 Glenn Morris <gmorris@ast.cam.ac.uk>
11036
11037 * files.el (auto-save-file-name-transforms): Doc fix.
11038 Add third element to "uniquify" filenames.
11039 (make-auto-save-file-name): Use new element of
11040 auto-save-file-name-transforms.
11041 * startup.el (command-line): Add third element to
11042 auto-save-file-name-transforms.
11043
11044 2002-04-19 Stefan Monnier <monnier@cs.yale.edu>
11045
11046 * files.el (file-name-non-special): Don't mangle the 0'th arg and the
11047 return value of file-name-completion and file-name-all-completions.
11048
11049 2002-04-19 Glenn Morris <gmorris@ast.cam.ac.uk>
11050
11051 * progmodes/f90.el: Update maintainer.
11052 (f90-line-continued): Recognize blank/comment lines embedded in
11053 continuation lines.
11054 (f90-looking-at-program-block-start): No extra indentation after
11055 function or subroutine keyword appears in single quotes.
11056
11057 2002-04-19 Miles Bader <miles@gnu.org>
11058
11059 * custom.el (customize-mark-to-save, customize-mark-as-set)
11060 (custom-quote): Moved here from `cus-edit.el'.
11061 * cus-edit.el (customize-mark-to-save, customize-mark-as-set)
11062 (custom-quote): Moved to `custom.el'.
11063
11064 2002-04-18 Richard M. Stallman <rms@gnu.org>
11065
11066 * facemenu.el (list-text-properties-at): Command deleted.
11067
11068 * rect.el (insert-rectangle): Use insert-for-yank.
11069
11070 * register.el (insert-register): Use insert-for-yank.
11071 (describe-register-1): Discard text props in yank-excluded-properties.
11072
11073 * toolbar/tool-bar.el (tool-bar-local-item-from-menu):
11074 Fix parts in construction of `menu-item' item at end.
11075
11076 * mail/mailabbrev.el (mail-mode-abbrev-table): Delete defvar.
11077
11078 * subr.el (insert-for-yank): New function.
11079
11080 * simple.el (yank-excluded-properties): New user option.
11081 (yank-pop, yank): Use insert-for-yank.
11082
11083 2002-04-19 Kim F. Storm <storm@cua.dk>
11084
11085 * simple.el (pop-to-mark-command): Do not set this-command.
11086 (set-mark-command): Always jump to mark when called with arg.
11087
11088 2002-04-18 Francesco Potort\e,Al\e(B <pot@gnu.org>
11089
11090 * comint.el (comint-watch-for-password-prompt): Remove whitespace
11091 at the beginning of password prompts.
11092
11093 2002-04-18 Andrew Innes <andrewi@gnu.org>
11094
11095 * facemenu.el: Remove require of wid-edit.
11096
11097 2002-04-17 Colin Walters <walters@verbum.org>
11098
11099 * ibuffer.el (ibuffer-visit-buffer): Optionally allow reducing to
11100 one window.
11101 (ibuffer-visit-buffer-1-window): Simply call `ibuffer-visit-buffer'.
11102 (ibuffer-current-state-list): Reinstate optional argument; now
11103 just call `point' inside the mapping function.
11104
11105 2002-04-17 Francesco Potort\e,Al\e(B <pot@gnu.org>
11106
11107 * dired-aux.el (dired-star-subst-regexp)
11108 (dired-quark-subst-regexp): New constants.
11109 (dired-do-shell-command, dired-shell-stuff-it): Use them.
11110 (dired-do-shell-command): Raise an error if both `*' and `?'
11111 substitution marks are used in the same command.
11112 (dired-shell-stuff-it): Substitute all instances of `*' and `?'
11113 in a command given via dired-do-shell-command.
11114
11115 * comint.el (comint-password-prompt-regexp): Match "Repeat passphrase".
11116
11117 2002-04-16 Jason Rumney <jasonr@gnu.org>
11118
11119 * international/mule-cmds.el (locale-preferred-coding-systems):
11120 Add "jpn".
11121
11122 2002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
11123
11124 * term.el (term-emulate-terminal): Fix last change.
11125
11126 2002-04-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11127
11128 * bindings.el (mode-line-mode-menu): Update names to reflect
11129 latest changes.
11130
11131 2002-04-16 Mike Williams <mdub@bigfoot.com>
11132
11133 * textmodes/sgml-mode.el (sgml-at-indentation-p): Move to fix
11134 compilation error.
11135
11136 2002-04-16 Michael Kifer <kifer@cs.stonybrook.edu>
11137
11138 * viper-ex.el: Patch by Samuel Padgett. Copyright papers received.
11139 (viper-ex-print-buf-name): New variable.
11140 (viper-ex-print-buf): New variable.
11141 (ex-token-alist): Invoke ex-print on ":print" Ex commands.
11142 (ex-g-marks): New variable.
11143 (ex-print): New function.
11144 (ex-print-display-lines): New function.
11145
11146 * viper.el (viper-set-hooks): Add window-setup-hook, which sets
11147 the cursor color.
11148
11149 * ediff-util.el (ediff-cleanup-mess): Delete ctl window on exit
11150 when the window is not in its own frame.
11151 (ediff-clone-buffer-for-region-comparison): More robust window
11152 arrangement while prompting for regions to compare.
11153 (ediff-make-cloned-buffer): Use generate-new-buffer-name.
11154 (ediff-inferior-compare-regions): Deleted unused vars
11155 ctl-buf and quit-now.
11156
11157 2002-04-15 Richard M. Stallman <rms@gnu.org>
11158
11159 * facemenu.el (facemenu-add-new-face): Use this only for faces.
11160 Delete arg MENU.
11161 (facemenu-add-new-color): New function.
11162 (facemenu-set-foreground, facemenu-set-background):
11163 Use facemenu-add-new-color.
11164
11165 2002-04-15 Eli Zaretskii <eliz@is.elta.co.il>
11166
11167 * ediff-init.el (ediff-current-diff-face-A)
11168 (ediff-current-diff-face-B, ediff-current-diff-face-C)
11169 (ediff-current-diff-face-Ancestor, ediff-fine-diff-face-A)
11170 (ediff-fine-diff-face-B, ediff-fine-diff-face-C)
11171 (ediff-fine-diff-face-Ancestor, ediff-even-diff-face-A)
11172 (ediff-even-diff-face-B, ediff-even-diff-face-C)
11173 (ediff-even-diff-face-Ancestor, ediff-odd-diff-face-A)
11174 (ediff-odd-diff-face-B, ediff-odd-diff-face-C)
11175 (ediff-odd-diff-face-Ancestor): Add special color definitions for
11176 tty and MS-DOS displays.
11177
11178 2002-04-15 Andrew Innes <andrewi@gnu.org>
11179
11180 * facemenu.el: Require wid-edit.
11181
11182 2002-04-15 Miles Bader <miles@gnu.org>
11183
11184 * faces.el (highlight): Force foreground to be black on a tty, so
11185 this face is readable on a dark-background tty.
11186 * wid-edit.el (widget-field-face, widget-single-line-field-face):
11187 Likewise.
11188
11189 2002-04-14 Kim F. Storm <storm@cua.dk>
11190
11191 * simple.el (pop-to-mark-command, push-mark-command): New commands.
11192 (set-mark-command): Use them.
11193 Enhanced functionality when command is repeated:
11194 - If first command set the mark (no prefix arg), repeat temporarily
11195 enables transient-mark-mode.
11196 - If first command jumped to mark off ring (with argument),
11197 repeat (with or without arg) jump to next mark off ring.
11198 - Use C-u C-u prefix to set mark after jump.
11199 (exchange-point-and-mark): Temporarily enable transient-mark-mode
11200 if prefix arg.
11201
11202 2002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11203
11204 * speedbar.el (speedbar-tag-hierarchy-method)
11205 (speedbar-toggle-updates, speedbar-toggle-images): Doc fixes.
11206
11207 2002-04-14 Mike Williams <mdub@bigfoot.com>
11208
11209 * textmodes/sgml-mode.el (sgml-parse-tag-backward): Fix to work at
11210 beginning of buffer.
11211
11212 2002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11213
11214 * speedbar.el (speedbar-generic-item-info)
11215 (speedbar-sort-tags): Doc fix.
11216 (speedbar-add-supported-extension): Fix typo in interactive spec.
11217
11218 2002-04-13 Colin Walters <walters@verbum.org>
11219
11220 * ibuffer.el (ibuffer-forward-line): Just skip header if we're
11221 only moving one line forward.
11222 (ibuffer-map-lines): Preserve point position even if we delete
11223 lines. Only call mapping functions with buffer and mark
11224 arguments; the other two were unused.
11225 (ibuffer-redisplay, ibuffer-update): Always skip special areas.
11226
11227 * ibuf-macs.el, ibuf-ext.el: Update callers of `ibuffer-map-lines'.
11228
11229 * calc/calc-bin.el (math-format-radix-float): Use `when'.
11230
11231 * calc/calc.el (math-format-number): Load `calc-ext' before we
11232 call `math-group-float'.
11233
11234 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
11235 Renamed from `gamegrid-add-score'.
11236 (gamegrid-add-score-insecure): Restored from the old
11237 `gamegrid-add-score'.
11238 (gamegrid-add-score): Just dispatch on `system-type' to one of the
11239 previous two functions.
11240
11241 2002-04-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11242
11243 * iswitchb.el: Update commentary to include new function
11244 iswitchb-exclude-nonmatching.
11245
11246 2002-04-12 John Wiegley <johnw@gnu.org>
11247
11248 * eshell/esh-ext.el (eshell-script-interpreter): Fix for CRLF
11249 operating systems to the regexp used to detect a script's interpreter.
11250
11251 2002-04-12 Eli Zaretskii <eliz@is.elta.co.il>
11252
11253 * frame.el (frames-on-display-list): Use `equal' to compare the
11254 `display' frame parameter to the argument DISPLAY.
11255
11256 2002-04-12 Dave Love <fx@gnu.org>
11257
11258 * help.el (string-key-binding): Deal with margin events.
11259
11260 2002-04-12 Francesco Potort\e,Al\e(B <pot@gnu.org>
11261
11262 * comint.el (comint-password-prompt-regexp): Match " SMB password".
11263
11264 2002-04-11 Stefan Monnier <monnier@cs.yale.edu>
11265
11266 * sort.el (sort-reorder-buffer): Don't assume point-min == 1.
11267
11268 * xt-mouse.el (xterm-mouse-mode): Use define-minor-mode.
11269
11270 * emacs-lisp/lucid.el (device-class, buffer-syntactic-context)
11271 (buffer-syntactic-context-depth): New funs.
11272
11273 * emacs-lisp/edebug.el (edebug-eval-defun): Don't use defconst
11274 on variables.
11275
11276 * emacs-lisp/debug.el (debug-on-entry): Use push.
11277 (debugger-make-xrefs): Don't assume point-min == 1.
11278
11279 * progmodes/cc-engine.el (c-backward-to-start-of-if):
11280 Don't assume point-min == 1.
11281
11282 * progmodes/etags.el (etags-verify-tags-table, etags-snarf-tag)
11283 (etags-list-tags, etags-tags-apropos, select-tags-table):
11284 Don't assume point-min == 1.
11285
11286 2002-04-12 Mike Williams <mdub@bigfoot.com>
11287
11288 * textmodes/sgml-mode.el (sgml-guess-indent): New function.
11289
11290 2002-04-11 Stefan Monnier <monnier@cs.yale.edu>
11291
11292 * textmodes/fill.el (fill-context-prefix): Fix up last change.
11293
11294 * simple.el (line-move): Use memq rather than or.
11295 (transpose-sexps): Don't presume as much of forward-sexp's behavior.
11296 (do-auto-fill): Use fill-move-to-break-point.
11297 (syntax-code-table): Remove.
11298
11299 * textmodes/fill.el (canonically-space-region): Obey sentence-end.
11300 Don't add spaces at end of sentences at end of line.
11301 (fill-move-to-break-point): Make sure the result is always greater
11302 than linebeg, so we ensure forward progress.
11303 (fill-region-as-paragraph): Compare to `to' rather than eobp.
11304 (fill-paragraph): Don't rebind fill-paragraph-function.
11305
11306 2002-04-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11307
11308 * menu-bar.el (menu-bar-adv-search-menu): Add incremental search.
11309
11310 2002-04-11 Andreas Schwab <schwab@suse.de>
11311
11312 * files.el (file-name-non-special): Handle return value of t from
11313 `file-name-completion'.
11314
11315 2002-04-10 Stefan Monnier <monnier@cs.yale.edu>
11316
11317 * textmodes/fill.el (fill-context-prefix): Match the two prefixes
11318 differently to avoid pathological exponential-time case.
11319 (adaptive-fill-regexp): Add ! and %.
11320 (fill-delete-prefix): Remove indentation while removing prefix.
11321 (fill-delete-newlines): Obey sentence-end.
11322 (fill-move-to-break-point, fill-newline): New functions extracted
11323 from fill-region-as-paragraph.
11324 (fill-region-as-paragraph): Use them.
11325 Don't fiddle with fill-indent-according-to-mode.
11326
11327 2002-04-10 Colin Walters <walters@verbum.org>
11328
11329 * play/snake.el (snake-score-file): Default to just "snake-scores".
11330
11331 * play/tetris.el (tetris-score-file): Likewise.
11332
11333 * play/gamegrid.el (gamegrid-add-score): Rewrite from scratch to
11334 use `update-game-score'.
11335
11336 * ibuffer.el (ibuffer-canonicalize-state-list): Delete unused function.
11337 (ibuffer-current-buffers-with-marks): Don't call `buffer-list'
11338 ourselves; take it as an argument. Caller updated.
11339 (ibuffer-mode): Make mode-class special.
11340
11341 2002-04-10 Richard M. Stallman <rms@gnu.org>
11342
11343 * dired.el (dired-view-command-alist): New variable.
11344 (dired-view-file): Use external viewers for some files names.
11345
11346 * mouse.el (mouse-drag-region-1): Display region highlight
11347 only in the selected window.
11348
11349 * subr.el (remove-hook): When there are no more local hooks,
11350 kill the buffer-local value.
11351
11352 * isearch.el (isearch-mode): Don't call make-frame-visible
11353 if frame is already visible.
11354
11355 * cus-face.el (custom-face-attributes): Fix typo in `ultra-bold'.
11356
11357 2002-04-09 Emmanuel Briot <briot@act-europe.fr>
11358
11359 * progmodes/ada-prj.el: Add support for the new project file
11360 fields: gnatfind-opt, debug-pre-cmd and debug-post-cmd.
11361 Fix widget handling for Emacs 21. ada-mode now only supports a single
11362 active project file, instead of one per buffer. This is far less
11363 confusing.
11364
11365 * progmodes/ada-stmt.el: Menu changed from Statements to Templates.
11366 (ada-func-or-proc-name): Get real subprogram name, after change in
11367 ada-mode.el.
11368
11369 * progmodes/ada-xref.el: Ada-mode no longer supports a different
11370 project file per buffer. This was too complex. Instead, there is
11371 now a single active project file at any given time, and the user
11372 can switch the active one through the Ada menu. This revision
11373 also provides better handling of the Windows command line, and the
11374 various available shells on that platform. ada-mode is now fully
11375 integrated with the GNU visual debugger gvd, see
11376 http://libre.act-europe.fr.
11377 (ada-prj-default-comp-opt): Use the new GNAT switch -gnatQ.
11378 This is only available with GNAT 3.14.
11379 (ada-prj-gnatfind-switches, ada-cd-command): New variable.
11380 (ada-quote-cmd): New function.
11381 (ada-initialize-runtime-library): Get the location of the actual
11382 runtime the compiler will be using, including support for
11383 cross-platform environments.
11384 (ada-treat-cmd-string): Add support for the new variable
11385 ${full_current} add support for debug-pre-cmd and debug-post-cmd,
11386 two commands to run just prior to running the debugger, and just
11387 after starting it. This provide better support for cross-platform
11388 and remote debugging.
11389 (ada-get-absolute-dir): Remove, replace with expand-file-name.
11390 (ada-gdb-application): New parameter executable-name.
11391 (ada-get-ali-file-name): Better handling of separate packages.
11392 Checkin on behalf of the ada-mode maintainer.
11393
11394 * progmodes/ada-mode.el (ada-case-exception-file)
11395 (ada-indent-handle-comment-special): New variables.
11396 (ada-case-exception-substring): New variable. Casing exceptions
11397 can now also be defined for substrings, in addition to full
11398 identifier names. This provides more flexibility.
11399 (ada-align-list): New fun, provide support for align.el in ada-mode.
11400 (ada-procedure-start-regexp): Add support for operators and
11401 generic formal subprograms and packages.
11402 (ada-imenu-comment-re): New variable.
11403 (ada-imenu-generic-expression): Add support for protected types.
11404 (ada-mode): Set comment-start only after running ada-mode-hook, so
11405 that the user can change ada-comment-start in the hook.
11406 Add support for ispell in comments. Add support for align.el.
11407 (ada-save-exception-file, ada-create-case-exception-substring)
11408 (ada-adjust-case-substring): New functions.
11409 (ada-get-current-indent): Properly handles keywords with uppercases.
11410 (ada-goto-matching-end): Rewritten, fixes problems in the handling
11411 of nested blocks.
11412 (ada-untab-hard): Do not touch the contents of comments and strings.
11413
11414 2002-04-09 Mike Williams <mdub@bigfoot.com>
11415
11416 * textmodes/sgml-mode.el (sgml-lexical-context):
11417 Use sgml-parse-tag-backward to find start point.
11418 (sgml-looking-back-at): Doc fix.
11419
11420 2002-04-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11421
11422 * isearch.el (isearch-message-prefix): Use minibuffer-prompt face
11423 for prompt.
11424
11425 2002-04-08 Stefan Monnier <monnier@cs.yale.edu>
11426
11427 * autorevert.el (auto-revert-mode, global-auto-revert-mode):
11428 Use define-minor-mode.
11429 (auto-revert-buffers): Use with-current-buffer.
11430 Avoid changing the minor modes.
11431
11432 * international/iso-acc.el (iso-accents-accent-key): Use `vector'
11433 rather than char-to-string since last-input-char can be any event.
11434
11435 * international/titdic-cnv.el (tit-dictionary):
11436 Use defvar for non-constants.
11437
11438 * progmodes/cwarn.el (global-cwarn-mode): Use define-minor-mode.
11439 (global-cwarn-mode): Use easy-mmode-define-global-mode.
11440 (cwarn-font-lock-keywords): New function.
11441 Replaces cwarn-font-lock-remove-keywords cwarn-font-lock-add-keywords.
11442 (cwarn-font-lock-match): New macro.
11443 (cwarn-font-lock-match-assignment-in-expression)
11444 (cwarn-font-lock-match-dangerous-semicolon)
11445 (cwarn-font-lock-match-reference): Use it.
11446
11447 * progmodes/cperl-mode.el (cperl-make-face, cperl-force-face):
11448 Use defvar rather than defconst since it's meant to be settable.
11449 (cperl-syntax-done-to): Don't hardcode 1 as (point-min).
11450 (cperl-fix-line-spacing): Add missing \ in [ t].
11451
11452 * loadup.el: Call ucs-unify-8859 directly rather than
11453 unify-8859-on-encoding-mode.
11454 (fns-*.el): Don't use it anymore. Keep the load-history in purespace.
11455
11456 * textmodes/sgml-mode.el (sgml-comment-indent-new-line): New fun.
11457 (sgml-mode): Use it for comment-line-break-function.
11458
11459 2002-04-08 Jason Rumney <jasonr@gnu.org>
11460
11461 * international/mule-cmds.el (reset-language-environment):
11462 Handle coding-systems not being defined yet.
11463
11464 2002-04-08 Sam Steingold <sds@gnu.org>
11465
11466 * vc-cvs.el (vc-cvs-valid-version-number-p): New function.
11467 (vc-cvs-checkin): Use it.
11468
11469 2002-04-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11470
11471 * files.el (display-time-string): Fix last change.
11472
11473 2002-04-07 Sam Steingold <sds@gnu.org>
11474
11475 * vc-cvs.el (vc-cvs-checkin): Pass the required argument to `error'.
11476
11477 2002-04-07 Jason Rumney <jasonr@gnu.org>
11478
11479 * international/mule-cmds.el (set-default-coding-systems)
11480 (reset-language-environment): Preserve eols on
11481 default-process-coding-system.
11482 (coding-system-change-text-conversion): Fix case where CODING is nil.
11483
11484 2002-04-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11485
11486 * subr.el (play-sound): Move here from simple.el.
11487
11488 * simple.el (play-sound): Move to subr.el.
11489
11490 2002-04-06 Richard M. Stallman <rms@gnu.org>
11491
11492 * files.el (display-time-string-forms): Mark as risky.
11493
11494 * enriched.el (enriched-decode-foreground, enriched-decode-background):
11495 Use proper format for desired elts of `face' property.
11496 Don't test display-color-p; make the properties unconditionally.
11497
11498 * progmodes/compile.el (compilation-error-regexp-alist):
11499 New alternatives for FILE:LINE.COL and for ranges of columns and lines.
11500
11501 2002-04-06 Per Abrahamsen <abraham@dina.kvl.dk>
11502
11503 * progmodes/cc-vars.el (c-block-comment-prefix): Specify :value
11504 for customization type.
11505 Reported by Mattias Fredsberg <mattias.fredsberg@active-tv.com>.
11506
11507 2002-04-06 Mike Williams <mdub@bigfoot.com>
11508
11509 * textmodes/xml-lite.el: Remove.
11510
11511 2002-04-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11512
11513 * simple.el (play-sound): New function (uses play-sound-internal).
11514
11515 2002-04-04 Richard M. Stallman <rms@gnu.org>
11516
11517 * files.el (mode-line-format, mode-line-modified)
11518 (mode-line-mule-info, mode-line-buffer-identification)
11519 (mode-line-modes, mode-line-position): Explicitly mark as risky.
11520 (hack-one-local-variable): Don't recognize "mode-line-..." as risky.
11521
11522 * calendar/solar.el (solar-northern-spring-or-summer-season): Doc fix.
11523
11524 * mail/mailabbrev.el (mail-abbrev-make-syntax-table):
11525 Use (syntax-table), not old-syntax-table.
11526
11527 * enriched.el (enriched-decode-foreground)
11528 (enriched-decode-background): Don't call facemenu-get-face.
11529
11530 2002-04-04 Mike Williams <mdub@bigfoot.com>
11531
11532 * textmodes/sgml-mode.el: Add missing require.
11533 (sgml-lexical-context): Fix up CDATA detection for boundary cases.
11534
11535 2002-04-03 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
11536
11537 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line): Move to
11538 spot indicated by text property `cvs-goal-column', if present.
11539
11540 * pcvs-info.el (cvs-fileinfo-pp): Use text property
11541 `cvs-goal-column' to indicate position of file name (if present).
11542
11543 2002-04-03 Richard M. Stallman <rms@gnu.org>
11544
11545 * mail/mailabbrev.el (mail-abbrev-complete-alias):
11546 Call mail-abbrev-make-syntax-table.
11547
11548 * format.el (format-deannotate-region): Doc fix.
11549
11550 * enriched.el (enriched-face-ans): Delete special treatment
11551 for fg:... and bg:... faces.
11552 (enriched-decode-foreground): Return a list that specifies
11553 the foreground color, rather than creating a face.
11554 (enriched-decode-background): Likewise.
11555
11556 * shell.el (shell-mode): Don't reinit comint-input-ring
11557 if that was already done.
11558
11559 2002-04-03 Edward M. Reingold <reingold@emr.cs.iit.edu>
11560
11561 * solar.el (solar-spring-or-summer-season): Delete.
11562 (solar-northern-spring-or-summer-season): New variable.
11563 (solar-sunrise-and-sunset, solar-moment, solar-sunrise-sunset):
11564 Rewrite.
11565
11566 * solar.el (diary-sabbath-candles-minutes): New variable.
11567 (diary-sabbath-candles): Use it instead of fixed 18 minutes.
11568
11569 * calendar.el (update-calendar-mode-line): Force mode-line update.
11570 Make date under the cursor available as `date' in
11571 calendar-mode-line-format.
11572 Eval items in calendar-mode-line-format list.
11573
11574 * cal-tex.el (cal-tex-hook, cal-tex-year-hook, cal-tex-month-hook)
11575 (cal-tex-week-hook, cal-tex-daily-hook): Add doc strings.
11576
11577 * cal-tex.el (cal-tex-latexify-list): Fix doc string.
11578
11579 * cal-tex.el (cal-tex-insert-day-names): LaTeXify day names.
11580 (cal-tex-cursor-week-iso, cal-tex-week-hours, cal-tex-weekly4-box)
11581 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
11582 (cal-tex-daily-page, cal-tex-mini-calendar): LaTeXify day names.
11583
11584 * cal-tex.el: Change all instances (interactive "P") to
11585 (interactive "p").
11586 (cal-tex-cursor-month): Add hfill and newline at end of month that
11587 ended on Saturday.
11588 (cal-tex-preamble): Change to LaTeX2e.
11589 (cal-tex-cursor-filofax-year): Don't use default month names in
11590 LaTeX macros in case user changes them.
11591 (cal-tex-month-name): New function. Used throughout in case user
11592 has done something funny with month names.
11593
11594 * cal-hebrew.el (holiday-rosh-hashanah-etc): Spelling correction.
11595 (diary-rosh-hodesh): Spelling correction.
11596
11597 2002-04-03 Mike Williams <mdub@bigfoot.com>
11598
11599 * textmodes/sgml-mode.el (sgml-lexical-context)
11600 (sgml-parse-tag-backward): Extend support for CDATA to include
11601 conditional sections.
11602
11603 2002-04-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11604
11605 * cus-start.el: Rename `autoselect-window' to
11606 `mouse-autoselect-window'.
11607
11608 2002-04-02 Richard M. Stallman <rms@gnu.org>
11609
11610 * files.el (hack-one-local-variable):
11611 Clear text props from string value.
11612
11613 2002-04-02 Stefan Monnier <monnier@cs.yale.edu>
11614
11615 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
11616 (f90-procedures-re, f90-operators-re, f90-hpf-keywords-re):
11617 Use regexp-opt.
11618 (f90-keywords-re, f90-keywords-level-3-re): Add `pure' and `elemental'
11619 from F95.
11620 (f90-procedures-re): Add `null' and `cpu_time' from F95.
11621 (f90-font-lock-keywords-1): Minor reorganization so we don't need
11622 `override' any more.
11623 (f90-font-lock-keywords-3): Use `keep' rather than `override'.
11624 (f90-indent-subprogram): Use indent-region.
11625 (f90-break-line): Use indent-according-to-mode.
11626
11627 2002-04-02 Mike Williams <mdub@bigfoot.com>
11628
11629 * textmodes/sgml-mode.el (sgml-close-tag): Rename from
11630 sgml-insert-end-tag. Simplify by using sgml-lexical-context.
11631 (sgml-get-context): Remove use of sgml-inside-tag-p.
11632 (sgml-inside-tag-p): Remove.
11633 (sgml-looking-back-at): Short-circuit at beg of buffer.
11634 (sgml-lexical-context, sgml-calculate-indent): Add support for
11635 CDATA sections.
11636
11637 2002-04-01 Stefan Monnier <monnier@cs.yale.edu>
11638
11639 * help.el (help-key-description): New fun.
11640 (describe-key-briefly, describe-key): Use it and
11641 this-single-command-raw-keys plus new arg `untranslated'.
11642
11643 * textmodes/sgml-mode.el (sgml-at-indentation-p, sgml-tag)
11644 (sgml-parse-tag-name, sgml-looking-back-at, sgml-parse-tag-backward)
11645 (sgml-inside-tag-p, sgml-get-context, sgml-show-context)
11646 (sgml-insert-end-tag): New funs taken from xml-lite.el.
11647 (sgml-calculate-indent): Use them.
11648 (sgml-slash-matching): Rename from sgml-slash.
11649 (sgml-slash): Copied from xml-lite and changed to use
11650 sgml-slash-matching and sgml-quick-keys.
11651
11652 * international/mule-cmds.el (standard-keyboard-coding-systems):
11653 Add koi8-u and koi8-r.
11654
11655 * eshell/.cvsignore: New file.
11656
11657 * eshell/esh-groups.el: Remove.
11658
11659 * progmodes/tcl.el: Change maintainer.
11660 (tcl-electric-hash-style): Change default to nil.
11661 (tcl-imenu-generic-expression): Use tcl-proc-regexp.
11662 (tcl-do-auto-fill): Remove.
11663 (tcl-auto-fill-mode): Rewrite using comment-auto-fill-only-comments.
11664
11665 2002-04-01 Mike Williams <mdub@bigfoot.com>
11666
11667 * textmodes/sgml-mode.el: Doc fixes.
11668 (sgml-mode): Set indent-line-function to sgml-indent-line.
11669 (sgml-calculate-indent): Add an explicit check for 'text syntax,
11670 to protect against future enhancements to sgml-lexical-context.
11671 (sgml-empty-tag-p, sgml-unclosed-tag-p): New funcs.
11672
11673 * textmodes/xml-lite.el: Removed much redundant stuff.
11674 (xml-lite-parse-tag-backward): Simplify parsing by assuming we
11675 always start within text. Make use of sgml-unclosed-tag-p.
11676
11677 2002-04-01 Ville Skytt\e,Ad\e(B <ville.skytta@xemacs.org>
11678
11679 * tcl.el (tcl-imenu-generic-expression): New value.
11680 (tcl-imenu-create-index-function): Function deleted.
11681 (tcl-mode): Check for filladapt-mode.
11682 Use tcl-imenu-generic-expression instead of
11683 tcl-imenu-create-index-function.
11684 (inferior-tcl-mode): Doc fix.
11685 Change not legally significant.
11686
11687 2002-04-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11688
11689 * cus-start.el: Rename `x-autoselect-window' to `autoselect-window'.
11690
11691 * window.el (handle-select-window): New function.
11692 Update copyright.
11693
11694 2002-04-01 Richard M. Stallman <rms@gnu.org>
11695
11696 * info.el (info-tool-bar-map): Use tool-bar-local-item-from-menu.
11697
11698 * toolbar/tool-bar.el (tool-bar-local-item): Renamed from
11699 tool-bar-add-item, and new arg MAP.
11700 (tool-bar-add-item): Now calls tool-bar-local-item.
11701 (tool-bar-local-item-from-menu): Renamed from
11702 tool-bar-add-item-from-menu, and new arg IN-MAP.
11703 (tool-bar-add-item-from-menu): Now calls tool-bar-local-item-from-menu.
11704
11705 * help-fns.el (help-with-tutorial): Allow various ways
11706 to specify the text in the [...] line, in handling the <...> line.
11707
11708 * progmodes/idlw-rinfo.el (idlwave-system-routines):
11709 WOLRDTITLE => WORLDTITLE. SUPRESS_VALUE => SUPPRESS_VALUE.
11710
11711 * subr.el (redraw-modeline): Define alias.
11712
11713 2002-03-31 Richard M. Stallman <rms@gnu.org>
11714
11715 * files.el (file-expand-wildcards): Use save-match-data.
11716
11717 * files.el (format-alist): Mark as risky.
11718
11719 * simple.el (kill-new): Doc fix.
11720
11721 * emacs-lisp/byte-opt.el (side-effect-free-fns)
11722 (side-effect-and-error-free-fns): Add many functions, remove some.
11723
11724 2002-03-30 Richard M. Stallman <rms@gnu.org>
11725
11726 * menu-bar.el (menu-bar-tools-menu): Rename gdb item to say GDB.
11727
11728 2002-03-30 Eli Zaretskii <eliz@gnu.org>
11729
11730 * font-lock.el (save-buffer-state): Fix last change.
11731
11732 * files.el (auto-save-file-name-transforms): Fix last change.
11733
11734 * startup.el (command-line): Fix last change.
11735
11736 2002-03-29 Richard M. Stallman <rms@gnu.org>
11737
11738 * subr.el (play-sound-file): Moved to simple.el.
11739
11740 * simple.el (play-sound-file): Moved from subr.el, made unconditional.
11741
11742 2002-03-29 Colin Walters <walters@verbum.org>
11743
11744 * ibuffer.el (ibuffer-mark-interactive): Use `ibuffer-forward-line'
11745 instead of `forward-line'.
11746 (ibuffer-forward-line): Be sure to skip over special properties
11747 before moving, too.
11748
11749 * calc/calc.el (calc-was-split): Var deleted.
11750 (calc): Remove reference to it.
11751 (calc): Ditto.
11752 (calc-quit): Ditto.
11753 (calc-init-base): Ditto.
11754
11755 * calc/calc-misc.el (calc-delete-windows-keep): Function deleted.
11756
11757 2002-03-29 Stefan Monnier <monnier@cs.yale.edu>
11758
11759 * textmodes/sgml-mode.el (sgml-lexical-context): Return (text . START)
11760 instead of nil when point is outside of any tag.
11761 (sgml-beginning-of-tag): Adjust to the change.
11762 (sgml-calculate-indent): Use the new info returned by
11763 sgml-lexical-context. Try to handle unclosed tags.
11764
11765 * textmodes/xml-lite.el (xml-lite-get-context): Don't stop parsing
11766 at unclosed tags unless it is at indentation.
11767 Kill nested unclosed tags.
11768 (xml-lite-calculate-indent, xml-lite-indent-line): Remove.
11769 (xml-lite-mode): Use sgml-indent-line instead.
11770
11771 2002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
11772
11773 * files.el (auto-save-file-name-transforms): Don't run "\\2" via
11774 expand-file-name.
11775
11776 * startup.el (command-line): Recompute auto-save-file-name-transforms
11777 using the updated value of temporary-file-directory.
11778
11779 2002-03-29 Stefan Monnier <monnier@cs.yale.edu>
11780
11781 * textmodes/xml-lite.el (xml-lite-get-context): Allow stopping
11782 even with an empty context. Don't save excursion any more.
11783 Don't complain about unmatched start-tags in sgml-unclosed-tags.
11784 Ignore end-tags in sgml-empty-tags.
11785 (xml-lite-get-context, xml-lite-calculate-indent)
11786 (xml-lite-insert-end-tag): Save excursion around xml-lite-get-context.
11787 (xml-lite-indent-line): Use back-to-indentation.
11788
11789 * textmodes/sgml-mode.el (sgml-basic-offset): New var.
11790 (sgml-name-re, sgml-attrs-re): New consts.
11791 (sgml-tag-name-re, sgml-start-tag-regex, sgml-font-lock-keywords-1)
11792 (sgml-mode): Use them.
11793 (sgml-lexical-context): Default to (point-min) if nothing else works.
11794 (sgml-calculate-indent): Indent slightly differently.
11795 (sgml-indent-line): Use back-to-indentation.
11796 (sgml-parse-dtd): New function.
11797 (sgml-unclosed-tags): New var.
11798 (html-mode): Set it.
11799
11800 2002-03-29 Simon Marshall <simon.marshall@misys.com>
11801
11802 * font-lock.el (save-buffer-state): Use make-symbol to bind `modified'.
11803
11804 2002-03-29 Richard M. Stallman <rms@gnu.org>
11805
11806 * dired-aux.el (dired-do-query-replace-regexp, dired-do-search):
11807 Use FILTER arg in dired-get-marked-files to exclude directories.
11808 (dired-nondirectory-p): New function.
11809
11810 * dired.el (dired-get-marked-files): New arg FILTER
11811 allows selection of some files.
11812
11813 * progmodes/tcl.el (tcl-imenu-create-index-function): Doc fix.
11814
11815 2002-03-29 Eric M. Ludlam <eric@siege-engine.com>
11816
11817 * speedbar.el (speedbar-default-directory-list): Made robust
11818 against deleted directories.
11819
11820 2002-03-28 Richard M. Stallman <rms@gnu.org>
11821
11822 * dired.el (dired-toggle-marks): Renamed from dired-do-toggle.
11823 Bindings changed.
11824
11825 * progmodes/compile.el (compilation-handle-exit):
11826 If compilation-window-height is 0, display status in echo area.
11827
11828 * simple.el (line-move-to-column): Don't call move-to-column if COL=0.
11829
11830 * rect.el (replace-rectangle): Add autoload.
11831
11832 * files.el: Mark many more variables as risky.
11833 (hack-one-local-variable): Recognize several additional
11834 patterns as risky.
11835
11836 * bindings.el (mode-line-mule-info): Use :propertize, not :eval.
11837
11838 2002-03-28 Stefan Monnier <monnier@cs.yale.edu>
11839
11840 * textmodes/xml-lite.el (xml-lite-in-string-p):
11841 Use sgml-lexical-context.
11842 (xml-lite-parse-tag-backward): Use sgml-tag-syntax-table.
11843 (xml-lite-get-context): Check that open/close tags match.
11844 Don't stop scanning while we're ignoring matching tags.
11845
11846 * textmodes/sgml-mode.el (sgml-make-syntax-table): New fun.
11847 (sgml-mode-syntax-table): Use it.
11848 (sgml-tag-syntax-table, sgml-tag-name-re): New const.
11849 (sgml-tags-invisible): Use it.
11850 (sgml-lexical-context): New fun.
11851 (sgml-maybe-end-tag, sgml-beginning-of-tag): Use it.
11852 (sgml-quote): Accept \n as entity reference terminator.
11853 (sgml-calculate-indent, sgml-indent-line): New funs.
11854
11855 2002-03-28 Andre Spiegel <spiegel@gnu.org>
11856
11857 * vc-cvs.el (vc-cvs-global-switches): New user option.
11858 (vc-cvs-command): New function. Update all callers of
11859 `vc-do-command' in vc-cvs.el to use this instead.
11860
11861 2002-03-27 Andrew Innes <andrewi@gnu.org>
11862
11863 * makefile.w32-in (bootstrap-clean-SH): Use for loop, instead of
11864 relying on shell globbing.
11865
11866 2002-03-27 Colin Walters <walters@debian.org>
11867
11868 * ibuffer.el (ibuffer-help-buffer-modes): New variable.
11869 (ibuffer-fontification-alist): Use it.
11870 (ibuffer-backward-line): Handle `ibuffer-summary' area.
11871 (ibuffer-forward-line): Ditto.
11872
11873 * ibuf-ext.el (sorter mode-name): Doc fix.
11874 (ibuffer-mark-help-buffers): Use `ibuffer-help-buffer-modes'.
11875 (operation query-replace): Use new `noerror' arg for
11876 `query-replace-read-args'.
11877 (operation query-replace-regexp): Ditto.
11878
11879 2002-03-27 Stefan Monnier <monnier@cs.yale.edu>
11880
11881 * textmodes/xml-lite.el: Fix copyright notice.
11882 (xml-lite-basic-offset): Rename from xml-lite-indent-offset.
11883 (xml-lite-indent-comment-offset): Remove.
11884 (xml-lite-calculate-indent): Use new name. Use natural alignment
11885 for comments.
11886 (xml-lite-in-string-p): Simplify.
11887
11888 2002-03-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11889
11890 * allout.el (outline-layout): Doc fix.
11891
11892 2002-03-27 Stefan Monnier <monnier@cs.yale.edu>
11893
11894 * textmodes/xml-lite.el: Don't require `custom'.
11895 (xml-lite-parse-tag-name): Properly treat non-ASCII chars.
11896 (xml-lite-parse-tag-backward): Obey sgml-empty-tags.
11897 (xml-lite-get-context): Drop nested tags not just for comments.
11898 (xml-lite-indent-line): Be more careful about moving point.
11899 (xml-lite-insert-end-tag, xml-lite-slash):
11900 Use indent-according-to-mode instead of xml-lite-indent-line.
11901 (xml-lite-mode): Make xml-lite-orig-indent-line-function buffer-local.
11902 Set sgml-xml-mode. Don't call force-mode-line-update.
11903 (xml-lite-mode-map): Don't bind TAB.
11904
11905 2002-03-27 Zoltan Kemenczy <zoltan@ieee.org>
11906
11907 * gud.el (gud-jdb-sourcepath): New variable, saves jdb -sourcepath
11908 parameter value.
11909 (gud-jdb-build-source-files-list): Comment clarification.
11910 (gud-jdb-massage-args): Reworked into loop-based argument list
11911 processing in order to support -classpath and -sourcepath argument
11912 processing.
11913 (gud-jdb-find-source-using-classpath): Prepend gud-jdb-sourcepath
11914 to gud-jdb-classpath to obtain search list.
11915 (gud-jdb-parse-classpath-string): Remove any trailing slashes from
11916 directory names in classpath/sourcepath lists, update comment.
11917 (jdb): Add setting of gud-jdb-sourcepath, update comment.
11918 (gud-find-class): Add gud-jdb-sourcepath use, and correct
11919 behaviour for the case when classpath is not used--backward
11920 compatibility fix.
11921
11922 2002-03-27 Eli Zaretskii <eliz@is.elta.co.il>
11923
11924 * Makefile.in (compile, compile-always): Don't try to compile
11925 non-existent files or files in empty directories.
11926
11927 2002-03-26 Michael Ernst <mernst@alum.mit.edu>
11928
11929 * compare-w.el (compare-windows-whitespace): Match all whitespace.
11930
11931 * emacs-lisp/shadow.el (list-load-path-shadows): Only ignore last
11932 copy of standard Lisp directories.
11933
11934 * tar-mode.el (tar-header-block-summarize, tar-get-descriptor):
11935 Support "next has longname" link type.
11936
11937 2002-03-26 Stefan Monnier <monnier@cs.yale.edu>
11938
11939 * textmodes/xml-lite.el (xml-lite-at-indentation-p): Move.
11940 (xml-lite-in-string-p, xml-lite-looking-back-at, xml-lite-looking-at):
11941 New functions.
11942 (forward-xml-tag, backward-xml-tag, beginning-of-xml-tag)
11943 (end-of-xml-tag): Remove.
11944 (xml-lite-get-context): Better handling of comments.
11945 (xml-lite-calculate-indent): Use xml-lite-in-string-p.
11946 (xml-lite-parse-tag-backward): Rewrite.
11947
11948 2002-03-26 Juanma Barranquero <lektu@terra.es>
11949
11950 * makefile.w32-in (WINS): Add the toolbar directory.
11951
11952 2002-03-26 Richard M. Stallman <rms@gnu.org>
11953
11954 * subr.el (substring-no-properties): Function deleted (now in C).
11955
11956 2002-03-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11957
11958 * mwheel.el (mouse-wheel-mode): Use global-set-key and
11959 global-unset-key.
11960
11961 2002-03-24 Richard M. Stallman <rms@gnu.org>
11962
11963 * mail/rmail.el (rmail-resend): Call mail-abbrev-make-syntax-table.
11964
11965 * progmodes/etags.el (tags-query-replace): Pass t for NOERROR
11966 to query-replace-read-args.
11967
11968 * progmodes/compile.el (compilation-forget-errors):
11969 Don't adjust compilation-parsing-end if it's nil.
11970
11971 * replace.el (query-replace-read-args): New optional arg NOERROR.
11972 (perform-replace): Use save-window-excursion around recursive edit.
11973
11974 2002-03-24 Colin Walters <walters@verbum.org>
11975
11976 * ibuffer.el (ibuffer): If the user has `ibuffer-use-other-window'
11977 non-nil, then always use another window.
11978
11979 2002-03-24 Gerd Moellmann <gerd@gnu.org>
11980
11981 * subr.el (macro-declaration-function): New function. Set the
11982 variable macro-declaration-function to it.
11983
11984 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
11985 Handle declarations in macro definitions.
11986
11987 2002-03-24 Eli Zaretskii <eliz@is.elta.co.il>
11988
11989 * facemenu.el (facemenu-get-face): Remove unused variable `foreground'.
11990
11991 * enriched.el (enriched-face-ans): Support FACE of the form
11992 (:foreground COLOR) and (:background COLOR).
11993 (enriched-decode-foreground, enriched-decode-background): Set the
11994 fore- and background colors of the faces we create, since facemenu
11995 doesn't.
11996
11997 2002-03-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11998
11999 * mwheel.el (mouse-wheel-mode): Use the result of
12000 current-global-map instead of the variable `global-map'.
12001
12002 2002-03-23 Richard M. Stallman <rms@gnu.org>
12003
12004 * mail/mailabbrev.el (mail-abbrev-make-syntax-table): New subroutine
12005 broken out of sendmail-pre-abbrev-expand-hook.
12006 (sendmail-pre-abbrev-expand-hook): Use it.
12007
12008 2002-03-22 Stefan Monnier <monnier@cs.yale.edu>
12009
12010 * Makefile.in (finder-inf.el): Remove.
12011 (finder-data): Don't depend on finder-inf.el any more.
12012 (compile, compile-always): Handle the case where some files
12013 from DONTCOMPILE are missing (it tried to compile them).
12014 (bootstrap-clean): Use src/emacs only if executable.
12015 (bootstrap): Update subdirs.el and finder-inf.el.
12016
12017 * finder.el: Don't load finder-inf.el during byte-compilation.
12018
12019 * vc-cvs.el (vc-cvs-registered, vc-cvs-dir-state-heuristic):
12020 Don't consider cvs-removed files as under VC control.
12021 VC wouldn't handle them properly anyway and it confuses
12022 vc-file-not-found-hook.
12023
12024 * emacs-lisp/bytecomp.el (batch-byte-compile-if-not-done):
12025 Add autoload cookie.
12026
12027 2002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
12028
12029 * calendar/calendar.el (calendar): Doc fix.
12030
12031 2002-03-22 Juanma Barranquero <lektu@terra.es>
12032
12033 * play/gomoku.el (gomoku-font-lock-O-face): Convert to use `defface'.
12034 (gomoku-font-lock-X-face): Likewise.
12035 (gomoku-font-lock-keywords): Use faces instead of variables.
12036
12037 2002-03-21 Stefan Monnier <monnier@cs.yale.edu>
12038
12039 * Makefile.in (bootstrap): Make sure subdirs.el is ready.
12040
12041 2002-03-21 Kim F. Storm <storm@cua.dk>
12042
12043 * simple.el (open-network-stream, open-network-stream-nowait)
12044 (open-network-stream-server): Use featurep to test for
12045 supported networking features.
12046
12047 2002-03-21 Thien-Thi Nguyen <ttn@gnu.org>
12048
12049 * mail/emacsbug.el (report-emacs-bug-hook): Remove submitter
12050 directions as the last action.
12051
12052 2002-03-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12053
12054 * startup.el (fancy-splash-tail, normal-splash-screen):
12055 Update copyright.
12056
12057 * novice.el (disabled-command-hook): Clarify output text to match
12058 prompt.
12059
12060 2002-03-20 Jason Rumney <jasonr@gnu.org>
12061
12062 * frame.el (display-images-p): Do not explicitly check display type.
12063
12064 2002-03-20 pmr-sav <pmr-sav@hamm.pajato.com>
12065
12066 * mail-utils.el:
12067 Eliminate compilation warnings due to `rfc822-addresses'.
12068 (rmail-dont-reply-to): Eliminate `pos' as a free variable for a
12069 warning free compile.
12070
12071 2002-03-20 Michael Kifer <kifer@cs.stonybrook.edu>
12072
12073 * ediff-diff.el (ediff-install-fine-diff-if-necessary):
12074 Take the current highlighting style into account.
12075 (ediff-forward-word-function,ediff-whitespace,ediff-word-1)
12076 (ediff-word-2,ediff-word-3,ediff-word-4): Make them buffer local.
12077
12078 * ediff-init.el (ediff-patch-job): New macro.
12079
12080 * ediff-mult.el (ediff-make-new-meta-list-header): New API function.
12081 (ediff-intersect-directories): Use ediff-make-new-meta-list-header.
12082
12083 * ediff-ptch.el (ediff-map-patch-buffer):
12084 Use ediff-make-new-meta-list-header.
12085 (ediff-fixup-patch-map): Use the meta-list API from ediff-mult.el.
12086
12087 * ediff-util.el (ediff-toggle-hilit): Fix toggling of highliting.
12088 (ediff-select-difference): Take highlighting style into account.
12089 (ediff-clone-buffer-for-region-comparison): New function.
12090 (ediff-inferior-compare-regions): Added comparison of current diff
12091 regions.
12092
12093 * ediff.el (ediff-clone-buffer-for-region-comparison)
12094 (ediff-clone-buffer-for-window-comparison): Moved to ediff-util.el.
12095
12096 2002-03-19 pmr-sav <pmr-sav@hamm.pajato.com>
12097
12098 * mail-utils.el (rmail-dont-reply-to):
12099 Overhaul to correctly apply the regular
12100 expressions in the variable `rmail-dont-reply-to-names' to the list of
12101 destination addresses. Contributed by lorentey@elte.hu.
12102
12103 * rmail.el (rmail-dont-reply-to-names):
12104 Modify the documentation to make it email
12105 address centric rather than login name centric. Contributed by
12106 lorentey@elte.hu.
12107
12108 2002-03-18 Colin Walters <walters@verbum.org>
12109
12110 * ibuf-ext.el (ibuffer-toggle-sorting-mode): Remove `find-if' so
12111 we don't require `cl' at runtime.
12112 (sorting mode mode-name): Don't take the symbol-name of a string.
12113
12114 * ibuffer.el (ibuffer-set-mark): Go back to the beginning of the
12115 line after setting the mark.
12116 (ibuffer-insert-buffers-and-marks): Invert the test for
12117 `ibuffer-sorting-reversep'.
12118
12119 2002-03-18 Stefan Monnier <monnier@cs.yale.edu>
12120
12121 * international/ucs-tables.el (unify-8859-on-decoding-mode)
12122 (unify-8859-on-encoding-mode): Remove autoload cookie.
12123
12124 2002-03-18 Andre Spiegel <spiegel@gnu.org>
12125
12126 * vc-rcs.el (vc-rcs-register): Fix handling of
12127 vc-[rcs-]register-switches.
12128 (vc-rcs-checkin-switches, vc-rcs-checkout-switches):
12129 Variables removed, since they weren't used yet.
12130
12131 * vc-cvs.el (vc-cvs-register): Fix handling of
12132 vc-[cvs-]register-switches.
12133
12134 * vc-sccs.el (vc-sccs-register): Fix handling of
12135 vc-[sccs-]register-switches.
12136
12137 2002-03-18 Stefan Monnier <monnier@cs.yale.edu>
12138
12139 * loadup.el ("emacs-lisp/backquote"): Load earlier.
12140 ("international/ucs-tables"): Load and turn on
12141 unify-8859-on-encoding-mode unconditionally.
12142 (emacs-version): Use `defconst' rather than `setq'.
12143
12144 * eshell/esh-ext.el (eshell-binary-suffixes): Use exec-suffixes.
12145
12146 2002-03-18 Richard M. Stallman <rms@gnu.org>
12147
12148 * menu-bar.el (menu-bar-options-menu): Cope if
12149 text-mode-hook is not a list.
12150
12151 2002-03-17 Richard M. Stallman <rms@gnu.org>
12152
12153 * emulation/pc-select.el (pc-selection-mode):
12154 Alter the existing global map, don't replace it.
12155
12156 * files.el (list-directory): Set default-directory at the end.
12157
12158 * dabbrev.el (dabbrev--goto-start-of-abbrev):
12159 Put a limit on field-beginning search.
12160
12161 2002-03-17 Simon Josefsson <jas@extundo.com>
12162
12163 * net/browse-url.el (browse-url-mosaic-pidfile): New variable.
12164 (browse-url-mosaic): Use it.
12165
12166 * net/browse-url.el (browse-url-filename-alist): Don't begin
12167 docstring with *, you don't want to set this one with M-x set-variable.
12168
12169 * net/browse-url.el: Put * in user option doc strings.
12170
12171 2002-03-17 Stefan Monnier <monnier@cs.yale.edu>
12172
12173 * textmodes/sgml-mode.el (sgml-xml-mode): Renamed from sgml-xml.
12174 (sgml-xml-guess): Simplify.
12175 (sgml-mode-common): Remove (move into sgml-mode).
12176 (sgml-mode): Add code from sgml-mode-common.
12177 Remove redundant setting of indent-line-function.
12178 Don't set skeleton-transformation when in XML mode.
12179
12180 * international/mule-diag.el (describe-char-after):
12181 Use `internal-describe-syntax-value' again (got lost somewhere).
12182
12183 * international/ucs-tables.el (ucs-unify-8859, ucs-fragment-8859):
12184 Use unify-8859-on-decoding-mode.
12185 (unify-8859-on-decoding-mode): Also set translation-table-for-input.
12186 (ucs-insert): Give an error if the unicode char can't be created.
12187
12188 * pcvs-parse.el (cvs-parse-table): Be a bit more lenient.
12189 (cvs-parse-status): Handle the "used to have a conflict" marker.
12190
12191 2002-03-17 Kim F. Storm <storm@cua.dk>
12192
12193 The following changes are related to the enhanced network process
12194 support.
12195
12196 * simple.el: Update copyright.
12197 (clone-process): Use make-network-process to clone network
12198 processes. Get command list via (process-contact ... t).
12199 Use set-process-query-on-exit-flag and process-query-on-exit-flag
12200 instead of process-kill-without-query.
12201 (open-network-stream): Replaces C-version from process.c.
12202 (open-network-stream-nowait, open-network-stream-server): New funs.
12203 (process-kill-without-query): Replaces C-version from process.c.
12204
12205 * files.el: Update copyright.
12206 (save-buffers-kill-emacs): Also check for active server
12207 processes. Use process-query-on-exit-flag. Only list processes
12208 which has the query-on-exit flag set in connection with user query.
12209
12210 * shadowfile.el: Update copyright.
12211 (shadow-save-buffers-kill-emacs): Also check for active server
12212 processes. Use process-query-on-exit-flag.
12213
12214 2002-03-16 Simon Marshall <simon.marshall@misys.com>
12215
12216 * imenu.el (imenu-menubar-modified-tick): Renamed from
12217 imenu-update-menubar-modified-tick.
12218 (imenu-update-menubar): Update imenu-menubar-modified-tick
12219 whenever outer condition succeeds.
12220
12221 * lazy-lock.el (save-buffer-state):
12222 Bind inhibit-modification-hooks and buffer-file-truename
12223 instead of before-change-functions and after-change-functions.
12224
12225 2002-03-16 Eli Zaretskii <eliz@is.elta.co.il>
12226
12227 * international/codepage.el (codepage-setup): Don't define a
12228 codepage if it is already defined.
12229
12230 * textmodes/po.el (po-content-type-charset-alist): Convert the
12231 car of each association to a string.
12232 (po-find-file-coding-system-guts): If the charset matches a name
12233 of a codepage, set up that codepage and return it as a coding
12234 system to decode the file.
12235 (po-find-charset): Search for the Charset= header even if we've
12236 read less than 4KB.
12237 <top-level>: Remove the setup for all known codepages: it seems
12238 to cause crashes in the CCL driver.
12239
12240 2002-03-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12241
12242 * textmodes/bibtex.el (bibtex-sort-ignore-string-entries)
12243 (bibtex-entry-field-alist): Doc fix.
12244
12245 2002-03-16 Richard M. Stallman <rms@gnu.org>
12246
12247 * progmodes/cperl-mode.el (cperl-imenu--function-name-regexp-perl):
12248 Move definition above cperl-outline-regexp.
12249
12250 * bindings.el (mode-line-mule-info): In computing help-echo prop,
12251 avoid using save-window-excursion. And compile the function.
12252
12253 2002-03-15 Stefan Monnier <monnier@cs.yale.edu>
12254
12255 * files.el (load-completion): New function.
12256 (load-library): Use it.
12257
12258 2002-03-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12259
12260 * calendar/cal-french.el (calendar-goto-french-date): Fix prompt
12261 to match the actual code.
12262
12263 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
12264
12265 * textmodes/po.el (po-find-file-coding-system-guts):
12266 Use with-temp-buffer instead of po-with-temp-buffer.
12267
12268 * international/mule-conf.el (file-coding-system-alist): Add an
12269 association for PO files.
12270
12271 * textmodes/po.el: New file.
12272
12273 2002-03-15 Gerd Moellmann <gerd@gnu.org>
12274
12275 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12276 Fix simple loop indentation.
12277
12278 2002-03-14 Miles Bader <miles@gnu.org>
12279
12280 * net/rlogin.el (rlogin-mode): Use `define-derived-mode'.
12281
12282 2002-03-14 Richard M. Stallman <rms@gnu.org>
12283
12284 * textmodes/picture.el (picture-insert)
12285 (picture-clear-column, picture-draw-rectangle):
12286 Use move-to-column, not move-to-column-force.
12287
12288 * dired.el (dired-readin): Clear out undo list.
12289 (dired-fun-in-all-buffers): Definition moved from dired-aux.el.
12290 (dired-delete-entry): New function.
12291 (dired-internal-do-deletions): Use dired-fun-in-all-buffers
12292 and dired-delete-entry, to update this buffer (and others).
12293
12294 * dired-aux.el (dired-fun-in-all-buffers): Moved to dired.el.
12295
12296 * facemenu.el (facemenu-add-new-face):
12297 Pass region args to facemenu-set-face, when there is a region.
12298 (facemenu-set-foreground, facemenu-set-background)
12299 (facemenu-add-face): Doc fixes.
12300
12301 * progmodes/cperl-mode.el (cperl-outline-regexp): Move definition up.
12302
12303 2002-03-14 Miles Bader <miles@gnu.org>
12304
12305 * emacs-lisp/debug.el: Require `button'.
12306 (debugger-mode-map): Set the parent keymap to `button-buffer-map',
12307 to get TAB and <backtab> bindings.
12308
12309 * net/rlogin.el (rlogin-carriage-filter): Function removed.
12310 (rlogin): Don't install the `rlogin-carriage-filter' filter, as
12311 comint removes carriage returns itself now.
12312
12313 * rfn-eshadow.el (rfn-eshadow-update-overlay):
12314 Bind `inhibit-point-motion-hooks' to t while messing around, to avoid
12315 getting hosed by our own intangible property.
12316
12317 2002-03-13 Stefan Monnier <monnier@cs.yale.edu>
12318
12319 * progmodes/fortran.el (fortran-mode): Set comment-padding to "$$$".
12320 Add fortran-comment-line-start-skip to comment-start-skip.
12321 (fortran-comment-indent): Keep whole-line comments in column 0.
12322 (fortran-find-comment-start-skip): New arg `all'.
12323 If ALL is nil, make sure we only match comment-start-skip if we
12324 can't match fortran-comment-line-start-skip.
12325 Fix bug that made it return t but without moving point when
12326 matching '!'! (a false-comment followed by a real comment).
12327 (fortran-indent-comment): Use new `all' argument above.
12328 Be careful not to add an incorrect comment-starter like "C"
12329 in comment-column.
12330 (fortran-split-line): When splitting a comment, reuse the comment
12331 starter from the current line rather than fortran-comment-line-start.
12332 (fortran-indent-line, fortran-auto-fill): Simplify thanks to the
12333 cleaner behavior of fortran-find-comment-start-skip.
12334 (fortran-fill): Don't be confused by ! inside a comment.
12335 (fortran-break-line): Minor cleanup and simplification.
12336
12337 2002-03-13 Francesco Potort\e,Al\e(B <pot@gnu.org>
12338
12339 * progmodes/etags.el (tag-exact-file-name-match-p)
12340 (tag-file-name-match-p, tag-partial-file-name-match-p): Use a
12341 simpler regexp.
12342
12343 2002-03-12 Colin Walters <walters@debian.org>
12344
12345 * ibuffer.el (ibuffer-redisplay-current): Don't move point when
12346 redisplaying a line.
12347
12348 2002-03-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12349
12350 * term/x-win.el (emacs-session-restore): Take previous id as
12351 an argument.
12352 (emacs-session-save): Add comment that return t means cancel shutdown
12353
12354 * startup.el (command-line): Must check that x-session-previous-id
12355 is bound also, for non-X platforms.
12356
12357 2002-03-12 Gerd Moellmann <gerd@gnu.org>
12358
12359 * emacs-lisp/cl-indent.el (lisp-loop-keyword-indentation)
12360 (lisp-loop-forms-indentation, lisp-simple-loop-indentation):
12361 New user options.
12362 (extended-loop-p, common-lisp-loop-part-indentation): New functions.
12363 (common-lisp-indent-function-1): Renamed from
12364 common-lisp-indent-function.
12365 (common-lisp-indent-function): Handle loop forms specially.
12366 (lisp-indent-defmethod): Use car/cdr instead of first/rest.
12367 (lisp-backquote-indentation): New user option.
12368
12369 2002-03-12 Francesco Potort\e,Al\e(B <pot@gnu.org>
12370
12371 * progmodes/etags.el (tag-exact-file-name-match-p)
12372 (tag-file-name-match-p, tag-partial-file-name-match-p):
12373 Assume that the header of a tags section has either a number
12374 or nothing after the last comma.
12375
12376 2002-03-11 Richard M. Stallman <rms@gnu.org>
12377
12378 * imenu.el (imenu-update-menubar-modified-tick): New variable.
12379 (imenu-update-menubar): Don't call imenu--make-index-alist
12380 if buffer has not changed since last time.
12381
12382 * desktop.el (desktop-buffer-handlers): Doc fix.
12383 (desktop-buffer-file): Explicitly return BUF.
12384
12385 * paren.el (show-paren-function): Move back in other direction
12386 to verify the match is correct.
12387
12388 * mail/supercite.el (sc-select-attribution): Accept whatever value
12389 we get in CHOICE; there is no value meaning "try again".
12390
12391 2002-03-11 Colin Walters <walters@verbum.org>
12392
12393 * shell.el (toplevel): Revert previous change to use pcomplete.
12394 (shell-mode): Ditto.
12395 (shell-pcomplete-setup-done): Remove.
12396 (shell-pcomplete): Ditto.
12397 (shell-pcomplete-reverse): Ditto.
12398
12399 * comint.el: Remove documentation on setting up pcomplete.
12400
12401 2002-03-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12402
12403 * font-lock.el (java-font-lock-extra-types): Add "URL" as separate
12404 item. Doc fix.
12405
12406 * image.el (image-type-from-file-header): Make temporary buffer
12407 unibyte.
12408
12409 * subr.el (add-to-list): Doc fix.
12410
12411 2002-03-11 Miles Bader <miles@gnu.org>
12412
12413 * pcomplete.el (pcomplete-entries): Expand environment variables
12414 in filename.
12415
12416 2002-03-10 Daniel Pfeiffer <occitan@esperanto.org>
12417
12418 * play/mpuz.el: Use defface instead of facemenu-get-face.
12419
12420 2002-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12421
12422 * startup.el (command-line): Add call to emacs-session-restore if
12423 both x-session-id and x-session-previous-id are strings.
12424
12425 * term/x-win.el (x-handle-smid): New function.
12426 (emacs-session-filename): New function.
12427 (emacs-session-save): New function.
12428 (emacs-save-session-functions): New variable.
12429 (emacs-session-restore): New function.
12430
12431 2002-03-09 Eli Zaretskii <eliz@is.elta.co.il>
12432
12433 * simple.el (shell-command-on-region): Call push-mark with
12434 non-nil second arg, to suppress the "Mark set" message.
12435
12436 2002-03-08 Richard M. Stallman <rms@gnu.org>
12437
12438 * textmodes/picture.el (picture-forward-column): New arg `interactive'
12439 is non-nil for an interactive call. Use instead of interactive-p.
12440 (picture-backward-column): Likewise.
12441
12442 * tar-mode.el (tar-untar-buffer): New function.
12443
12444 * info.el (Info-fontify-node): Bind up-clicks, not down-clicks.
12445 Put the mouse-face on the entire xref, like the local keymap.
12446
12447 * find-dired.el (find-name-dired): Use shell-quote-argument.
12448
12449 2002-03-08 Daniel Pfeiffer <occitan@esperanto.org>
12450
12451 * play/mpuz.el (mpuz-unsolved-face, mpuz-solved-face)
12452 (mpuz-trivial-face, mpuz-text-face, mpuz-solve-when-trivial)
12453 (mpuz-allow-double-multiplicator): New options for nicer look and
12454 new features.
12455 (mpuz-put-number-on-board, mpuz-paint-number, mpuz-solve): New funs.
12456 (mpuz-check-all-solved, mpuz-random-puzzle)
12457 (mpuz-paint-statistics, mpuz-paint-digit, mpuz-close-game)
12458 (mpuz-show-solution): Functions streamlined and removed french
12459 style space before punctuation, added face support and optional
12460 solving of trivial results.
12461
12462 2002-03-07 Colin Walters <walters@verbum.org>
12463
12464 * ibuf-macs.el (define-ibuffer-column): Add :summarizer property.
12465
12466 * ibuffer.el (ibuffer-update-mode-name): Substitute "view time"
12467 instead of "recency" for clarity.
12468 (ibuffer-compile-format): Document more. Handle new "summarizer"
12469 columns.
12470 (ibuffer-fontify-region-function): Ditto.
12471 (ibuffer-insert-buffer-line): Ditto.
12472 (ibuffer-map-lines): Ditto.
12473 (ibuffer-insert-buffers-and-marks): Ditto.
12474 (ibuffer-update-title-and-summary): Renamed from
12475 `ibuffer-update-title'. Handle "summarizer" columns.
12476 (ibuffer-clear-summary-columns): New function.
12477
12478 * ibuf-ext.el (ibuffer-filter-format-alist): Add type and group.
12479
12480 2002-03-07 Gerd Moellmann <gerd@gnu.org>
12481
12482 * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
12483 Use the other-window instead of the other-frame functions when
12484 the window is dedicated.
12485
12486 2002-03-06 ShengHuo ZHU <zsh@cs.rochester.edu>
12487
12488 * textmodes/bibtex.el (bibtex-make-field): Call bibtex-find-text
12489 with SILENT so that a new field can be added.
12490
12491 2002-03-06 Eli Zaretskii <eliz@is.elta.co.il>
12492
12493 * files.el (make-auto-save-file-name): Make sure the produced file
12494 name does not contain characters that are invalid for DOS/Windows
12495 filesystems.
12496
12497 * dos-fns.el, w32-fns.el (make-auto-save-file-name):
12498 Remove replacement functions.
12499
12500 2002-03-06 Gerd Moellmann <gerd@gnu.org>
12501
12502 * font-lock.el (lisp-font-lock-keywords-2): Highlight keywords of
12503 the form `:x'.
12504
12505 * vc.el (vc-branch-part): Add autoload cookie. This function can
12506 be called from vc-rcs-find-most-recent-rev when visiting a file
12507 checked into RCS in a CVS sandbox.
12508
12509 2002-03-06 Andreas Schwab <schwab@suse.de>
12510
12511 * progmodes/hideif.el: Augment expression parser to handle
12512 conditional expressions.
12513 (hif-token-regexp): Also match `?' and `:'.
12514 (hif-tokenize): Handle `?' and ':' as tokens.
12515 (hif-expr): Parse conditional expressions.
12516 (hif-or-expr): Parse `||' expressions.
12517 (hif-and-expr): Renamed from hif-term.
12518 (hif-conditional): New function to evaluate a conditional
12519 expression.
12520
12521 2002-03-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12522
12523 * language/czech.el ("Czech"): Fix the documentation.
12524
12525 * language/slovak.el ("Slovak"): Likewise.
12526
12527 2002-03-05 ShengHuo ZHU <zsh@cs.rochester.edu>
12528
12529 * xml.el (xml-parse-attlist): Accept empty strings.
12530
12531 2002-03-05 Eli Zaretskii <eliz@is.elta.co.il>
12532
12533 * mouse.el (mouse-show-mark): Remove the no-highlight alternative:
12534 all terminals now support highlighting of some kind.
12535
12536 * language/european.el (mac-roman): Fix the safe-chars property.
12537
12538 2002-03-05 Andre Spiegel <spiegel@gnu.org>
12539
12540 * vc.el (vc-transfer-file): Use `make-temp-file'.
12541 (vc-default-update-changelog): Remove conditional use of
12542 `make-temp-name'.
12543
12544 * vc-cvs.el (vc-cvs-diff-tree): Fix typo in parameter names.
12545
12546 2002-03-05 Michael Kifer <kifer@cs.stonybrook.edu>
12547
12548 * ediff-init.el: Comments.
12549
12550 * ediff-hook.el: Got rid of autoloads. Not needed, since the hook
12551 is loaded.
12552
12553 * ediff-mult.el (ediff-intersect-directories)
12554 (ediff-prepare-meta-buffer,ediff-get-directory-files-under-revision):
12555 Cleanup.
12556 (ediff-draw-dir-diffs): Now supports the "C" command in directory
12557 difference buffer.
12558 (ediff-dir-diff-copy-file): New function that implements copying
12559 of files from one Ediff dir to another
12560 (ediff-bury-dir-diffs-buffer): Kills the buffer instead.
12561 (ediff-append-custom-diff): Better error msgs.
12562
12563 * ediff-util.el (ediff-compute-custom-diffs-maybe): Buglet fix.
12564 (ediff-inferior-compare-regions): Use
12565 ediff-clone-buffer-for-region-comparison. Better and simpler interface.
12566
12567 * ediff.el (ediff-directories-internal): Cleanup.
12568 (ediff-clone-buffer-for-region-comparison): Better interface.
12569
12570 2002-03-04 Richard M. Stallman <rms@gnu.org>
12571
12572 * emacs-lisp/easy-mmode.el (define-minor-mode):
12573 Use "P" in interactive spec of minor mode commands.
12574
12575 2002-03-04 Stefan Monnier <monnier@cs.yale.edu>
12576
12577 * faces.el (face-spec-choose): Allow `t' to appear before the end.
12578 (mode-line, tool-bar, minibuffer-prompt, region, fringe, bold, italic)
12579 (bold-italic, underline, highlight, secondary-selection, fixed-pitch)
12580 (variable-pitch, trailing-whitespace): Don't use the old-style entries.
12581 (mode-line-inactive, header-line): Move the `t' section to the
12582 beginning so the `:inherit' setting can be shared.
12583
12584 2002-03-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12585
12586 * net/snmp-mode.el: Require tempo when compiling to prevent
12587 warnings. Update copyright notice.
12588
12589 * help.el (describe-key-briefly, describe-key): Interpret `undefined'
12590 like not defined at all.
12591
12592 2002-03-03 Stefan Monnier <monnier@cs.yale.edu>
12593
12594 * textmodes/sgml-mode.el: Change maintainer to FSF.
12595 (sgml-start-tag-regex, sgml-font-lock-keywords-1, sgml-mode-common)
12596 (sgml-tags-invisible, sgml-beginning-of-tag):
12597 Allow _ : and non-ASCII in tag names, as required for XML.
12598 (sgml-name-char): Don't assume anything about charsets handled by
12599 encode-char.
12600
12601 * textmodes/tex-mode.el (tex-guess-main-file): Handle the case
12602 where one of the buffers is narrowed.
12603
12604 * hexl.el (hexlify-command, dehexlify-command): Remove.
12605 (hexlify-buffer, dehexlify-buffer): Use call-process-region
12606 rather than shell-command-on-region.
12607
12608 * newcomment.el (comment-forward): Use forward-comment to skip
12609 over whitespace (or comments) even when comment-use-syntax is nil.
12610
12611 * progmodes/cperl-mode.el (cperl-menu): Add "-emacs" to the version.
12612
12613 * textmodes/xml-lite.el: New file.
12614
12615 2002-03-03 Richard M. Stallman <rms@gnu.org>
12616
12617 * textmodes/artist.el (artist-system): Use make-temp-file.
12618
12619 * progmodes/ps-mode.el (ps-run-make-tmp-filename): Use make-temp-file.
12620
12621 * mail/sendmail.el (mail-recover-1): Increase non-random-len
12622 by 1 since we changed make-auto-save-file-name to add one
12623 fewer character to the buffer name.
12624 (mail-recover): Really show point at the right place
12625 in the *Directory* buffer.
12626
12627 * files.el (make-auto-save-file-name): Use make-temp-file.
12628
12629 * terminal.el (te-create-terminfo): Use make-temp-file
12630 to create the source file in a safe way.
12631
12632 2002-03-03 Eli Zaretskii <eliz@is.elta.co.il>
12633
12634 * cus-start.el: Rename automatic-hscroll-step and
12635 automatic-hscroll-margin into hscroll-step and hscroll-margin.
12636
12637 * frame.el (auto-hscroll-mode): Renamed from automatic-hscrolling.
12638 (automatic-hscrolling): Now a defvaralias for auto-hscroll-mode.
12639
12640 * mouse.el (mouse-region-delete-keys): Add deletechar.
12641
12642 2002-03-03 Sam Steingold <sds@gnu.org>
12643
12644 * play/snake.el (snake-score-file): Fixed parens (broken by the
12645 last patch).
12646 * play/tetris.el (tetris-score-file): Ditto.
12647
12648 2002-03-03 Richard M. Stallman <rms@gnu.org>
12649
12650 * play/tetris.el (tetris-score-file): Put in home dir, not in /tmp.
12651
12652 * play/snake.el (snake-score-file): Put in home dir, not in /tmp.
12653
12654 * play/gamegrid.el (gamegrid-set-font, gamegrid-setup-face)
12655 (gamegrid-make-mono-tty-face): Fix usage of condition-case.
12656
12657 2002-03-03 Thien-Thi Nguyen <ttn@gnu.org>
12658
12659 * calendar/diary-lib.el (list-diary-entries): Use `buffer-substring'
12660 instead of `buffer-substring-no-properties' to support enriched mode.
12661
12662 2002-03-02 Richard M. Stallman <rms@gnu.org>
12663
12664 * find-dired.el (find-grep-dired): Call shell-quote-argument.
12665 Specify the -e option.
12666 Rename arg to `regexp'.
12667
12668 2002-03-02 Milan Zamazal <pdm@zamazal.org>
12669
12670 * textmodes/tildify.el (tildify-string-alist): Add entry for xml-mode.
12671
12672 2002-03-02 Miles Bader <miles@gnu.org>
12673
12674 * mwheel.el (mwheel-scroll): Remove `double' and `triple' from the
12675 event-modifiers before looking up in `mouse-wheel-scroll-amount'.
12676 If there's no applicable modifiers entry in the alist in
12677 `mouse-wheel-scroll-amount', fall back to the default, not to
12678 nil (which causes full screen scrolls).
12679
12680 2002-03-01 Andreas Schwab <schwab@suse.de>
12681
12682 * textmodes/texnfo-upd.el (texinfo-start-menu-description):
12683 Remove extra paren in regexp.
12684
12685 2002-03-01 Eli Zaretskii <eliz@is.elta.co.il>
12686
12687 * mouse.el (mouse-show-mark): Use display-mouse-p, not
12688 display-graphic-p, to decide whether to move point or use the
12689 highlighting.
12690
12691 2002-02-28 Colin Walters <walters@verbum.org>
12692
12693 * eshell/esh-var.el (eshell-parse-variable-ref): Use `make-temp-file'.
12694
12695 * calc/calc-graph.el (calc-gnuplot-tempfile): Don't expand against
12696 `temporary-file-directory'; we now do that in `calc-graph-file-cache'.
12697 (calc-temp-file-name): Use `make-temp-file'.
12698
12699 2002-02-28 Richard M. Stallman <rms@gnu.org>
12700
12701 * font-lock.el (java-font-lock-extra-types):
12702 Match java.net.URL, etc.
12703
12704 2002-02-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12705
12706 * hexl.el (hexl-options): Doc fix.
12707 Update Commentary section.
12708
12709 * textmodes/sgml-mode.el (sgml-specials, sgml-quick-keys):
12710 Doc fixes.
12711
12712 2002-02-28 Andre Spiegel <spiegel@gnu.org>
12713
12714 * vc.el (vc-revert-buffer): If the buffer is not saved, prompt
12715 the user to do that first.
12716 (vc-update): New function.
12717
12718 * vc-hooks.el (vc-menu-map): New entry "Update to Latest Version",
12719 which calls vc-update. Use the term "Base Version" instead of
12720 "Last Version" for the entries "Revert" and "Compare".
12721
12722 2002-02-28 Kim F. Storm <storm@cua.dk>
12723
12724 * simple.el (shell-command-on-region): Report non-zero exit
12725 status in mode line instead of buffer.
12726
12727 2002-02-27 Richard M. Stallman <rms@gnu.org>
12728
12729 * comint.el (comint-preoutput-filter-functions): Doc fix.
12730 (comint-output-filter-functions, comint-input-filter-functions)
12731 (comint-redirect-filter-functions): Likewise.
12732
12733 (comint-redirect-preoutput-filter): Do the local-hook
12734 handling of t when running comint-redirect-filter-functions.
12735 (comint-output-filter): Likewise for comint-preoutput-filter-functions.
12736
12737 2002-02-26 Richard M. Stallman <rms@gnu.org>
12738
12739 * paths.el (remote-shell-program): Add doc string.
12740
12741 2002-02-26 Colin Walters <walters@debian.org>
12742
12743 * ibuf-ext.el (sorter mode-name): New.
12744 (ibuffer-do-occur): Don't quote ibuffer-marked-char.
12745
12746 * calc/calc-ext.el (calc-scroll-left): Call scroll-left
12747 interactively, so they do something.
12748 (calc-scroll-right): Ditto.
12749
12750 2002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
12751
12752 * international/mule.el (ctext-pre-write-conversion): Handle the
12753 case when FROM is a string, and when we are called from
12754 build_annotations_2.
12755
12756 2002-02-26 Richard M. Stallman <rms@gnu.org>
12757
12758 * rect.el (clear-rectangle-line): Reindent to the same column
12759 that move-to-column reached when it tried to go to endcol.
12760
12761 * icomplete.el (icomplete-exhibit): Use minibuffer-prompt-end.
12762
12763 2002-02-26 Ivar Rummelhoff <ivarru@math.uio.no>
12764
12765 * winner.el (winner-boring-buffers, winner-set): A window which
12766 displays a buffer whose name is in the list
12767 `winner-boring-buffers', will no longer be restored by `winner-undo'.
12768 (winner-sorted-window-list): Used to improve comparison between
12769 window configurations.
12770 (winner-win-data): Simplified and moved.
12771 (winner-conf): Simplified (now uses `winner-win-data').
12772 (winner-change-fun, winner-save-old-configurations)
12773 (winner-save-(un)conditionally, winner-redo): Changes made while in
12774 the minibuffer will be ignored. (Such changes are undone upon
12775 exit for the minibuffer, anyway.)
12776 (winner-set-conf): Preserve selected window whenever possible.
12777 (winner-make-point-alist): Simplified.
12778 (winner-mode, winner-save-unconditionally): Save current window
12779 configuration on entering minibuffer.
12780 (minor-mode-alist): Don't add winner-mode to `minor-mode-alist',
12781 since it does not change the overall behavior of Emacs.
12782
12783 2002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
12784
12785 * international/mule-conf.el (compound-text): Renamed back from
12786 compound-text-no-extensions.
12787 (ctext-no-compositions): Remove the mime-charset property.
12788 (compound-text-with-extensions): Renamed from compound-text.
12789 (x-ctext-with-extensions, ctext-with-extensions): Renamed aliases.
12790
12791 2002-02-26 Juanma Barranquero <lektu@terra.es>
12792
12793 * faces.el (list-faces-display): Fix typo.
12794
12795 2002-02-25 Richard M. Stallman <rms@gnu.org>
12796
12797 * frame.el (focus-follows-mouse): Doc fix.
12798
12799 2002-02-26 Miles Bader <miles@gnu.org>
12800
12801 * mwheel.el (mouse-wheel-mode): Pass vectors instead of symbols
12802 to `define-key', since it no longer accepts the latter.
12803
12804 2002-02-25 Jason Rumney <jasonr@gnu.org>
12805
12806 * term/w32-win.el (mouse-wheel-scroll-line): Use car of
12807 mouse-wheel-scroll-amount.
12808
12809 * w32-vars.el (mouse-wheel-scroll-amount): Use same definition as
12810 mwheel.el.
12811
12812 * language/japanese.el (iso-2022-jp-2): Add init-bol flag.
12813
12814 2002-02-25 Andre Spiegel <spiegel@gnu.org>
12815
12816 * vc.el (vc-diff-switches-list): Fix prev change, making the macro
12817 consistent with the others that take a backend name as a symbol.
12818
12819 * vc-cvs.el, vc-rcs.el, vc-sccs.el: Fix calls to vc-diff-switches-list.
12820
12821 2002-02-25 Kim F. Storm <no-spam@cua.dk>
12822
12823 * comint.el (comint-replace-by-expanded-filename): Do nothing if
12824 comint-match-partial-filename returns nil.
12825
12826 * shell.el (shell-pcomplete-setup-done): New variable.
12827 (shell-pcomplete): Use it instead of shell-pcomplete-setup-p.
12828 (shell-pcomplete-reverse): Ditto.
12829
12830 2002-02-25 Per Abrahamsen <abraham@dina.kvl.dk>
12831
12832 * ps-print.el (ps-print-printer): Added `lpr' customize group member.
12833
12834 2002-02-25 Juanma Barranquero <lektu@terra.es>
12835
12836 * subr.el (save-match-data): Doc fix.
12837
12838 * ielm.el (ielm-prompt): Allow customization; make it read-only.
12839
12840 2002-02-25 Kim F. Storm <storm@cua.dk>
12841
12842 * shell.el (shell-mode-map): Add "Complete" header so completion
12843 menu is shown on the menu bar in shell mode.
12844
12845 2002-02-25 Stefan Monnier <monnier@cs.yale.edu>
12846
12847 * ielm.el (ielm-match-data): New var.
12848 (inferior-emacs-lisp-mode): Make it buffer-local.
12849 (ielm-eval-input): Use it to preserve match-data between inputs.
12850
12851 2002-02-24 Juanma Barranquero <lektu@terra.es>
12852
12853 * ielm.el (inferior-emacs-lisp-mode): Use hexl for the dummy process.
12854
12855 2002-02-24 Per Abrahamsen <abraham@dina.kvl.dk>
12856
12857 * cus-edit.el (custom-unlispify-remove-prefixes): Add to
12858 `custom-buffer' customize group.
12859
12860 2002-02-23 Kim F. Storm <storm@cua.dk>
12861
12862 * help.el (where-is): Use remap-command.
12863
12864 * help-fns.el (describe-function-1): Use remap-command.
12865
12866 * subr.el (global-set-key, local-set-key): Undo 2002-02-06
12867 change (no longer accept a symbol for the KEY argument).
12868
12869 2002-02-23 Colin Walters <walters@debian.org>
12870
12871 * calc/calcalg3.el (calc-invent-variables): Convert integer to string.
12872 * calc/calcalg2.el (math-solve-get-sign): Ditto.
12873
12874 * ibuffer.el (ibuffer-compile-format): Don't uselessly bind `pt'
12875 in generated function.
12876
12877 * ibuf-ext.el (ibuffer-old-time): Change to hours.
12878 (ibuffer-mark-old-buffers): Handle it.
12879
12880 * shell.el (shell-pcomplete, shell-pcomplete-reverse): New functions.
12881 (toplevel): Bind them.
12882 (shell-mode): Don't set `comint-dynamic-complete-functions'; it is
12883 not necessary now that we use pcomplete.
12884
12885 * comint.el: Document how use new pcomplete completion facility.
12886
12887 2002-02-23 Richard M. Stallman <rms@gnu.org>
12888
12889 * mail/rmailsum.el (rmail-summary-output): Properly advance
12890 to next message, by calling rmail-summary-goto-msg.
12891
12892 * net/browse-url.el (browse-url-galeon): Specify --existing
12893 for an existing window. Use --noraise rather than --no-raise.
12894 Don't use -x.
12895
12896 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
12897
12898 * progmodes/etags.el (find-tag-noselect, find-tag)
12899 (find-tag-other-window, find-tag-other-frame, find-tag-regexp):
12900 Fix a typo in doc strings.
12901
12902 2002-02-20 Deepak Goel <deego@glue.umd.edu>
12903
12904 * play/snake.el (snake-velocity-queue, snake-update-velocity)
12905 (snake-final-x-velocity, snake-final-y-velocity):
12906 New variable and functions. Store user's keypresses
12907 into a queue and pop from the queue each subsequent turn.
12908 (snake-update-game, snake-move-left)
12909 (snake-move-right, snake-move-up, snake-move-down, snake-active-p)
12910 (snake-start-game): Use that queue.
12911 (snake-use-glyphs-flag): Renamed from snake-use-glyphs.
12912 (snake-use-color-flag): Likewise.
12913 (snake-mode): Rename uses of those variables.
12914
12915 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
12916
12917 Support for ICCCM Extended Segments in X selections:
12918
12919 * international/mule-conf.el (ctext-no-compositions): New coding
12920 system.
12921 (compount-text-no-extensions): Renamed from compound-text.
12922 (x-ctext-no-extensions, ctext-no-extensions): Aliases for
12923 compound-text-no-extensions.
12924 (compound-text): Redefined using post-read and pre-write conversions.
12925
12926 * international/mule.el (non-standard-icccm-encodings-alist)
12927 (non-standard-designations-alist): New variables.
12928 (ctext-post-read-conversion, ctext-pre-write-conversion):
12929 New functions.
12930
12931 2002-02-21 Jonathan Kamens <jik@kamens.brookline.ma.us>
12932
12933 * vc.el (vc-default-init-version): Update documentation to
12934 indicate that the backend can override the default init version.
12935 (vc-register): Use the backend init-version function, if it
12936 exists, to determine the initial version of a file.
12937 (vc-diff-switches-list): Don't symbol-quote backend, since it's
12938 already a symbol. Don't fail if vc-BACKEND-diff-switches isn't bound.
12939
12940 * vc-hooks.el (vc-mode-line): Set vc-mode to nil if the file is
12941 not version-controlled. This is necessary, e.g., if the file has
12942 just been reverted, and thus was previously under version control
12943 but isn't any longer.
12944 (vc-find-file-hook): Likewise.
12945
12946 2002-02-21 Martin Lorentzson <Martin.Lorentzson@telia.com>
12947
12948 * vc-cvs.el (vc-cvs-sticky-date-format-string): New variable.
12949 (vc-cvs-sticky-tag-display): New variable.
12950 (vc-cvs-mode-line-string): Add sticky-tag to the mode-line.
12951 (vc-cvs-checkin): If the input revision is a valid symbolic tag
12952 name, we create it as a branch, commit and switch to it.
12953 (vc-cvs-retrieve-snapshot): Set file-property sticky-tag.
12954 (vc-cvs-valid-symbolic-tag-name-p): New function.
12955 (vc-cvs-parse-sticky-tag): New function.
12956 (vc-cvs-parse-entry): Added parsing of sticky tags.
12957
12958 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
12959
12960 * toolbar/tool-bar.el (tool-bar-mode): Revert the :init-value to
12961 nil, and then explicitly set the standard-value to t.
12962
12963 2002-02-20 Sam Steingold <sds@gnu.org>
12964
12965 * textmodes/flyspell.el (flyspell-mode): Autoload the variable
12966 since it is used in the menu bar.
12967
12968 2002-02-20 Richard M. Stallman <rms@gnu.org>
12969
12970 * simple.el (shell-command-on-region): Display the exit status
12971 when a command fails.
12972
12973 * subr.el (add-hook): Doc fix.
12974
12975 * frame.el (other-frame): Doc fix.
12976
12977 * simple.el (yank): Clear `field' property.
12978
12979 2002-02-20 Tom Tromey <tromey@cachet>
12980
12981 * progmodes/tcl.el (tcl-do-fill-paragraph): Find and fill on more
12982 natural paragraph boundaries. Don't fail at beginning of buffer.
12983
12984 2002-02-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12985
12986 * tar-mode.el (tar-next-line, tar-previous-line): Add doc string,
12987 call the argument "arg" to match plain next-line and
12988 previous-line. From Kevin Ryde <user42@zip.com.au>.
12989
12990 2002-02-19 Sam Steingold <sds@gnu.org>
12991
12992 * mwheel.el (mouse-wheel-scroll-amount): Can specify different
12993 scroll amounts for different modifiers now.
12994 (mwheel-scroll): Handle the new `mouse-wheel-scroll-amount'
12995 format properly.
12996 (mouse-wheel-mode): Ditto.
12997
12998 2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
12999
13000 * textmodes/bibtex.el (bibtex-parse-keys): Put save-match-data
13001 around function body.
13002
13003 * net/browse-url.el (browse-url-maybe-new-window): Reverse the
13004 sense of the comparison, to match the doc strings of functions
13005 that use this macro.
13006
13007 2002-02-19 Per Abrahamsen <abraham@dina.kvl.dk>
13008
13009 * facemenu.el (describe-text-mode-map): Removed bootstrap kludge.
13010
13011 * toolbar/tool-bar.el (tool-bar-mode): Made the standard value t.
13012 * menu-bar.el (menu-bar-mode): Ditto.
13013
13014 2002-02-18 Andreas Schwab <schwab@suse.de>
13015
13016 * replace.el (query-replace-regexp-eval): Doc fix.
13017
13018 2002-02-18 Colin Walters <walters@verbum.org>
13019
13020 * calc/calcalg2.el (math-solve-get-int): Convert return value from
13021 `math-get-from-counter' to a string before calling `concat' on it.
13022
13023 * calc/calc-maint.el (calc-split-manual): Look for calc.texi.
13024 (calc-public-autoloads): Obsolete; remove.
13025 (calc-private-autoloads): Ditto.
13026 (calc-add-autoloads): Ditto.
13027
13028 * calc/calc-macs.el (calc-with-default-simplification): Use &rest
13029 for body.
13030
13031 2002-02-17 Jason Rumney <jasonr@gnu.org>
13032
13033 * w32-win.el (x-option-alist, x-long-option-alist)
13034 (x-switch-definitions): Remove, use command-line-x-option-alist
13035 instead to be consistent with X.
13036 (x-handle-initial-switch): New function.
13037
13038 2002-02-17 Eli Zaretskii <eliz@is.elta.co.il>
13039
13040 * faces.el (mode-line-inactive, header-line): Add the :inherit
13041 attribute for the tty case.
13042
13043 2002-02-17 stanislav shalunov <shalunov@internet2.edu>
13044
13045 * mail/uce.el (uce-reply-to-uce): Fix incorrect behavior when
13046 invoked from Rmail with full headers displayed.
13047
13048 2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
13049
13050 * emacs-lisp/lisp.el (mark-defun): Don't leave multiple marks
13051 when repeated.
13052 * textmodes/paragraphs.el (mark-paragraph): Ditto.
13053
13054 2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
13055
13056 * menu-bar.el (menu-bar-showhide-menu): Added speedbar.
13057 (menu-bar-tools-menu): Removed speedbar.
13058
13059 * textmodes/ispell.el (ispell-menu-map): Added `customize-ispell'
13060 and `flyspell-mode' entries.
13061
13062 * textmodes/flyspell.el (flyspell): Add to ispell group.
13063
13064 2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
13065
13066 * emacs-lisp/lisp.el (mark-sexp): Don't leave multiple marks when
13067 repeated.
13068 (mark-defun): Mark more if repeated.
13069
13070 2002-02-17 Colin Walters <walters@verbum.org>
13071
13072 * ibuf-ext.el (ibuffer-toggle-sorting-mode): Make it work.
13073
13074 * ibuffer.el (ibuffer-truncate-lines): New option.
13075 (ibuffer-mode): Use it.
13076
13077 2002-02-17 Kim F. Storm <storm@cua.dk>
13078
13079 * cus-start.el: Add mouse-highlight.
13080
13081 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
13082
13083 * Makefile.in (DONTCOMPILE): Remove cus-start.el.
13084
13085 * cus-start.el: Add automatic-hscroll-margin and
13086 automatic-hscroll-step.
13087
13088 2002-02-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13089
13090 * cus-start.el (x-autoselect-window): Allow customization.
13091
13092 * eshell/em-alias.el (eshell-alias-initialize): Do not use
13093 make-local-hook.
13094
13095 * eshell/em-cmpl.el (eshell-cmpl-initialize): Likewise.
13096
13097 * eshell/em-dirs.el (eshell-dirs-initialize): Likewise.
13098
13099 * eshell/em-glob.el (eshell-glob-initialize): Likewise.
13100
13101 * eshell/em-hist.el (eshell-hist-initialize): Likewise.
13102
13103 * eshell/em-pred.el (eshell-pred-initialize): Likewise.
13104
13105 * eshell/em-prompt.el (eshell-prompt-initialize): Likewise.
13106
13107 * eshell/em-rebind.el (eshell-rebind-initialize): Likewise.
13108
13109 * eshell/em-smart.el (eshell-smart-initialize): Likewise.
13110
13111 * eshell/em-unix.el (eshell-unix-initialize): Likewise.
13112
13113 * eshell/esh-cmd.el (eshell-cmd-initialize): Likewise.
13114
13115 * eshell/esh-ext.el (eshell-ext-initialize): Likewise.
13116
13117 * eshell/esh-io.el (eshell-io-initialize): Likewise.
13118
13119 * eshell/esh-mode.el (eshell-mode): Likewise.
13120
13121 * eshell/esh-test.el (eshell-show-usage-metrics): Likewise.
13122
13123 * eshell/esh-var.el (eshell-var-initialize): Likewise.
13124
13125 * progmodes/idlw-shell.el (idlwave-shell-mode): Likewise.
13126
13127 * progmodes/idlwave.el (idlwave-mode): Likewise.
13128
13129 * textmodes/reftex-sel.el (reftex-select-label-mode)
13130 (reftex-select-bib-mode): Likewise.
13131
13132 2002-02-16 John Wiegley <johnw@gnu.org>
13133
13134 * eshell/em-hist.el (eshell-hist-initialize): When in the
13135 minibuffer, use the global value of `eshell-history-ring', and
13136 never save it to disk, or ask to save it to disk. This allows
13137 users of session.el to control whether its global state should be
13138 persisted or not.
13139 (eshell-add-command-to-history): Don't write Eshell's history out
13140 to disk, let the governing mode control that upon exit.
13141
13142 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
13143
13144 * eshell/eshell.el (eshell-command): Before reading from the
13145 minibuffer, add eshell-add-command-to-history to
13146 minibuffer-exit-hook, and remove it after read-from-minibuffer
13147 returns.
13148
13149 * eshell/em-hist.el (eshell-add-input-to-history): New function,
13150 with most of the code from eshell-add-to-history.
13151 (eshell-add-command-to-history): New function, to record in
13152 eshell-history the commands run via eshell-command.
13153 (eshell-add-to-history): Call eshell-add-command-to-history to do
13154 most of the work.
13155
13156 2002-02-16 John Wiegley <johnw@gnu.org>
13157
13158 * eshell/esh-ext.el (eshell-external-command): Added a fix for
13159 XEmacs' new dired.el, which adds a global entry in the
13160 `file-name-handler-alist'.
13161
13162 2002-02-16 John Wiegley <johnw@gnu.org>
13163
13164 * align.el (align-region): Added a missing name argument.
13165
13166 2002-02-16 John Wiegley <johnw@gnu.org>
13167
13168 * eshell/esh-ext.el (eshell-script-interpreter): Allow whitespace
13169 after the #! of a shell interpretor specification.
13170
13171 2002-02-15 Richard M. Stallman <rms@gnu.org>
13172
13173 * help.el (describe-key-briefly): Make output in INSERT case
13174 look just like what is displayed in the normal case.
13175
13176 2002-02-15 Andreas Schwab <schwab@suse.de>
13177
13178 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
13179 Require non-letter after specials.
13180
13181 2002-02-15 Eli Zaretskii <eliz@is.elta.co.il>
13182
13183 * menu-bar.el (menu-bar-tools-menu): Add an item for Calculator.
13184
13185 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
13186
13187 * simple.el (mark-word): Mark more if repeated.
13188 * textmodes/paragraphs.el (mark-paragraph): Ditto.
13189 (mark-end-of-sentence): Ditto.
13190
13191 2002-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
13192
13193 * wid-edit.el (widgetp): Made it more robust.
13194
13195 2002-02-14 Per Abrahamsen <abraham@dina.kvl.dk>
13196
13197 * facemenu.el (describe-text-done): New function.
13198 (describe-text-mode-map): New variable.
13199 (describe-text-mode-hook): New option.
13200 (describe-text-mode): New function.
13201 (describe-text-widget): New function.
13202 (describe-text-sexp): New function.
13203 (describe-text-properties): New function.
13204 (describe-text-category): New command.
13205 (describe-text-at): New command.
13206 (facemenu-menu): Replace `list-text-properties-at' with
13207 `describe-text-at' in the menu.
13208
13209 * wid-edit.el (widgetp): New function.
13210 * wid-edit.el (widget-keymap, widget-insert, widget-setup): Autoload.
13211
13212 * emacs-lisp/pp.el (pp-to-string): Autoloaded.
13213
13214 * wid-browse.el: Removed version and x-url keywords.
13215
13216 2002-02-13 Kim F. Storm <storm@cua.dk>
13217
13218 * cus-start.el (mode-line-in-non-selected-windows):
13219 Allow customization.
13220
13221 2002-02-13 Richard M. Stallman <rms@gnu.org>
13222
13223 * textmodes/bibtex.el (bibtex-parse-buffers-stealthily):
13224 Tell bibtex-parse-keys to output no progress messages.
13225
13226 2002-02-12 Eli Zaretskii <eliz@is.elta.co.il>
13227
13228 * progmodes/pascal.el (pascal-imenu-generic-expression):
13229 Add menu-title and fix parentheses.
13230
13231 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
13232
13233 * menu-bar.el (menu-bar-options-save): Removed `truncate-lines'.
13234 (menu-bar-options-menu): Don't set default value for `truncate-lines'.
13235
13236 2002-02-12 Per Abrahamsen <abraham@dina.kvl.dk>
13237
13238 * menu-bar.el (menu-bar-options-save): Only save
13239 `current-language-environment' and `default-input-method' when
13240 marked as customized.
13241
13242 * international/mule-cmds.el
13243 (setup-specified-language-environment):
13244 Mark `current-language-environment' as customized.
13245 (set-input-method): Mark `default-input-method' as customized when
13246 called interactively.
13247 (toggle-input-method): Ditto.
13248
13249 2002-02-11 Colin Walters <walters@verbum.org>
13250
13251 * ibuffer.el (ibuffer-switch-format): Supply required argument for
13252 `ibuffer-current-formats'.
13253
13254 2002-02-11 Miles Bader <miles@gnu.org>
13255
13256 * faces.el (mode-line-inactive): Add dark-background variant.
13257
13258 2002-02-11 Per Abrahamsen <abraham@dina.kvl.dk>
13259
13260 * toolbar/tool-bar.el (tool-bar-mode): Removed standard value.
13261 * menu-bar.el (menu-bar-mode): Ditto.
13262 * cus-edit.el (customize-mark-to-save): Always save variables
13263 without a standard value.
13264
13265 * menu-bar.el (menu-bar-make-toggle): Made it aware of customize.
13266 (menu-bar-options-save): Ditto.
13267 (menu-bar-showhide-menu): Ditto.
13268 (menu-bar-options-menu): Ditto.
13269 (menu-bar-scroll-bar-right, menu-bar-scroll-bar-left)
13270 (menu-bar-scroll-bar-none): Remove.
13271 (menu-bar-showhide-scroll-bar-menu): Use customize aware lambda
13272 expressions instead.
13273
13274 * cus-edit.el (customize-set-value): Return value.
13275 (customize-set-variable): Ditto.
13276 (customize-save-variable): Ditto.
13277 (customize-set-variable): Load dependencies before setting value.
13278 (custom-load-symbol): Autoload it.
13279 (customize-mark-as-set): New function.
13280
13281 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
13282
13283 * cus-start.el: Don't warn about "x-*" symbols when building a
13284 non-GUI version.
13285
13286 2002-02-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13287
13288 * strokes.el (strokes-do-stroke, strokes-do-complex-stroke):
13289 Doc fix.
13290 (strokes-help): Do not use doubled with-output-to-temp-buffer.
13291 Fix the help string.
13292 (strokes-prompt-user-save-strokes): Fix typo.
13293 (strokes-list-strokes): Use proper exit-action argument for
13294 view-buffer. Update copyright notice.
13295
13296 * international/mule-diag.el: Various doc and message fixes.
13297 (non-iso-charset-alist): Add mac-roman. Don't add entries for
13298 codepages already present.
13299 (list-block-of-chars): Display space for null entries in
13300 translation table. Display tab specially.
13301 (list-non-iso-charset-chars): Check for null charsets. Use pop
13302 for clarity. Don't break 8-bit sets into sections between ranges.
13303 (list-charset-chars): Avoid indent-tabs-mode.
13304 (describe-char-after): Maybe use the text property for syntax
13305 table information. Maybe report char-code-property-table info.
13306 Maybe report character's unicode. Tweak printing of list info.
13307 (list-input-methods): Add xref buttons.
13308 (dump-charsets, dump-codings): Deleted (obsolete).
13309 From Dave Love <fx@gnu.org>.
13310
13311 2002-02-10 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13312
13313 * menu-bar.el (menu-bar-showhide-menu): Rename functions for toggling.
13314
13315 2002-02-10 Michael Kifer <kifer@cs.stonybrook.edu>
13316
13317 * viper-util.el (viper-read-key-sequence): Fix so it'll read
13318 fast key sequences in emacs native mode
13319 (viper-events-to-keys): Delete.
13320
13321 * viper.el (describe-key, describe-key-briefly): Get rid of
13322 viper-events-to-keys.
13323
13324 * ediff-init.el (ediff-has-gutter-support): Steven Turnbull's patch.
13325
13326 * ediff-wind.el (ediff-setup-control-frame):
13327 Use ediff-has-gutter-support.
13328
13329 * ediff-util.el (ediff-dispose-of-variant-according-to-user):
13330 check if buff is alive.
13331
13332 * ediff.el: Typo in comment.
13333
13334 2002-02-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13335
13336 * menu-bar.el (menu-bar-options-save): Take care of
13337 line-number-mode and column-number-mode variables.
13338 (menu-bar-showhide-menu): New menu-items "Show Line Number" and
13339 "Show Column Number" in "Show/Hide" menu.
13340
13341 2002-02-09 Richard M. Stallman <rms@gnu.org>
13342
13343 * mail/mailabbrev.el (mail-mode-map): Use eval-after-load to change it.
13344
13345 2002-02-09 Kim F. Storm <storm@cua.dk>
13346
13347 * faces.el (mode-line-inactive): New face for mode-line for
13348 non-selected windows.
13349 (mode-line): Doc fix: Only used for selected window.
13350
13351 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
13352
13353 * calendar/cal-menu.el (calendar-mode-map): Change the menu item's
13354 name to "Insert Diary Entry".
13355
13356 2002-02-08 Stefan Monnier <monnier@cs.yale.edu>
13357
13358 * font-lock.el (save-buffer-state): Use restore-buffer-modified-p.
13359 (c-font-lock-syntactic-face-function): Accept doxygen-style comments.
13360
13361 2002-02-08 Richard M. Stallman <rms@gnu.org>
13362
13363 * textmodes/text-mode.el (text-mode-hook-identify): Define as no-op.
13364
13365 2002-02-08 Andreas Schwab <schwab@suse.de>
13366
13367 * calc/calc.el (calcDigit-key): Use minibuffer-prompt-end instead
13368 of point-min.
13369
13370 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
13371
13372 * net/ange-ftp.el (ange-ftp-process-handle-line)
13373 (ange-ftp-set-xfer-size): If the file's size is a float, divide
13374 by 1024 instead of using ash.
13375
13376 * international/mule-cmds.el (select-safe-coding-system):
13377 State the buffer's name in the message popped in the *Warning* buffer,
13378 and make sure the offending buffer is displayed.
13379
13380 2002-02-07 Markus Rost <rost@math.ohio-state.edu>
13381
13382 * ffap.el (ffap-newsgroup-p): Test for non-nil symbol-value of htb.
13383
13384 2002-02-07 Richard M. Stallman <rms@gnu.org>
13385
13386 * terminal.el (terminal-map): Define [menu-bar] so global def is seen.
13387
13388 * register.el (list-registers): New command.
13389 (describe-register-1): New subroutine, taken out of view-register.
13390
13391 * emacs-lisp/copyright.el (copyright-regexp):
13392 Delete the unibyte copyright symbol; it's redundant.
13393 Fix a spazz in the multibyte encoding here.
13394
13395 2002-02-07 Dave Love <fx@gnu.org>
13396
13397 * language/cyril-util.el (cyrillic-encode-koi8-r-char)
13398 (cyrillic-encode-alternativnyj-char): Get translation tables from
13399 symbol properties, not as variables.
13400 (standard-display-cyrillic-translit): Include unicodes.
13401
13402 2002-02-06 Kim F. Storm <storm@cua.dk>
13403
13404 * help.el (where-is): Report remapped commands.
13405
13406 * help-fns.el (describe-function-1): Ditto.
13407
13408 * subr.el (global-set-key, local-set-key): Accept a symbol for the
13409 KEY argument (like define-key).
13410
13411 2002-02-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13412
13413 * textmodes/flyspell.el (flyspell-insert-function): Doc fix.
13414
13415 2002-02-06 Richard M. Stallman <rms@gnu.org>
13416
13417 * mail/mailabbrev.el: Require sendmail only at compile time.
13418 (mail-mode-header-syntax-table): Var deleted.
13419 (mail-abbrev-syntax-table): Init to nil, will compute when needed.
13420 (sendmail-pre-abbrev-expand-hook): Only temporarily change
13421 local-abbrev-table and the syntax table.
13422 Compute mail-abbrev-syntax-table if that has not been done.
13423
13424 * progmodes/compile.el (grep-compute-defaults): Definition moved up.
13425
13426 * emacs-lisp/debug.el (debugger-frame-offset): Var deleted.
13427 (debugger-frame-number): Figure out the offset directly.
13428 (debugger-setup-buffer): Don't use debugger-frame-offset.
13429 (debugger-frame, debugger-frame-clear): Likewise.
13430 (debugger-jump): Don't alter debugger-frame-offset.
13431
13432 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
13433 Replace foo-p as var name with foo-flag, not foo-p-flag.
13434
13435 * hilit-chg.el (highlight-changes-active-string): Default to +Chg.
13436 (highlight-changes-passive-string): Default to -Chg.
13437 (highlight-changes-global-modes): Doc fix.
13438
13439 * dired.el (dired-get-filename): Add /: when appropriate
13440 to avoid taking a local name as remote.
13441
13442 * files.el (file-name-non-special): Add special handling for
13443 file-name-sans-versions, file-name-completion, and
13444 file-name-all-completions.
13445
13446 * isearch.el (isearch-update): Don't update display in kbd macro.
13447 (isearch-lazy-highlight-new-loop): Do nothing in kbd macro.
13448
13449 * subr.el (force-mode-line-update): Doc fix.
13450
13451 * subr.el (atomic-change-group, prepare-change-group)
13452 (activate-change-group, accept-change-group, cancel-change-group):
13453 New functions.
13454
13455 * simple.el (undo-get-state, undo-revert-to-state): Fns deleted.
13456 (transpose-subr-1): Use atomic-change-group.
13457
13458 * subr.el (add-minor-mode): Include the mode's lighter string
13459 in the minor mode menu item name.
13460
13461 * mail/rmail.el (rmail-toggle-header): Avoid possibly slow call to
13462 rmail-count-screen-lines starting from (point-min).
13463
13464 * startup.el (use-fancy-splash-screens-p): Need 19 lines,
13465 beyond the image height, to use the fancy splash screen.
13466
13467 * textmodes/text-mode.el (text-mode-hook-identify): Function deleted.
13468 (text-mode): Set text-mode-variant here.
13469
13470 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
13471
13472 * play/pong.el (pong-height): Don't use height that exceeds the
13473 frame height.
13474 (pong-border-options): Make the border colors slightly more bright.
13475
13476 * play/gamegrid.el (gamegrid-display-type): Treat any
13477 color-capable display as color-x, if display-color-p is fboundp.
13478 (gamegrid-make-color-x-face): Don't call gamegrid-color twice.
13479 (gamegrid-make-color-tty-face): Use the value of color, not the
13480 symbol itself. Don't call gamegrid-color.
13481
13482 2002-02-05 Eli Zaretskii <eliz@is.elta.co.il>
13483
13484 * gud.el (gud-refresh): Call recenter only after we are sure we
13485 are in the right window.
13486
13487 2002-02-05 Per Abrahamsen <abraham@dina.kvl.dk>
13488
13489 * cus-edit.el (customize-mark-to-save): New function.
13490 * menu-bar.el (menu-bar-options-save): Rewrote.
13491
13492 2002-02-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13493
13494 * cus-start.el (x-use-underline-position-properties):
13495 Allow customization.
13496
13497 2002-02-04 Simon Josefsson <jas@extundo.com>
13498
13499 * dired.el (dired-load-hook, dired-mode-hook)
13500 (dired-before-readin-hook, dired-after-readin-hook): Defcustom.
13501
13502 2002-02-03 Colin Walters <walters@verbum.org>
13503
13504 * ibuf-ext.el (ibuffer-filter-format-alist)
13505 (ibuffer-cached-filter-formats, ibuffer-compiled-filter-formats):
13506 New variables.
13507 * ibuffer.el (ibuffer): Remove link; the "home page" for ibuffer
13508 is now the Emacs CVS tree.
13509 (ibuffer-formats): Doc fix.
13510 (ibuffer-active-formats-name, ibuffer-current-formats): New functions.
13511 (ibuffer-current-format): Use them.
13512 (ibuffer-recompile-formats, ibuffer-check-formats)
13513 (ibuffer-switch-format, ibuffer-update-title):
13514 Add support for ibuffer-filter-format-alist.
13515 (define-ibuffer-column process): Remove unncessary consing.
13516
13517 * ibuf-macs.el (define-ibuffer-column): Add beginnings of support
13518 for a summary column.
13519
13520 2002-02-03 Andreas Schwab <schwab@suse.de>
13521
13522 * window.el (save-selected-window): Move macro before first use.
13523 (balance-windows): Fix misplaced parenthesis.
13524
13525 2002-02-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13526
13527 * calculator.el (calculator-displayers): Doc fixes.
13528
13529 2002-02-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13530
13531 * menu-bar.el (menu-bar-help-menu): Use different text for tool-tip.
13532 (menu-bar-options-save): Save also the value of `display-time-mode'.
13533 (showhide-date-time): New function.
13534 (menu-bar-showhide-menu): New menu-item "Date and time".
13535
13536 2002-02-03 Eli Zaretskii <eliz@is.elta.co.il>
13537
13538 * mail/rmail.el (rmail): Use find-buffer-visiting instead of
13539 get-file-buffer to check for rmail buffer existence.
13540
13541 * term.el (term-emulate-terminal): Extract proper command string
13542 which is supplied to term-command-hook.
13543
13544 2002-02-03 Richard M. Stallman <rms@gnu.org>
13545
13546 * international/quail.el (quail-help): Don't call help-setup-xref.
13547
13548 * international/mule-cmds.el (describe-input-method):
13549 Call help-setup-xref here.
13550 (describe-current-input-method): Doc fix.
13551
13552 * novice.el (disabled-command-hook): Clarify output text.
13553 Indent the paragraph from the command's doc string.
13554
13555 * dabbrev.el (dabbrev--goto-start-of-abbrev):
13556 Exit loop on beginning of field rather than bobp.
13557
13558 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
13559
13560 * mail/uce.el (uce-reply-to-uce): Prune the headers before copying
13561 the message text into the *mail* buffer, and restore the pruned
13562 state after that.
13563
13564 * mail/rmail.el (rmail-redecode-body): Prune the headers before
13565 looking for X-Coding-System header, and restore the pruned state
13566 before returning.
13567
13568 2002-02-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13569
13570 * cus-edit.el (customize-save-variable): Fix typo in prompt.
13571
13572 These changes integrate new version of flyspell.el from its
13573 maintainer, Manuel Serrano:
13574
13575 * textmodes/flyspell.el (flyspell-issue-message-flag): New user option.
13576 (flyspell-mode-on, flyspell-notify-misspell)
13577 (flyspell-small-region, flyspell-external-point-words)
13578 (flyspell-large-region): Use it
13579 (flyspell-before-incorrect-word-string)
13580 (flyspell-after-incorrect-word-string): New user options.
13581 (make-flyspell-overlay): Use them.
13582 (flyspell-version): New function.
13583 (flyspell-incorrect-face, flyspell-duplicate-face): Adapt face
13584 definitions to use :weight.
13585 (flyspell-insert-function): New user option.
13586 (flyspell-auto-correct-word, flyspell-correct-word)
13587 (flyspell-xemacs-correct): Use it.
13588 (flyspell-define-abbrev): New function.
13589 (flyspell-auto-correct-word, flyspell-correct-word)
13590 (flyspell-xemacs-correct): Use it.
13591 (make-flyspell-overlay): Use `evaporate' property.
13592 (flyspell-auto-correct-word, flyspell-correct-word): Remove overlay.
13593 (flyspell-emacs-popup): Use `session' instead of `accept'.
13594 (flyspell-auto-correct-previous-pos): New variable.
13595 (flyspell-auto-correct-previous-hook)
13596 (flyspell-auto-correct-previous-word): New functions.
13597
13598 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
13599
13600 * novice.el (enable-command): If Emacs was invoked as "emacs -q",
13601 don't alter the user's ~/.emacs.
13602 (disable-command): If user-init-file is nil or does not exist,
13603 default to "~/.emacs" (~/_emacs on DOS and, maybe, Windows).
13604 But don't alter the init file if Emacs was invoked as "emacs -q"
13605
13606 2002-02-01 Stefan Monnier <monnier@cs.yale.edu>
13607
13608 * mail/sendmail.el (mail-mode): Undo half of last change.
13609
13610 * indent.el (indent-for-tab-command): Remove spurious code.
13611
13612 * hi-lock.el (hi-lock-find-patterns): Save restriction.
13613
13614 2002-02-01 Eli Zaretskii <eliz@is.elta.co.il>
13615
13616 * calendar/time-date.el: Moved from lisp/gnus.
13617
13618 * calendar/parse-time.el: Ditto.
13619
13620 2002-01-31 Richard M. Stallman <rms@gnu.org>
13621
13622 * international/iso-acc.el (iso-languages): Fix ", " in French.
13623
13624 * cus-start.el (history-length): Specify customization for it.
13625
13626 * emacs-lisp/debug.el (debugger-setup-buffer):
13627 When an eval-buffer frame was reading from a buffer,
13628 insert indication of the buffer position.
13629 (debugger-frame-number): Ignore ;;;-comment lines in backtrace.
13630 (debugger-frame-clear, debugger-frame): Error on non-frame line.
13631
13632 * simple.el (shell-command-on-region): Err if no mark
13633 before reading the command string.
13634
13635 * hl-line.el (hl-line-highlight, hl-line-unhighlight):
13636 Definitions moved down after hl-line-mode var's definition.
13637
13638 * hilit-chg.el (hilit-chg-fixup): Don't alter overlay if not ours.
13639 (hilit-chg-set-face-on-change): Rename arg.
13640 (hilit-chg-make-ov): Detect error earlier.
13641
13642 * ediff-hook.el: Delete autoload cookies.
13643
13644 * comint.el (comint-scroll-show-maximum-output): Default is t.
13645
13646 * emacs-lisp/bytecomp.el (batch-byte-compile): New arg noforce.
13647 (batch-byte-compile-if-not-done): New function.
13648
13649 * Makefile.in (compile): New target.
13650 (compile-always): Renamed from compile-files.
13651 (compile-after-backup): Renamed from compile.
13652 (bootstrap): Depend on compile-always, not compile-files.
13653
13654 * emulation/pc-select.el (pc-select-save-and-set-mode):
13655 Properly use MODE-VAR.
13656
13657 2002-01-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13658
13659 * menu-bar.el (menu-bar-help-menu): Change menu-item "Show Emacs
13660 Version" to "About Emacs".
13661 (menu-bar-options-save): Add `default-frame-alist'
13662 to saved variables.
13663 (menu-bar-showhide-scroll-bar-menu): Use frame-parameters instead
13664 of the variable `scroll-bar-mode'.
13665
13666 * startup.el (normal-splash-screen, display-splash-screen):
13667 New functions (separated from command-line-1).
13668 (command-line-1): Use them.
13669
13670 2002-01-28 Eli Zaretskii <eliz@is.elta.co.il>
13671
13672 * calendar/calendar.el (generate-calendar-month): Doc fix.
13673
13674 2002-01-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13675
13676 * time.el (display-time-mail-directory): New option.
13677 (display-time-mail-function): Update doc-string.
13678 (display-time-mail-icon): Use XPM image when available.
13679 (display-time-string-forms): Use more descriptive text as
13680 help-echo property.
13681 (display-time-mail-check-directory): New function.
13682 (display-time-update): Use it.
13683
13684 * menu-bar.el (menu-bar-showhide-scroll-bar-menu):
13685 Quote `window-system'.
13686
13687 * tmm.el (tmm-get-keymap): Honour :visible in `menu-item'.
13688 Add Keywords header. Update Commentary section.
13689 Update copyright notice.
13690
13691 * menu-bar.el (menu-bar-scroll-bar-right)
13692 (menu-bar-scroll-bar-left, menu-bar-scroll-bar-none)
13693 (showhide-menu-bar): New functions.
13694 (menu-bar-showhide-menu): New submenu "Show/Hide".
13695 (menu-bar-showhide-scroll-bar-menu): "Scroll-bar" submenu of
13696 "Show/Hide".
13697 Update copyright notice.
13698
13699 2002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
13700
13701 * lazy-lock.el (lazy-lock-mode): Add a reference to jit-lock.
13702
13703 2002-01-26 Evgeny Roubinchtein <evgenyr@cs.washington.edu>
13704
13705 * pc-select.el (pc-selection-mode-hook)
13706 (pc-select-saved-settings-alist, pc-select-map)
13707 (pc-select-saved-global-map, pc-select-key-bindings-alist)
13708 (pc-select-default-key-bindings, pc-select-extra-key-bindings)
13709 (pc-select-meta-moves-sexps-key-bindings)
13710 (pc-select-tty-key-bindings, pc-select-old-M-delete-binding):
13711 New variables.
13712 (pc-select-define-keys, pc-select-restore-keys): New functions.
13713 (pc-select-add-to-alist, pc-select-save-and-set-var)
13714 (pc-select-save-and-set-mode, pc-select-restore-var)
13715 (pc-select-restore-mode): New macros.
13716 (pc-selection-mode): Completely rewrote the body of the function;
13717 the main goal was to make pc-selection-mode "turn-off"-able, like
13718 other minor modes. Use define-minore-mode instead of just a
13719 defun. Store the key bindings into four alists:
13720 pc-select-default-key-bindings, pc-select-extra-key-bindings,
13721 pc-select-meta-moves-sexps-key-bindings, and
13722 pc-select-tty-key-bindings; then have the pc-select-define-keys
13723 function walk those alists instead of calling define-key
13724 repeatedly. When the mode is turned on, set the
13725 keybindings in global-map and remember the old keybindings; when
13726 the mode is turned off, restore the previously-saved keybindings.
13727 (pc-selection-mode defcustom): Reflect the fact that the mode is
13728 now "turn-off"-able.
13729
13730 2002-01-26 Eli Zaretskii <eliz@is.elta.co.il>
13731
13732 * eshell/esh-cmd.el (eshell-eval-command): If eshell-resume-eval
13733 returns t, don't treat that as an error.
13734
13735 2002-01-25 Jason Rumney <jasonr@gnu.org>
13736
13737 * faces.el (face-font-registry-alternatives) [windows-nt]:
13738 Add ms-oemlatin as an alternative for iso8859-1.
13739
13740 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
13741
13742 * pcvs.el (cvs-reread-cvsrc): Distinguish between an empty list of
13743 args and the absence of an entry. Don't add -f each time.
13744
13745 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
13746
13747 * emacs-lisp/cl-seq.el (mismatch): Doc fix.
13748
13749 Support for more than 8 colors on character terminals:
13750
13751 * term/rxvt.el: New file.
13752
13753 * Makefile.in (DONTCOMPILE): Remove term/xterm.el.
13754
13755 * term/xterm.el (xterm-standard-colors): New variable.
13756 (xterm-rgb-convert-to-16bit, xterm-register-default-colors)
13757 (xterm-rxvt-set-background-mode): New functions.
13758 (toplevel): Call xterm-register-default-colors,
13759 xterm-rxvt-set-background-mode, and tty-set-up-initial-frame-faces.
13760 Add support for more keys from xterm's terminfo entry.
13761
13762 * facemenu.el (list-colors-display): If the argument is nil, don't
13763 show more colors that the number returned by display-color-cells.
13764
13765 * term/pc-win.el (msdos-color-values): Reverse the order of the
13766 colors, since tty-color-define now preserves the registration order.
13767
13768 * w32-fns.el (w32-tty-standard-colors): Reverse the order.
13769
13770 * term/tty-colors.el (tty-standard-colors): Reverse the order.
13771 (tty-register-default-colors): New function; code moved from
13772 startup.el's command-line.
13773 (tty-modify-color-alist): Use nconc instead of cons, to preserve
13774 the order the colors where registered.
13775
13776 * frame.el (display-color-cells): Use tty-display-color-cells.
13777
13778 * startup.el (command-line): Call tty-register-default-colors.
13779
13780 2002-01-25 Richard M. Stallman <rms@gnu.org>
13781
13782 * subr.el (remove): Doc fix.
13783
13784 2002-01-24 Richard M. Stallman <rms@gnu.org>
13785
13786 * progmodes/compile.el (compilation-handle-exit):
13787 Add a compilation-handle-exit property to the "finished" message.
13788 (compilation-parse-errors): Stop parsing when that property is seen.
13789
13790 * subr.el (substring-no-properties): New function.
13791 (copy-without-properties): Function deleted.
13792
13793 * term/x-win.el (x-handle-geometry): Put sizes on both
13794 initial-frame-alist and default-frame-alist.
13795
13796 * cus-edit.el (custom-save-all): Bind file-precious-flag to t
13797 for saving .emacs.
13798
13799 * files.el (basic-save-buffer-2): Ignore file-error in delete-file.
13800
13801 * calendar/calendar.el (generate-calendar-month): Doc fix.
13802
13803 2002-01-23 Richard M. Stallman <rms@gnu.org>
13804
13805 * play/tetris.el (tetris): New defgroup.
13806 (tetris-use-glyphs, tetris-use-color, tetris-draw-border-with-glyphs)
13807 (tetris-default-tick-period): Convert to defcustom.
13808 Added * in docstring to indicate user variable.
13809 (tetris-update-speed-function, tetris-mode-hook, tetris-tty-colors)
13810 (tetris-x-colors, tetris-buffer-name, tetris-buffer-width)
13811 (tetris-buffer-height, tetris-width, tetris-height)
13812 (tetris-top-left-x, tetris-top-left-y): Convert to defcustom.
13813
13814 2002-01-22 Stefan Monnier <monnier@cs.yale.edu>
13815
13816 * mail/sendmail.el (mail-mode): ">" is not a supercite-style prefix
13817 and is already matched by adaptive-fill-regexp.
13818
13819 2002-01-22 Richard M. Stallman <rms@gnu.org>
13820
13821 * bindings.el (mode-line-copied-mode-name): New variable.
13822 (mode-line-mode-name): Don't modify mode-name itself!
13823 Instead, make a copy and reuse it.
13824
13825 * subr.el (copy-without-properties): New function.
13826
13827 * progmodes/sh-script.el (sh-set-shell): Doc fix.
13828
13829 * net/ange-ftp.el (ange-ftp-canonize-filename): Avoid duplicate
13830 slash if DIR is just slash.
13831
13832 * progmodes/perl-mode.el (perl-mode-abbrev-table): Restore definition.
13833
13834 2002-01-21 Richard M. Stallman <rms@gnu.org>
13835
13836 * emacs-lisp/copyright.el (copyright-regexp): Fix previous change.
13837
13838 * net/ange-ftp.el (ange-ftp-bs2000-posix-hook-installed):
13839 Move defvar up.
13840
13841 * textmodes/ispell.el (ispell-help): Clean up echo area if user quits.
13842
13843 * ibuffer.el: Don't require ibuf-ext at load time.
13844 (ibuffer): Require ibuf-ext here.
13845
13846 2002-01-21 Francesco Potort\e,Al\e(B <pot@gnu.org>
13847
13848 * generic-x.el (apache-conf-generic-mode): Highlight the first
13849 word in a line even if preceded by blanks.
13850
13851 2002-01-21 Richard M. Stallman <rms@gnu.org>
13852
13853 * window.el (window-body-height): Handle minibuffer window specially.
13854 Otherwise, don't return less than 1.
13855
13856 2002-01-20 Thomas Dorner <Thomas.Dorner@start.de>
13857
13858 * ange-ftp.el: Added support for BS2000, and for raw ftp
13859 login commands (needed in some circumstances).
13860 (ange-ftp-raw-login): New custom var.
13861 (ange-ftp-normal-login): Perform login with raw ftp commands, if
13862 ange-ftp-raw-login is set and account password is needed.
13863 (ange-ftp-host-type, ange-ftp-guess-host-type): Handle BS2000 hosts.
13864 (ange-ftp-bs2000-filename-pubset-regexp)
13865 (ange-ftp-bs2000-filename-username-regexp)
13866 (ange-ftp-bs2000-filename-prefix-regexp)
13867 (ange-ftp-bs2000-name-template): New consts.
13868 (ange-ftp-bs2000-short-filename-regexp)
13869 (ange-ftp-bs2000-fix-name-regexp-reverse)
13870 (ange-ftp-bs2000-fix-name-regexp): New consts.
13871 (ange-ftp-bs2000-special-prefix): New custom var.
13872 (ange-ftp-fix-name-for-bs2000)
13873 (ange-ftp-fix-dir-name-for-bs2000): New funs.
13874 (ange-ftp-bs2000-host-regexp, ange-ftp-bs2000-posix-host-regexp)
13875 (ange-ftp-bs2000-posix-hook-installed): New vars.
13876 (ange-ftp-parse-bs2000-filename, ange-ftp-parse-bs2000-listing)
13877 (ange-ftp-bs2000-host, ange-ftp-bs2000-posix-host)
13878 (ange-ftp-add-bs2000-host, ange-ftp-add-bs2000-posix-host): New funs.
13879 (ange-ftp-bs2000-filename-regexp): New const.
13880 (ange-ftp-bs2000-additional-pubsets): New custom var.
13881 (ange-ftp-bs2000-cd-to-posix): New fun.
13882
13883 2002-01-20 Colin Walters <walters@verbum.org>
13884
13885 * ibuffer.el: (toplevel) Require `ibuf-ext', which is now compiled
13886 with `byte-compile-dynamic'.
13887 (ibuffer-default-directory, toplevel): Doc files.
13888
13889 2002-01-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13890
13891 * tempo.el (tempo-define-template): Doc fix.
13892
13893 * scroll-bar.el (scroll-bar-mode): Make argument optional.
13894
13895 2002-01-20 Jason Rumney <jasonr@gnu.org>
13896
13897 * w32-vars.el: New file.
13898
13899 * loadup.el [windows-nt]: Load it.
13900
13901 * w32-fns.el, term/w32-win.el: Move user variables to w32-vars.el
13902 and make them defcustoms.
13903
13904 * term/w32-win.el (mouse-set-font): Use w32-list-proportional-fonts.
13905
13906 2002-01-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13907
13908 * language/tibet-util.el (tibetan-decompose-region)
13909 (tibetan-decompose-string): Fix typo in docstring.
13910
13911 * ruler-mode.el (ruler-mode): New keyword. Fix :version.
13912
13913 2002-01-18 Richard M. Stallman <rms@gnu.org>
13914
13915 * comint.el (comint-redirect-send-command-to-process):
13916 Restore previous current buffer.
13917
13918 * window.el (window-body-height): New function.
13919
13920 2002-01-18 Zoltan Kemenczy <kemenczy@rogers.com>
13921
13922 * gud.el (easy-mmode-defmap): Enable "Up Stack", "Down Stack", and
13923 "Finish Function" menu map entries for jdb mode.
13924 (gud-jdb-use-classpath): New customization variable.
13925 (gud-jdb-command-name): Add customization.
13926 (gud-jdb-classpath, gud-marker-acc-max-length): New variables.
13927 (gud-jdb-classpath-string): New variable.
13928 (gud-jdb-source-files, gud-jdb-class-source-alist): Add doc strings.
13929 (gud-jdb-build-source-files-list): Likewise.
13930 (gud-jdb-massage-args): Record any command argument classpath
13931 string in `gud-jdb-classpath-string'.
13932 (gud-jdb-lowest-stack-level): New function, finds bottom of current
13933 java call stack in jdb output.
13934 (gud-jdb-find-source-using-classpath, gud-jdb-find-source)
13935 (gud-jdb-parse-classpath-string): New functions.
13936 (gud-jdb-marker-filter): Search/detect classpath information in
13937 jdb's output. marker regexp updated to match oldjdb and jdb output
13938 formats. Expand search for source files to include new/old methods
13939 using new functions above. Do not allow `gud-marker-acc' to grow
13940 without bound.
13941 (jdb): Set classpath information (if available) as jdb is started.
13942 Change `gud-break' and `gud-remove'
13943 to use new %c ("class") escape in format strings.
13944 Add `gud-finish', `gud-up', `gud-down' command string functions, and
13945 add them to the local menu map. Update `comint-prompt-regexp' for
13946 jdb and oldjdb. If attaching to an already running java VM and
13947 configured to use classpath, send command to query for classpath,
13948 else use previous method for finding and parsing java
13949 sources. Set `gud-jdb-find-source' function accordingly.
13950 (gud-mode): Doc fix.
13951 (gud-format-command): Add support for new %c ("class") escape.
13952 (gud-find-class): New function in support of %c escape.
13953
13954 2002-01-17 Richard M. Stallman <rms@gnu.org>
13955
13956 * ibuf-ext.el: Enable byte-compile-dynamic.
13957
13958 2002-01-17 Jason Rumney <jasonr@gnu.org>
13959
13960 * term/w32-win.el: Restore conditional require of fontset.
13961
13962 2002-01-16 Richard M. Stallman <rms@gnu.org>
13963
13964 * mouse.el (mouse-drag-region-1): Renamed from mouse-drag-region,
13965 more or less.
13966 (mouse-drag-region): New function. For a click in the echo area,
13967 show *Messages*.
13968
13969 * ibuf-ext.el: Delete the autoloads for functions defined with
13970 ibuffer-specific commands.
13971
13972 * help.el (describe-distribution): Really call view-file.
13973
13974 * net/ange-ftp.el (ange-ftp-passive-mode): New arg PROC.
13975 (ange-ftp-get-process): Pass that arg.
13976
13977 * comint.el (comint-simple-send): Fix previous change.
13978
13979 * net/telnet.el (telnet-simple-send): Fix previous change.
13980
13981 * progmodes/sql.el (sql-escape-newlines-and-send)
13982 (sql-query-placeholders-and-send): Fix previous change.
13983
13984 2002-01-16 Colin Walters <walters@verbum.org>
13985
13986 * ibuf-ext.el, ibuf-macs.el, ibuffer.el (toplevel): Remove X-RCS,
13987 URL, Compatibility headers. Update copyright notice.
13988 * ibuf-macs.el (toplevel): Require `cl' when compiling.
13989
13990 2002-01-16 Andrew Choi <akochoi@cse.cuhk.edu.hk>
13991
13992 * startup.el (command-line): Set EOL mnemonics for the Mac.
13993
13994 2002-01-16 Andreas Schwab <schwab@suse.de>
13995
13996 * mail/feedmail.el (feedmail): Fix :link spec.
13997
13998 2002-01-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13999
14000 * net/ldap.el (ldap-ldapsearch-prog): Default to OpenLDAP version
14001 2 ldapsearch.
14002
14003 * net/eudc.el: New maintainer. Change author's address.
14004 (eudc-pre-select-window-configuration, eudc-insertion-marker):
14005 Variables removed.
14006 (eudc-insert-selected): Function removed.
14007 (eudc-select): Reimplemented.
14008 (eudc-expand-inline): Delete the strings only after its expansion
14009 is chosen not before.
14010
14011 * net/eudcb-ph.el (eudc-ph-open-session): Remove XEmacs case.
14012 Minor coding style fixes.
14013
14014 * net/eudcb-ldap.el: New maintainer. Change author's address.
14015 (eudc-attribute-display-method-alist): Display mail with
14016 eudc-display-mail.
14017
14018 * net/eudcb-bbdb.el, net/eudc-export.el, net/eudc-hotlist.el,
14019 * net/eudc-vars.el: New maintainer. Change author's address.
14020
14021 * net/eudc-bob.el: New maintainer. Change author's address.
14022 (eudc-bob-mail-keymap): New keymap for e-mail addresses.
14023 (eudc-display-mail): New function.
14024 (eudc-bob-play-sound-at-point): Remove XEmacs case.
14025
14026 2002-01-15 Richard M. Stallman <rms@gnu.org>
14027
14028 * emacs-lisp/autoload.el (make-autoload):
14029 Don't handle define-ibuffer-column, define-ibuffer-filter,
14030 define-ibuffer-sorter, and define-ibuffer-op.
14031
14032 2002-01-14 Richard M. Stallman <rms@gnu.org>
14033
14034 * calendar/calendar.el (diary-date-forms): Doc fix.
14035
14036 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
14037
14038 * startup.el (command-line): Register the default tty colors even
14039 if the terminal doesn't seem to support colors.
14040 <tty-long-option-alist>: New option --color.
14041 (tty-handle-args): Parse the --color arg.
14042
14043 * term/tty-colors.el (tty-color-mode-alist): New variable.
14044
14045 2002-01-14 Stefan Monnier <monnier@cs.yale.edu>
14046
14047 * net/ange-ftp.el (ange-ftp-root-dir-p): New function.
14048 (ange-ftp-file-name-all-completions, ange-ftp-file-name-completion):
14049 Use it.
14050 (ange-ftp-hook-function): Preserve match-data.
14051 (ange-ftp-insert-directory): Typo.
14052 (ange-ftp-shell-command): Check if regexp matched.
14053
14054 2002-01-13 Richard M. Stallman <rms@gnu.org>
14055
14056 * international/mule-cmds.el: help-map bindings moved to help.el.
14057
14058 * help.el (view-echo-area-messages): New function.
14059 (help-map): Add `e' binding. Delete obsolete `d' binding.
14060 Change old Info bindings C-f, C-k and C-i to F, K, S.
14061 Move view-emacs-FAQ from F to C-f.
14062 Move view-emacs-problems from P to C-e.
14063 Bindings moved here from mule-cmds.el.
14064 C-l binding for describe-language-environment deleted
14065 (help-for-help): Update for all these changes.
14066
14067 * emacs-lisp/copyright.el (copyright-regexp): Make (C) optional.
14068
14069 2002-01-13 Dave Love <fx@gnu.org>
14070
14071 * emacs-lisp/copyright.el: Doc fixes.
14072 (copyright-regexp): Add Latin-9 copyright sign.
14073 Match comment delimiters in year lists.
14074 (copyright-current-year): Initialize to load-time year.
14075
14076 2002-01-13 Andreas Schwab <schwab@suse.de>
14077
14078 * dired-aux.el (dired-do-shell-command): Doc fix.
14079
14080 2002-01-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14081
14082 * startup.el (command-line-x-option-alist): New options "-fs",
14083 "-fw", "-fh", "--fullscreen", "--fullwidth", and "--fullheight".
14084
14085 * term/x-win.el (x-handle-initial-switch): New function.
14086
14087 2002-01-13 Colin Walters <walters@debian.org>
14088
14089 * emacs-lisp/autoload.el (make-autoload): Handle define-ibuffer-column,
14090 define-ibuffer-filter, define-ibuffer-sorter, and define-ibuffer-op.
14091
14092 * emacs-lisp/lisp-mode.el (toplevel): Ditto.
14093
14094 * ibuffer.el, ibuf-ext.el, ibuf-macs.el: New files.
14095
14096 2002-01-12 Richard M. Stallman <rms@gnu.org>
14097
14098 * net/browse-url.el (browse-url-grail):
14099 Use browse-url-maybe-new-window.
14100
14101 * net/telnet.el (telnet-simple-send):
14102 Handle comint-input-sender-no-newline like comint-simple-send.
14103
14104 * progmodes/sql.el (sql-query-placeholders-and-send):
14105 Handle comint-input-sender-no-newline like comint-simple-send.
14106 (sql-escape-newlines-and-send): Likewise.
14107
14108 * comint.el (comint-input-sender): Doc fix.
14109 (comint-input-sender-no-newline): New variable.
14110 (comint-simple-send): If comint-input-sender-no-newline,
14111 don't output newline, but maybe send eof.
14112 (comint-send-input): New arg NO-NEWLINE.
14113 (comint-send-eof): Call comint-send-eof with NO-NEWLINE.
14114
14115 2002-01-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14116
14117 * textmodes/flyspell.el (flyspell-check-pre-word-p):
14118 Prevent delaying when executing keyboard macros.
14119
14120 2002-01-12 Richard M. Stallman <rms@gnu.org>
14121
14122 * simple.el (line-move): If we can't move enough lines,
14123 go to beginning or end of line.
14124
14125 * help-mode.el (help-xref-go-back): Restore POSITION in proper buffer
14126 and proper window.
14127
14128 * help.el (describe-mode): Call help-setup-xref in the help buffer.
14129 Switch buffers only after calling `help-buffer'.
14130
14131 * dired-aux.el (dired-shell-stuff-it): Substitute for * or ?
14132 only when they are surrounded by whitespace.
14133 Use dired-mark-separator when adding one file name to a command.
14134 (dired-do-shell-command): Verify that * is surrounded by whitespace.
14135 Ask for confirmation if * or ? is not surrounded by whitespace.
14136 (dired-bunch-files): Re-reverse the partial file list when it is used.
14137
14138 2002-01-12 Richard M. Stallman <rms@gnu.org>
14139
14140 * comint.el (comint-dynamic-list-completions): Repeating the command
14141 after displaying a completion list scrolls the list.
14142
14143 2002-01-12 Eli Zaretskii <eliz@is.elta.co.il>
14144
14145 * files.el (find-file-noselect): Don't consider a buffer as
14146 visiting a file literally if it is in hexl-mode.
14147
14148 * faces.el (minibuffer-prompt): A better face definition for MS-DOS.
14149
14150 2002-01-11 Richard M. Stallman <rms@gnu.org>
14151
14152 * startup.el (initial-scratch-message): Fix custom type, add group.
14153
14154 * mail/rmail.el (rmail-decode-babyl-format): Disable undo
14155 around the decode-coding-region call.
14156
14157 * emacs-lisp/lisp.el (lisp-complete-symbol): Repeating the command
14158 after displaying a completion list scrolls the list.
14159
14160 2002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
14161
14162 * version.el (emacs-version): Bump to 21.2.50.
14163
14164 2002-01-10 Thien-Thi Nguyen <ttn@giblet.glug.org>
14165
14166 * play/zone.el (zone-timeout): New var.
14167 (zone-hiding-modeline): New macro.
14168 (zone-call): New func.
14169
14170 (zone): Init `modeline-hidden-level' symbol property.
14171 Use `zone-call' instead of `funcall'.
14172
14173 (zone-pgm-whack-chars): Use `make-string' (fix bug introduced in 2001-10-26T20:11:25Z!monnier@iro.umontreal.ca).
14174
14175 (zone-pgm-stress): Use `zone-hiding-modeline'.
14176
14177 (zone-pgm-stress-destress): New zone program.
14178
14179 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
14180
14181 * faces.el (minibuffer-prompt): Special face definition for MS-DOS.
14182
14183 2002-01-09 Richard M. Stallman <rms@gnu.org>
14184
14185 * startup.el (fancy-splash-screens): Set tab-width in correct buffer.
14186
14187 2002-01-09 Michael Kifer <kifer@cs.stonybrook.edu>
14188
14189 * viper.el (viper-set-hooks): Zap viper-unfriendly bindings in
14190 flyspell-mouse-map.
14191
14192 2002-01-08 Richard M. Stallman <rms@gnu.org>
14193
14194 * emacs-lisp/regexp-opt.el (regexp-opt): Bind max-specpdl-size.
14195
14196 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Fix custom type.
14197
14198 * textmodes/flyspell.el (flyspell-mode-line-string): Fix custom type.
14199
14200 2002-01-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14201
14202 * progmodes/ada-mode.el (ada-initialize-properties, ada-mode):
14203 Do not use make-local-hook.
14204
14205 2002-01-08 Eli Zaretskii <eliz@is.elta.co.il>
14206
14207 * international/quail.el (quail-start-translation)
14208 (quail-start-conversion): Bind last-command-event, last-command,
14209 and this-command in the first let. This fixes the change from
14210 2000-08-30.
14211
14212 2002-01-08 Michael Kifer <kifer@cs.stonybrook.edu>
14213
14214 * ediff-hook.el: Add an autoload cookie.
14215
14216 2002-01-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14217
14218 * net/eudcb-ph.el, net/ldap.el: New maintainer. New e-mail
14219 address of the author.
14220
14221 2002-01-08 Richard M. Stallman <rms@gnu.org>
14222
14223 * replace.el (occur-mode-goto-occurrence-other-window): New command.
14224 (occur-mode-map): Bind `o' to that.
14225
14226 2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
14227
14228 * viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
14229 new macro that replaces viper-emacs-p and viper-xemacs-p in many
14230 cases. Used to reduce the number of warnings.
14231
14232 * viper-cmd.el: Use viper-cond-compile-for-xemacs-or-emacs.
14233 (viper-standard-value): Move here from viper.el.
14234 (viper-set-unread-command-events): Move to viper-util.el
14235 (viper-check-minibuffer-overlay): Make sure
14236 viper-minibuffer-overlay is moved to cover the entire input field.
14237
14238 * viper-util.el: Use viper-cond-compile-for-xemacs-or-emacs.
14239 (viper-read-key-sequence, viper-set-unread-command-events)
14240 (viper-char-symbol-sequence-p, viper-char-array-p): Moved here.
14241
14242 * viper-ex.el: Use viper-cond-compile-for-xemacs-or-emacs.
14243
14244 * viper-keym.el: Use viper-cond-compile-for-xemacs-or-emacs.
14245
14246 * viper-mous.el: Use viper-cond-compile-for-xemacs-or-emacs.
14247
14248 * viper-macs.el (viper-char-array-p, viper-char-symbol-sequence-p)
14249 (viper-event-vector-p): Move to viper-util.el
14250
14251 * viper.el (viper-standard-value): Move to viper-cmd.el.
14252 Use viper-cond-compile-for-xemacs-or-emacs.
14253
14254 * ediff-help.el: Use ediff-cond-compile-for-xemacs-or-emacs.
14255
14256 * ediff-hook.el: Use ediff-cond-compile-for-xemacs-or-emacs.
14257
14258 * ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs):
14259 New macro designed to be used in many places where ediff-emacs-p or
14260 ediff-xemacs-p was previously used. Reduces the number of warnings.
14261 Use ediff-cond-compile-for-xemacs-or-emacs in many places in lieu
14262 of ediff-xemacs-p.
14263 (ediff-make-current-diff-overlay, ediff-highlight-diff-in-one-buffer)
14264 (ediff-convert-fine-diffs-to-overlays, ediff-empty-diff-region-p)
14265 (ediff-whitespace-diff-region-p, ediff-get-region-contents):
14266 Move to ediff-util.el.
14267 (ediff-event-key): Moved here.
14268
14269 * ediff-merge.el: Got rid of unreferenced variables.
14270
14271 * ediff-mult.el: Use ediff-cond-compile-for-xemacs-or-emacs.
14272
14273 * ediff-util.el: Use ediff-cond-compile-for-xemacs-or-emacs.
14274 (ediff-cleanup-mess): Improve the way windows are set up after
14275 quitting ediff.
14276 (ediff-janitor): Use ediff-dispose-of-variant-according-to-user.
14277 (ediff-dispose-of-variant-according-to-user): New function
14278 designed to be smarter and also understands indirect buffers.
14279 (ediff-highlight-diff-in-one-buffer)
14280 (ediff-unhighlight-diff-in-one-buffer)
14281 (ediff-unhighlight-diffs-totally-in-one-buffer)
14282 (ediff-highlight-diff, ediff-highlight-diff)
14283 (ediff-unhighlight-diff, ediff-unhighlight-diffs-totally)
14284 (ediff-empty-diff-region-p, ediff-whitespace-diff-region-p)
14285 (ediff-get-region-contents, ediff-make-current-diff-overlay):
14286 Moved here.
14287 (ediff-format-bindings-of): New function by Hannu Koivisto
14288 <azure@iki.fi>.
14289 (ediff-setup): Make sure the merge buffer is always widened and
14290 modifiable.
14291 (ediff-write-merge-buffer-and-maybe-kill): Refuse to write the
14292 result of a merge into a file visited by another buffer.
14293 (ediff-arrange-autosave-in-merge-jobs): Check if the merge file
14294 is visited by another buffer and ask to save/delete that buffer.
14295 (ediff-verify-file-merge-buffer): New function to do the above.
14296
14297 * ediff-vers.el: Load ediff-init.el at compile time.
14298
14299 * ediff-wind.el: Use ediff-cond-compile-for-xemacs-or-emacs.
14300
14301 * ediff.el (ediff-windows, ediff-regions-wordwise)
14302 (ediff-regions-linewise): Use indirect buffers to improve
14303 robustness and make it possible to compare regions of the same
14304 buffer (even overlapping regions).
14305 (ediff-clone-buffer-for-region-comparison)
14306 (ediff-clone-buffer-for-window-comparison): New functions.
14307 (ediff-files-internal): Refuse to compare identical files.
14308 (ediff-regions-internal): Get rid of the warning about comparing
14309 regions of the same buffer.
14310
14311 * ediff-diff.el (ediff-convert-fine-diffs-to-overlays): Moved here.
14312 Plus the following fixes courtesy of Dave Love: Doc fixes.
14313 (ediff-word-1): Use word class and move - to the
14314 front per regexp documentation.
14315 (ediff-wordify): Bind forward-word-function outside loop.
14316 (ediff-copy-to-buffer): Use insert-buffer-substring rather than
14317 consing buffer contents.
14318 (ediff-goto-word): Move syntax table setting outside loop.
14319
14320 2002-01-07 Richard M. Stallman <rms@gnu.org>
14321
14322 * dired.el (dired-copy-filename-as-kill): Call kill-append
14323 if following a kill command.
14324
14325 * help-fns.el (describe-variable, describe-function):
14326 Do save-excursion.
14327
14328 2002-01-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14329
14330 * net/ldap.el (ldap-search-internal): Skip error message from
14331 ldapsearch. Allow listing attribute names only. Do not open
14332 non-existent files.
14333
14334 * net/eudcb-ldap.el (eudc-ldap-get-field-list): Do not try to
14335 call non-existent function.
14336
14337 * net/eudc.el (top-level): Revert previous change.
14338
14339 * net/net-utils.el (nslookup-font-lock-keywords): Defvar font-lock
14340 variables to prevent warning from byte-compiler.
14341
14342 * net/eudc.el (top-level): Use eudc-xemacs-p instead of
14343 string-match on emacs-version again.
14344
14345 * enriched.el (enriched-make-annotation): Fix the change from
14346 2002-01-05.
14347 (enriched-handle-display-prop): Return proper values.
14348
14349 * net/eudcb-ldap.el (eudc-attribute-display-method-alist):
14350 Use proper attribute name labeledUri instead of deprecated labeledUrl.
14351
14352 2002-01-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14353
14354 * net/eudc-hotlist.el (eudc-edit-hotlist): Avoid error when
14355 editing an empty hotlist.
14356
14357 * net/ldap.el (ldap-search-internal): Make the buffer unibyte.
14358 Use buffer-string instead of buffer-substring for the whole buffer.
14359
14360 * net/eudc-vars.el (eudc-external-viewers): Do not use xv, it is
14361 not free.
14362
14363 * net/eudc-bob.el (eudc-bob-can-display-inline-images)
14364 (eudc-bob-display-jpeg): Use fboundp instead of boundp.
14365 (eudc-bob-save-object): Make the buffer unibyte.
14366 (eudc-bob-generic-keymap): Add new keybinding `!' to pipe the
14367 object to external program.
14368
14369 2002-01-05 Andre Spiegel <spiegel@gnu.org>
14370
14371 * vc.el (vc-branch-part): Return nil if there's no `.'
14372 (vc-default-previous-version): Renamed from vc-previous-version.
14373 New args BACKEND and FILE. Return nil for revision numbers
14374 without a `.'
14375 (vc-version-diff): Call vc-BACKEND-previous-version.
14376 (vc-steal-lock): Steal lock before composing mail, so that no mail
14377 is sent when the stealing goes wrong. And we'll actually see the
14378 error in that case now.
14379 (vc-finish-steal): Removed.
14380
14381 * vc-rcs.el (vc-rcs-steal-lock): Do a real checkout after stealing
14382 the lock, so that we see expanded headers.
14383 (vc-rcs-trunk-p, vc-rcs-branch-part, vc-rcs-branch-p)
14384 (vc-rcs-minor-part, vc-rcs-previous-version): Removed. These are
14385 available from vc.el. Updated all callers.
14386
14387 2002-01-05 Richard M. Stallman <rms@gnu.org>
14388
14389 * enriched.el (enriched-make-annotation): Doc fix.
14390
14391 * format.el (format-replace-strings, format-subtract-regions)
14392 (format-annotate-region, format-annotate-location)
14393 (format-annotate-atomic-property-change)
14394 (format-annotate-single-property-change): Doc fixes.
14395
14396 2002-01-05 Jason Rumney <jasonr@gnu.org>
14397
14398 * term/w32-win.el: Require fontset unconditionally.
14399 (w32-handle-scroll-bar-event): Remove.
14400
14401 2002-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
14402
14403 * emacs-lisp/copyright.el (copyright-regexp): Allow multi-line
14404 copyrights to be updated.
14405
14406 2002-01-04 Eli Zaretskii <eliz@is.elta.co.il>
14407
14408 * textmodes/texinfo.el (texinfo-insert-@end): Fix the change from
14409 2001-10-24.
14410
14411 * mail/sendmail.el (mail-recover-1, mail-recover): Doc fix.
14412
14413 2002-01-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14414
14415 * net/ldap.el (ldap-host-parameters-alist): Remove duplicated entry.
14416 (ldap-ignore-attribute-codings): Change the default value to allow
14417 encoding/decoding of attributes.
14418 (ldap-coding-system): Use UTF-8 as the coding-system. Doc fix.
14419
14420 2002-01-03 Richard M. Stallman <rms@gnu.org>
14421
14422 * files.el (basic-save-buffer): Undo previous change.
14423
14424 * calendar/diary-lib.el (diary-block): Doc fix.
14425
14426 * custom.el (defcustom): Fix syntax of previous change.
14427
14428 2002-01-03 Per Abrahamsen <abraham@dina.kvl.dk>
14429
14430 * custom.el (defcustom): Documented :tag, :link and :load.
14431
14432 2002-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14433
14434 * mail/sendmail.el (mail-recover-1): New function.
14435 (mail-recover): Switch to the *mail* buffer right away.
14436 Use buffer-auto-save-file-name instead of calling
14437 make-auto-save-file-name. Call dired-noselect instead of invoking
14438 `ls' directly. Bind coding-system-for-read to emacs-mule-unix
14439 before reading the auto-save file. If the buffer's auto-save file
14440 does not exist, call mail-recover-1 to allow recovery from past
14441 auto-saved drafts.
14442
14443 2002-01-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14444
14445 * time.el (display-time-load-average-threshold): Fix defcustom
14446 (add type and group).
14447
14448 * net/ange-ftp.el (ange-ftp-shell-command): Remove port
14449 specification from the hostname.
14450
14451 2002-01-02 Richard M. Stallman <rms@gnu.org>
14452
14453 * facemenu.el (facemenu-active-faces):
14454 Use face-attributes-as-vector, not face-attributes-vector.
14455
14456 2002-01-02 Chris Hanson <cph@aarau.ai.mit.edu>
14457
14458 * xscheme.el: Eleven years of updates on a private copy.
14459
14460 Extensive changes to support multiple xscheme buffers:
14461 (run-scheme): Break up into new functions to facilitate starting
14462 processes in other buffers.
14463 (xscheme-start, xscheme-read-command-line): New functions.
14464 (start-scheme, select-scheme)
14465 (default-xscheme-runlight)
14466 (global-set-scheme-interaction-buffer)
14467 (local-set-scheme-interaction-buffer)
14468 (local-clear-scheme-interaction-buffer)
14469 (exit-scheme-interaction-mode)
14470 (verify-xscheme-buffer): New functions.
14471 (xscheme-process-name, xscheme-buffer-name)
14472 (xscheme-runlight): New internal vars.
14473 (default-xscheme-runlight): New const.
14474 (xscheme-start-process): Add args for the process/buffer names.
14475 (reset-scheme): Pass process/buffer names.
14476 (scheme-interaction-mode): Initialize new local vars.
14477 (reset-scheme, xscheme-send-string-2, xscheme-process-running-p)
14478 (xscheme-select-process-buffer, xscheme-process-buffer)
14479 (xscheme-send-region, xscheme-send-char, xscheme-send-interrupt)
14480 (xscheme-goto-output-point, xscheme-write-message-1): Use new
14481 var xscheme-process-name.
14482 (xscheme-start-process): Initialize xscheme-process-name and
14483 xscheme-buffer-name in the process buffer. Pass buffer name to
14484 xscheme-modeline-initialize.
14485 (xscheme-modeline-initialize): Add argument to specify buffer name
14486 for mode-line vars.
14487 (xscheme-process-sentinel): Make sure sentinel is run in the
14488 process buffer so it sees its local vars.
14489 (xscheme-process-filter-initialize, xscheme-set-runlight):
14490 More elaborate logic to handle multiple-buffer mode lines.
14491
14492 (xscheme-enter-input-wait): Re-enable control-G handler upon
14493 entering input wait.
14494
14495 (scheme-interaction-mode): Add arg to preserve local vars.
14496 (xscheme-enter-interaction-mode)
14497 (xscheme-enter-debugger-mode): Preserve local vars.
14498 (xscheme-start-process): Clobber local vars.
14499
14500 (scheme-interaction-mode-commands): Allow end user to add commands
14501 to scheme-interaction-mode keymap.
14502 (scheme-interaction-mode-commands-alist): New variable.
14503
14504 (xscheme-send-string): Don't use insert-before-markers.
14505
14506 Implement a per-buffer kill ring:
14507 (xscheme-insert-expression)
14508 (xscheme-rotate-yank-pointer, xscheme-yank)
14509 (xscheme-yank-pop, xscheme-yank-push): New functions.
14510 (xscheme-expressions-ring)
14511 (xscheme-expressions-ring-yank-pointer)
14512 (xscheme-expressions-ring-max): New variables.
14513 (xscheme-send-string-1): Call xscheme-insert-expression to save
14514 expression in ring.
14515 (xscheme-yank-previous-send): Now an alias for xscheme-yank.
14516 (xscheme-previous-send): Deleted variable.
14517
14518 (xscheme-send-string-2, xscheme-send-char, xscheme-send-proceed)
14519 (xscheme-send-control-g-interrupt): Use process-send-string rather
14520 than send-string.
14521
14522 (xscheme-send-region): Insert a newline after an expression that
14523 is submitted in the interaction buffer, for consistency with
14524 recent changes to Edwin.
14525
14526 (xscheme-delete-output): New function mimics comint-delete-output.
14527 (xscheme-last-input-end): New internal variable.
14528 (xscheme-process-filter-output): Update xscheme-last-input-end.
14529
14530 (xscheme-send-control-g-interrupt): Make sure that
14531 xscheme-control-g-disabled-p is looked up in the right buffer.
14532
14533 (xscheme-enable-control-g): Clear C-g message if visible.
14534 (xscheme-control-g-message-string): New internal var.
14535 (xscheme-send-control-g-interrupt): Use new var.
14536
14537 (xscheme-send-control-g-interrupt, xscheme-send-interrupt):
14538 Delay after sending interrupt in order to work around race condition.
14539
14540 (xscheme-send-control-g-interrupt, xscheme-send-interrupt)
14541 (xscheme-send-char): Use xscheme-send-char rather than send-string
14542 to send single char.
14543
14544 (xscheme-process-filter, xscheme-process-filter-alist):
14545 Add support for evaluating expressions outside of the call-excursion.
14546 (xscheme-process-filter:string-action-noexcursion): New func.
14547
14548 (xscheme-write-value): Change output string to match that used by
14549 Edwin.
14550
14551 (xscheme-coerce-prompt): Don't write a space after a command
14552 prompt. The PROMPT-FOR-COMMAND- procedures will take care of this
14553 for us.
14554
14555 (reset-scheme): Delete process after killing it.
14556
14557 2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
14558
14559 * bindings.el (function-key-map): Don't bind shifted keypad
14560 numeric keys.
14561
14562 2002-01-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14563
14564 * enriched.el (enriched-handle-display-prop): Remove unused variables.
14565 (enriched-mode): Doc fix.
14566
14567 2002-01-02 Eli Zaretskii <eliz@is.elta.co.il>
14568
14569 * international/ucs-tables.el (ucs-8859-8-alist): Comment away
14570 Hebrew points.
14571
14572 2002-01-01 Richard M. Stallman <rms@gnu.org>
14573
14574 * jka-compr.el (jka-compr-write-region): If START = nil, use whole buf.
14575
14576 2001-12-31 Richard M. Stallman <rms@gnu.org>
14577
14578 * comint.el, cus-edit.el, diff-mode.el, enriched.el, font-lock.el:
14579 * generic-x.el, info.el, log-view.el, pcvs-info.el, speedbar.el:
14580 * wid-edit.el, woman.el, calendar/calendar.el, textmodes/flyspell.el:
14581 * emulation/viper-init.el, eshell/em-ls.el, progmodes/antlr-mode.el:
14582 * progmodes/cperl-mode.el, progmodes/idlwave.el:
14583 * progmodes/sh-script.el, progmodes/vhdl-mode.el:
14584 Adapt face definitions to use :weight and :slant.
14585
14586 * ps-print.el (ps-font-lock-face-attributes): Use :weight and :slant.
14587
14588 * cus-edit.el (custom-face-edit-fix-value): Delete `assert' call.
14589
14590 * font-lock.el (initializing from font-lock-face-attributes):
14591 Use :weight and :slant, not :bold and :italic.
14592
14593 2001-12-31 Per Abrahamsen <abraham@dina.kvl.dk>
14594
14595 * cus-edit.el (custom-face-edit-fix-value): New function.
14596 (custom-face-edit): Use it, to convert :italic and :bold to new forms.
14597
14598 2001-12-30 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14599
14600 * progmodes/octave-mod.el (octave-abbrev-table):
14601 * progmodes/idlwave.el (idlwave-mode-abbrev-table):
14602 * progmodes/fortran.el (fortran-mode-abbrev-table):
14603 * progmodes/f90.el (f90-mode-abbrev-table):
14604 * progmodes/vhdl-mode.el (vhdl-mode-abbrev-table-init):
14605 * progmodes/sql.el (sql-mode-abbrev-table): Mark all the
14606 predefined abbrevs as "system" abbrevs.
14607
14608 2001-12-30 Richard M. Stallman <rms@gnu.org>
14609
14610 * info.el (Info-fontify-node): For a **** underline line, put the
14611 invisible and intangible props on the following newline, but not
14612 on the previous newline or the last char of the previous line.
14613
14614 * faces.el (face-set-after-frame-default): Don't change `default' face.
14615
14616 * faces.el (minibuffer-prompt): Adopt some default colors.
14617
14618 * replace.el (query-replace-read-args): Immediate error if read-only.
14619
14620 * textmodes/makeinfo.el (makeinfo-compilation-sentinel):
14621 Display the output buffer in a more intelligent way.
14622
14623 2001-12-30 Eli Zaretskii <eliz@is.elta.co.il>
14624
14625 * ls-lisp.el (insert-directory): Modify the "total" line wording,
14626 in accordance with files.el's insert-directory.
14627
14628 2001-12-29 Richard M. Stallman <rms@gnu.org>
14629
14630 * files.el (basic-save-buffer): If a before-write hook displays
14631 an echo area message, pause before calling basic-save-buffer-1.
14632
14633 2001-12-29 Markus Rost <rost@math.ohio-state.edu>
14634
14635 * textmodes/reftex-global.el (reftex-query-replace-document)
14636 (reftex-change-label): Doc fix.
14637
14638 * dired-aux.el (dired-do-query-replace-regexp): Doc fix.
14639
14640 * progmodes/etags.el (tags-query-replace): Doc fix.
14641
14642 2001-12-29 Richard M. Stallman <rms@gnu.org>
14643
14644 * progmodes/compile.el (compile-internal): Fix previous change.
14645
14646 2001-12-28 Richard M. Stallman <rms@gnu.org>
14647
14648 * mouse.el (mouse-drag-mode-line-1): When dragging a mode line upward,
14649 shrink the windows above as necessary to get space.
14650 (mouse-drag-move-window-bottom, mouse-drag-window-above): New fns.
14651
14652 * net/ange-ftp.el (ange-ftp-allow-child-lookup): Always return nil.
14653 This fixes a bug that treated all files as directories.
14654 (ange-ftp-insert-directory): Explicitly follow symlinks.
14655
14656 * international/iso-transl.el (iso-transl-char-map) Eliminate the
14657 alias symbols--put the translated sequences here directly.
14658
14659 * progmodes/cc-mode.el (c-mode-abbrev-table)
14660 (c++-mode-abbrev-table, objc-mode-abbrev-table)
14661 (java-mode-abbrev-table, pike-mode-abbrev-table):
14662 Mark all the predefined abbrevs as "system" abbrevs.
14663
14664 * mail/sendmail.el (mail-envelope-from): Fix custom type.
14665 (sendmail-send-it): Check mail-specify-envelope-from
14666 and mail-envelope-from in the mail buffer at start.
14667
14668 2001-12-28 Simon Josefsson <jas@extundo.com>
14669
14670 * mail/sendmail.el (mail-envelope-from): Fix :type.
14671 (sendmail-send-it): Copy `mail-envelope-from' from calling buffer.
14672
14673 2001-12-28 Richard M. Stallman <rms@gnu.org>
14674
14675 * net/ldap.el (ldap-search-internal): Handle <file://...> in results.
14676
14677 * simple.el (line-move-invisible): New subroutine.
14678 (line-move-to-column): New subroutine--smarter about advancing over
14679 invisible parts of a line, or lines, but only as long as hpos grows.
14680 (line-move-finish): New subroutine: repeatedly processes desired
14681 column, intangibility, and fields.
14682 (line-move): Use those subroutines.
14683 When moving lines downward, skip invisible text first rather than last.
14684
14685 2001-12-27 Richard M. Stallman <rms@gnu.org>
14686
14687 * international/mule-diag.el (describe-char-after):
14688 Describe the text properties of the char after point.
14689
14690 * help.el (describe-key): Doc fix.
14691
14692 2001-12-26 Markus Rost <rost@math.ohio-state.edu>
14693
14694 * find-dired.el (find-dired-sentinel): Precede exit message by
14695 two spaces, to match the regexp in dired-between-files.
14696
14697 2001-12-28 Miles Bader <miles@gnu.org>
14698
14699 * wid-edit.el (widget-toggle-value-create): Don't eval actual
14700 images (which are lists too).
14701
14702 2001-12-27 Eli Zaretskii <eliz@is.elta.co.il>
14703
14704 * language/european.el: Fix the doc string of "Latin-5" language
14705 environment.
14706
14707 2001-12-26 Richard M. Stallman <rms@gnu.org>
14708
14709 * textmodes/flyspell.el (flyspell-mode-map): New keymap,
14710 defined as before 2001-11-09.
14711 (add-minor-mode call): Specify the keymap.
14712
14713 * progmodes/compile.el (compile-internal):
14714 Set TERM variable in process-environment.
14715
14716 2001-12-25 Richard M. Stallman <rms@gnu.org>
14717
14718 * help-mode.el (help-xref-on-pp): Catch and ignore errors in scanning
14719 the buffer.
14720
14721 * startup.el (command-line): Convert command line args
14722 to Emacs internal representation using locale-coding-system.
14723
14724 2001-12-25 Eli Zaretskii <eliz@is.elta.co.il>
14725
14726 * international/fontset.el: Don't require ind-util when compiling.
14727
14728 2001-12-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14729
14730 * emulation/tpu-edt.el (tpu-reset-screen-size):
14731 Use set-frame-height and set-frame-width instead of set-screen-height
14732 and set-screen-width.
14733
14734 * vt-control.el (vt-wide, vt-narrow): Use set-frame-width instead
14735 of obsolete set-screen-width.
14736
14737 * locate.el (locate): Remove dot at the end of error argument.
14738
14739 * emerge.el (emerge-show-file-name): Use frame-height instead of
14740 obsolete screen-height.
14741
14742 * mail/mh-utils.el (mh-show-msg): Likewise.
14743 (mh-handle-process-error): Use frame-width instead of obsolete
14744 screen-width.
14745
14746 2001-12-25 Richard M. Stallman <rms@gnu.org>
14747
14748 * window.el (balance-windows): Use new PRESERVE-BEFORE arg
14749 to enlarge-window. Use save-selected-window. Don't try
14750 to resize windows that end at the bottom "level".
14751 Retry changing the sizes until the windows get the desired sizes.
14752 Discount the minibuffer when computing total height available.
14753
14754 * emacs-lisp/debug.el (debugger-mode-map): Bind C-m, not `RET'.
14755 (debugger-make-xrefs): Only make a button for the first symbol
14756 on any line.
14757
14758 2001-12-24 Eli Zaretskii <eliz@is.elta.co.il>
14759
14760 * term/internal.el (dos-cpNNN-setup, dos-codepage-setup):
14761 Call IT-setup-unicode-display here instead of adding it to
14762 dos-codepage-setup-hook, so that Unicode display tables are set
14763 before dos-codepage-setup-hook runs.
14764
14765 2001-12-24 Richard M. Stallman <rms@gnu.org>
14766
14767 * net/net-utils.el (ftp-mode-abbrev-table): Don't define it.
14768 (nslookup-mode-abbrev-table): Don't define it.
14769 (smbclient-mode-abbrev-table): Don't define it.
14770 (ftp-mode): Don't use ftp-mode-abbrev-table; don't enable Abbrev mode.
14771 (nslookup-mode, smbclient-mode): Likewise.
14772 (network-connection-service-abbrev-alist): Variable deleted.
14773 (network-connection-mode-setup): Don't set up abbrev table.
14774
14775 * faces.el (minibuffer-prompt): New face.
14776 (minibuffer-prompt-properties): Add `face' property.
14777
14778 * replace.el (occur-mode-display-occurrence): New function.
14779 (occur-mode-map): Bind C-o to it.
14780
14781 2001-12-24 Michael Kifer <kifer@cs.sunysb.edu>
14782
14783 * viper-cmd.el (viper-change-state): Got rid of make-local-hook.
14784 (viper-special-read-and-insert-char): Make C-m work right in the r
14785 comand.
14786 (viper-buffer-search-enable): Fixed format string.
14787
14788 * viper-ex.el (ex-token-alist): Use ex-set-visited-file-name
14789 instead of viper-info-on-file.
14790 (ex-set-visited-file-name): New function.
14791
14792 * viper.el (viper-emacs-state-mode-list): Added mail-mode.
14793
14794 * ediff-mult.el (ediff-meta-mark-equal-files): Added optional
14795 action argument.
14796
14797 * ediff-init.el: Fixed some doc strings.
14798
14799 * ediff-util.el (ediff-after-quit-hook-internal): New variable.
14800 Got rid of make-local-hook.
14801
14802 * ediff-wind.el (ediff-setup-control-frame): Got rid of
14803 make-local-hook.
14804
14805 2001-12-23 Richard M. Stallman <rms@gnu.org>
14806
14807 * term/x-win.el (x-handle-geometry): Put height and width
14808 on default-frame-alist, left and top on initial-frame-alist.
14809 * term/w32-win.el (x-handle-geometry): Likewise.
14810
14811 * sort.el (sort-reorder-buffer): Copy all to a temp buffer first.
14812
14813 * play/yow.el (yow): Use an arg to distinguish interactive calls,
14814 not interactive-p.
14815
14816 2001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14817
14818 * emacs-lisp/elint.el (elint-unknown-builtin-args):
14819 Remove mocklisp entries.
14820
14821 * subr.el (insert-string): Moved from mocklisp.c, reimplemented in
14822 Lisp. Obsoleted.
14823
14824 * emulation/mlconvert.el: File removed.
14825
14826 * emulation/mlsupport.el: Moved to obsolete.
14827
14828 * obsolete/mlsupport.el: Moved there from lisp/emulation.
14829
14830 * emacs-lisp/find-gc.el (source-files): Remove mocklisp.c.
14831
14832 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
14833 Remove mocklisp case.
14834
14835 * help-fns.el (describe-function-1): Remove mocklisp function case.
14836
14837 2001-12-22 Miles Bader <miles@gnu.org>
14838
14839 * textmodes/refill.el (refill-mode): Don't barf when redundantly
14840 turning refill-mode off.
14841
14842 2001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14843
14844 * time.el (display-time-load-average-threshold): New variable.
14845 (display-time-update): Use it.
14846
14847 These changes allow cycling through past 1, 5 and 15 minutes
14848 load-average displayed in the mode-line.
14849
14850 * time.el (display-time-default-load-average): New customizable option.
14851 (display-time-load-average): New variable.
14852 (display-time-cycle-load-average): New function.
14853 (display-time-update): Use them.
14854
14855 2001-12-21 Richard M. Stallman <rms@gnu.org>
14856
14857 * apropos.el (apropos-print): SPACING is now nil or a separator string.
14858 (apropos-documentation, apropos-value): Pass a suitable string.
14859
14860 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
14861
14862 * dired.el (dired-free-space-program, dired-free-space-args):
14863 Aliases for back-compatibility.
14864
14865 * info.el (Info-select-node): If Info-use-header-line is nil, set
14866 header-line-format to nil.
14867 (Info-fontify-node): Don't put a keymap text property on the
14868 heading if we are not going to display the header line. Remove
14869 any such text properties left over from past visits to this node.
14870
14871 * ls-lisp.el (insert-directory): Insert the amount of free disk
14872 space, like files.el's insert-directory does.
14873
14874 * files.el (directory-free-space-program):
14875 Mention file-system-info in the doc string.
14876 (get-free-disk-space): New function; code moved from insert-directory.
14877 (insert-directory): Call get-free-disk-space to get the amount of
14878 free space.
14879
14880 2001-12-21 Richard M. Stallman <rms@gnu.org>
14881
14882 * help.el (view-order-manuals, view-emacs-news, describe-copying)
14883 (describe-distribution, describe-project): Use view-file.
14884
14885 * emacs-lisp/cl-indent.el (define-modify-macro): Better indent spec.
14886
14887 * net/ange-ftp.el (ange-ftp-file-modtime): Use save-match-data.
14888
14889 * emacs-lisp/easy-mmode.el (define-minor-mode):
14890 Make no arg by default in an interactive call,
14891 so that repeating the command toggles again.
14892
14893 * emacs-lisp/lisp-mode.el (eval-defun-1): Cope with atoms as args.
14894
14895 2001-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
14896
14897 * antlr-mode.el: More sophisticated indentation of cpp directive.
14898 (antlr-indent-at-bol-alist): New user option.
14899 (antlr-indent-line): Use it.
14900 (antlr-indent-style): New user option.
14901 (antlr-mode): Use it.
14902 (antlr-indent-item-regexp): Customize.
14903
14904 * antlr-mode.el: Syntax highlighting changes.
14905 (antlr-font-lock-literal-regexp): New user option.
14906 (antlr-font-lock-syntax-face): New face used for :, |, ....
14907 (antlr-font-lock-default-face): New face.
14908 (antlr-font-lock-additional-keywords): Use them.
14909
14910 * antlr-mode.el: New command to insert options -- variables.
14911 (antlr-mode-map): New binding [C-c C-o].
14912 (antlr-mode-menu): New submenus.
14913 (antlr-options-use-submenus): New user option.
14914 (antlr-tool-version): New user option.
14915 (antlr-options-auto-colon): New user option.
14916 (antlr-options-style): New user option.
14917 (antlr-options-push-mark): New user option.
14918 (antlr-options-assign-string): New user option.
14919 (antlr-options-headings): New variable.
14920
14921 * antlr-mode.el: New command to insert options -- specific.
14922 (antlr-options-alists): New variable.
14923 (antlr-read-value): New function.
14924 (antlr-read-boolean): New function.
14925 (antlr-language-option-extra): New function.
14926 (antlr-language-limit-n-regexp): Change default to higher LIMIT.
14927 (antlr-c++-mode-extra): New function.
14928 (antlr-grammar-tokens): New function.
14929 (antlr-imenu-create-index-function): New optional argument.
14930
14931 * antlr-mode.el: New command to insert options -- functions.
14932 (antlr-insert-option): New command.
14933 (antlr-insert-option-interactive): New function.
14934 (antlr-options-menu-filter): New function.
14935 (antlr-option-kind): New function.
14936 (antlr-scan-lists): New alias.
14937 (antlr-scan-lists-internal): New function.
14938 (antlr-skip-file-prelude): Hack for special SKIP-COMMENT.
14939 (antlr-option-level): New function.
14940 (antlr-syntactic-grammar-depth): New function.
14941 (antlr-option-location): New function.
14942 (antlr-insert-option-do): New function.
14943 (antlr-option-spec): New function.
14944 (antlr-version-string): New function.
14945 (antlr-insert-option-existing): New function.
14946 (antlr-insert-option-space): New function.
14947 (antlr-insert-option-area): New function.
14948
14949 * antlr-mode.el: New electric keys ":;|&(){}", TAB works better
14950 with narrowing. Menu change. Miscellaneous.
14951 (antlr-mode-menu): Include "Indent Region" and "Customize Antlr".
14952 (antlr-mode-map): New bindings for characters in ":;|&(){}".
14953 (antlr-electric-character): New command.
14954 (antlr-class-header-regexp): New variable.
14955 (antlr-font-lock-additional-keywords): Use it.
14956 (antlr-imenu-create-index-function): Use it.
14957 (antlr-file-dependencies): Use it.
14958 (antlr-indent-line): Also works with restrictions.
14959 (antlr-indent-command): Interactive spec - changes the buffer.
14960 (antlr-language-for-option): Deletia.
14961 (antlr-language-option): New function, defined instead.
14962 (antlr-mode): Use it.
14963
14964 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
14965
14966 * jka-compr.el (jka-compr-partial-uncompress): Use null-device
14967 instead of a literal /dev/null.
14968
14969 * Makefile.in (distclean): Remove Makefile in the build
14970 directory, not in the source directory.
14971
14972 2001-12-21 Simon Josefsson <jas@extundo.com>.
14973
14974 * mail/smtpmail.el (smtpmail-send-queued-mail):
14975 Use with-temp-buffer instead of find-file-noselect, and bind
14976 coding-system-for-read to no-conversion when reading the queued
14977 messages. (Simon's code modified slightly by Eli Zaretskii.)
14978
14979 2001-12-20 Werner Lemberg <wl@gnu.org>
14980
14981 * international/mule-diag.el (describe-coding-system)
14982 (print-coding-system-briefly): Make printed output have a similar
14983 format as describe-character-set.
14984
14985 2001-12-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14986
14987 * play/blackbox.el (bb-member): Remove, use member instead.
14988 (bb-delete): Remove, use delete instead.
14989 Update copyright notice. Defvar for bb-board, bb-x, bb-y,
14990 bb-score, bb-detour-count and bb-balls-placed.
14991 Propertize results of rays.
14992
14993 2001-12-19 Karl Fogel <kfogel@red-bean.com>
14994
14995 * isearch.el (isearch-forward, isearch-edit-string): Make doc
14996 strings mention keybinding for `isearch-yank-word-or-char',
14997 rather than `isearch-yank-word', since the former is bound now
14998 and the latter is not.
14999 (isearch-yank-word-or-char): Fix formatting.
15000
15001 2001-12-19 Werner Lemberg <wl@gnu.org>
15002
15003 * language/czech.el, language/european.el, language/slovak.el:
15004 More fixes for language info doc strings.
15005
15006 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
15007
15008 * loadup.el: Add "language" to the load-path.
15009
15010 2001-12-19 Richard M. Stallman <rms@gnu.org>
15011
15012 * international/mule-cmds.el (describe-language-environment):
15013 Fix calls to help-xref-button.
15014
15015 2001-12-19 Miles Bader <miles@gnu.org>
15016
15017 * international/fontset.el: Require `ind-util' when compiling.
15018
15019 2001-12-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15020
15021 * language/ethio-util.el (ethio-modify-vowel): Use char-to-string
15022 instead of decompose-composite-char.
15023
15024 2001-12-18 Richard M. Stallman <rms@gnu.org>
15025
15026 * simple.el (eval-expression-print-level)
15027 (eval-expression-print-length): Doc fixes.
15028
15029 * international/mule-diag.el (describe-character-set):
15030 Fix the arg to help-xref-button.
15031
15032 * files.el (directory-free-space-program): New variable.
15033 (directory-free-space-args): New variable.
15034 (insert-directory): Use those two variables for getting free space.
15035 Use file-system-info instead, if that is defined.
15036
15037 * dired.el (dired-free-space-program): Variable deleted.
15038 (dired-free-space-args): Variable deleted.
15039 (dired-insert-directory): Don't try to determine free space.
15040
15041 * files.el (font-lock-defaults): Add risky-local-variables prop.
15042 (hack-one-local-variable): Treat various font-lock variables as risky.
15043
15044 2001-12-18 Werner Lemberg <wl@gnu.org>
15045
15046 * language/chinese.el, language/cyrillic.el:
15047 * language/czech.el, language/european.el, language/greek.el:
15048 * language/hebrew.el, language/indian.el, language/japanese.el:
15049 * language/korean.el, language/lao.el, language/slovak.el:
15050 * language/thai.el, language/tibetan.el, language/vietnamese.el:
15051 Improve documentation strings of coding systems and language infos.
15052
15053 2001-12-18 Werner LEMBERG <wl@gnu.org>
15054
15055 Add support for EUC-TW decoding/encoding.
15056
15057 * language/china-util.el (big5-to-flat-code, flat-code-to-big5)
15058 (euc-to-flat-code, flat-code-to-euc, expand-euc-big5-alist):
15059 New auxiliary functions to build `big5-to-cns'.
15060 (big5-to-cns): New translation alist.
15061
15062 * language/chinese.el: Added new coding system `euc-tw' and its
15063 alias `euc-taiwan'.
15064 Updated language `Chinese-CNS' to include euc-tw encoding also.
15065 (ccl-decode-euc-tw, ccl-encode-euc-tw): New functions for handling
15066 euc-tw.
15067
15068 2001-12-18 Dave Love <fx@gnu.org>
15069
15070 * loadup.el: Add language/utf-8-lang, language/georgian.
15071
15072 * image-file.el (image-file-name-extensions): Add pnm. Doc fix.
15073 (image-file-name-regexps): Doc fix.
15074
15075 * server.el (server-unload-hook): New function.
15076
15077 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): Group the leader.
15078 (lm-crack-copyright): Cope with multi-line copyright `lines'.
15079
15080 * simple.el (newline): Doc fix.
15081 (eval-expression-print-level, eval-expression-print-length): Doc
15082 fix. Amend :type.
15083 (next-line, previous-line): Make arg optional.
15084 (newline): Doc fix.
15085
15086 * Makefile.in (DONTCOMPILE): Add various language files.
15087
15088 * international/quail.el (quail-input-string-to-events): Don't use
15089 string-to-list.
15090
15091 * progmodes/f90.el (f90-break-line): Avoid infinite recursion
15092 calling `newline'.
15093
15094 2001-12-17 Richard M. Stallman <rms@gnu.org>
15095
15096 * comint.el (comint-dynamic-list-input-ring-select): New function.
15097 Switches back to the old window configuration.
15098 (comint-dynamic-list-input-ring): Bind RET to that function.
15099 (comint-dynamic-list-input-ring-window-conf): New variable.
15100
15101 2001-12-17 Werner Lemberg <wl@gnu.org>
15102
15103 * international/mule-conf.el: Improve documentation strings of
15104 character sets.
15105
15106 2001-12-16 Richard M. Stallman <rms@gnu.org>
15107
15108 * dired.el (dired-copy-filename-as-kill): Moved from dired-x.el.
15109 (dired-mode-map): Bind w to dired-copy-filename-as-kill.
15110
15111 * dired-x.el (dired-copy-filename-as-kill): Moved to dired.el.
15112
15113 * autoinsert.el (auto-insert-alist): Redo finding C and C++ headers.
15114 Add a DESCRIPTION for the makefile item.
15115
15116 * find-file.el (ff-other-file-name): New function.
15117
15118 2001-12-16 Eli Zaretskii <eliz@is.elta.co.il>
15119
15120 * international/quail.el (quail-input-string-to-events): Fix last
15121 change.
15122
15123 2001-12-16 Richard M. Stallman <rms@gnu.org>
15124
15125 * isearch.el (isearch-edit-string): When we set isearch-string
15126 to the default, also set isearch-message.
15127
15128 * subr.el (temp-buffer-show-hook, temp-buffer-setup-hook): Add defvars.
15129
15130 * startup.el (command-line-1): Display startup screen
15131 even if there are command line args.
15132 Add a note about how to go to editing your files.
15133 (fancy-splash-head): Add a note about how to go to your files.
15134 (fancy-splash-outer-buffer): New variable.
15135 (fancy-splash-screens): Bind variable fancy-splash-outer-buffer.
15136
15137 * subr.el (with-temp-message): At the end, always discard
15138 the temp message, even by clearing the echo area.
15139
15140 * progmodes/sh-script.el (sh-mode): Run sh-mode-hook.
15141
15142 2001-12-16 Stefan Monnier <monnier@cs.yale.edu>
15143
15144 * log-view.el (log-view-message-re, log-view-current-tag):
15145 Recognize Subversion's log output format.
15146
15147 * international/fontset.el: Build the list L at compile time.
15148
15149 * language/ind-util.el (mapthread): Make a closure.
15150
15151 2001-12-15 Richard M. Stallman <rms@gnu.org>
15152
15153 * isearch.el (isearch-start-hscroll): New variable.
15154 (isearch-mode): Set isearch-start-hscroll.
15155 (isearch-update): Restore original hscrolling if possible.
15156
15157 * isearch.el (isearch-edit-string):
15158 Treat isearch-yank-word-or-char specially, like isearch-yank-word.
15159
15160 * emacs-lisp/debug.el (debugger-previous-backtrace): New variable.
15161 (debugger-make-xrefs): Optimize by (1) using skip-syntax-forward
15162 rather than regexp search and (2) copying text properties
15163 already set up on text unchanged from the previous backtrace.
15164
15165 * case-table.el (set-case-syntax-pair):
15166 Detect invalid calls and signal an error.
15167
15168 2001-12-15 Richard M. Stallman <rms@gnu.org>
15169
15170 * language/ind-util.el (range): Function deleted.
15171 (indian-regexp-of-hashtbl-keys): Renamed from `regexp-of-hashtbl-keys'.
15172 All calls changed.
15173
15174 * language/devan-util.el (devanagari-range): Renamed from `range'.
15175 All calls changed.
15176 (devanagari-regexp-of-hashtbl-keys):
15177 Renamed from `regexp-of-hashtbl-keys'. All calls changed.
15178
15179 2001-12-15 Dave Love <fx@gnu.org>
15180
15181 * language/ind-util.el: Don't require cl.
15182 (indian-glyph-char, indian-glyph-max-char)
15183 (indian-char-glyph): Moved from indian.el
15184 (indian--puthash-char, mapthread): Don't quote lambda.
15185 (indian--map): New function.
15186 (indian--puthash-v, indian--puthash-c, indian--puthash-m)
15187 (indian--puthash-cv): Use it.
15188
15189 * language/indian.el (indian-glyph-char, indian-glyph-max-char)
15190 (indian-char-glyph): Moved to ind-util.el
15191
15192 * language/devan-util.el (devanagari-post-read-conversion):
15193 New function.
15194
15195 * language/georgian.el: New file.
15196
15197 * international/mule-cmds.el (locale-language-names): Add various
15198 entries. Remove utf-8 special case.
15199 (locale-charset-language-names, locale-preferred-coding-systems):
15200 Add utf-8 case.
15201 (set-language-environment): Process required-features earlier.
15202
15203 * international/quail.el (quail-keyboard-layout-alist):
15204 Add pc105-uk.
15205 (quail-keyboard-layout-type): Fix :type.
15206 (quail-choose-completion-string): Simplify.
15207 (quail-update-leim-list-file): Don't get fooled by commented-out code.
15208 (quail-input-string-to-events): Run events through
15209 translation-table-for-input.
15210
15211 * international/mule-conf.el (translation-table-for-input):
15212 New variable.
15213 (latin-iso8859-14): Amend description.
15214 (file-coding-system-alist): Add entry for utf-8.
15215
15216 * language/utf-8-lang.el: New file.
15217
15218 * international/code-pages.el: New file.
15219
15220 * language/hebrew.el ("Windows-1255"): New language.
15221
15222 * language/european.el ("Welsh", "Latin-7", "Lithuanian")
15223 ("Latvian"): New languages.
15224
15225 2001-12-14 Stefan Monnier <monnier@cs.yale.edu>
15226
15227 * xml.el: Use setq rather than (set 'foo bar).
15228 Use push+nreverse rather than append.
15229 (xml-node-name, xml-node-attributes, xml-node-children):
15230 Use defsubst rather than macros.
15231 (xml-parse-region): Handle a nil return value from xml-parse-tag.
15232 (xml-parse-tag): Don't skip white space. Return nil for a comment.
15233 Concat the two strings surrounding a comment into a single string.
15234
15235 * newcomment.el (comment-indent): Jump to the middle of empty comments.
15236
15237 2001-12-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15238
15239 * select.el (xselect-convert-to-class, xselect-convert-to-name):
15240 Document.
15241
15242 2001-12-14 Andre Spiegel <spiegel@gnu.org>
15243
15244 * vc-hooks.el (vc-checkout-model, vc-state, vc-workfile-version):
15245 Return nil if FILE is not registered.
15246 (vc-check-master-templates, vc-default-make-version-backups-p):
15247 Doc fix.
15248
15249 2001-12-13 David Ponce <david@dponce.com>
15250
15251 * ruler-mode.el (ruler-mode-extra-left-cols): Remove.
15252 (ruler-mode-left-fringe-cols): New macro.
15253 (ruler-mode-right-fringe-cols): New macro.
15254 (ruler-mode-left-scroll-bar-cols): New macro.
15255 (ruler-mode-right-scroll-bar-cols): New macro.
15256 (ruler-mode-ruler): Use above new macros.
15257
15258 2001-12-13 Richard M. Stallman <rms@gnu.org>
15259
15260 * files.el (set-auto-mode): Fix previous change.
15261
15262 2001-12-13 Stefan Monnier <monnier@cs.yale.edu>
15263
15264 * emacs-lisp/easymenu.el (easy-menu-intern): New fun.
15265 (easy-menu-do-define, easy-menu-convert-item-1)
15266 (easy-menu-define-key-intern, easy-menu-get-map): Use it.
15267 (easy-menu-return-item): Only return nil if there is no binding.
15268
15269 2001-12-13 Rajesh Vaidheeswarran <rv@gnu.org>
15270
15271 * whitespace.el (whitespace-version): 3.2
15272 * whitespace.el (whitespace-force-mode-line-update): Replace with
15273 `whitespace-mode-line-update', which is an alias to the correct
15274 function in various emacsen.
15275 * whitespace.el (whitespace-{un,}highlight-the-space):
15276 Add colorized highlighting of the bogus whitespaces in a buffer/file,
15277 using the `whitespace-highlight-face' if
15278 `whitespace-display-spaces-in-color' is set.
15279
15280 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
15281
15282 * international/mule.el (set-auto-coding): Don't search for
15283 "unibyte:" or "coding:" if set-auto-mode-1 returns nil.
15284
15285 2001-12-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15286
15287 * mail/mailabbrev.el (mail-abbrevs-setup): Do not use make-local-hook.
15288
15289 * mail/rmail.el (rmail-fontify-buffer-function): Likewise.
15290
15291 * mail/rmailsum.el (rmail-summary-mode): Likewise.
15292
15293 2001-12-13 Richard M. Stallman <rms@gnu.org>
15294
15295 * simple.el (undo): Always set this-command to `undo',
15296 so that the next undo after an error will not begin redoing.
15297
15298 * simple.el (shell-command): Doc fix.
15299 (shell-command-on-region): If there is output an an error,
15300 add "...Shell command failed" to the output.
15301
15302 2001-12-13 David Ponce <david@dponce.com>
15303
15304 * ruler-mode.el (ruler-mode-left-fringe-cols): Variable removed.
15305 (ruler-mode-left-fringe-cols): Function replaced by more efficient
15306 implementation `ruler-mode-extra-left-cols'.
15307 (ruler-mode-ruler): Use above new function. Take into account
15308 that the fringe areas can now be resized.
15309
15310 2001-12-12 Richard M. Stallman <rms@gnu.org>
15311
15312 * international/characters.el (Unicode): Comment out
15313 the specifications for kelvin and angstrom signs.
15314
15315 * international/mule.el (make-translation-table-from-vector):
15316 Allow null elements in VEC.
15317
15318 * international/ucs-tables.el (unify-8859-on-encoding-mode)
15319 (unify-8859-on-decoding-mode): Swap the code in their bodies.
15320 Add :version.
15321
15322 2001-12-11 Richard M. Stallman <rms@gnu.org>
15323
15324 * derived.el (derived-mode-p): Function moved to subr.el.
15325
15326 * subr.el (derived-mode-p): Moved here from derived.el.
15327
15328 * international/mule.el (set-auto-coding): Use set-auto-mode-1.
15329
15330 * files.el (set-auto-mode-1): New subroutine, broken out of
15331 set-auto-mode.
15332 (set-auto-mode, hack-local-variables-prop-line): Use that.
15333
15334 2001-12-11 Dave Love <fx@gnu.org>
15335
15336 * language/thai-util.el, language/thai.el: Add Unicode equivalents.
15337
15338 * language/european.el: Remove autoload cookies. Fix registration
15339 of diacritic composition function.
15340
15341 2001-12-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15342
15343 * calendar/todo-mode.el: Require time-stamp.
15344
15345 * net/zone-mode.el (zone-mode): Don't use make-local-hook.
15346
15347 2001-12-11 Richard M. Stallman <rms@gnu.org>
15348
15349 * emacs-lisp/authors.el (authors-aliases): Delete "Richard Stallmao".
15350
15351 * textmodes/ispell.el (ispell-buffer-local-parsing):
15352 Match xml like sgml.
15353
15354 * emacs-lisp/advice.el (ad-compile-function):
15355 Byte compile the function under another (uninterned) name.
15356
15357 * gud.el (gdb): Define and bind gud-jump.
15358
15359 * font-lock.el (font-lock-mode):
15360 Put our function at the end of after-change-functions.
15361
15362 * ediff-diff.el (ediff-cmp-options): Doc fix.
15363
15364 * comint.el (comint-password-prompt-regexp): Match "UNIX Password".
15365
15366 2001-12-10 Richard M. Stallman <rms@gnu.org>
15367
15368 * isearch.el (isearch-yank-word-or-char): New function.
15369 (isearch-mode-map): Bind C-w to that.
15370
15371 * menu-bar.el (menu-bar-mode): Make arg optional.
15372
15373 * simple.el (line-move): Cope if next-single-property-change
15374 or previous-single-property-change returns nil.
15375
15376 * emacs-lisp/lisp-mnt.el (lm-verify): New arg NON-FSF-OK.
15377 Don't use interactive-p; instead, pass the proper args
15378 in (interactive...). Clean up most of the trouble-report strings.
15379
15380 2001-12-10 Eli Zaretskii <eliz@is.elta.co.il>
15381
15382 * mail/smtpmail.el (smtpmail-send-queued-mail): Insert the
15383 enqueued messages literally.
15384
15385 2001-12-10 Noah Friedman <friedman@splode.com>
15386
15387 * battery.el (battery-insert-file-contents): Obsolete function
15388 removed.
15389 (battery-read-function): Obsolete function removed.
15390 (battery-linux-proc-apm): Use insert-file-contents.
15391
15392 2001-12-07 Stephen Eglen <stephen@gnu.org>
15393
15394 * iswitchb.el (iswitchb-visit-buffer):
15395 Use `select-frame-set-input-focus'--needed when window manager
15396 uses "click to focus" policy.
15397
15398 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15399
15400 * COPYING: Moved back.
15401
15402 2001-12-07 Eli Zaretskii <eliz@is.elta.co.il>
15403
15404 * term/internal.el (IT-character-translations): Add entries for
15405 more points.
15406
15407 * international/characters.el: Resurrect the Hebrew category
15408 settings for all Hebrew characters removed by the last change.
15409 Add code for setting the Hebrew category of the Unicode Hebrew
15410 characters. Set syntax entries for Hebrew punctuation characters.
15411
15412 * international/ucs-tables.el (ucs-8859-8-alist): Add Hebrew
15413 points and directional formatting control characters.
15414
15415 2001-12-07 Dave Love <fx@gnu.org>
15416
15417 * language/lao-util.el: Add Unicode equivalents for rules.
15418 (lao-post-read-conversion): New function.
15419
15420 * language/lao.el: Add Unicode equivalents.
15421 (lao): Add post-read conversion.
15422
15423 * international/latin1-disp.el: Fix some 8-bit-graphic characters.
15424 Use iso2022 encoding.
15425 (latin1-char-displayable-p): Doc fix.
15426 (latin1-display-ucs-per-lynx): New option.
15427 (latin1-display-ucs-per-lynx): New command.
15428 (latin1-display-reset): Special-case arabic.
15429 (ucs-tables): Require.
15430 (latin1-display-sets, latin1-display-setup): Add arabic.
15431 (latin1-display) <variable>: Use function latin1-display.
15432 (latin1-display) <function>: Add mule-unicode stuff.
15433 (latin1-display-check-font): Don't lose if `info' is nil.
15434
15435 * international/iso-transl.el: Insert Latin-1 characters, not
15436 unibyte codes.
15437
15438 * language/european.el (diacritic-composition-pattern): New constant.
15439 (diacritic-compose-region, diacritic-compose-string)
15440 (diacritic-compose-buffer, diacritic-post-read-conversion)
15441 (diacritic-composition-function): New functions.
15442
15443 * international/utf-8.el (ucs-mule-to-mule-unicode):
15444 New translation table.
15445 (ccl-encode-mule-utf-8): Use it.
15446 (utf-8-untranslated-to-ucs, utf-8-help-echo, utf-8-compose)
15447 (utf-8-post-read-conversion, utf-8-pre-write-conversion): New function.
15448 (utf-8-subst-table): New variable.
15449 (utf-8-compose-scripts): New option.
15450 (mule-utf-8): Update safe-charsets, pre-write and post-read conversion.
15451
15452 * international/ucs-tables.el, international/utf-8-subst.el:
15453 New files.
15454
15455 * international/characters.el: Don't set word syntax (the default)
15456 explicitly. Add a diacritic category. Add info for Unicode
15457 equivalents of characters in various Mule charsets and for extra
15458 Unicode characters. Don't define specific categories for
15459 Indian/Devanagari, since they aren't used.
15460
15461 2001-12-06 Richard M. Stallman <rms@gnu.org>
15462
15463 * textmodes/fill.el (set-justification): Rename arg VALUE to STYLE.
15464 (set-justification-left, set-justification-right): Doc fix.
15465
15466 * progmodes/f90.el (f90-break-line): Use (newline 1) to insert newline.
15467 (bug-f90-mode): Variable deleted.
15468
15469 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
15470
15471 * indent.el (indent-line-function): Default is indent-relative again.
15472
15473 2001-12-07 Miles Bader <miles@gnu.org>
15474
15475 * progmodes/compile.el (compilation-error-regexp-alist):
15476 Added regexps for RXP.
15477
15478 2001-12-05 Eli Zaretskii <eliz@is.elta.co.il>
15479
15480 * progmodes/cwarn.el (cwarn-font-lock-match-assignment-in-expression):
15481 Add shift-assignment operators to those highlighted, and highlight
15482 the whole operator rather than just the "=".
15483
15484 2001-12-04 Juanma Barranquero <lektu@terra.es>
15485
15486 * files.el (save-abbrevs, save-some-buffers): Don't ask the user
15487 before saving abbrevs if `save-abbrevs' has the value `silently'.
15488
15489 2001-12-04 Andreas Schwab <schwab@suse.de>
15490
15491 * xt-mouse.el (turn-off-xterm-mouse-tracking): Doc fix.
15492
15493 2001-12-04 Colin Walters <walters@debian.org>
15494
15495 * emacs-lisp/autoload.el (make-autoload): Also generate autoloads
15496 for `defmacro*' forms.
15497
15498 * emacs-lisp/lisp-mode.el (toplevel): Define docstring offset for
15499 `defmacro*'.
15500
15501 2001-12-03 Stefan Monnier <monnier@cs.yale.edu>
15502
15503 * progmodes/antlr-mode.el (antlr-c-common-init): Undo last change.
15504
15505 2001-12-02 Richard M. Stallman <rms@gnu.org>
15506
15507 * files.el (insert-directory): If the df output does not look right,
15508 don't try to use it. Other cleanups in overall code structure.
15509
15510 2001-12-02 Stefan Monnier <monnier@cs.yale.edu>
15511
15512 * textmodes/outline.el (outline-mode-prefix-map):
15513 Add bindings for outline-promote and outline-demote.
15514 (outline-minor-mode-menu-bar-map): New var.
15515 (outline-minor-mode): Use it.
15516 (outline-heading-alist): New var (renamed from outline-level-heading).
15517 (outline-level): Use it.
15518 (outline-insert-heading, outline-promote, outline-demote):
15519 Update to use outline-heading-alist.
15520
15521 * disp-table.el (standard-display-european):
15522 Simplify since the function is not interactive any more.
15523 Don't set the existing buffers to unibyte.
15524
15525 * pcvs-util.el (cvs-file-to-string): Move condition-case outside.
15526
15527 * pcvs.el (cvs-reread-cvsrc): Don't use cvs-file-to-string.
15528
15529 * reveal.el (reveal-mode): Fix reveal-mode's lighter.
15530
15531 * shell.el (shell): Use shell-file-name.
15532 Pop to buffer before calling comint to set COLUMNS properly.
15533
15534 * emacs-lisp/cl.el (svref): New alias.
15535
15536 * progmodes/antlr-mode.el (antlr-c-common-init):
15537 Don't inhibit adaptive-fill-mode any more.
15538
15539 * progmodes/delphi.el (delphi-mode): Don't use make-local-hook.
15540
15541 * progmodes/etags.el (tags-with-face): Use make-symbol.
15542 (tags-search, tags-query-replace): Use backquotes.
15543
15544 * textmodes/picture.el (picture-mode-map): Don't use defconst
15545 for a variable.
15546
15547 2001-12-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15548
15549 * textmodes/reftex-index.el (reftex-index-mode):
15550 Remove make-local-hook.
15551
15552 * textmodes/reftex-toc.el (reftex-toc-mode): Likewise.
15553
15554 2001-12-02 Kim F. Storm <storm@cua.dk>
15555
15556 * isearch.el (isearch-resume-enabled): New variable.
15557 (isearch-done): Use that variable.
15558
15559 2001-12-01 Richard M. Stallman <rms@gnu.org>
15560
15561 * wid-edit.el (widget-button-click): Don't move point permanently:
15562 Avoid mouse-set-point--instead select the window,
15563 then do save-excursion, then move point.
15564 Specify the buffer for get-char-property.
15565 Don't use `@' in interactive.
15566
15567 * indent.el (indent-line-function):
15568 Default is indent-to-left-margin again.
15569
15570 * replace.el (query-replace-read-args): Display message
15571 if FROM contains `\n' or `\t'.
15572
15573 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
15574
15575 * indent.el (tab-to-tab-stop): Use delete-horizontal-space.
15576
15577 * bindings.el (minibuffer-local-map): Bind TAB to insert-tab.
15578
15579 * emacs-lisp/regexp-opt.el (regexp-opt):
15580 Bind completion-regexp-list to nil.
15581
15582 * progmodes/hideif.el (hif-nexttoken): Move to before first def.
15583
15584 2001-12-01 Eli Zaretskii <eliz@is.elta.co.il>
15585
15586 * progmodes/idlwave.el, progmodes/idlw-rinfo.el:
15587 * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el:
15588 Update maintainer.
15589
15590 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
15591
15592 * mail/smtpmail.el: Use with-current-buffer.
15593 (message-make-date, message-make-message-id): Autoload when needed.
15594 (smtpmail-send-it): Use them to add `Date:' and `Message-Id:'
15595 headers when missing.
15596
15597 * international/encoded-kb.el (encoded-kbd-mode):
15598 Use define-minor-mode.
15599
15600 * enriched.el (enriched-mode): Use define-minor-mode.
15601 Use dolist and pop and push.
15602
15603 * info.el (Info-find-node-2): Don't call info-insert-file-contents
15604 with the `visit' argument.
15605 (Info-extract-menu-node-name): Use `replace-regexps-in-string'.
15606
15607 * progmodes/hideif.el (hide-ifdef-mode): Only modify
15608 `change-major-mode-hook' locally. Reset invisibility spec.
15609
15610 * man.el (Man-build-section-alist): Remove last Man-match-substring.
15611
15612 2001-11-30 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15613
15614 * textmodes/paragraphs.el (mark-paragraph): Clarify doc.
15615 Clarify error message.
15616
15617 2001-11-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15618
15619 * textmodes/paragraphs.el (mark-paragraph): Allow prefix arg.
15620
15621 2001-11-30 Andre Spiegel <spiegel@gnu.org>
15622
15623 * vc-cvs.el (vc-cvs-parse-status): Store file state in property,
15624 don't just return it.
15625
15626 2001-11-30 Eli Zaretskii <eliz@is.elta.co.il>
15627
15628 * menu-bar.el (menu-bar-read-lispref, menu-bar-read-lispintro)
15629 (menu-bar-read-emacs-man, search-emacs-glossary)
15630 (emacs-index-search, elisp-index-search): New functions.
15631 (apropso-documentation, apropos, apropos-value, apropos-variable)
15632 (apropos-commands): Modify menu item names and help text.
15633 (elisp-index-search, emacs-index-search, emacs-glossary):
15634 New menu items.
15635 (menu-bar-manuals-menu): Move the Ordering Manuals item to a
15636 submenu.
15637 (info-elisp, info-elintro): New menu items.
15638 (apropos): Modify the menu item name.
15639
15640 2001-11-30 Stefan Monnier <monnier@cs.yale.edu>
15641
15642 * emacs-lisp/lisp-mode.el (read-if): Add lisp-indent-function prop.
15643
15644 * textmodes/outline.el (outline-promote, outline-demote): Typo.
15645
15646 * man.el (man-follow-mouse): New function.
15647 (Man-mode-map): Bind mouse-2 to it.
15648 (Man-match-substring): Remove. Replace with `match-string'.
15649 (man): Use the `default-value' argument to `read-string'.
15650 (Man-fontify-manpage): Add mouse-face to cross references.
15651
15652 * emacs-lisp/cl-macs.el (shiftf): Fix more. Simplify.
15653
15654 2001-11-29 Stefan Monnier <monnier@cs.yale.edu>
15655
15656 * emacs-lisp/crm.el (completing-read-multiple): Better preserve
15657 the value of require-match in minibuffer-completion-confirm.
15658 Use crm-local-completion-map.
15659
15660 * emacs-lisp/cl-macs.el (shiftf): Fix the fast case so
15661 (let ((a 1) (b 2)) (shiftf a b (cons a b)) b) returns (1 . 2).
15662 (cl-make-type-test): Use char-valid-p for `character'.
15663
15664 * info.el (Info-complete-next-re, Info-complete-cache): New vars.
15665 (Info-complete-menu-item): Rewrite. Add the ability to search
15666 several sequential nodes. Add a simple caching mechanism.
15667 (Info-goto-index): New function extracted from Info-index.
15668 (Info-index): Use it. Add completion to the interactive spec.
15669 (Info-menu-update): Simplify call to `Info-complete-menu-item'.
15670
15671 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15672
15673 * COPYING: Removed.
15674
15675 2001-11-29 Dave Love <fx@gnu.org>
15676
15677 * progmodes/fortran.el: Fontify rewind, backspace. Doc fixes.
15678 (fortran-window-create, fortran-window-create-momentarily):
15679 Rewrite, moving error condition.
15680 (fortran-beginning-do, fortran-beginning-if): Fix regexps.
15681 (fortran-mode-syntax-table): Revert last change.
15682
15683 * international/mule.el: Doc fixes.
15684 (map-charset-chars): New function.
15685 (register-char-codings): Use it to cope with generic chars in
15686 safe-chars.
15687
15688 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15689
15690 * play/blackbox.el (blackbox-mode, blackbox): Doc fix.
15691
15692 * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc fixes.
15693
15694 * play/studly.el (studlify-word, studlify-region)
15695 (studlify-buffer): Fix doc-string.
15696 (studlify-buffer): Add autoload cookie.
15697
15698 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
15699
15700 * textmodes/outline.el (outline-up-heading): Add `invisible-ok' arg.
15701 (outline-up-heading-all): Remove.
15702 (hide-sublevels): Move to end-of-heading before calling flag-region.
15703 (outline-copy-overlay, outline-discard-overlays): Remove.
15704 (outline-flag-region): Use `remove-overlays'.
15705 Don't move to end-of-heading.
15706 (outline-next-visible-heading, outline-back-to-heading)
15707 (outline-on-heading-p): Use outline-invisible-p.
15708 (outline-font-lock-level): Use outline-up-heading's new arg.
15709 (outline-minor-mode): Simplify.
15710 (outline-map-tree, outline-reveal-toggle-invisible): New funs.
15711 (outline): Put a `reveal-toggle-invisible' property.
15712 (outline-level-heading): New var.
15713 (outline-insert-heading, outline-promote, outline-demote)
15714 (outline-toggle-children): New commands.
15715
15716 * progmodes/hideif.el (hif-end-of-line): New function.
15717 (hide-ifdef-mode): Set line-move-ignore-invisible.
15718 (hide-ifdef-region-internal): New function.
15719 (hide-ifdef-region): Use it.
15720 (hif-defined): Return an integer.
15721 (hif-infix-to-prefix): Remove.
15722 (hif-tokenize): Parse from the buffer rather than from a string.
15723 Correctly tokenize integers. Use forward-comment.
15724 (hif-expr): Use hif-or.
15725 (hif-term): Use hif-and.
15726 (hif-factor): Use hif-not. Handle numbers properly.
15727 Don't require parenthesis around `defined's argument.
15728 (hif-and, hif-or, hif-not): New funs.
15729 (hif-canonicalize): Pass a region to hif-tokenize. Use hif-not.
15730 (hif-hide-line): Don't hide the \n before the line.
15731 (hif-possibly-hide): Correctly handle numeric evaluation results.
15732
15733 * progmodes/make-mode.el: Use line-(end|beginning)-position.
15734 (makefile-mode): Set indent-line-function.
15735 (makefile-browser-insert-continuation): Use with-current-buffer.
15736 (makefile-beginning-of-line-point, makefile-end-of-line-point): Remove.
15737
15738 2001-11-28 Karl Fogel <kfogel@red-bean.com>
15739
15740 * isearch.el (isearch-yank-internal): New helper function.
15741 (isearch-yank-char): New function.
15742 (isearch-yank-word, isearch-yank-line): Rewrite to use
15743 isearch-yank-internal.
15744
15745 2001-11-28 Eli Zaretskii <eliz@is.elta.co.il>
15746
15747 * mouse.el (mouse-set-font): Make it a no-op if multiple fonts
15748 aren't supported. Print a message to that effect if invoked.
15749
15750 2001-11-27 Stephen Eglen <stephen@gnu.org>
15751
15752 * locate.el (locate): Put point at first matching file rather
15753 than top of buffer.
15754
15755 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
15756
15757 * reveal.el: New file.
15758
15759 * progmodes/hideif.el: Misc cleanup.
15760 (hide-ifdef-mode-submap): Put the def in the defvar.
15761 Use substitute-key-definition.
15762 (hide-ifdef-mode): Use define-minor-mode.
15763 (hif-outline-flag-region): Remove.
15764 (hif-show-all): Define in terms of hif-show-ifdef-region.
15765 (hif-after-revert-function): Rename from hif-before-revert-function.
15766 (hide-ifdef-region, hif-show-ifdef-region): Use overlays.
15767 (hif-tokenize): Use with-syntax-table.
15768 (hif-make-range): Use `else' also for `else-p'.
15769 (hif-range-else-p): Remove.
15770 (hif-find-range): Simplify.
15771 (hif-hide-line): Don't bother preserving buffer-modified-p.
15772 (hide-ifdefs, show-ifdefs, hide-ifdef-block, show-ifdef-block):
15773 Don't use selective-display and inhibit-read-only.
15774
15775 * subr.el (copy-overlay, remove-overlays): New funs.
15776
15777 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix off-by-two error.
15778
15779 2001-11-27 Sam Steingold <sds@gnu.org>
15780
15781 * ansi-color.el, bookmark.el, dired.el, emerge.el, fast-lock.el
15782 * lazy-lock.el, mouse-sel.el, mail/feedmail.el
15783 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el, emacs-lisp/ewoc.el
15784 * obsolete/c-mode.el, obsolete/cplus-md.el
15785 * progmodes/dcl-mode.el, progmodes/idlw-shell.el, progmodes/idlwave.el
15786 * term/sun-mouse.el, textmodes/artist.el:
15787 Converted backquote to the new style.
15788 * mouse.el, reposition.el: Likewise (in comments).
15789 * expand.el: Likewise (in a string).
15790
15791 2001-11-27 Richard M. Stallman <rms@gnu.org>
15792
15793 * cus-edit.el (custom-load-symbol): Don't always load locate-library.
15794
15795 2001-11-26 Richard M. Stallman <rms@gnu.org>
15796
15797 * wid-edit.el (widget-toggle-value-create): On graphic terminal,
15798 if :on-glyph or :off-glyph is a list, eval it and store it back.
15799 (checkbox): Quote the values for :on-glyph and :off-glyph.
15800
15801 * cus-start.el (recursive-load-depth-limit): Delete item.
15802
15803 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
15804
15805 * help-fns.el (describe-categories, help-describe-category-set): New.
15806 describe-categories moved here from src/category.c.
15807
15808 2001-11-26 Sam Steingold <sds@gnu.org>
15809
15810 * progmodes/cc-mode.el (c-submit-bug-report): Make sure that the
15811 arguments to `insert' are strings.
15812
15813 2001-11-26 Richard M. Stallman <rms@gnu.org>
15814
15815 * startup.el (command-line-1): Call kill-buffer only in non-fancy case.
15816
15817 2001-11-26 Eli Zaretskii <eliz@is.elta.co.il>
15818
15819 * international/mule-diag.el: Require help-fns instead of
15820 help-funs.
15821
15822 * help-fns.el: Renamed from help-funs.el.
15823
15824 * startup.el (command-line-1): Don't try to call process-list if
15825 it is not fboundp.
15826
15827 2001-11-26 Sam Steingold <sds@gnu.org>
15828
15829 * frame.el (show-trailing-whitespace): Remove :set argument (the
15830 value was essentially identical to the defalt).
15831
15832 2001-11-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15833
15834 * hexl.el (hexl-mode, hexl-follow-ascii): Remove make-local-hook.
15835
15836 * icomplete.el (icomplete-minibuffer-setup): Likewise.
15837
15838 * hilit-chg.el (hilit-chg-set): Likewise.
15839
15840 * speedbar.el (speedbar-mode): Likewise.
15841
15842 * calendar/calendar.el (calendar-mode): Likewise.
15843
15844 * play/yow.el (psychoanalyze-pinhead): Use insert instead of
15845 insert-string.
15846
15847 * play/gamegrid.el (gamegrid-init-buffer): Likewise.
15848
15849 * term/bg-mouse.el (bg-insert-moused-sexp): Likewise.
15850
15851 * term/sun-mouse.el (sun-yank-selection): Likewise.
15852
15853 * textmodes/bib-mode.el (return-key-bib): Likewise.
15854
15855 * calendar/appt.el (appt-disp-window): Likewise.
15856
15857 * calendar/diary-lib.el (list-diary-entries): Likewise.
15858
15859 * array.el (array-reconfigure-rows): Likewise.
15860
15861 * filecache.el (file-cache-minibuffer-complete): Likewise.
15862
15863 * obsolete/cplus-md.el (fill-c++-comment): Likewise.
15864
15865 * strokes.el (strokes-prompt-user-save-strokes): Likewise.
15866
15867 * allout.el (outline-version, outline-open-topic)
15868 (outline-rebullet-heading, outline-insert-listified)
15869 (outline-latex-verbatim-quote-curr-line)
15870 (outline-latexify-one-item, outlineify-sticky): Likewise.
15871
15872 * vc.el (vc-next-action-on-file): Likewise.
15873 (vc-dired-mode): Remove make-local-hook.
15874
15875 2001-11-26 Andre Spiegel <spiegel@gnu.org>
15876
15877 * vc.el (vc-find-version): New function.
15878 (vc-version-other-window): Redefined in terms of the above.
15879
15880 * log-view.el (log-view-find-version): New function.
15881 (log-view-mode-map): Bind it to `f'.
15882
15883 2001-11-26 Gerd Moellmann <gerd@gnu.org>
15884
15885 * language/devan-util.el (dev-char-glyph): Escape `"' in
15886 string literals.
15887 (dev-glyph-glyph, dev-glyph-glyph-2)
15888 (devanagari-compose-syllable-region): Likewise.
15889
15890 2001-11-26 Richard M. Stallman <rms@gnu.org>
15891
15892 * window.el (save-selected-window): No error if saved window is dead.
15893
15894 * help-funs.el (describe-syntax): Put (interactive) after doc string.
15895
15896 2001-11-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15897
15898 * international/quail.el (quail-help): Require help-mode in
15899 top-level instead.
15900
15901 * iswitchb.el (iswitchb-exhibit): Use insert instead of
15902 insert-string.
15903
15904 * icomplete.el (icomplete-exhibit): Likewise.
15905
15906 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
15907
15908 * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
15909 (diff-hunk-kill): Simplify.
15910 (diff-post-command-hook): Only apply to a single hunk.
15911 (diff-hunk-text): Make `char-offset' non-optional.
15912 (diff-find-text): Return a cons cell.
15913 (diff-find-approx-text): New fun.
15914 (diff-find-source-location): Use it.
15915 (diff-apply-hunk, diff-test-hunk, diff-goto-source):
15916 Adapt to new retval of diff-find-text.
15917
15918 * vc-cvs.el (vc-cvs-parse-entry): Rewrite, comparing the string-
15919 rather than integer- representation of dates.
15920
15921 * textmodes/fill.el (fill-indent-according-to-mode): Default to nil.
15922
15923 * emacs-lisp/syntax.el: Don't profile syntax-ppss any more.
15924 (syntax-after): New fun.
15925
15926 * help-funs.el (describe-syntax): New fun.
15927
15928 * font-lock.el (font-lock-cache-state, font-lock-cache-position)
15929 (font-lock-ppss-stats, font-lock-ppss): Remove.
15930 (font-lock-fontify-syntactically-region): Remove tuning code.
15931 (font-lock-compile-keywords): Fix off-by-one bug.
15932 (font-lock-set-defaults): Don't set removed vars.
15933 (c-keywords): Add `inline'.
15934 (c-type-names): Add `_Complex', `_Imaginary' and `_Bool'.
15935
15936 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
15937 Set syntax-begin-function.
15938 (lisp-interaction-mode-abbrev-table): Defvar to its correct value.
15939 (lisp-interaction-mode): Don't set local-abbrev-table any more.
15940 (lisp-mode-auto-fill): Use syntax-ppss and obey
15941 comment-auto-fill-only-comments.
15942 (lisp-fill-paragraph): Use syntax-ppss.
15943
15944 2001-11-25 ShengHuo ZHU <zsh@cs.rochester.edu>
15945
15946 * mail/rmail.el (rmail-enable-mime-composing): New. A lightweight
15947 version of rmail-enable-mime.
15948 (rmail-forward): Use it.
15949
15950 2001-11-25 Richard M. Stallman <rms@gnu.org>
15951
15952 * emacs-lisp/lisp-mode.el (lisp-indent-function): Add doc string.
15953
15954 * international/quail.el (quail-keyboard-layout-button):
15955 Define button type.
15956 (quail-keyboard-customize-button): Likewise.
15957 (quail-help): Use those button types. Require `help-mode'.
15958 Avoid altering the argument `package'.
15959
15960 * help-mode.el (help-function, help-variable, help-face)
15961 (help-coding-system, help-input-method, help-character-set):
15962 Define each button type with its own explicit define-button-type.
15963
15964 * language/devan-util.el: Comment out parts of the file
15965 which apparently are garbled.
15966
15967 2001-11-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15968
15969 * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use
15970 insert-string.
15971
15972 2001-11-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15973
15974 * play/snake.el (snake-mode): Remove make-local-hook.
15975
15976 * play/tetris.el (tetris-mode): Likewise.
15977
15978 * play/decipher.el (decipher-mode): Likewise.
15979
15980 * tmm.el (tmm-add-prompt): Likewise.
15981
15982 2001-11-25 Sam Steingold <sds@gnu.org>
15983
15984 * menu-bar.el (menu-bar-apropos-menu): New variable.
15985 Moved all `apropos' bindings to this menu.
15986 (menu-bar-help-menu): Added `menu-bar-apropos-menu'.
15987
15988 2001-11-24 KAWABATA, Taichi <batta@beige.ocn.ne.jp>
15989
15990 The following changes are for new indian languages support based
15991 on Unicode charset and CDAC fonts.
15992
15993 * international/mule-conf.el: Change indian-1-column charset to
15994 indian-glyph charset.
15995
15996 * international/characters.el: Adjusted for the change of
15997 indian-1-column -> indian-glyph.
15998
15999 * international/fontset.el: Delete the setting for indian-1-column
16000 and add the setting for indian-glyph in the default fontset.
16001
16002 * language/indian.el: Completely re-written.
16003
16004 * language/devanagari.el: Completely re-written.
16005
16006 * language/devan-util.el: Completely re-written.
16007
16008 * language/ind-util.el: New file.
16009
16010 2001-11-24 Richard M. Stallman <rms@gnu.org>
16011
16012 * startup.el (command-line-1): Don't do startup screen
16013 if a subprocess is running. Call the startup screen buffer
16014 "GNU Emacs". Make a special mode-line-format for it.
16015
16016 * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var.
16017 (browse-url-galeon): Use that variable.
16018
16019 * mail/supercite.el (sc-toggle-var): Don't use set-variable or
16020 eval-expression. Eval and set the variable simply.
16021
16022 * files.el (temporary-file-directory): Use defcustom.
16023 (small-temporary-file-directory): Likewise.
16024 (normal-backup-enable-predicate): Move down in file
16025 after definition of temporary-file-directory.
16026
16027 * bindings.el (last-buffer, unbury-buffer): Doc fixes.
16028
16029 2001-11-24 Colin Walters <walters@debian.org>
16030
16031 * calc/calc-ext.el (calc-init-extensions): Update the rest of the
16032 autoload names to match files renamed on initial calc import.
16033
16034 * calc/calc.el (Commentary): Cleanup, and add logistic curve
16035 fitting suggestion from Robert J. Chassell <bob@rattlesnake.com>.
16036
16037 2001-11-23 Colin Walters <walters@debian.org>
16038
16039 * Makefile.in (finder_setwins, setwins): Include Calc again.
16040
16041 * calc/calc-rules.el: Add header comment.
16042
16043 2001-11-23 Andre Spiegel <spiegel@gnu.org>
16044
16045 * vc.el (with-vc-properties): Don't bind `filename' locally.
16046 (with-vc-file, edit-vc-file): Use `make-symbol' for local bindings
16047 to avoid name clashes. Fix `lisp-indent-function' property for
16048 both.
16049
16050 2001-11-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
16051
16052 * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword.
16053
16054 2001-11-22 Colin Walters <walters@debian.org>
16055
16056 * calc/calc-misc.el (report-calc-bug):
16057 Use `reporter-prompt-for-summary-p'.
16058
16059 * calc/INSTALL, calc/Makefile: Remove.
16060
16061 2001-11-22 Miles Bader <miles@gnu.org>
16062
16063 * emacs-lisp/re-builder.el (reb-match-0, reb-match-1)
16064 (reb-match-2, reb-match-3): Add dark-background variants.
16065
16066 2001-11-22 Colin Walters <walters@debian.org>
16067
16068 * calc/calc-misc.el (calc-info): Don't perform voodoo, just
16069 (info "Calc").
16070 (report-calc-bug): Use reporter.el.
16071
16072 * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
16073
16074 2001-11-21 Richard M. Stallman <rms@gnu.org>
16075
16076 * which-func.el (which-function): Call imenu--make-index-alist
16077 if necessary to get a list of functions.
16078 (which-function-imenu-failed): New variable.
16079 (which-func-update): Handle all visible windows.
16080 (which-func-update-1): New subroutine broken out of which-func-update.
16081
16082 * files.el (temporary-file-directory, null-device)
16083 (small-temporary-file-directory): Definitions moved up.
16084
16085 * progmodes/cperl-mode.el (cperl-problems, cperl-tips)
16086 (cperl-non-problems, cperl-praise): Doc fixes.
16087
16088 * progmodes/sh-script.el (sh-mode): Don't use define-derived-mode.
16089 (sh-mode-syntax-table): Function restored.
16090 Variable set up for use by function sh-mode-syntax-table.
16091 (sh-set-shell): Set the syntax table.
16092
16093 * play/gomoku.el (gomoku-mode): Don't use define-derived-mode.
16094
16095 * progmodes/perl-mode.el (perl-mode): Don't use define-derived-mode.
16096
16097 * international/encoded-kb.el: Don't alter minor-map-alist.
16098
16099 2001-11-20 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
16100
16101 * files.el (auto-save-file-name-transforms): Put remote files in
16102 temporary-file-directory rather than /tmp.
16103
16104 2001-11-21 Colin Walters <walters@debian.org>
16105
16106 * calc/calc-macs.el (calc-slow-wrapper): Move (point) call outside
16107 of (function ...) wrapper.
16108
16109 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
16110
16111 * derived.el (define-derived-mode): Create the abbrev-table
16112 from inside the `defvar'.
16113
16114 * jit-lock.el (jit-lock-defer-time): New var.
16115 (jit-lock-defer-timer, jit-lock-buffers): New vars.
16116 (jit-lock-mode): Initialize them. Cancel the timers more carefully.
16117 (jit-lock-function): Defer fontification if requested.
16118 (jit-lock-stealth-chunk-start): Pay attention to the new non-nil value.
16119 (jit-lock-stealth-fontify): Check the new `jit-lock-defer-multiline'
16120 text property.
16121 (jit-lock-deferred-fontify): New fun.
16122
16123 2001-11-20 Richard M. Stallman <rms@gnu.org>
16124
16125 * emacs-lisp/lisp-mode.el (lisp-interaction-mode):
16126 Set local-abbrev-table to lisp-mode-abbrev-table.
16127
16128 * emacs-lisp/re-builder.el (reb-mode):
16129 Don't use define-derived-mode. Call kill-all-local-variables.
16130
16131 * emacs-lisp/lisp-mode.el (lisp-mode, emacs-lisp-mode):
16132 Don't use define-derived-mode.
16133
16134 * help-mode.el (help-mode): Undo 2001-10-07 change.
16135
16136 * replace.el (occur-mode): Undo 2001-5-20 change.
16137
16138 2001-11-20 Jason Rumney <jasonr@gnu.org>
16139
16140 * w32-fns.el (w32-system-coding-system): Change to an alias for
16141 locale-coding-system.
16142 (set-w32-system-coding-system): Document the above change.
16143 Set locale-coding-system instead.
16144
16145 2001-11-20 Richard M. Stallman <rms@gnu.org>
16146
16147 * ruler-mode.el: Add pagination.
16148 (ruler-mode-toggle-show-tab-stops): No need to
16149 test `ruler-mode' variable.
16150
16151 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
16152
16153 * play/landmark.el: Mark lm-mode as special.
16154
16155 * play/gomoku.el: Mark gomoku-mode as special.
16156
16157 2001-11-20 Juanma Barranquero <lektu@terra.es>
16158
16159 * emacs-lisp/re-builder.el (reb-change-target-buffer): New function.
16160 (top-level): Bind it to C-c C-b.
16161 (re-builder): Don't re-enter RE Builder Mode.
16162
16163 * bs.el (bs-delete): Signal an error if the buffer cannot be deleted.
16164
16165 2001-11-20 Stefan Monnier <monnier@cs.yale.edu>
16166
16167 * progmodes/cperl-mode.el (cperl-perldoc): Require man before binding
16168 `manual-program'.
16169
16170 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Don't move back
16171 to a line without a comment.
16172
16173 2001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
16174
16175 * dired.el (dired-listing-switches): Mention in the doc string
16176 that some switches are not supported by ls-lisp.el
16177
16178 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
16179
16180 * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
16181 (imenu--create-keymap-2): Remove.
16182 (imenu--create-keymap-1): Simplify, remove third argument.
16183 (imenu--generic-function): Use dolist.
16184 (imenu-find-default): New function.
16185 (imenu--completion-buffer): Use it.
16186 (imenu--mouse-menu): Use popup-menu.
16187 (imenu--menubar-select): Return t rather than calling imenu.
16188
16189 * textmodes/fill.el (fill-delete-prefix, fill-delete-newlines):
16190 New functions, extracted from fill-region-as-paragraph.
16191 (fill-region-as-paragraph): Use them.
16192 Use an end marker instead of eob.
16193 Ignore whitespace-only fill-prefixes when indenting according to mode.
16194 Simplify the loop that searches for spaces backwards.
16195
16196 * textmodes/picture.el (picture-vertical-step)
16197 (picture-horizontal-step): Don't use defconst for variables.
16198
16199 * mail/mail-extr.el: Use backquote/dolist/mapc/when. Docstring fixes.
16200 (mail-extract-address-components): Downcase domain names.
16201 (mail-extr-delete-char): Remove. Use delete-char instead.
16202
16203 * emulation/pc-select.el: Doc string fixes.
16204 (pc-selection-mode): Don't treat macos as a tty.
16205
16206 * emacs-lisp/lisp.el (mark-sexp): Mark more if repeated.
16207
16208 * progmodes/cc-engine.el (c-parse-state): Typo. From Martin Stjernholm.
16209
16210 * mwheel.el (mouse-wheel-scroll-amount): Allow float values.
16211 (mouse-wheel-progessive-speed): New var.
16212 (mwheel-scroll): Use it and handle float values.
16213
16214 * lazy-lock.el (lazy-lock-install-hooks): Remove make-local-hook.
16215
16216 * iswitchb.el (iswitchb-mode): Use define-minor-mode.
16217 (iswitchb): Fix the case where the result was selected with the mouse.
16218 (iswitchb-completion-help): Use the normal *Completions* now that
16219 mouse selection works.
16220 (iswitchb-minibuffer-setup): Simplify.
16221
16222 * newcomment.el (comment-column, comment-style, comment-multi-line)
16223 (comment-auto-fill-only-comments): Remove :group arg.
16224 (comment-padding): Add :type.
16225 (comment-indent-new-line): Ignore comment-auto-fill-only-comments
16226 if called interactively.
16227
16228 2001-11-19 Colin Walters <walters@verbum.org>
16229
16230 * calc/calc.el (toplevel): Add comment and version header.
16231 (calc-init-base): Bump version to 2.02f, update date.
16232
16233 2001-11-19 Richard M. Stallman <rms@gnu.org>
16234
16235 * net/browse-url.el: Support Mozilla and Galeon.
16236 By default, find the installed browser whichever it is.
16237 (browse-url-mozilla): New function.
16238 (browse-url-mozilla-sentinel): New function.
16239 (browse-url-galeon, browse-url-galeon-sentinel): New functions.
16240 (browse-url-default-browser): New function.
16241 (browse-url-process-environment): Use browse-url-browser-display.
16242 (browse-url-browser-display): Renamed from browse-url-netscape-display.
16243 (browse-url-mozilla-startup-arguments, browse-url-galeon-program)
16244 (browse-url-galeon-arguments, browse-url-galeon-startup-arguments)
16245 (browse-url-mozilla-program, browse-url-mozilla-arguments): New vars.
16246 (browse-url-browser-function): New default, new options.
16247
16248 2001-11-19 Sam Steingold <sds@gnu.org>
16249
16250 * bindings.el (last-buffer, unbury-buffer): New function.
16251 (mode-line-unbury-buffer): Use `unbury-buffer'.
16252
16253 2001-11-18 Stephen Eglen <stephen@gnu.org>
16254
16255 * iswitchb.el (iswitchb-cannot-complete-hook): New variable to
16256 control behaviour when no further completion is possible.
16257
16258 2001-11-19 Colin Walters <walters@verbum.org>
16259
16260 * calc/calc-macs.el (calc-wrapper, calc-slow-wrapper)
16261 (math-showing-full-precision, math-with-extra-prec, math-working)
16262 (calc-with-default-simplification)
16263 (calc-with-trail-buffer): Use backtick.
16264 (Math-zerop, Math-integer-negp, Math-integer-posp, Math-negp)
16265 (Math-looks-negp, Math-posp, Math-integerp, Math-natnump)
16266 (Math-ratp, Math-realp, Math-anglep, Math-numberp, Math-scalarp)
16267 (Math-vectorp, Math-messy-integerp, Math-objectp, Math-objvecp)
16268 (Math-integer-neg, Math-equal, Math-lessp, Math-primp)
16269 (Math-num-integerp, Math-bignum-test, Math-equal-int)
16270 (Math-natnum-lessp, math-format-radix-digit): Change to `defsubst'.
16271 (calc-record-compilation-date-macro): Deleted. Callers updated.
16272 (math-format-radix-digit): Move to calc-bin.el.
16273
16274 * calc/calc.el (calc-record-compilation-date): Remove.
16275 (calc-bug-address): Update.
16276 (calc-settings-file): Use `user-init-file'.
16277
16278 * calc/calc-mode.el (calc-settings-file-name, calc-save-modes):
16279 Handle null `calc-settings-file'.
16280
16281 * calc/calc-frac.el (calc-over-notation): Use `completing-read'.
16282 * calc/calc-keypd.el (calc-keypad-mode): New.
16283 (calc-do-keypad): Use it.
16284 (calc-keypad-map): Move into `calc-keypad-mode'.
16285
16286 * calc-math.el (calcFunc-sqrt, calcFunc-hypot): Add missing quote
16287 to defalias argument.
16288
16289 * calc-misc.el (math-fixnump, math-fixnatnump, calcFunc-trunc)
16290 (calcFunc-floor): Ditto.
16291
16292 * calc-units.el (calcFunc-usimplify): Ditto.
16293
16294 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
16295 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
16296 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
16297 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
16298 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
16299 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
16300 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
16301 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
16302 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
16303 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
16304 * calcsel2.el: Change all toplevel `setq' forms to `defvar' forms,
16305 and move them before their first use. Use `when', `unless'.
16306 Remove trailing periods from error forms. Add description and
16307 headers suggested by Emacs Lisp coding conventions.
16308
16309 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
16310
16311 * newcomment.el (comment-indent):
16312 Fix misindentation for comment-only lines.
16313 (comment-indent-new-line): Only obey comment-multi-line if the
16314 comment-ender is not the end-of-line.
16315
16316 2001-11-19 Richard M. Stallman <rms@gnu.org>
16317
16318 * net/net-utils.el (network-connection-service-abbrev-alist):
16319 New variable.
16320
16321 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
16322 Advance to start of 3rd sexp by moving fwd and backing over it.
16323 At first three elements, act like defun.
16324
16325 * delsel.el (delete-selection-pre-hook): Handle and resignal
16326 file-supersession errors to interact properly with userlock.el.
16327
16328 2001-11-18 Richard M. Stallman <rms@gnu.org>
16329
16330 * progmodes/fortran.el (fortran-mode-syntax-table):
16331 Specify punctuation syntax for backslash.
16332
16333 * progmodes/sh-script.el (sh-must-be-shell-mode): Function deleted.
16334 All calls deleted.
16335
16336 * international/mule-util.el (string-to-sequence): Make it obsolete.
16337 (string-to-list, string-to-vector): Implement them directly
16338 using append and vconcat, not with string-to-sequence.
16339
16340 * startup.el (command-line): Set abbrevs-changed to nil after
16341 reading the init file and the abbrevs file.
16342
16343 * isearch.el (isearch): Use magenta2 as bg for (background light)
16344
16345 2001-11-17 Richard M. Stallman <rms@gnu.org>
16346
16347 * menu-bar.el (menu-bar-update-buffers-1): Don't pad the buffer name.
16348
16349 * simple.el (minibuffer-history-sexp-flag): Doc fix.
16350
16351 2001-11-17 Stefan Monnier <monnier@cs.yale.edu>
16352
16353 * font-lock.el (font-lock-compile-keywords): New arg `regexp'.
16354 If set and if applicable, add a regexp to highlight defun-like
16355 text inside comments and strings.
16356 (font-lock-fontify-keywords-region): Pass that new arg.
16357 (font-lock-set-defaults): Move the code to set `font-lock-keywords'
16358 to the end and pass that new arg.
16359 (c-font-lock-keywords-2): Fix regex for labels.
16360 (font-lock-match-c++-style-declaration-item-and-skip-to-next):
16361 Make it work when LIMIT is several lines further.
16362 (c-font-lock-keywords-3, c++-font-lock-keywords-3)
16363 (objc-font-lock-keywords-3, java-font-lock-keywords-3):
16364 Use backquote and make the regexes for `int a, b, c;' work on
16365 multiple lines.
16366
16367 * emacs-lisp/re-builder.el (reb-mode): Use define-derived-mode.
16368 (font-lock-defaults-alist): Don't change it any more.
16369 (reb-subexp-mode-map): Cleanup.
16370
16371 * custom.el (custom-current-group-alist): New var.
16372 (custom-declare-group): Set it.
16373 (custom-current-group): New fun.
16374 (custom-declare-variable, custom-handle-all-keywords):
16375 Use it as a default if no :group argument is specified.
16376
16377 * international/mule-cmds.el (locale-name-match): Use \` and \(?:.
16378 (standard-keyboard-coding-systems): New var.
16379 (set-locale-environment): Use it to decide whether or not to call
16380 set-keyboard-coding-system.
16381 (locale-language-names): Use \"French\" for "fr".
16382
16383 2001-11-17 Richard M. Stallman <rms@gnu.org>
16384
16385 * emacs-lisp/checkdoc.el (princ-list, checkdoc-read-event)
16386 (add-to-list): Delete compatibility code.
16387 (checkdoc-next-message-error): Doc fix.
16388
16389 2001-11-17 Stephen Eglen <stephen@gnu.org>
16390
16391 * locate.el (locate): Show default locate pattern within the
16392 prompt, but don't insert it into the minibuffer contents.
16393 Catch the case when pattern is the empty string.
16394
16395 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
16396
16397 * language/european.el ("French"): New language environment.
16398
16399 2001-11-16 Richard M. Stallman <rms@gnu.org>
16400
16401 * calendar/todo-mode.el (todo-save): Fix previous change.
16402
16403 * subr.el (functionp): Do use cdr-safe on object.
16404
16405 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
16406
16407 * bindings.el (mode-line-mode-name): Only put the help-echo property
16408 if the local-map property was put as well.
16409 (global-map): Bind switch-frame, delete-frame, iconify-frame
16410 and make-frame-visible events.
16411
16412 * emacs-lisp/elp.el (elp-not-profilable): New var.
16413 (elp-not-profilable-p): New function.
16414 (elp-instrument-function): Use it. Use backquotes and push.
16415
16416 * emacs-lisp/bytecomp.el (byte-compile-call-tree, byte-code-vector)
16417 (byte-stack+-info, byte-compile-last-warned-form)
16418 (byte-compile-last-logged-file): Don't defconst a variable.
16419 (no-byte-compile): Declare.
16420 (byte-compile-file): Don't boundp-check no-byte-compile any more.
16421 (byte-compile-defvar): Leave defconst as is.
16422
16423 * emacs-lisp/edebug.el (edebug-form-data, edebug-offsets)
16424 (edebug-offsets-stack, edebug-read-dotted-list, edebug-def-name)
16425 (edebug-current-offset, edebug-old-def-name, edebug-error-point)
16426 (edebug-best-error): Don't defconst a variable.
16427 (edebug-read-syntax-table): Use a char-table.
16428 (edebug-lemacs-specific): Remove.
16429 Toplevel: Eliminate check for Lucid Emacs.
16430
16431 * pcvs-util.el (cvs-prefix-define): Don't defconst a variable.
16432
16433 * rect.el (move-to-column-force): Mark obsolete.
16434 (operate-on-rectangle, delete-extract-rectangle-line)
16435 (insert-rectangle, delete-whitespace-rectangle-line)
16436 (open-rectangle-line, clear-rectangle-line): Use move-to-column.
16437 (string-rectangle-history): New var.
16438 (string-rectangle, string-insert-rectangle): Use it.
16439 (delete-rectangle-line): Fix pos/column mixup and simplify.
16440
16441 * startup.el (normal-top-level-add-subdirs-to-load-path): Simplify.
16442 (normal-top-level, command-line, command-line-1): Simplify.
16443
16444 * tar-mode.el (tar-mode): Use define-derived-mode.
16445
16446 * view.el (view-mode-enable): Don't use make-local-hook.
16447
16448 * emacs-lisp/eldoc.el (eldoc-mode): Use define-minor-mode.
16449
16450 2001-11-16 Richard M. Stallman <rms@gnu.org>
16451
16452 * mail/mail-extr.el (mail-extr-voodoo): Treat a number as a word
16453 if it doesn't make sense as anything else.
16454 Don't recognize a "telephone number" at the beginning of the name.
16455 (mail-extr-leading-garbage): Match non-word characters only.
16456
16457 2001-11-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16458
16459 * startup.el (command-line-processed): Doc fix.
16460
16461 * apropos.el (apropos-next-label-button): Doc fix.
16462
16463 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
16464
16465 * comint.el (comint-mode): Simplify.
16466 (make-comint-in-buffer): Run `comint-mode' only if necessary.
16467
16468 * subr.el (eval-after-load): Make it work with features as well.
16469
16470 * log-view.el (log-view-mode): Don't mark the buffer unmodified.
16471
16472 * international/mule-cmds.el (describe-input-method): Setup xref.
16473 (set-language-environment): Use functionp.
16474 (locale-language-names, locale-charset-language-names)
16475 (locale-preferred-coding-systems): Defconst and purecopy.
16476
16477 * language/european.el (mac-roman): Add mime-charset property.
16478
16479 2001-11-15 Richard M. Stallman <rms@gnu.org>
16480
16481 * emacs-lisp/cl.el (values, values-list, multiple-value-list)
16482 (multiple-value-apply, nth-value): Use defsubst rather than defalias
16483 to get better doc strings.
16484
16485 2001-11-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16486
16487 * derived.el: Fix autoload cookie.
16488
16489 2001-11-15 Richard M. Stallman <rms@gnu.org>
16490
16491 * jka-compr.el (jka-compr-partial-uncompress): Fix previous change.
16492
16493 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
16494
16495 * menu-bar.el (menu-bar-edit-menu) <copy>: Put an explicit key binding.
16496
16497 2001-11-15 Richard M. Stallman <rms@gnu.org>
16498
16499 * dired.el (dired-undo): Display a message to explain
16500 that this does not undo file system changes.
16501
16502 2001-11-15 David Kastrup <David.Kastrup@t-online.de>
16503
16504 * mouse-drag.el (mouse-drag-throw): Push back non-drag events
16505 into `unread-command-events' instead of trying keymap
16506 lookups ourselves. This makes mouse-clicks do the right
16507 thing even when keymaps of overlays are involved.
16508 (mouse-drag-drag): Likewise.
16509
16510 2001-11-15 Andreas Schwab <schwab@suse.de>
16511
16512 * progmodes/ada-mode.el (ada-add-extensions): Quote regexp special
16513 characters and append anchor to pattern added to auto-mode-alist.
16514
16515 2001-11-15 Stefan Monnier <monnier@cs.yale.edu>
16516
16517 * server.el (server-process-filter): Run pre/post-comment-hook
16518 before/after visiting the file.
16519
16520 * info-look.el (makefile-mode): Add info for automake.
16521 (autoconf-mode): Fix the name of the index for automake.
16522
16523 * international/latin-9.el: Give pilcrow punctuation syntax.
16524
16525 2001-11-15 Andre Spiegel <spiegel@gnu.org>
16526
16527 * vc.el: Documentation fixes.
16528
16529 2001-11-14 Stefan Monnier <monnier@cs.yale.edu>
16530
16531 * smerge-mode.el (smerge-match-conflict): Fix typo.
16532 (smerge-diff): Be careful to read match-data early enough.
16533
16534 2001-11-14 Colin Walters <walters@verbum.org>
16535
16536 * calc/calc-alg.el (calcFunc-esimplify, calcFunc-simplify)
16537 (calcFunc-subst): Use `defalias' instead of `fset' and
16538 `symbol-function'.
16539
16540 * calc/calc-arith.el (calcFunc-abs, calcFunc-float)
16541 (calcFunc-ceil, calcFunc-round): Ditto.
16542
16543 * calc/calc-bin.el (calcFunc-clip): Ditto.
16544
16545 * calc/calc-ext.el (calcFunc-evalv): Ditto.
16546
16547 * calc/calc-math.el (calcFunc-sqrt, calcFunc-hypot): Ditto.
16548
16549 * calc/calc-misc.el (math-fixnump, math-fixnatnump)
16550 (calcFunc-trunc, calcFunc-floor, calc-report-bug): Ditto.
16551
16552 * calc/calc-units.el (calcFunc-unsimplify): Ditto.
16553
16554 * calc-aent.el, calc-ext.el, calc-incom.el, calc-misc.el
16555 * calc-sel.el, calc-vec.el, calc-alg.el, calc-fin.el
16556 * calc-keypd.el, calc-mode.el, calc-stat.el, calc-yank.el
16557 * calc-arith.el, calc-forms.el, calc-lang.el, calc-mtx.el
16558 * calc-store.el, calc.el, calc-bin.el, calc-frac.el, calc-macs.el
16559 * calc-poly.el, calc-stuff.el, calcalg2.el, calc-comb.el
16560 * calc-funcs.el, calc-maint.el, calc-prog.el, calc-trail.el
16561 * calcalg3.el, calc-cplx.el, calc-graph.el, calc-map.el
16562 * calc-rewr.el, calc-undo.el, calccomp.el, calc-embed.el
16563 * calc-help.el, calc-math.el, calc-rules.el, calc-units.el
16564 * calcsel2.el: Style cleanup; don't put closing parens on their
16565 own line, add "foo.el ends here" to each file, and update
16566 copyright date.
16567
16568 * README: Update maintainer.
16569
16570 2001-11-13 Richard M. Stallman <rms@gnu.org>
16571
16572 * progmodes/compile.el (recompile): Use compilation-arguments if
16573 set, so as to be able to M-x recompile the exact command which
16574 created a compilation-mode buffer.
16575
16576 * progmodes/ada-mode.el (ada-fill-comment-prefix): Doc fix.
16577
16578 2001-11-13 Gerd Moellmann <gerd@gnu.org>
16579
16580 * mouse.el (mouse-drag-region): Don't run the up-event
16581 handler if window start changed due to the down-mouse event.
16582
16583 2001-11-13 Richard M. Stallman <rms@gnu.org>
16584
16585 * mouse.el (mouse-show-mark): Either move point to the mark
16586 or use highlighting, never both.
16587 (mouse-buffer-menu): If WINDOW is a frame, select its selected window.
16588
16589 2001-11-13 Simon Josefsson <jas@extundo.com>
16590
16591 * mail/smtpmail.el (top-level): Change maintainer to Simon
16592 Josefsson, cleanup the smtpmail.el header.
16593
16594 * mail/smtpmail.el (top-level): Don't require cl or base64.
16595 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
16596 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd):
16597 Defsubst instead of defmacro.
16598 (smtpmail-intersection): Return value in reverse order.
16599 (smtpmail-open-stream): Use stringp instead of string-to-list.
16600 (smtpmail-open-stream, smtpmail-try-auth-methods): New functions,
16601 separated from smtpmail-via-smtp.
16602
16603 * mail/smtpmail.el (top-level): Autoload starttls, mail-utils and
16604 rfc2104. Require base64 and cl.
16605 (smtpmail-smtp-service): Doc fix. :type fix.
16606 (smtpmail-debug-info): Doc fix.
16607 (smtpmail-debug-verb, smtpmail-auth-credentials)
16608 (smtpmail-starttls-credentials, smtpmail-auth-supported):
16609 New variables.
16610 (smtpmail-deduce-address-list, smtpmail-send-it): Don't require
16611 mail-utils (it is autoloaded).
16612 (smtpmail-cred-server, smtpmail-cred-port, smtpmail-cred-key)
16613 (smtpmail-cred-user, smtpmail-cred-cert, smtpmail-cred-passwd)
16614 (smtpmail-find-credentials, smtpmail-intersection): New utility funs.
16615 (smtpmail-via-smtp): Support STARTTLS, if binary is installed.
16616 (smtpmail-via-smtp): Support AUTH.
16617 (smtpmail-via-smtp): Use `smtpmail-debug-verb' to control VERB.
16618
16619 2001-11-13 Richard M. Stallman <rms@gnu.org>
16620
16621 * ebuff-menu.el (electric-buffer-update-highlight): New function.
16622 (electric-buffer-overlay): New variable.
16623 (electric-buffer-menu-looper): Call electric-buffer-update-highlight.
16624 (electric-buffer-list): Likewise.
16625
16626 * isearch.el (isearch-whitespace-chars): Doc fix.
16627 (isearch-mode): Handle negative search-slow-window-lines correctly.
16628
16629 2001-11-13 Stefan Monnier <monnier@cs.yale.edu>
16630
16631 * newcomment.el (comment-normalize-vars): Handle a nil comment-padding.
16632
16633 * progmodes/ada-mode.el (ada-fill-comment-prefix): GNAT wants 2 spaces.
16634 From Emmanuel Briot <briot@act-europe.fr>.
16635
16636 2001-11-13 Colin Walters <walters@debian.org>
16637
16638 * calc/calc.el (calc-unread-command): Use `unread-command-events'.
16639
16640 * calc/calc-mode.el (calc-settings-file-name): Don't hardcode
16641 "~/.emacs"; use `read-file-name'.
16642
16643 * calc/calc-graph.el, calc/calc-embed.el, calc/calc-graph.el
16644 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-prog.el
16645 * calc/calc-sel.el, calc/calc-store.el, calc/calc-yank.el
16646 * calc/calc.el: Use `frame-width' instead of `screen-width',
16647 `frame-height' instead of `screen-height', and,
16648 `executing-kbd-macro' instead of `executing-macro'.
16649
16650 * calc/calc-embed.el (calc-do-embedded): Call `y-or-n-p' with
16651 correct number of arguments.
16652
16653 * calc/calc-aent.el (calc-do-alg-entry):
16654 Use `blink-paren-function' instead of `blink-paren-hook'.
16655
16656 2001-11-12 Richard M. Stallman <rms@gnu.org>
16657
16658 * calendar/todo-mode.el (todo-save): Add save-excursion
16659 and save-restriction.
16660
16661 * server.el (server-edit, server-done): Doc fix.
16662
16663 * simple.el (clone-indirect-buffer): Error if major mode symbol
16664 has a no-clone-indirect property.
16665 (clone-buffer): Check for obvious errors before reading clone name.
16666
16667 * info.el (Info-mode): Add a no-clone-indirect property.
16668
16669 2001-11-12 Sam Steingold <sds@gnu.org>
16670
16671 * vc.el (vc-print-log): Bind `inhibit-read-only' to t before and
16672 set-buffer-modified-p to nil after `vc-exec-after'.
16673 * log-view.el (log-view-mode-map): Bind "q", "z", "m" and "d".
16674 (log-view-mode): Make read-only.
16675 (log-view-current-file): Do final `expand-file-name' in the
16676 current `default-directory'.
16677 (log-view-current-tag): Take an optional `where' arg.
16678 (log-view-diff): New user command.
16679
16680 2001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16681
16682 * progmodes/cpp.el (cpp-choose-face): Fix typo.
16683
16684 2001-11-12 Sam Steingold <sds@gnu.org>
16685
16686 * emacs-lisp/cl-indent.el (toplevel): Indent properly
16687 `generic-flet', `generic-labels', `with-accessors',
16688 `with-condition-restarts'.
16689
16690 2001-11-12 Richard M. Stallman <rms@gnu.org>
16691
16692 * dired.el: Many trivial doc fixes.
16693 (dired-get-file-for-visit): New function.
16694 (dired-find-alternate-file, dired-mouse-find-file-other-window)
16695 (dired-view-file, dired-find-file-other-window, dired-display-file)
16696 (dired-find-file): Use dired-get-file-for-visit.
16697
16698 2001-11-12 Alex Schroeder <kensanata@yahoo.com>
16699
16700 * sql.el (sql-mode): Doc change.
16701
16702 * sql.el (sql-mode-syntax-table): The backslash is no longer an
16703 escape character.
16704
16705 2001-11-12 Colin Walters <walters@debian.org>
16706
16707 * calc/calc-keypd.el (toplevel): Bind mouse buttons.
16708 (calc-do-keypad): Don't attempt to use nonexistent global
16709 mouse-map, use calc-keypad-map.
16710 (calc-keypad-x-left-click): Renamed to calc-keypad-left-click.
16711 (calc-keypad-left-click): Don't use mouse-map; update to new event
16712 interface.
16713 (calc-keypad-x-middle-click, calc-keypad-x-right-click): Ditto.
16714 (calc-keypad-press): Use `unread-command-events' instead of
16715 `unread-command-char'.
16716
16717 * calc/calc-ext.el (calc-init-extensions): Update autoload names
16718 to match files renamed on initial calc import.
16719
16720 2001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16721
16722 * textmodes/flyspell.el (flyspell-default-dictionary):
16723 Fix previous change.
16724
16725 2001-11-12 Richard M. Stallman <rms@gnu.org>
16726
16727 * textmodes/flyspell.el (flyspell-default-dictionary):
16728 Fix custom type.
16729
16730 2001-11-11 Richard M. Stallman <rms@gnu.org>
16731
16732 * calendar/solar.el (solar-sunrise-and-sunset):
16733 Exchange the two extreme values of day-length.
16734
16735 * progmodes/sh-script.el (sh-must-be-shell-mode):
16736 Allow modes derived from sh-mode.
16737
16738 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
16739 Turn off error in some re-search-forward calls.
16740
16741 * replace.el (query-replace-skip-read-only): New variable.
16742 (perform-replace): If that variable is non-nil, ignore matches
16743 that have a read-only property.
16744
16745 * derived.el (define-derived-mode): Doc fix.
16746
16747 * server.el (server-buffer-done): Test of server-existing-buffer
16748 was backwards.
16749 (server-existing-buffer): Doc fix.
16750
16751 * textmodes/flyspell.el (flyspell-default-dictionary):
16752 Allow nil as value, and make nil the default.
16753
16754 2001-11-11 Eli Zaretskii <eliz@is.elta.co.il>
16755
16756 * menu-bar.el (menu-bar-edit-menu): Don't use x-selection-exists-p if
16757 it is not fboundp.
16758 (clipboard-yank): Ditto.
16759
16760 2001-11-11 Colin Walters <walters@verbum.org>
16761
16762 The following changes are based on patches from
16763 Eli Zaretskii <eliz@is.elta.co.il>, Kai Gro\e,A_\e(Bjohann
16764 <Kai.Grossjohann@CS.Uni-Dortmund.DE>, and others.
16765
16766 * calc/calc.el (toplevel): Require calc-macs.
16767 (calc-minibuffer-size): New.
16768 (calcDigit-nondigit): Use it instead of `buffer-size'.
16769 (calcDigit-backspace): Likewise.
16770 (calcDigit-nondigit): Use `minibuffer-contents' instead of
16771 `buffer-string'.
16772 (calc-minibuffer-contains): Use `minibuffer-prompt-end' instead of
16773 `point-min'.
16774 (calcDigit-key): Use `calc-minibuffer-contains' instead of a
16775 `save-excursion'.
16776
16777 * calc/calc-macs.el (calc-record-compilation-date-macro): Return a
16778 simple `setq' form.
16779
16780 * calc/calc-ext.el: (toplevel): Require calc.
16781 (calc-fancy-prefix-map): New.
16782 (calc-fancy-prefix): Use it.
16783 (calc-fancy-prefix-other-key): New.
16784
16785 * calc/calc-aent.el (toplevel): Require calc-macs during compilation.
16786 (calc-do-quick-calc): Use `frame-width' instead of `screen-width'.
16787 (calcAlg-edit): Use `minibuffer-contents' instead of `buffer-string'.
16788 (calcAlg-enter): Likewise.
16789 (calcAlg-enter): Use `minibuffer-prompt-end' instead of `point-min'.
16790
16791 2001-11-10 Richard M. Stallman <rms@gnu.org>
16792
16793 * abbrev.el (read-abbrev-file): Don't set save-abbrevs.
16794 (quietly-read-abbrev-file): Doc fix.
16795
16796 * startup.el (command-line): Read standard abbrev
16797 file (abbrev-file-name), if it exists.
16798
16799 * files.el (save-abbrevs): Default value is t.
16800
16801 * progmodes/compile.el (compile-goto-error): Fix previous change
16802 in the case where subsequent errors have not been parsed yet
16803 because they are in a different source file.
16804
16805 2001-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
16806
16807 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
16808 Merge two regular expressions into one.
16809 (ps-mode): Make local bindings for `comment-start' and
16810 `comment-start-skip'.
16811 (ps-mode-looking-at-nested): Simplify an if-else construct;
16812 use `set-match-data' to set the result.
16813
16814 2001-11-10 Richard M. Stallman <rms@gnu.org>
16815
16816 * textmodes/flyspell.el (flyspell-correct-word/local-keymap):
16817 Function deleted.
16818 (flyspell-correct-word): Old definition deleted.
16819 (flyspell-correct-word/mouse-keymap): Renamed to flyspell-correct-word.
16820 All references renamed too.
16821
16822 2001-11-10 Gerd Moellmann <gerd@gnu.org>
16823
16824 * Makefile.in (finder_setwins, setwins): Exclude Calc.
16825
16826 2001-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
16827
16828 * wid-edit.el (checklist): Removed `:menu-tag'.
16829 (radio-button-choice): Ditto.
16830 (editable-list): Ditto.
16831
16832 2001-11-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16833
16834 * play/gomoku.el: Move definitions of constants to the beginning
16835 of file, before their use.
16836
16837 2001-11-09 Richard M. Stallman <rms@gnu.org>
16838
16839 * textmodes/flyspell.el: Use the keymap property
16840 instead of local-map, and don't use a minor-mode map.
16841 (flyspell-mode-map): Variable deleted.
16842 Don't mess with minor-mode-map-alist.
16843 (calling add-minor-mode): Specify nil for keymap.
16844 And always use add-minor-mode, now that it exists.
16845 (flyspell-overlay-keymap-property-name): Set it to `keymap'.
16846 (flyspell-mode-on): Don't locally bind flyspell-mouse-map
16847 or flyspell-local-mouse-map.
16848 (make-flyspell-overlay): Use flyspell-mouse-map directly.
16849 (flyspell-mode): Doc fix.
16850 (flyspell-mode-on): Don't call make-local-hook.
16851
16852 2001-11-09 Sam Steingold <sds@gnu.org>
16853
16854 * emacs-lisp/debug.el (debugger-make-xrefs):
16855 Add buttons to all symbols.
16856
16857 2001-11-09 Andre Spiegel <spiegel@gnu.org>
16858
16859 * vc.el: Add John David Smith to credits.
16860
16861 Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
16862
16863 * vc-hooks.el (vc-error-occured): Backquotified.
16864 (vc-file-prop-obarray): Use prime length for better efficiency.
16865
16866 * vc.el (vc-clear-context): Fill obarray with 0, not nil.
16867
16868 2001-11-09 Eli Zaretskii <eliz@is.elta.co.il>
16869
16870 * info.el (Info-file-list-for-emacs): Add entries for Calc.
16871
16872 2001-11-09 Miles Bader <miles@gnu.org>
16873
16874 * subr.el (functionp): Don't consider macros as functions.
16875
16876 2001-11-08 Miles Bader <miles@gnu.org>
16877
16878 * subr.el (functionp): Make work correctly for macros and unbound
16879 symbols.
16880
16881 * comint.el (comint-send-input): Fix description of
16882 `comint-process-echoes' in the doc-string.
16883
16884 2001-11-08 Eli Zaretskii <eliz@is.elta.co.il>
16885
16886 * international/mule.el (make-translation-table): Doc fix.
16887 Suggested by Alex Schroeder <alex@gnu.org>.
16888
16889 2001-11-07 Richard M. Stallman <rms@gnu.org>
16890
16891 * info.el (Info-fontify-node): Highlight every third menu item.
16892
16893 2001-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
16894
16895 * cus-edit.el (custom-face-value-create): Don't ignore the
16896 `customized-face' attribute when finding the current face spec.
16897
16898 2001-11-07 Stefan Monnier <monnier@cs.yale.edu>
16899
16900 * subr.el (with-local-quit): New macro.
16901 (make-syntax-table): Always inherit.
16902 (functionp): Be more careful when `object' is a symbol.
16903
16904 * dabbrev.el (dabbrev-completion): Use "*Completions*".
16905
16906 2001-11-07 Paul Eggert <eggert@twinsun.com>
16907
16908 * dired.el (dired-move-to-filename-regexp):
16909 Do not distinguish between ASCII letters and non-ASCII characters.
16910 Don't allow comma except in the form "month day, year".
16911 Don't allow space between month name and comma.
16912 Clean up the code that checks for trailing period, comma, and space.
16913 Remove now-obsolete comments, and add more commentary about
16914 Japanese dates.
16915 Always gobble up trailing spaces, instead of doing it only sometimes.
16916
16917 2001-11-07 Miles Bader <miles@gnu.org>
16918
16919 * paren.el (show-paren-match-face): Add dark-background variant.
16920
16921 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
16922
16923 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Paren typo.
16924 (lisp-mode-variables): Don't set paragraph-{start,separate}.
16925 Don't disable adaptive-fill-mode.
16926 (lisp-fill-paragraph): Use tab-width rather than 8.
16927 Prevent filling the first line of docstrings.
16928
16929 2001-11-06 Richard M. Stallman <rms@gnu.org>
16930
16931 * play/gomoku.el (gomoku): Doc fix.
16932
16933 * jka-compr.el (jka-compr-partial-uncompress):
16934 Support an alternative of not using dd.
16935 (jka-compr-dd-program): Use defcustom to define this.
16936 (jka-compr-load-suffixes): Use defcustom.
16937 (jka-compr-mode-alist-additions): Use defcustom.
16938
16939 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
16940
16941 * font-lock.el (font-lock-match-c-style-declaration-item-and-skip-to-next):
16942 Also work when LIMIT is further than the end of line.
16943
16944 2001-11-06 Eli Zaretskii <eliz@is.elta.co.il>
16945
16946 * international/quail.el (quail-update-leim-list-file): Print the
16947 offending file name if some of its quail-define-package forms is broken.
16948
16949 2001-11-05 Richard M. Stallman <rms@gnu.org>
16950
16951 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Return the value
16952 of the evaluated form.
16953
16954 2001-11-05 Paul Eggert <eggert@twinsun.com>
16955
16956 * ls-lisp.el (ls-lisp-time-to-seconds): New function.
16957 (ls-lisp-format-time): Emulate GNU fileutils 4.1.1 ls, whose time
16958 stamps always line up by default. Also, it uses a slightly
16959 different window to determine whether files are "recent".
16960
16961 2001-11-05 Andrew Innes <andrewi@gnu.org>
16962
16963 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
16964 Don't attempt to remake autoloads before nuking .elc files.
16965
16966 2001-11-04 Richard M. Stallman <rms@gnu.org>
16967
16968 * emacs-lisp/lisp-mode.el (last-sexp-toggle-display): Cope if
16969 previous-single-property-change or next-single-char-property-change
16970 returns nil.
16971
16972 * international/mule-cmds.el (set-locale-environment):
16973 Make it interactive; make arg optional.
16974
16975 * international/mule-diag.el (help-funs): Require help-funs.
16976
16977 2001-11-04 Eli Zaretskii <eliz@is.elta.co.il>
16978
16979 * term/internal.el (term-setup-hook): Add IT-setup-unicode-display.
16980
16981 2001-11-04 Miles Bader <miles@gnu.org>
16982
16983 * startup.el (fancy-splash-head): Reapply Gerd's hack to make the
16984 shadow of the splash image grey on a dark background instead of black.
16985
16986 2001-11-03 Stefan Monnier <monnier@cs.yale.edu>
16987
16988 * term.el (all faces): Don't (copy-face 'default <foo>).
16989
16990 * term/xterm.el (function-key-map):
16991 Add entry for `ESC [ 3 ~' -> <delete>
16992 Add entries `ESC O 5 [ABCD]' -> C-{up,down,right,left}.
16993 Use inheritance so that .emacs and terminfo take precedence.
16994
16995 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
16996
16997 * tooltip.el (tooltip-delay): Decrease to 0.7.
16998 (tooltip-hide-delay): Enlarge to 10.
16999
17000 2001-11-03 Richard M. Stallman <rms@gnu.org>
17001
17002 * startup.el (fancy-splash-tail): Explain how to recover
17003 from a crash, if there was a crash.
17004 (command-line-1): Reorganize display of startup screen,
17005 to simplify the logic. Use a temp buffer for it.
17006
17007 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
17008
17009 * frame.el (set-background-color, set-foreground-color):
17010 Call face-set-after-frame-default, to propagate the new colors to
17011 the frame's parameters alist.
17012
17013 * calendar/timeclock.el (timeclock-out): Signal an error if
17014 timeclock-last-event is nil.
17015
17016 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
17017
17018 * textmodes/fill.el (fill-context-prefix): Fix braino.
17019
17020 * international/quail.el (quail-help):
17021 Use `help-buffer' and move `help-setup-xref' to beginning.
17022
17023 * international/mule-cmds.el (describe-language-environment):
17024 Use `help-buffer' and move `help-setup-xref' to beginning.
17025
17026 * international/mule-diag.el (list-character-sets)
17027 (sort-listed-character-sets, describe-character-set)
17028 (describe-coding-system, describe-fontset, list-fontsets):
17029 Use `help-buffer' and move `help-setup-xref' to beginning.
17030 (describe-char-after): Use `internal-describe-syntax-value'.
17031
17032 2001-11-02 Richard M. Stallman <rms@gnu.org>
17033
17034 * mouse.el (popup-menu): If the user refuses to select
17035 from a menu, don't try to invoke the menu.
17036
17037 2001-11-02 Miles Bader <miles@gnu.org>
17038
17039 * help-mode.el (help-xref): New button type.
17040 (help-function, help-variable, help-face, help-coding-system)
17041 (help-input-method, help-character-set, help-type, help-symbol)
17042 (help-back, help-info, help-customize-variable, help-customize-face)
17043 (help-function-def, help-variable-def): Use it as a supertype.
17044 Remove `action' property.
17045
17046 * international/mule-diag.el (describe-character-set)
17047 (describe-coding-system): Pass correct args to `help-xref-button'.
17048 (sort-listed-character-sets): New button type.
17049 (list-character-sets): Use it.
17050 (list-charset-chars): New button type.
17051 (list-character-sets-1): Use it.
17052
17053 2001-11-01 Stefan Monnier <monnier@rum.cs.yale.edu>
17054
17055 * indent.el (tab-always-indent, indent-for-tab-command):
17056 Remove redundant `never' setting.
17057
17058 * fill.el (fill-region-as-paragraph): Don't forget to skip
17059 over current whitespace before looking for a preceding space.
17060
17061 2001-11-01 Richard M. Stallman <rms@gnu.org>
17062
17063 * files.el (file-newest-backup): Don't pass backup file name
17064 thru file-name-sans-versions, because it never has version numbers.
17065
17066 * textmodes/sgml-mode.el (sgml-xml-guess): Fix regexp
17067 to avoid ambiguous nested loops.
17068
17069 * files.el (find-file-noselect): Offer to change buffer-read-only
17070 only when the file's read-only status has changed from before
17071 as well as disagreeing with the buffer's current status.
17072 (buffer-file-read-only): New var, local in all buffers.
17073
17074 * buff-menu.el (buffer-menu): Doc fix.
17075 (buffer-menu-other-window): Doc fix.
17076 (list-buffers, list-buffers-noselect): Doc fix.
17077
17078 2001-11-01 Gerd Moellmann <gerd@gnu.org>
17079
17080 * startup.el (command-line): If the terminal Emacs is running on
17081 has erase char set to ^H, use the Backspace key for deleting
17082 backward, and the Delete key for deleting forward.
17083
17084 2001-11-01 Miles Bader <miles@gnu.org>
17085
17086 * button.el (define-button-type): Make sure every user-defined
17087 button type has a supertype.
17088
17089 2001-10-31 Jason Rumney <jasonr@gnu.org>
17090
17091 * international/mule-cmds.el (locale-language-names): Add chs and
17092 cht as aliases for Chinese-GB and Chinese-BIG5.
17093
17094 2001-10-31 Richard M. Stallman <rms@gnu.org>
17095
17096 * bindings.el (mode-line-frame-identification): Add doc string.
17097 (mode-line-position, mode-line-modes): New variables.
17098 (mode-line-format): Use mode-line-position for the part
17099 that displays the position-in-buffer info.
17100 Use mode-line-modes for the part that displays major and minor modes.
17101
17102 2001-10-31 Sam Steingold <sds@gnu.org>
17103
17104 * emacs-lisp/debug.el (debugger-make-xrefs): New function.
17105 (debugger-setup-buffer): Call it.
17106 (debugger-mode-map): Bind RET and mouse-2.
17107
17108 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17109
17110 * startup.el: Document command line option --no-window-system
17111 instead of --no-windows.
17112
17113 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
17114
17115 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
17116
17117 * font-lock.el (java-font-lock-syntactic-face-function): New fun.
17118 (font-lock-defaults-alist): Use it.
17119 From David Ponce <david.ponce@wanadoo.fr>
17120
17121 * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
17122 output of `char-after'.
17123
17124 * bindings.el (ctl-x-map): Add binding for C-x (, C-x ) and C-x e.
17125
17126 * simple.el (reindent-then-newline-and-indent): Insert the newline
17127 before indenting the first line.
17128 (undo-get-state, undo-revert-to-state): New funs.
17129 (shell-command): Don't kill the buffer even if empty.
17130 (transpose-subr-start1, transpose-subr-start2, transpose-subr-end1)
17131 (transpose-subr-end2): Remove.
17132 (transpose-subr): Add `special' arg and simplify.
17133 (transpose-subr-1): Rewrite.
17134 (do-auto-fill): Use fill-indent-according-to-mode and fill-nobreak-p.
17135 (rfc822-goto-eoh): Simplify.
17136
17137 2001-10-30 Richard M. Stallman <rms@gnu.org>
17138
17139 * enriched.el (enriched-face-ans): Fix previous change.
17140
17141 2001-10-30 Gerd Moellmann <gerd@gnu.org>
17142
17143 * international/iso-acc.el (iso-accents-compose): Remove a
17144 superfluous setq.
17145
17146 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
17147
17148 * buff-menu.el (list-buffers-noselect): If the buffer's name
17149 starts with a blank, but it visits a file, do show it (for files
17150 whose names start with a blank).
17151
17152 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
17153
17154 * textmodes/fill.el (sentence-end-double-space)
17155 (sentence-end-without-period): Move to paragraphs.el.
17156 (fill-indent-according-to-mode): Change default to t.
17157 (fill-context-prefix): Simplify control-flow and use a more
17158 sophisticated merge that unifies both previous checks.
17159 (fill-single-word-nobreak-p, fill-french-nobreak-p): New funs.
17160 (fill-nobreak-predicate): Make it into a defcustom'd hook.
17161 (fill-nobreak-p): New fun.
17162 (fill-region-as-paragraph): Use it.
17163 Handle `fill-indent-according-to-mode' slightly differently.
17164 (fill-individual-paragraphs-prefix): Simplify the control-flow.
17165 (fill-individual-paragraphs-citation): Fix.
17166
17167 * textmodes/paragraphs.el (use-hard-newlines): Use define-minor-mode.
17168 (paragraph-start): Change default to the `text-mode' value.
17169 (sentence-end-double-space, sentence-end-without-period):
17170 Move from fill.el.
17171 (forward-paragraph): Use `parstart' and `parsep' for temp variables
17172 rather than rebinding `paragraph-start' and `paragraph-separate'.
17173
17174 * indent.el (indent-line-function): Change default to indent-relative.
17175 (tab-always-indent): Add an `never' setting.
17176 (indent-according-to-mode): Handle `indent-relative' and
17177 `indent-relative-maybe' specially.
17178 (indent-for-tab-command): Rename `prefix-arg' to `arg'.
17179 Handle the `never' case for `tab-always-indent'.
17180 Don't call indent-according-to-mode for indent-relative' and
17181 `indent-relative-maybe'.
17182 (insert-tab): Rename `prefix-arg' to `arg'.
17183 (indent-region): Indent the first line as well.
17184 (indent-relative): Don't mark the buffer modified if the indentation
17185 is unchanged.
17186
17187 * textmodes/text-mode.el (paragraph-indent-minor-mode):
17188 Don't set paragraph-separate. Set paragraph-start more carefully.
17189 Set indent-line-function.
17190 (paragraph-indent-text-mode): Use it and define-derived-mode.
17191 (text-mode-map): Remove the \t binding.
17192 (text-mode): Simplify now that the default is more favorable.
17193
17194 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
17195
17196 * emacs-lisp/find-func.el (find-function-search-for-symbol):
17197 If the regexp doesn't match, use a looser one.
17198 (find-variable-noselect): Add `file' argument.
17199
17200 * pcvs.el (cvs-mode-commit-hook): New hook.
17201 (cvs-mode-commit): Run it.
17202
17203 * log-edit.el (log-edit): Run hook after `log-edit-files'.
17204
17205 * emacs-lisp/edebug.el (delay-mode-hooks): Add edebug-spec.
17206 (edebug-instrument-function): Use `find-function-noselect'.
17207
17208 2001-10-29 Richard M. Stallman <rms@gnu.org>
17209
17210 * term.el (term-if-emacs19): Macro deleted.
17211 Callers changed to use progn instead.
17212
17213 * frame.el (blink-cursor-mode): Doc fix.
17214
17215 * files.el (find-backup-file-name): Use make-backup-file-name.
17216
17217 * emacs-lisp/edebug.el (edebug-window-live-p): Always alias to
17218 window-live-p.
17219 (edebug-set-conditional-breakpoint): Unconditionally use
17220 the former Emacs >=19 definition.
17221 (edebug-mark): Define unconditionally.
17222 (edebug-eval-expression): Always call read-from-minibuffer
17223 and specify history list.
17224 (edebug-lemacs-specific): Override emacs-mark, edebug-window-live-p,
17225 edebug-set-conditional-breakpoint.
17226 (edebug-emacs-version-specific): Function deleted;
17227 do the job at top level.
17228 (edebug-emacs-19-specific): Function deleted, this is the default.
17229
17230 2001-10-29 Sam Steingold <sds@gnu.org>
17231
17232 * w32-fns.el (convert-standard-filename): Handle cygwin-specific
17233 "/cygdrive/LETTER/" pathnames.
17234
17235 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
17236
17237 * faces.el (invert-face): Check for 'unspecified, not for nil,
17238 when testing whether face colors are not specified.
17239 From David.Kastrup@t-online.de (David Kastrup).
17240 (read-face-name): Doc fix.
17241 (make-face-bold, make-face-unbold, make-face-italic)
17242 (make-face-unitalic, make-face-bold-italic, invert-face):
17243 Remove trailing blank from the prompt passed to read-face-name.
17244
17245 2001-10-29 Sam Steingold <sds@gnu.org>
17246
17247 * emacs-lisp/bytecomp.el (byte-recompile-directory):
17248 Report numbers of files skipped and failed too.
17249 (byte-compile-file): Return 'no-byte-compile for skipped files.
17250
17251 2001-10-29 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
17252
17253 * log-view.el (log-view-mode-map): Bind `M-n' and `M-p', not `M n'
17254 and `M p'.
17255
17256 2001-10-29 Gerd Moellmann <gerd@gnu.org>
17257
17258 * international/iso-acc.el (iso-accents-compose): Push SECOND-CHAR
17259 as is on unread-command-events instead of `(SECOND-CHAR)'.
17260
17261 2001-10-29 Andre Spiegel <spiegel@gnu.org>
17262
17263 * vc.el: Mention vc-*-switches in backend API documentation.
17264 (vc-annotate): Adapt doc string to recent change.
17265
17266 2001-10-29 Gerd Moellmann <gerd@gnu.org>
17267
17268 * enriched.el (enriched-face-ans): Handle face attributes
17269 of the form `(FACE1 FACE2 ...)'.
17270
17271 * dired-x.el (dired-omit-startup): Show ``Omit'' only in Dired buffers.
17272
17273 2001-10-29 Alex Schroeder <kensanata@yahoo.com>
17274
17275 * progmodes/sql.el (sql-mysql): Doc change by RMS.
17276
17277 * progmodes/sql.el (sql-db2): Doc change.
17278 (sql-help): Doc change by Christian Egli <christian.egli@stest.ch>.
17279 (sql-mysql): Doc change by Christian Egli <christian.egli@stest.ch>.
17280
17281 2001-10-29 Gerd Moellmann <gerd@gnu.org>
17282
17283 * env.el (substitute-env-vars): Don't quote argument to `rx';
17284 it's a macro.
17285
17286 2001-10-28 Per Abrahamsen <abraham@dina.kvl.dk>
17287
17288 * cus-start.el (recursive-load-depth-limit): Added.
17289
17290 2001-10-28 Richard M. Stallman <rms@gnu.org>
17291
17292 * textmodes/ispell.el (version18p, version20p): Vars deleted.
17293 All uses removed--assume Emacs version is >= 20.
17294
17295 * mail/supercite.el (sc-emacs-features): Test for "Emacs 19"
17296 by really checking that it is not version 18.
17297
17298 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
17299
17300 2001-10-28 Miles Bader <miles@gnu.org>
17301
17302 * faces.el (face-attribute): Add INHERIT argument, consider face
17303 inheritance if it's non-nil.
17304 (face-attribute-merged-with): New function.
17305 (face-attribute-specified-or): New macro.
17306 (face-foreground, face-background, face-stipple): Add INHERIT
17307 argument. Use `face-attribute-specified-or'.
17308
17309 2001-10-28 Stefan Monnier <monnier@cs.yale.edu>
17310
17311 * font-lock.el: Require `syntax'.
17312 (font-lock-defaults-alist): Don't define keywords for lisp languages.
17313 Use `c-font-lock-syntactic-face-function' for c languages.
17314 (font-lock-mode): Don't unset vars when turning the mode off.
17315 (font-lock-default-fontify-buffer): Don't unset vars at the end.
17316 (font-lock-extra-managed-props): New var.
17317 (font-lock-default-unfontify-region): Use it.
17318 (font-lock-apply-syntactic-highlight): Flush the syntax cache.
17319 Don't eval the value when there's no match.
17320 (font-lock-ppss-stats): New var.
17321 (font-lock-ppss): New fun.
17322 (font-lock-fontify-syntactically-region): Use it and syntax.ppss.
17323 (font-lock-apply-highlight): Allow `highlight' to set several props.
17324 (font-lock-set-defaults): Use dolist.
17325 (font-lock-unset-defaults): Remove.
17326 (font-lock-match-c-style-declaration-item-and-skip-to-next):
17327 Try to recognize prototypes using `foo P_ ((args))'.
17328 ({c,c++,java,objc}-font-lock-keywords-{1,2,3}): Don't setq a defconst.
17329 (c-font-lock-keywords-2): Fix last change to still use Anders' trick.
17330 (c-font-lock-syntactic-face-function): New function.
17331 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
17332 (c++-keywords): Use a more sophisticated regexp to handle
17333 shallowly nested templates.
17334
17335 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
17336
17337 * textmodes/sgml-mode.el (sgml-empty-tags): New var.
17338 (sgml-tag): Use it. Cleanup with `cond'.
17339 (sgml-tags-invisible): Make sgml-tags-invisible buffer-local.
17340 Mark the overlays and only delete those that are marked.
17341 (sgml-skip-close-p): Remove.
17342 (sgml-value): Replace sgml-skip-close-p with its definition.
17343 (html-tag-alist): Use sgml-xml a bit more.
17344 (html-mode): Set sgml-empty-tags.
17345
17346 * textmodes/texnfo-upd.el: Use `when', `dolist', `push', ...
17347 (texinfo-update-node, texinfo-sequential-node-update):
17348 Don't bind the obsolete `auto-fill-hook'.
17349 (texinfo-multi-file-included-list,texinfo-multi-file-master-menu-list):
17350 Use `set-buffer' rather than `switch-to-buffer'.
17351 (texinfo-multi-file-update): Use "Top" rather than `up-node-name'.
17352 Use `set-buffer' rather than `switch-to-buffer'.
17353
17354 * mail/sendmail.el (mail-mode-syntax-table): Let it inherit from
17355 text-mode-syntax-table.
17356 (mail-mode): Use define-derived-mode.
17357 Fix ordering of alternatives in adaptive-fill-regexp.
17358 (mail-mode-map): Don't rely on keymap's internal representation.
17359
17360 2001-10-27 Sam Steingold <sds@gnu.org>
17361
17362 * textmodes/sgml-mode.el (sgml-xml): Renamed from `html-xhtml'.
17363 (sgml-xml-guess): Extracted from `html-mode' and generalized.
17364 (sgml-mode-common): Call it.
17365 (sgml-mode, html-mode): Set `mode-name' based on `sgml-xml'.
17366 (sgml-tag, sgml-skip-close-p, html-tag-alist, html-line)
17367 (html-horizontal-rule, html-image, html-ordered-list):
17368 (html-unordered-list, html-list-item, html-paragraph):
17369 (html-checkboxes, html-radio-buttons): Use `sgml-xml' instead of
17370 `html-xhtml'.
17371
17372 2001-10-26 Masayuki Ataka <ataka@milk.freemail.ne.jp>
17373
17374 * textmodes/texinfmt.el (texinfo-format-ifnotinfo): New function.
17375 (ifnothtml): New alias.
17376
17377 2001-10-27 Stefan Monnier <monnier@cs.yale.edu>
17378
17379 * textmodes/text-mode.el (text-mode): Use define-derived-mode.
17380 (toggle-text-mode-auto-fill): Use derived-mode-p.
17381
17382 2001-10-27 Gerd Moellmann <gerd.moellmann@t-online.de>
17383
17384 * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for
17385 `mdtm'. From "Forrest Cahoon" <forrest.cahoon@merrillcorp.com>.
17386
17387 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
17388
17389 * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
17390 Add make-obsolete cookies, to follow faces.el.
17391
17392 These changes avoid warnings from the byte compiler in faces.el:
17393
17394 * faces.el (internal-get-face): Use facep instead of the obsolete
17395 internal-find-face.
17396 (internal-frob-font-weight, internal-frob-font-slant):
17397 New defaliases for obsolete functions.
17398 (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
17399 (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
17400 (x-make-font-bold-italic): Use internal-frob-font-weight and
17401 internal-frob-font-slant aliases instead of the obsolete
17402 x-frob-... functions.
17403
17404 2001-10-26 Sam Steingold <sds@gnu.org>
17405
17406 * textmodes/sgml-mode.el (html-mode): Set `html-xhtml' from the
17407 DOCTYPE; set `mode-name' based on it.
17408 (html-tag-alist): Use `html-xhtml' for "li", "dt" and "dd".
17409 (sgml-tag): Close empty tags in XHTML.
17410
17411 2001-10-26 Jason Rumney <jasonr@gnu.org>
17412
17413 * w32-fns.el: (w32-charset-info-alist): Use ANSI for iso10646-1
17414 when UNICODE is not defined.
17415
17416 2001-10-26 Sam Steingold <sds@gnu.org>
17417
17418 * font-lock.el (c-font-lock-keywords-2): Do not require labels to
17419 be alone on the line.
17420
17421 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
17422
17423 * button.el (button): Special face definition for MS-DOS terminals.
17424
17425 2001-10-26 Sam Steingold <sds@gnu.org>
17426
17427 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords):
17428 Protect the /= test by checking that the args are non-nil.
17429 (sh-font-lock-close-heredoc): Check eof for being non-nil.
17430
17431 2001-10-26 Tomas Abrahamsson <tab@lysator.liu.se>
17432
17433 * textmodes/artist.el (artist-version): 1.2.4.
17434 (artist-butlast-fn): New variable.
17435 (artist-butlast): New function.
17436 (artist-ellipse-mirror-quadrant): Use it.
17437 (artist-mouse-draw-poly): Use nil for `point-list'.
17438 (artist-mouse-draw-poly): Check for point-list being nil.
17439
17440 2001-10-26 Peter Kleiweg <kleiweg@let.rug.nl>
17441
17442 * progmodes/ps-mode.el (ps-mode-print-function): Remove quote for
17443 lambda expression.
17444 (ps-mode-menu-main): Submenu with options on/off was replaced with
17445 a toggle button.
17446 (ps-mode, ps-run-mode): Define with `define-derived-mode'
17447 (ps-mode): Autoload cookie added on same line as comment
17448 (ps-mode-tabkey, ps-mode-backward-delete-char):
17449 (ps-mode-r-balance): Replace `delete-horizontal-space' and
17450 `indent-to' with `indent-line-to'
17451 (ps-mode-print-buffer, ps-mode-print-region): Use `funcall'
17452 instead of `eval'.
17453 (ps-mode-print-region): Use `with-temp-buffer'.
17454 (ps-run-start): Use of `mapconcat'. Use `apply' instead of `eval'.
17455 (numerous places): Add back-tick and tick around names in
17456 docstrings, fix punctuation in docstrings, remove trailing spaces.
17457
17458 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
17459
17460 * textmodes/sgml-mode.el (sgml-font-lock-keywords-1): Ignore comments.
17461 (sgml-font-lock-keywords-2): Use `eval'. Moved from sgml-mode-common.
17462 (sgml-font-lock-syntactic-keywords): New var.
17463 (sgml-mode-common): Drop the two args.
17464 Don't make buffer-local variables that aren't used.
17465 Don't set sgml-font-lock-keywords-2 now that it uses `eval instead.
17466 Don't set `before-string' props from sgml-display-text.
17467 (sgml-mode): Use define-derived-mode.
17468 (sgml-tags-invisible): Use sgml-display-text.
17469 (sgml-quote): New command.
17470 (html-tag-alist): Add args for `span'.
17471 (html-mode): Use define-derived-mode.
17472 Set sgml-display-text and sgml-tag-face-alist.
17473
17474 2001-10-25 Sam Steingold <sds@gnu.org>
17475
17476 * add-log.el (add-log-always-start-new-record): New user option.
17477 (add-change-log-entry): Use it.
17478
17479 2001-10-25 Richard M. Stallman <rms@gnu.org>
17480
17481 * progmodes/etags.el (tags-query-replace): Make tags-loop-scan
17482 bind case-fold-search if FROM is not all lower case.
17483
17484 2001-10-25 Gerd Moellmann <gerd@gnu.org>
17485
17486 * startup.el (normal-top-level): Check for frame-initial-frame
17487 only if it's really used.
17488
17489 * mail/mh-utils.el (mh-recenter): Call recenter with arg `(4)'.
17490
17491 * progmodes/compile.el (compilation-parse-errors-filename-function):
17492 New variable.
17493 (compilation-parse-errors): Use it.
17494
17495 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
17496
17497 * emacs-lisp/checkdoc.el (checkdoc-eval-defun): Call eval-defun
17498 interactively so that C-u M-C-x still does edebug.
17499 (checkdoc-sentencespace-region-engine): Don't force a double-space
17500 after `.' if it doesn't look like an end-of-sentence.
17501 (debug-ignored-errors): Add `disambiguate ...'.
17502
17503 2001-10-24 Stefan Monnier <monnier@cs.yale.edu>
17504
17505 * textmodes/texinfo.el (texinfo-environments)
17506 (texinfo-environment-regexp): Hoist.
17507 (texinfo-font-lock-keywords): Use `italic' and `bold' faces.
17508 Only highlight the menu name in menu items.
17509 Setup `@foo ... @end foo' as text clones.
17510 (texinfo-clone-environment): New function.
17511 (texinfo-mode): Simplify auto-fill-inhibit-regexp.
17512 (texinfo-insert-block): Simplify.
17513 (texinfo-insert-quote): Insert a plain " if preceded by \ or if
17514 the command is repeated.
17515 (texinfo-last-unended-begin, texinfo-next-unmatched-end): New funs.
17516 (texinfo-insert-@end): Simplify.
17517
17518 * textmodes/texnfo-upd.el (texinfo-section-types-regexp)
17519 (texinfo-section-level-regexp, texinfo-subsection-level-regexp)
17520 (texinfo-subsubsection-level-regexp)
17521 (texinfo-update-menu-same-level-regexps)
17522 (texinfo-update-menu-higher-regexps)
17523 (texinfo-update-menu-lower-regexps): Hoist to eliminate warnings.
17524
17525 * derived.el (define-derived-mode): Use {delay,run}-mode-hooks.
17526 (derived-mode-p): Autoload.
17527
17528 * subr.el (delay-mode-hooks, delayed-mode-hooks, run-mode-hooks):
17529 New vars and functions.
17530 (text-clone-maintain, text-clone-create): New functions.
17531
17532 2001-10-25 Miles Bader <miles@gnu.org>
17533
17534 * facemenu.el (facemenu-add-new-face): Fix variable names.
17535
17536 2001-10-24 Richard M. Stallman <rms@gnu.org>
17537
17538 * facemenu.el (facemenu-unlisted-faces): Improve doc strings
17539 of t and nil values.
17540 (facemenu-set-face): Handle START and END interactively.
17541 (facemenu-set-foreground): Don't use a face; specify color directly.
17542 (facemenu-set-background): Likewise.
17543 (facemenu-set-face-from-menu): Doc fix.
17544 (facemenu-active-faces): Use face-attribute-vector
17545 to handle bare attributes not in faces.
17546 (facemenu-get-face): Don't handle face names fg:... and bg:...
17547 specially.
17548 (facemenu-add-new-face): New argument MENU.
17549 New way to handle adding colors to the color menus.
17550
17551 * env.el (substitute-env-vars): Quote the arg to rx.
17552
17553 2001-10-24 Sam Steingold <sds@gnu.org>
17554
17555 * mouse.el (mouse-buffer-menu-mode-groups): Added "Version
17556 Control" and "SGML" groups.
17557
17558 2001-10-24 Martin Stjernholm <bug-cc-mode@gnu.org>
17559
17560 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
17561 Better handling of C++ template args to avoid confusion with `<'
17562 and `>' used as operators in member init expressions.
17563
17564 2001-10-24 Gerd Moellmann <gerd@gnu.org>
17565
17566 * replace.el (perform-replace): Move START and END parameters
17567 to the end of the argument list and make them optional.
17568
17569 * progmodes/ebrowse.el, progmodes/etags.el: Adapt to change in
17570 perform-replace.
17571
17572 * international/fontset.el (x-must-resolve-font-name): New function.
17573 (x-complement-fontset-spec): Use it.
17574
17575 2001-10-23 Stefan Monnier <monnier@cs.yale.edu>
17576
17577 * uniquify.el (uniquify-get-proposed-name): Fix (.. "usr" "/usr" 0).
17578
17579 * progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
17580 Turn caadr into caar of cdr.
17581
17582 2001-10-23 Gerd Moellmann <gerd@gnu.org>
17583
17584 * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead
17585 of mouse-{1,2} since dragging is on the down event.
17586
17587 * play/doctor.el (make-doctor-variables): Remove a '($ please)'.
17588
17589 * mail/mh-utils.el (mh-recenter): Call `recenter' with arg t
17590 if ARG is nil.
17591
17592 * desktop.el (desktop-last-buffer): New variable.
17593 (desktop-create-buffer): Set it.
17594 (desktop-read): Bind it and switch to that buffer.
17595
17596 2001-10-22 Gerd Moellmann <gerd@gnu.org>
17597
17598 * progmodes/compile.el (compilation-set-window-height):
17599 Select old window only if it's still live.
17600
17601 2001-10-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17602
17603 * help-mode.el (help-buffer): Remove debugging code.
17604 From Stefan Monnier <monnier@cs.yale.edu>.
17605
17606 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
17607
17608 * files.el (file-name-sans-extension, file-name-extension):
17609 Don't count the leading dots in file names as signaling an extension.
17610
17611 2001-10-22 Andre Spiegel <spiegel@gnu.org>
17612
17613 * vc.el (vc-diff-switches): Doc rewritten.
17614
17615 2001-10-22 Eli Zaretskii <eliz@is.elta.co.il>
17616
17617 * tooltip.el (tooltip-set-param): Doc fix.
17618
17619 * textmodes/sgml-mode.el (sgml-mode-map): Bind 8-bit codes above
17620 127 to sgml-maybe-name-self.
17621 (sgml-name-8bit-mode): Doc fix.
17622 (sgml-char-names-table): New variable.
17623 (sgml-name-char): Support non-ASCII and mule-unicode-*
17624 characters. Doc fix.
17625 (sgml-maybe-name-self): Convert unibyte characters to multibyte.
17626
17627 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Mention in the
17628 doc string the effect of `left' and `top' parameters in
17629 tooltip-frame-parameters, the default values, and the units.
17630 (tooltip-frame-parameters): Mention `top' and `left' in the doc string.
17631 (tooltip-show): Mention in the doc string the `top' and `left'
17632 parameters in tooltip-frame-parameters, and x-max-tooltip-size.
17633
17634 2001-10-22 Andre Spiegel <spiegel@gnu.org>
17635
17636 Add autoscaling support for vc-annotate.
17637 From J.D. Smith <jdsmith@alum.mit.edu>.
17638
17639 * vc.el (vc-annotate-display-default): Accept colormap scaling
17640 ratio (now deprecated).
17641 (vc-annotate-display-autoscale): Added.
17642 (vc-annotate-add-menu): New autoscaling menu options "Span to
17643 Oldest" and "Span Oldest->Newest". Easymenu support added for
17644 toggle menus driven by customize variable `vc-annotate-display-mode'.
17645 (vc-annotate-display-select): Added.
17646 (vc-annotate): Changed temp-buffer-show-function to
17647 `vc-annotate-display-select'.
17648 (vc-annotate-display): Removed arguments BUFFER and BACKEND.
17649 Added argument OFFSET. Instead of backend function, calls now
17650 generic `vc-annotate-difference'.
17651 (vc-annotate-difference): Added as generic function instead of
17652 backend-specific function. No longer takes argument POINT, but
17653 instead accepts a time OFFSET.
17654 (vc-default-annotate-current-time): Added.
17655
17656 * vc-cvs.el (vc-cvs-annotate-difference): Removed to generic
17657 version in vc.el, with
17658 (vc-cvs-annotate-current-time): Added, as override of default.
17659 (vc-cvs-annotate-time): Added. Taken mostly from the (now removed)
17660 `vc-cvs-annotate-difference'.
17661
17662 2001-10-22 Gerd Moellmann <gerd@gnu.org>
17663
17664 * saveplace.el (save-place): Require `saveplace'.
17665
17666 * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
17667 Use `sexp' for :value-type instead of `face'.
17668
17669 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
17670
17671 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
17672 regexps due to 5-digit message IDs.
17673
17674 2001-10-21 Jason Rumney <jasonr@gnu.org>
17675
17676 * term/w32-win.el (redisplay-dont-pause): Don't set.
17677
17678 2001-10-21 Miles Bader <miles@gnu.org>
17679
17680 * help-funs.el (help-manyarg-func-alist): Variable removed.
17681
17682 2001-10-21 Miles Bader <miles@gnu.org>
17683
17684 * help-funs.el (help-manyarg-func-alist): Remove entries for
17685 `insert', `insert-and-inherit', `insert-before-markers',
17686 `insert-before-markers-and-inherit', `message', `message-box',
17687 `message-or-box', `propertize', `format', `encode-time', `append',
17688 `concat', `vconcat', `nconc', `widget-apply', `make-hash-table',
17689 `insert-string', `ml-if', `ml-provide-prefix-argument', and
17690 `ml-prefix-argument-loop'.
17691
17692 2001-10-21 Andre Spiegel <spiegel@gnu.org>
17693
17694 * vc.el (vc-diff-internal, vc-coding-system-for-diff)
17695 (vc-default-diff-tree): New functions.
17696 (vc-version-diff): Use them. As a result, coding systems are now
17697 set up properly for all sorts of diffs, and tree diffs can now
17698 also be done locally.
17699 (vc-diff): With a prefix argument, don't require that it's called
17700 from a buffer under version control.
17701 (diff-switches): Remove duplicate definition.
17702
17703 * vc-cvs.el (vc-cvs-diff-tree): New function.
17704
17705 2001-10-21 Miles Bader <miles@gnu.org>
17706
17707 * help-funs.el (help-manyarg-func-alist): Remove entries for
17708 `list', `vector', `make-byte-code', `call-process',
17709 `call-process-region', `string', `+', `-', `*', `/', `max', `min',
17710 `logand', `logior', and `logxor'.
17711
17712 * wid-edit.el (checkbox): Swap bg/fg colors in image, and invert
17713 image bits to compensate. Use `make-string' instead of
17714 `make-bool-vector' (XBM apparently wants byte-aligned rows).
17715
17716 2001-10-20 Kim F. Storm <storm@cua.dk>
17717
17718 * simple.el (kill-ring-save): Don't show extent of copied region
17719 if using transient-mark-mode and region is fully visible.
17720
17721 See ChangeLog.9 for earlier changes.
17722
17723 ;; Local Variables:
17724 ;; coding: iso-2022-7bit
17725 ;; End:
17726
17727 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
17728 Copying and distribution of this file, with or without modification,
17729 are permitted provided the copyright notice and this notice are preserved.