*** empty log message ***
[bpt/emacs.git] / lisp / ChangeLog
1 2005-08-29 Juri Linkov <juri@jurta.org>
2
3 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
4 Put outline-back-to-heading function call inside save-excursion.
5
6 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
7
8 * man.el (Man-init-defvars, Man-translate-references)
9 (Man-support-local-filenames, Man-highlight-references):
10 * progmodes/sql.el (sql-interactive-mode):
11 * shell.el (shell-mode, shell-resync-dirs): Fix typos in
12 docstrings.
13
14 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
15 (compilation-mode-font-lock-keywords): Add defvars.
16 (checkdoc-interactive-loop): "?\ " -> "?\s".
17
18 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
19 (font-lock-doc-face, font-lock-string-face)
20 (font-lock-keywords-case-fold-search): Add defvars.
21 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
22
23 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
24 Don't pass X and Y (they are ignored anyway).
25 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
26 (mouse-delete-window): Make arguments optional.
27
28 * obsolete/rnews.el (news-add-news-group): Don't use
29 `end-of-line'.
30 (caesar-translate-table, minor-modes, news-buffer-save)
31 (news-group-name, news-minor-modes): Add defvars.
32
33 * emacs-lisp/lselect.el (mouse-highlight-priority)
34 (x-lost-selection-functions, zmacs-regions):
35 * emacs-lisp/pp.el (font-lock-verbose):
36 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
37 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
38 (ses-mode-map):
39 * emacs-lisp/tcover-unsafep.el (safe-functions):
40 * international/mule-cmds.el (mac-system-coding-system)
41 (mac-system-locale):
42 * language/ethio-util.el (rmail-current-message)
43 (rmail-message-vector):
44 * language/thai-util.el (thai-auto-composition-mode):
45 * mail/metamail.el (rmail-current-message, rmail-message-vector):
46 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
47 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
48 (vm-primary-inbox, vm-spool-files):
49 * mail/rmail.el (deleted-head, font-lock-fontified)
50 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
51 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
52 (total-messages):
53 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
54 (rmail-summary-mode-map):
55 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
56 (rmail-last-label, rmail-last-multi-labels)
57 (rmail-summary-vector, rmail-total-messages):
58 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
59 * mail/rmailsum.el (msgnum):
60 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
61 (rmail-current-message):
62 * obsolete/fast-lock.el (font-lock-face-list):
63 * obsolete/rnewspost.el (mail-reply-buffer):
64 * obsolete/scribe.el (compile-command):
65 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
66
67 2005-08-28 John Paul Wallington <jpw@gnu.org>
68
69 * ibuf-ext.el (ibuffer-auto-update-changed): Use
70 `frame-or-buffer-changed-p' to check whether we need to update.
71 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
72 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
73 as a `frame-or-buffer-changed-p' state vector instead.
74
75 2005-08-27 Romain Francoise <romain@orebokech.com>
76
77 * textmodes/makeinfo.el (makeinfo-compile): Use
78 `compilation-start'. Set `next-error-function' according to
79 `disable-errors'.
80 (makeinfo-next-error): New function.
81 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
82 (makeinfo-buffer): Likewise.
83
84 * progmodes/compile.el (compilation-start): Add autoload cookie.
85
86 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
87 * textmodes/sgml-mode.el: Likewise.
88 * progmodes/python.el: Likewise.
89
90 2005-08-27 Eli Zaretskii <eliz@gnu.org>
91
92 * simple.el (blink-matching-paren-distance): Document the meaning
93 of nil value, and allow to customize to nil.
94
95 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
96 command.com, not command.exe.
97
98 2005-08-26 John Wiegley <johnw@newartisans.com>
99
100 * eshell/esh-cmd.el (eshell-rewrite-named-command): Changed the
101 code around a bit so that an extraneous nil argument is not added
102 to a command when no args are given.
103
104 * eshell/esh-arg.el (eshell-parse-double-quote): If a
105 double-quoted argument resolves to nil, return it as an empty
106 string rather than as nil. This made it impossible to pass "" to
107 a shell script as a null string argument.
108
109 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
110
111 * outline.el (outline-invent-heading): New fun.
112 (outline-promote, outline-demote): Use it.
113 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
114 (outline-end-of-subtree): Remove unused var `opoint'.
115
116 2005-08-26 David Reitter <david.reitter@gmail.com>
117
118 * menu-bar.el (truncate-lines, write-file, print-buffer)
119 (ps-print-buffer-faces, ps-print-buffer, split-window):
120 Disable menu items when the frame they refer to is invisible, or when
121 they refer to a buffer and the minibuffer is selected.
122
123 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
124
125 * progmodes/flymake.el (flymake-highlight-err-lines):
126 Use save-excursion around flymake-highlight-line to preserve point.
127
128 2005-08-26 Eli Zaretskii <eliz@gnu.org>
129
130 * progmodes/octave-mod.el: Change Author and Maintainer address.
131 (octave-maintainer-address): Change Kurt's email address.
132 * progmodes/octave-inf.el: Change Author and Maintainer address.
133 * progmodes/octave-hlp.el: Change Author and Maintainer address.
134
135 2005-08-26 Kim F. Storm <storm@cua.dk>
136
137 * subr.el (version-list-<, version-list-<=, version-list-=):
138 Renamed from integer-list-*.
139 (version-list-not-zero): Likewise. Fix while loop.
140 (version=): Use version-list-= instead of string-equal.
141
142 2005-08-26 Richard M. Stallman <rms@gnu.org>
143
144 * outline.el (outline-promote): Try shortening the heading.
145 As last resort, read the heading to use.
146 (outline-demote): As last resort, read the heading to use.
147
148 2005-08-26 Romain Francoise <romain@orebokech.com>
149
150 * progmodes/compile.el (compilation-start): Doc fix.
151
152 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
153 (antlr-font-lock-additional-keywords): Fix reference to
154 `antlr-font-lock-literal-regexp' erroneously changed during the
155 mass face rename.
156 (antlr-run-tool): Use `compilation-start'.
157
158 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
159 instead of the obsolete `compile-internal'.
160
161 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
162
163 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
164 (number, original-date):
165 * calendar/cal-china.el (date):
166 * calendar/cal-coptic.el (date):
167 * calendar/cal-french.el (date):
168 * calendar/cal-hebrew.el (date, entry, number, original-date):
169 * calendar/cal-islam.el (date, number, original-date):
170 * calendar/cal-iso.el (date):
171 * calendar/cal-julian.el (date):
172 * calendar/cal-mayan.el (date):
173 * calendar/cal-menu.el (date, event):
174 * calendar/cal-persia.el (date):
175 * calendar/lunar.el (date):
176 * calendar/solar.el (date): Add defvars.
177
178 * emerge.el:
179 * ibuffer.el:
180 * info-xref.el:
181 * obsolete/bg-mouse.el:
182 * obsolete/sun-curs.el:
183 * obsolete/swedish.el: Move the `defvar's to the top level.
184
185 * smerge-mode.el (smerge-refined-change): Add :group.
186
187 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
188
189 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
190 (smerge-keep-n): Remove props.
191 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
192 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
193 now that it's done in smerge-keep-n.
194 (smerge-refined-change): New face.
195 (smerge-refine-chopup-region, smerge-refine-highlight-change)
196 (smerge-refine): New funs.
197 (smerge-basic-map): Bind smerge-refine.
198
199 2005-08-25 Juri Linkov <juri@jurta.org>
200
201 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
202 compilation-process-setup-function and compilation-disable-input
203 in grep-mode instead of let-bindings in grep.
204
205 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
206 Delete "Automatic File De/compression" (auto-compression-mode).
207
208 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
209
210 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
211 Silence warning about non-existent variable.
212
213 2005-08-25 Richard M. Stallman <rms@gnu.org>
214
215 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
216 Rename "Describe Key" to "Describe Key or Mouse Operation".
217
218 * mail/mailalias.el (build-mail-aliases): Delete comments
219 from the contents before processing them.
220
221 * isearch.el (isearch-edit-string): Erase the Search prompt
222 if user enters an empty string and there is no default.
223
224 * comint.el (comint-file-name-prefix): Add autoload.
225
226 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
227
228 * subr.el (play-sound): Rearrange to avoid warning.
229
230 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
231
232 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
233 New hook.
234 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
235
236 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
237
238 * subr.el (version-separator, version-regexp-alist): New vars used by
239 version comparison funs.
240 (integer-list-<, integer-list-=, integer-list-<=)
241 (integer-list-not-zero): New funs for integer list comparison.
242 (version-to-list, version=, version<, version<=): New funs for version
243 comparison.
244
245 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
246
247 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
248 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
249 time to silence the byte-compiler.
250
251 * ibuffer.el (ibuffer-compile-make-eliding-form)
252 (ibuffer-check-formats): Use `with-no-warnings' to hide references
253 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
254 so it's silly to get warnings for it).
255 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
256 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
257 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
258 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
259 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
260 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
261 Defvar at compile time.
262 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
263 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
264 Declare them before use.
265
266 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
267 (info-xref-good, info-xref-bad): Defvar at compile time.
268
269 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
270 Use `let*' instead of `let'.
271
272 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
273 (*mouse-y*, menu, char): Defvar at compile time.
274 (sc::menu): Declare it before use.
275 (sc::pack-one-line): Use `let', not `let*'.
276
277 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
278 (mail-send-hook): Defvar at compile time.
279
280 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
281 Defvar at compile time.
282
283 * term/sun-mouse.el (current-global-mousemap)
284 (current-local-mousemap): Declare them before use.
285
286 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
287
288 * bookmark.el (bookmark-after-jump-hook): New hook.
289 (bookmark-jump): Run `bookmark-after-jump-hook'.
290
291 2005-08-23 Juri Linkov <juri@jurta.org>
292
293 * faces.el (minibuffer-prompt): Doc fix.
294
295 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
296
297 * progmodes/xscheme.el: Trivial changes to silence warnings.
298 (xscheme-previous-mode, xscheme-previous-process-state):
299 Add defvars.
300 (xscheme-last-input-end, xscheme-process-command-line)
301 (xscheme-process-name, xscheme-buffer-name)
302 (xscheme-expressions-ring-max, xscheme-expressions-ring)
303 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
304 (xscheme-control-g-synchronization-p)
305 (xscheme-control-g-disabled-p, xscheme-string-receiver)
306 (default-xscheme-runlight, xscheme-runlight)
307 (xscheme-runlight-string, xscheme-process-filter-state)
308 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
309 Move to beginning of file.
310 (scheme-interaction-mode-commands-alist)
311 (scheme-interaction-mode-map, scheme-debugger-mode-map): Declare
312 them before use. Note: the initialization code for the variables
313 has not been moved because it uses functions that reference the
314 variables.
315 (xscheme-control-g-message-string, xscheme-process-filter-alist)
316 (xscheme-prompt-for-expression-map): Declare them before use.
317 (scheme-debugger-mode-commands): "?\ " -> "?\s".
318
319 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
320
321 * hexl.el (hexl-print-current-point-info): Fix simple spelling
322 error.
323
324 2005-08-22 Juri Linkov <juri@jurta.org>
325
326 * faces.el (set-face-underline): Delete this duplicate function
327 and make an obsolete alias to set-face-underline-p.
328 (set-face-underline-p): Use docstring of set-face-underline.
329 (describe-face): Create hyperlink to parent face.
330
331 * info.el (Info-insert-dir): Use save-excursion around
332 insert-buffer-substring.
333 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
334 (Info-escape-percent): Delete function.
335 (Info-fontify-node): Replace Info-escape-percent by
336 replace-regexp-in-string with REP arg set to lambda that
337 duplicates `%' and preserves text properties.
338
339 * progmodes/compile.el (compilation-disable-input): Doc fix.
340 (define-compilation-mode): Doc fix and refill.
341 (kill-compilation): Use `mode-name' in the error message.
342 (compilation-find-file): Use `compilation-error' in the
343 read-file-name's prompt.
344
345 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
346
347 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
348 (smerge-auto-leave): Make undo re-enable the mode.
349 (debug-ignored-errors): Add the user-error of impossible resolution.
350 (smerge-resolve): Move things around a bit, in preparation for later.
351 (smerge-diff): Don't fail if the buffer has no associated file.
352 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
353 (smerge-conflict-overlay): New function.
354 (smerge-match-conflict): Don't add text properties here.
355 (smerge-find-conflict): Instead, add an overlay here.
356 Also check for the case where we're inside a conflict already, so as to
357 obviate the need for font-lock-multiline, which is unbearably slow with
358 large conflicts and ciomplex font-lock patterns.
359 (smerge-remove-props): Remove overlay rather than text-properties.
360 (smerge-mode): Don't set font-lock-multiline.
361 Remove overlays when turned off.
362
363 2005-08-21 Kim F. Storm <storm@cua.dk>
364
365 * ido.el (ido-ignore-item-p): Use save-match-data.
366 Bind case-fold-search to ido-case-fold locally.
367
368 2005-08-20 Richard M. Stallman <rms@gnu.org>
369
370 * files.el (normal-mode): If font lock is on, turn it off and on.
371
372 * subr.el (replace-regexp-in-string): Doc fix.
373
374 * startup.el (command-line-1): Don't suppress startup screen
375 due to existing processes.
376
377 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
378
379 * progmodes/compile.el (compilation-disable-input): Default to nil.
380
381 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
382
383 * progmodes/compile.el (compilation-disable-input): New defcustom.
384 (compilation-start): If compilation-disable-input is non-nil, send
385 EOF to the compilation process.
386
387 2005-08-20 Eli Zaretskii <eliz@gnu.org>
388
389 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
390 Run the argument of tex-shell-cd-command through
391 convert-standard-filename, to get the correct style of slashes on
392 Windows, and enclose the result in quotes, in case the file name
393 includes whitespace or other special characters.
394
395 2005-08-19 Andreas Schwab <schwab@suse.de>
396
397 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
398 process.
399
400 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
401
402 * cus-start.el (minibuffer-prompt-properties): Correct typo.
403
404 2005-08-18 Kim F. Storm <storm@cua.dk>
405
406 * scroll-lock.el: Fix errors due to incorrect line wrapping.
407
408 2005-08-18 Richard M. Stallman <rms@gnu.org>
409
410 * scroll-lock.el: New file.
411
412 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
413
414 * dired.el (dired-move-to-end-of-filename):
415 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
416
417 2005-08-18 Kim F. Storm <storm@cua.dk>
418
419 * ido.el (ido-everywhere): Fix defcustom :set function to disable
420 rather than toggle mode when custom value is nil.
421 (ido-everywhere): Fix defun doc string.
422
423 2005-08-17 Richard M. Stallman <rms@gnu.org>
424
425 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
426 as tag instead of "Inviolable".
427
428 2005-08-17 Kim F. Storm <storm@cua.dk>
429
430 * windmove.el (windmove-coordinates-of-position): Remove.
431 (windmove-coordinates-of-window-position): Remove.
432 (windmove-reference-loc): Use posn-at-point instead.
433
434 * subr.el (insert-for-yank-1): Doc fix.
435
436 * ido.el (ido-enter-matching-directory): Rename from
437 ido-enter-single-matching-directory. Change 'slash choice to
438 'only. Add 'first choice.
439 (ido-exhibit): Adapt to above changes.
440
441 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
442
443 * Makefile.in: Expand comment about building loaddefs.el.
444
445 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
446
447 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
448 Comment use of defadvice.
449
450 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
451
452 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
453
454 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
455 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
456 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
457 * progmodes/idlw-shell.el, progmodes/ld-script.el,
458 * progmodes/which-func.el, ruler-mode.el, strokes.el,
459 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
460 for backward compatibility for faces that did not appear in the
461 previous Emacs release.
462
463 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
464
465 2005-08-15 Kim F. Storm <storm@cua.dk>
466
467 * emulation/cua-base.el (cua-delete-region): Return t if
468 deleted region was non-empty.
469 (cua-replace-region): Inhibit overwrite-mode for
470 self-insert-command if replaced region was non-empty.
471 (cua--explicit-region-start, cua--status-string): Make them
472 buffer-local at top-level...
473 (cua-mode): ...rather than when mode is enabled.
474
475 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
476
477 * progmodes/vhdl-mode.el (vhdl-emacs-21):
478 Set t for Emacs 21, 22, and so on.
479
480 2005-08-15 David Ponce <david@dponce.com>
481
482 * tree-widget.el Update Commentary header.
483 (tree-widget-theme): Doc fix.
484 (tree-widget-space-width): New option.
485 (tree-widget-image-properties): Look up in the default theme too.
486 (tree-widget--cursors): Only for images with arrow pointer shape.
487 (tree-widget-lookup-image): Pointer shape is hand by default.
488 (tree-widget-icon): Rename generic icon widget from
489 `tree-widget-control'.
490 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
491 derive from `tree-widget-icon'.
492 (tree-widget-handle): Improve default look and feel of the text
493 representation.
494 (tree-widget): Rename :*-control properties to :*-icon properties.
495 Add :action and :help-echo properties.
496 (tree-widget-after-toggle-functions): Move.
497 (tree-widget-close-node, tree-widget-open-node): Remove.
498 (tree-widget-before-create-icon-functions): New hook.
499 (tree-widget-value-create): Update to allow customization of icons
500 and nodes at run-time via that new hook.
501 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
502 (tree-widget-icon-action, tree-widget-icon-help-echo)
503 (tree-widget-action, tree-widget-help-echo): New functions.
504
505 2005-08-15 Kim F. Storm <storm@cua.dk>
506
507 * ido.el (ido-buffer-internal): Use with-no-warnings.
508 (ido-make-merged-file-list): Use while-no-input.
509
510 2005-08-15 Richard M. Stallman <rms@gnu.org>
511
512 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
513 (flyspell-large-region): Fix doc and custom type.
514
515 2005-08-14 Richard M. Stallman <rms@gnu.org>
516
517 * files.el (interpreter-mode-alist): Doc fix.
518
519 * mail/rmail.el (rmail-nonignored-headers): New variable.
520 (rmail-clear-headers): Use it.
521 (rmail-reply): Better handling of mail-followup-to header.
522
523 * progmodes/sh-script.el (sh-font-lock-keywords-var):
524 Rename variable from sh-font-lock-keywords. In the `shell' entry,
525 don't try to refer to executable-font-lock-keywords.
526 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
527 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
528 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
529 (sh-mode): Set comment-start-skip, local-abbrev-table,
530 imenu-case-fold-search.
531 (sh-set-shell): Don't set them here.
532 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
533 Don't cache the results in the original alist; don't ever modify
534 that alist.
535
536 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
537
538 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
539 empty.
540
541 2005-08-15 Andreas Schwab <schwab@suse.de>
542
543 * desktop.el: Put autoload cookie at risky-local-variable declarations.
544
545 * dired.el, info.el, mail/rmail.el: Revert last change.
546
547 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
548
549 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
550 modification in `eval-after-load' form.
551 * info.el: Likewise.
552 * mail/rmail.el: Likewise.
553
554 2005-08-14 Juri Linkov <juri@jurta.org>
555
556 * progmodes/compile.el (compilation-mode-font-lock-keywords):
557 Remove highlighting of "Compilation started". Highlight only
558 the word "finished" in "Compilation finished". Add highlighting
559 of "interrupt", "killed", "terminated" and the exit code.
560 (compilation-start): Add newline after header. Use exactly the
561 same time stamp format as the finishing message.
562 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
563
564 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
565 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
566 Add highlighting of "interrupt", "killed", "terminated".
567
568 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
569 enabled and the current command is self-insert-command, call it
570 explicitly with overwrite-mode bound to nil, to not allow it
571 to delete the character after the selected region.
572
573 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
574
575 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
576 move-end-of-line, end-of-line, and beginning-of-line to the list
577 of commands after which the echo area is updated.
578
579 2005-08-12 Eli Zaretskii <eliz@gnu.org>
580
581 * cus-edit.el (custom-save-all, custom-save-delete):
582 Bind recentf-exclude to exclude custom-file.
583
584 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
585
586 * mail/rmailsum.el (rmail-summary-end-of-message): New command
587 to go to the bottom of the mail message. Added to
588 `rmail-summary-mode-map' with key "/".
589 (rmail-summary-show-message): New (internal) function for use by
590 both `rmail-summary-beginning/end-of-message'.
591 (rmail-summary-beginning-of-message): Change to use
592 rmail-summary-show-message.
593
594 * mail/rmail.el (rmail-end-of-message): New command to go to the
595 end of the current message. Added to `rmail-mode-map' with key "/".
596 (rmail-beginning-of-message): Fix to work as documented.
597 (rmail-mode): Change documentation.
598
599 * progmodes/compile.el (compilation-start): Add the line
600 "Compilation started" with compilation start time.
601 (compilation-mode-font-lock-keywords): Add `started' to keywords.
602
603 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
604
605 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
606 of menu items.
607
608 2005-08-11 Richard M. Stallman <rms@gnu.org>
609
610 * simple.el (pop-global-mark): Reverse test of widen-automatically.
611
612 * battery.el (battery-status-function): Don't use ignore-errors.
613
614 2005-08-11 Lute Kamstra <lute@gnu.org>
615
616 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
617 define-obsolete-variable-alias.
618
619 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
620
621 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
622 (ange-ftp-send-cmd): Revert last change, and expand
623 the comment explaining the problem.
624
625 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
626
627 * ldefs-boot.el: Update.
628
629 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
630 item to "Time, Load and Mail". Change help echo text.
631
632 * time.el (display-time-use-mail-icon, display-time-format)
633 (display-time-string-forms): Shorten first line of docstrings.
634
635 2005-08-10 Lars Hansen <larsh@soem.dk>
636
637 * desktop.el (desktop-buffer-mode-handlers):
638 Make non-customizable. Add autoload cookie. Change initial value to
639 nil; add elements in respective modules instead. Fix doc string.
640 (desktop-load-file): New function.
641 (desktop-minor-mode-handlers): New autoloaded variable.
642 (desktop-create-buffer): Call minor mode handlers.
643 Use desktop-load-file to load major and minor mode modules prior to
644 checking for a handler.
645 (desktop-save): Don't add nil to desktop-minor-modes for minor
646 modes with nil function in desktop-minor-mode-table. Don't delete
647 desktop file before rewriting it.
648 (desktop-locals-to-save): Add autoload cookie. Don't make
649 automatically buffer-local. Add variables column-number-mode,
650 size-indication-mode, indent-tabs-mode,
651 indicate-buffer-boundaries, indicate-empty-lines and
652 show-trailing-whitespace.
653 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
654 regexps. Don't use desktop-clear-preserve-buffers-regexp.
655 (desktop-clear-preserve-buffers-regexp): Delete.
656 (desktop-clear-preserve-buffers): Update initial value and docstring.
657 (desktop-save-buffer): Fix doc string.
658
659 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
660 (hilit-chg-desktop-restore): New function.
661 (highlight-changes-mode): Add highlight-changes-mode to
662 desktop-locals-to-save.
663
664 * dired.el: Add handler to desktop-buffer-mode-handlers.
665 (dired-restore-desktop-buffer): Remove autoload cookie.
666 (dired-mode): Add autoload cookie.
667
668 * info.el: Add handler to desktop-buffer-mode-handlers.
669 (Info-restore-desktop-buffer): Remove autoload cookie.
670 (Info-mode): Add autoload cookie.
671
672 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
673 (mh-restore-desktop-buffer): Remove autoload cookie.
674 (mh-folder-mode): Add autoload cookie.
675
676 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
677 (rmail-restore-desktop-buffer): Remove autoload cookie.
678
679 2005-08-11 Masatake YAMATO <jet@gyve.org>
680
681 * hexl.el (hexl-address-region):
682 (hexl-ascii-region, hexl-font-lock-keywords):
683 (hexl-highlight-line-range): Use the term "region"
684 instead of "area" for consistency with the other symbols
685 defined in hexl.el.
686
687 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
688
689 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
690 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
691 out by Juri Linkov). Add `display-battery-mode'.
692
693 2005-08-09 Juri Linkov <juri@jurta.org>
694
695 * progmodes/compile.el (compilation-mode-font-lock-keywords):
696 Remove `-text' from face variable names.
697 (compilation-error-file-name, compilation-warning-file-name)
698 (compilation-info-file-name): Delete faces.
699 (compilation-line-number, compilation-column-number):
700 Remove face underlining.
701 (compilation-message-face): Set to `underline' value by default.
702 (compilation-error-face, compilation-warning-face)
703 (compilation-info-face): Remove `-file-name' from face names.
704 (compilation-error-text-face, compilation-warning-text-face)
705 (compilation-info-text-face): Delete face variables.
706 (compilation-text-face): Delete function.
707
708 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
709 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
710 (grep-error-face): Set to `compilation-error' instead of
711 `compilation-error-face' (which is redefined to `grep-hit-face' in
712 grep buffers).
713 (grep-mode-font-lock-keywords): Remove `-text' from face variable
714 names. Use `grep-error-face' instead of `compilation-error-text-face'.
715
716 * dired-aux.el (dired-do-query-replace-regexp):
717 Use `query-replace-read-args'.
718
719 * replace.el (query-replace-read-from, query-replace-read-to)
720 (query-replace-read-args): Rename arg `string' to `prompt'.
721
722 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
723
724 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
725
726 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
727 uploading files.
728 (ange-ftp-canonize-filename): Handle file names beginning with ~
729 correctly.
730
731 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
732
733 * textmodes/fill.el (canonically-space-region)
734 (fill-context-prefix, fill-french-nobreak-p)
735 (fill-delete-newlines, fill-comment-paragraph)
736 (justify-current-line): "?\ " -> "?\s".
737
738 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
739
740 * textmodes/fill.el (fill-nonuniform-paragraphs):
741 Improve argument/docstring consistency.
742
743 2005-08-09 Richard M. Stallman <rms@gnu.org>
744
745 * textmodes/ispell.el (ispell-word): More fboundp checks.
746
747 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
748 (find-file-noselect-1): Call it here, only if RAWFILE.
749 (normal-mode): Always set some major mode.
750 (save-some-buffers-action-alist): Change some explanation strings.
751 (file-name-non-special): In the `quote' method, use unwind-protect.
752
753 2005-08-09 Magnus Henoch <mange@freemail.hu>
754
755 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
756 (ispell-have-aspell-dictionaries): New variable.
757 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
758 (ispell-get-aspell-config-value): New function.
759 (ispell-aspell-find-dictionary): New function.
760 (ispell-aspell-add-aliases): New function.
761 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
762 appropriate. Don't look for ispell dictionaries if we use aspell.
763 (ispell-menu-map): Don't build a submenu of dictionaries.
764
765 2005-08-09 Richard M. Stallman <rms@gnu.org>
766
767 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
768 (sql-read-passwd): Use read-passwd.
769
770 * progmodes/idlw-toolbar.el (idlwave-toolbar)
771 (idlwave-toolbar-is-possible): Add defvars.
772
773 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
774 Avoid warnings.
775
776 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
777 (idlwave-system-class-info, idlwave-executive-commands-alist):
778 Use defvar.
779
780 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
781
782 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
783 Avoid warnings.
784
785 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
786 and content-type: headers.
787
788 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
789
790 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
791 and rename some of them to be more self-explanatory.
792
793 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
794
795 * startup.el (command-line-1): Implement -scriptload.
796
797 * replace.el (occur-engine): Initial *Occur* output not undoable.
798
799 * menu-bar.el (menu-bar-file-menu): Rename some menu items
800 and improve help strings.
801
802 * isearch.el (isearch-repeat): When changing direction,
803 mark search successful.
804
805 * ediff-init.el: Use (featurep 'xemacs).
806
807 * comint.el (send-invisible): Identify buffer, if not selected.
808
809 * align.el: Delete autoload for c-guess-basic-syntax.
810
811 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
812
813 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
814 Improve argument/docstring consistency. Doc fixes.
815 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
816 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
817 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
818 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
819 (r2bv-organization, r2bv-pages, r2bv-primary-author)
820 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
821 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
822 Defvar at compile time.
823
824 2005-08-09 Juri Linkov <juri@jurta.org>
825
826 * info.el: Replace `info' with upper-case `Info' where appropriate.
827 (info-title-1, info-title-2, info-title-3, info-title-4)
828 (info-menu-header): Move up face definitions.
829 (info-menu-star): Rename from `info-menu-5'.
830 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
831 (Info-fontify-visited-nodes): Fix docstring.
832 (Info-hide-note-references): Fix docstring.
833 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
834 menu items in the same way as on cross-references.
835 (info-apropos): Fix sorting order and formatting to be like in the
836 stand-alone Info browser. Display error messages for 1 sec.
837 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
838 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
839 from the menu bar.
840 (Info-insert-dir): Restore point after calling
841 `insert-buffer-substring'.
842
843 2005-08-08 Richard M. Stallman <rms@gnu.org>
844
845 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
846 (recompute-lucid-menubar): Add defvars.
847
848 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
849
850 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
851
852 * net/net-utils.el (run-dig): Rename from `dig'.
853
854 * play/gametree.el (gametree-mode): Use make-local-variable,
855 not make-variable-buffer-local.
856
857 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
858
859 * ansi-color.el (ansi-color-make-extent)
860 (ansi-color-set-extent-face): Use fboundp, not functionp.
861
862 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
863 not make-variable-buffer-local.
864
865 * bookmark.el (Info-current-file): Add defvar.
866 (bookmark-jump-noselect): Use with-no-warnings.
867
868 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
869
870 * ebuff-menu.el (Helper-return-blurb): Add defvar.
871
872 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
873
874 * find-file.el (ada-procedure-start-regexp)
875 (ada-package-start-regexp): Add defvars.
876
877 * info.el (Info-insert-dir): Use insert-buffer-substring.
878
879 * xml.el (xml-att-def-re): Add defvar.
880
881 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
882 calling convention.
883
884 * subr.el (while-no-input): Return t if there is input.
885
886 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
887
888 * cus-start.el (all): Add `overflow-newline-into-fringe'.
889
890 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
891
892 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
893 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
894
895 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
896
897 * cmuscheme.el (scheme-start-file): Replace reference to
898 `user-emacs-directory' by "~/.emacs.d/".
899
900 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
901
902 * info.el (Info-dir-remove-duplicates): Avoid case folding
903 in loop; instead, keep downcased strings for comparison.
904 Suggested by Helmut Eller.
905
906 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
907
908 Sync with Tramp 2.0.50.
909
910 * tramp.el: Remove defvar of `last-coding-system-used' in the
911 XEmacs case; not necessary anymore.
912 (tramp-user-regexp): Allow "@" as part of user name.
913 (tramp-handle-set-visited-file-modtime)
914 (tramp-handle-insert-file-contents)
915 (tramp-handle-write-region): No special handling for
916 `last-coding-system-used, because this is done in
917 `tramp-accept-process-output' now.
918 (tramp-accept-process-output): New defun.
919 (tramp-process-one-action, tramp-process-one-multi-action)
920 (tramp-wait-for-regexp, tramp-wait-for-output)
921 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
922 Howells <dhowells@redhat.com>.
923 (clear-visited-file-modtime): Defadvice removed. The check for
924 unset buffer's modtime does not need to be based on
925 `tramp-buffer-file-attributes'. Suggested by RMS.
926 (tramp-message): Insert "\n" if not being at beginning of line.
927 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
928 sequence with same logic.
929 (tramp-completion-handle-expand-file-name): Discard call of
930 `tramp-drop-volume-letter'. It is not necessary, and there have
931 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
932 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
933 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
934 should always be visible.
935 (tramp-handle-insert-directory, tramp-setup-complete)
936 (tramp-set-process-query-on-exit-flag)
937 (tramp-append-tramp-buffers): Pacify byte-compiler.
938 (tramp-bug): Delete non-existing variables from list.
939 Apply `tramp-load-report-modules' as pre-hook.
940 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
941 `shell-prompt-pattern' because of non-7bit characters.
942 Reported by Sebastian Luque <sluque@mun.ca>.
943 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
944 (tramp-match-string-list): Remove function.
945 (tramp-wait-for-regexp): Remove call of that function.
946 Suggested by Kim F. Storm <storm@cua.dk>.
947 (tramp-set-auto-save-file-modes): Use octal integer code #o600
948 instead of octal character code ?\600. The latter resulted in a
949 syntax error with XEmacs.
950
951 * tramp-smb.el: Remove defvar of `last-coding-system-used' in the
952 XEmacs case; not necessary anymore.
953 (tramp-smb-handle-write-region): No special handling for
954 `last-coding-system-used, because this is done in
955 `tramp-accept-process-output' now.
956 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
957
958 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
959
960 * wid-edit.el (widget-choice-value-create):
961 Unconditionally respect user choice. Set :explicit-choice back to nil
962 when no longer needed.
963 (widget-choice-action): Unconditionally respect user choice.
964 Eliminate :explicit-choice-value.
965
966 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
967
968 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
969 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
970 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
971 running new function `toggle-indicate-empty-lines'.
972 Rename "Customize" item to "Customize fringe".
973 Rename "Indicators" item to "Buffer boundaries" and change help echo.
974 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
975 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
976 Delete "Empty lines only" item.
977 (menu-bar-showhide-fringe-ind-customize): New function.
978 (menu-bar-showhide-fringe-ind-mixed)
979 (menu-bar-showhide-fringe-ind-box)
980 (menu-bar-showhide-fringe-ind-right)
981 (menu-bar-showhide-fringe-ind-left)
982 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
983 instead of `fringe-indicators'.
984
985 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
986
987 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
988 Change the date of last update.
989
990 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
991
992 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
993 (viper-exec-yank, viper-put-back): Don't display modification msg
994 if in the minibuffer.
995
996 * viper-init.el (viper-replace-overlay-cursor-color)
997 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
998 Make variables frame local.
999
1000 * viper-util.el (viper-append-filter-alist): Use append instead of
1001 nconc.
1002
1003 * viper.el (viper-vi-state-mode-list)
1004 (viper-emacs-state-mode-list): Move help-mode and
1005 completion-list-mode from the first list to the second.
1006 (viper-mode): Docstring.
1007 (viper-go-away, viper-non-hook-settings): Don't localize
1008 minor-mode-alist in newer Emacsen. Add advice to
1009 set-cursor-color. Don't bind "\C-c\\".
1010
1011 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
1012
1013 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
1014 (scheme-macro-expand-command): New user options.
1015 (scheme-trace-procedure, scheme-expand-current-form): New commands.
1016 (scheme-form-at-point, scheme-start-file)
1017 (scheme-interactively-start-process): New functions.
1018 (scheme-get-process): New function, extracted from `scheme-proc'.
1019 (run-scheme): Call `scheme-start-file' to get start file, and pass
1020 it to `make-comint'.
1021 (switch-to-scheme, scheme-proc):
1022 Call `scheme-interactively-start-process' if no Scheme buffer/process
1023 is available.
1024
1025 2005-08-06 Juri Linkov <juri@jurta.org>
1026
1027 * progmodes/compile.el (compilation-mode-font-lock-keywords):
1028 Use `compilation-text-face', `compilation-info-text-face' and
1029 `compilation-error-text-face' instead of `font-lock-keyword-face'.
1030 (compilation-error): New face.
1031 (compilation-error-file-name): Inherit from
1032 `compilation-error' instead of `font-lock-warning-face'.
1033 (compilation-warning-file-name): Inherit from
1034 `compilation-warning' instead of `font-lock-warning-face'.
1035 (compilation-info, compilation-error-file-name)
1036 (compilation-warning-file-name, compilation-info-file-name)
1037 (compilation-line-number, compilation-column-number): Doc fix.
1038 (compilation-error-text-face, compilation-warning-text-face)
1039 (compilation-info-text-face): New face variables.
1040 (compilation-line-face, compilation-column-face)
1041 (compilation-enter-directory-face)
1042 (compilation-leave-directory-face): Doc fix.
1043 (compilation-text-face): New function.
1044
1045 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
1046 instead of 1 to display binary file names as info file links.
1047 (grep-error-face): Use `compilation-error-face' instead of
1048 `font-lock-keyword-face'.
1049 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
1050 and `compilation-warning-text-face' instead of
1051 `font-lock-keyword-face'. Use `compilation-error-text-face'
1052 instead of `grep-error-face'.
1053
1054 2005-08-05 Kenichi Handa <handa@m17n.org>
1055
1056 * international/code-pages.el: Add autoload cookies for all coding
1057 systems.
1058
1059 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
1060
1061 * cus-start.el (all): Put undo.c where it alphabetically belongs.
1062
1063 2005-08-04 Juri Linkov <juri@jurta.org>
1064
1065 * progmodes/compile.el (compilation-mode-map):
1066 * progmodes/grep.el (grep-mode-map):
1067 Bind TAB to `compilation-next-error' and [backtab] to
1068 `compilation-previous-error'.
1069
1070 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
1071 matching line numbers, column numbers and their ranges with regexp
1072 matching only line numbers.
1073 (grep-context-face): New face variable.
1074 (grep-mode-font-lock-keywords): Use it.
1075
1076 * faces.el (read-face-name): Delete duplicate faces.
1077
1078 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
1079
1080 * thumbs.el (thumbs-find-image): Don't make variables
1081 automatically buffer local.
1082 (thumbs-current-tmp-filename, thumbs-current-image-filename)
1083 (thumbs-image-num): Make automatically buffer local.
1084 (thumbs-show-thumbs-list): Use `make-local-variable', not
1085 `make-variable-buffer-local'.
1086 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
1087
1088 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
1089 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
1090 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
1091 (bother, bye, canyou, chatlst, continue, deathlst, describe)
1092 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
1093 (feelings-about, foullst, found, hello, history, howareyoulst)
1094 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
1095 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
1096 (neglst, obj, object, owner, please, problems, qlist)
1097 (random-adjective, relation, remlst, repetitive-shortness)
1098 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
1099 (shortlst, something, sportslst, stallmanlst, states, subj)
1100 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
1101 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
1102 Defvar at compile time.
1103
1104 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
1105 not `make-variable-buffer-local'.
1106
1107 2005-08-02 Kim F. Storm <storm@cua.dk>
1108
1109 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
1110 rectangle overlay in selected window.
1111
1112 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
1113
1114 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
1115 instead of display group. Make `indicate-buffer-boundaries'
1116 customizable through Custom.
1117
1118 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
1119
1120 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
1121 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
1122 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
1123 (gdb-put-string): Fix typos in docstrings.
1124
1125 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
1126
1127 Update copyright notices of files in progmodes directory for
1128 release of Emacs 22.1.
1129
1130 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
1131
1132 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
1133 Don't barf if the GUD buffer has been killed.
1134
1135 2005-08-01 Kim F. Storm <storm@cua.dk>
1136
1137 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
1138
1139 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
1140
1141 * simple.el (next-error-follow-minor-mode):
1142 make-variable-buffer-local -> make-local-variable.
1143
1144 * emacs-lisp/cl-extra.el: Require CL also when compiling.
1145
1146 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
1147 (byte-compile-form-make-variable-buffer-local): New functions to warn
1148 about misuses of make-variable-buffer-local where make-local-variable
1149 was meant.
1150
1151 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
1152
1153 * bs.el (bs-attributes-list): Doc fix.
1154 (bs): Update url-link.
1155
1156 * desktop.el (desktop-save-buffer): Fix typos in docstring.
1157 (desktop-load-default): Simplify.
1158
1159 * ibuffer.el (ibuffer-columnize-and-insert-list)
1160 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
1161 (ibuffer-unmark-all, ibuffer-toggle-marks)
1162 (ibuffer-unmark-forward, ibuffer-unmark-backward)
1163 (ibuffer-compile-make-format-form, ibuffer-format-column)
1164 (ibuffer-current-buffers-with-marks)
1165 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
1166 (ibuffer): Doc fix.
1167 (ibuffer-mode): Fix typo in docstring.
1168 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
1169 with `define-obsolete-variable-alias'.
1170 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
1171
1172 2005-07-29 Kenichi Handa <handa@m17n.org>
1173
1174 * international/mule-cmds.el (select-message-coding-system):
1175 Be sure to use LF for end-of-line. If no coding system is decided,
1176 return iso-8859-1-unix.
1177
1178 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
1179
1180 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
1181 (ange-ftp-pending-error-line): New vars.
1182 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
1183 to handle the non-fatal no-route-to-host messages.
1184 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
1185
1186 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
1187
1188 * isearch.el (isearch-mode-map, isearch-other-meta-char)
1189 (isearch-quote-char, isearch-printing-char)
1190 (isearch-text-char-description): "?\ " -> "?\s".
1191 (isearch-lazy-highlight-cleanup)
1192 (isearch-lazy-highlight-initial-delay)
1193 (isearch-lazy-highlight-interval)
1194 (isearch-lazy-highlight-max-at-a-time)
1195 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
1196 Declare with define-obsolete-*-alias macros.
1197 (isearch-forward): Fix typo in docstring.
1198 (search-invisible, search-ring-yank-pointer)
1199 (regexp-search-ring-yank-pointer): Doc fixes.
1200
1201 * recentf.el (recentf-menu-append-commands-p): Declare with
1202 `define-obsolete-variable-alias'.
1203 (recentf-max-saved-items, recentf-menu-filter)
1204 (recentf-arrange-by-rule-subfilter): Doc fixes.
1205 (recentf-menu-append-commands-flag)
1206 (recentf-initialize-file-name-history, recentf-expand-file-name)
1207 (recentf-clear-data): Fix typos in docstrings.
1208
1209 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
1210
1211 * progmodes/gdb-ui.el: Smarten comments.
1212 (gdb-info-breakpoints-custom): Use nowarn when finding file.
1213
1214 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
1215
1216 * term/apollo.el (terminal-init-apollo): New function containing
1217 all former top level forms in the file.
1218 * term/bobcat.el (terminal-init-bobcat):
1219 * term/cygwin.el (terminal-init-cygwin):
1220 * term/iris-ansi.el (terminal-init-iris-ansi):
1221 * term/linux.el (terminal-init-linux):
1222 * term/news.el (terminal-init-news):
1223 * term/rxvt.el (terminal-init-rxvt):
1224 * term/sun.el (terminal-init-sun):
1225 * term/tvi970.el (terminal-init-tvi970):
1226 * term/vt100.el (terminal-init-vt100):
1227 * term/vt102.el (terminal-init-vt102):
1228 * term/vt125.el (terminal-init-vt125):
1229 * term/vt200.el (terminal-init-vt200):
1230 * term/vt201.el (terminal-init-vt201):
1231 * term/vt220.el (terminal-init-vt220):
1232 * term/vt240.el (terminal-init-vt240):
1233 * term/vt300.el (terminal-init-vt300):
1234 * term/vt320.el (terminal-init-vt320):
1235 * term/vt400.el (terminal-init-vt400):
1236 * term/vt420.el (terminal-init-vt420):
1237 * term/wyse50.el (terminal-init-wyse50):
1238 * term/xterm.el (terminal-init-xterm): Likewise.
1239
1240 * term/README: Describe the terminal-init-* functionality.
1241
1242 * startup.el (command-line): After loading the terminal initialization
1243 file call the corresponding terminal initialization function.
1244
1245 2005-07-27 Kenichi Handa <handa@m17n.org>
1246
1247 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
1248 negative.
1249
1250 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
1251 (ps-mule-composition-prologue): Fix for the case that
1252 RelativeCompose is false.
1253
1254 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
1255
1256 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
1257
1258 * descr-text.el (describe-char): Handle the case where the list of
1259 chars is displayed in a separate frame.
1260 Be a bit more discriminating when looking for the char.
1261
1262 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
1263
1264 * bookmark.el (bookmark-automatically-show-annotations)
1265 (bookmark-read-annotation-text-func): Doc fixes.
1266 (bookmark-save): Improve argument/docstring consistency.
1267 (bookmark-get-bookmark, bookmark-get-bookmark-record)
1268 (bookmark-alist-from-buffer)
1269 (bookmark-upgrade-file-format-from-0)
1270 (bookmark-grok-file-format-version)
1271 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
1272 (bookmark-read-annotation-mode)
1273 (bookmark-insert-current-bookmark, bookmark-jump)
1274 (bookmark-exit-hook): Fix typos in docstrings.
1275 (bookmark-exit-hooks): Define as obsolete alias.
1276 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
1277 not `bookmark-exit-hooks'. Fix docstring.
1278 (bookmark-bmenu-select): "?\ " -> "?\s".
1279
1280 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
1281
1282 * startup.el (command-line): Fix typo.
1283
1284 2005-07-24 Richard M. Stallman <rms@gnu.org>
1285
1286 * tooltip.el (tooltip-mode): Test emacs-basic-display,
1287 not emacs-quick-startup.
1288
1289 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
1290
1291 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
1292 (reb-next-match, reb-show-subexp): Use `with-selected-window'
1293 instead of `reb-with-current-window'.
1294 (reb-prev-match): Likewise. Also, don't move left if the search
1295 was unsuccessful.
1296 (reb-initialize-buffer): New function.
1297 (re-builder, reb-change-syntax): Use it.
1298
1299 * man.el (Man-goto-page): Make second argument NOERROR optional.
1300
1301 2005-07-23 Richard M. Stallman <rms@gnu.org>
1302
1303 * man.el (Man-bgproc-sentinel): Check here for failure to find
1304 any man page in the output, and report the error here.
1305 (Man-arguments): Make it permanent local.
1306 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
1307 (Man-mode): Pass t for NOERROR.
1308
1309 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
1310 (grep-mode-font-lock-keywords):
1311 Don't use compilation-...-face for messages that are not file names.
1312
1313 * progmodes/compile.el (compilation-mode-font-lock-keywords):
1314 Don't use compilation-...-face for messages that are not file names.
1315
1316 2005-07-22 Juri Linkov <juri@jurta.org>
1317
1318 * startup.el (normal-splash-screen): Update menu name.
1319
1320 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
1321
1322 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
1323
1324 * term/xterm.el: Load term/rxvt if the terminal is actually an
1325 rxvt terminal.
1326 (xterm-rxvt-set-background-mode): Remove, not used anymore.
1327
1328 * term/rxvt.el (function-key-map): Use substitute-key-definition
1329 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
1330
1331 * term/cygwin.el: New file.
1332
1333 2005-07-22 Kim F. Storm <storm@cua.dk>
1334
1335 * image-file.el (insert-image-file, image-file-yank-handler):
1336 Fix last change to maintain a (unique) yank-handler on yanked images.
1337
1338 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
1339
1340 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
1341 of the file size (as in "177B" for 177 bytes). This happens with
1342 "ls -lh" on FreeBSD.
1343
1344 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
1345
1346 * hilit-chg.el (highlight-changes-global-initial-state)
1347 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
1348 (hilit-chg-fixup, highlight-changes-mode):
1349 Fix typos in docstrings.
1350 (highlight-changes-global-modes, highlight-changes-rotate-faces):
1351 Doc fixes.
1352
1353 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
1354
1355 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
1356 mode function using `eval-after-load'.
1357
1358 2005-07-21 Kim F. Storm <storm@cua.dk>
1359
1360 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
1361 included when reporting an emacs crash, and tell about the DEBUG file.
1362
1363 * image-file.el (insert-image-file): Add yank-handler.
1364 (image-file-yank-handler): Yank handler to make unique copies of
1365 images when they are yanked into a buffer next to each other.
1366
1367 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
1368
1369 * comint.el (comint-use-prompt-regexp, comint-send-input)
1370 (comint-source-default, comint-extract-string)
1371 (comint-get-source, comint-word, comint-completion)
1372 (comint-source, comint-prompt-read-only, comint-update-fence):
1373 Fix typos in docstrings.
1374 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
1375 Declare with define-obsolete-*-alias macros.
1376 (comint-previous-matching-input-from-input)
1377 (comint-next-matching-input-from-input)
1378 (comint-previous-matching-input, comint-next-matching-input)
1379 (comint-forward-matching-input):
1380 Improve argument/docstring consistency.
1381
1382 * desktop.el (desktop-clear-preserve-buffers-regexp):
1383 Also preserve the *server* buffer.
1384
1385 * simple.el (clone-indirect-buffer): Doc fix.
1386 (fixup-whitespace, just-one-space)
1387 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
1388 (next-error, next-error-highlight)
1389 (next-error-highlight-no-select, next-error-last-buffer)
1390 (next-error-buffer-p, next-error-find-buffer, next-error)
1391 (previous-error, next-error-no-select, previous-error-no-select)
1392 (open-line, split-line, minibuffer-prompt-width, kill-new)
1393 (binary-overwrite-mode): Fix typos in docstrings.
1394 (set-fill-column): Fix typo in message.
1395
1396 * skeleton.el (skeleton-proxy-new): Doc fix.
1397
1398 * strokes.el (strokes-load-hook): Doc fix.
1399 (strokes-grid-resolution, strokes-get-grid-position)
1400 (strokes-renormalize-to-grid, strokes-read-stroke)
1401 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
1402 (strokes-global-map): Fix typos in docstrings.
1403 (strokes-help): Doc fix. Fix help message and pass it through
1404 `substitute-command-keys'.
1405
1406 * tempo.el (tempo-insert-prompt, tempo-interactive)
1407 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
1408 (tempo-insert-string-functions, tempo-local-tags)
1409 (tempo-define-template, tempo-insert-template)
1410 (tempo-insert-prompt-compat, tempo-is-user-element)
1411 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
1412 Fix typos in docstrings.
1413
1414 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
1415 (vcursor-key-bindings, vcursor-use-vcursor-map)
1416 (vcursor-find-window, vcursor-scroll-down)
1417 (vcursor-disable, vcursor-beginning-of-buffer)
1418 (vcursor-end-of-buffer): Fix typos in docstrings.
1419 (vcursor-relative-move, vcursor-get-char-count):
1420 Improve argument/docstring consistency.
1421
1422 * version.el: "?\ " -> "?\s".
1423
1424 * wid-edit.el (widget-default-create, widget-after-change)
1425 (widget-default-format-handler, widget-checklist-add-item)
1426 (widget-radio-add-item, widget-choose, widget-specify-secret)
1427 (widget-field-value-create, widget-field-value-get)
1428 (widget-editable-list-format-handler)
1429 (widget-editable-list-entry-create, widget-group-value-create)
1430 (widget-documentation-link-add)
1431 (widget-documentation-string-value-create): "?\ " -> "?\s".
1432 (widget-convert-text): Doc fix.
1433 (widget-narrow-to-field, widget-field-find)
1434 (widget-url-link-action, widget-emacs-library-link-action)
1435 (widget-color-notify): Fix typos in docstrings.
1436
1437 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
1438 (x-select-text, set-w32-system-coding-system)
1439 (w32-add-charset-info): Fix typos in docstrings.
1440
1441 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
1442 (cua-enable-cua-keys, cua-use-hyper-key)
1443 (cua-virtual-rectangle-edges): Fix typos in docstrings.
1444 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
1445
1446 * net/tramp.el (tramp-handle-load): Fix typo in error message.
1447
1448 * emacs-lisp/re-builder.el (regexp-builder): Declare with
1449 `defalias' instead of faking it.
1450
1451 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
1452 (eshell-ls-missing, eshell-ls-dired-initial-args)
1453 (eshell-ls-use-in-dired): Fix typos in docstrings.
1454
1455 2005-07-20 Kim F. Storm <storm@cua.dk>
1456
1457 * emulation/cua-base.el (cua-mode): Improve doc string.
1458
1459 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
1460
1461 * abbrev.el (expand-region-abbrevs): Doc fix.
1462 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
1463 Improve argument/docstring consistency.
1464
1465 * arc-mode.el (archive-get-descr, archive-alternate-display):
1466 Doc fixes.
1467 (archive-l-e): Improve argument/docstring consistency.
1468 (archive-tmpdir, archive-unixdate, archive-unixtime)
1469 (archive-chmod-entry): Fix typos in docstrings.
1470 (archive-unflag, archive-unflag-backwards)
1471 (archive-unmark-all-files): "?\ " -> "?\s".
1472
1473 * buff-menu.el (Buffer-menu-unmark): Doc fix.
1474 (Buffer-menu-not-modified, Buffer-menu-execute)
1475 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
1476 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
1477
1478 * composite.el (compose-string, encode-composition-rule)
1479 (compose-last-chars): Fix typos in docstrings.
1480
1481 * desktop.el (desktop-enable, desktop-basefilename):
1482 Declare with `define-obsolete-variable-alias'.
1483 (desktop-internal-v2s): Don't quote keywords.
1484 (desktop-clear): "?\ " -> "?\s".
1485
1486 * dired.el (dired-align-file, dired-flag-backup-files)
1487 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
1488 (dired-listing-switches, dired-ls-F-marks-symlinks)
1489 (dired-dwim-target, dired-load-hook, dired-mode-hook)
1490 (dired-directory, dired-faces, dired, dired-revert)
1491 (dired-mode, dired-summary, dired-view-file)
1492 (dired-copy-filename-as-kill, dired-delete-file)
1493 (dired-no-confirm, dired-unmark-all-marks)
1494 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
1495 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
1496 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
1497 Fix typos in message strings.
1498
1499 * dired-x.el (virtual-dired): Declare with `defalias'.
1500 (dired-mark-unmarked-files, dired-local-variables-file)
1501 (dired-omit-here-always): Doc fix.
1502 (dired-omit-mode, dired-find-subdir)
1503 (dired-enable-local-variables, dired-clean-up-buffers-too)
1504 (dired-extra-startup, dired-mark-extension, dired-jump)
1505 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
1506 (dired-smart-shell-command, dired-guess-shell-alist-user)
1507 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
1508 (dired-x-bind-find-file, dired-x-submit-report):
1509 Fix typos in docstrings.
1510 (dired-mark-unmarked-files): "?\ " -> "?\s".
1511
1512 * dirtrack.el (dirtrack-list): Fix typos in docstring.
1513
1514 * faces.el (describe-face): "?\ " -> "?\s".
1515 (read-all-face-attributes, read-face-font, modify-face)
1516 (face-attr-construct, italic): Fix typos in docstrings.
1517 (frame-update-face-colors): Declare with
1518 `define-obsolete-function-alias'.
1519
1520 * files.el (find-file-noselect, recode-file-name): Doc fixes.
1521 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
1522 (magic-mode-alist, buffer-file-numbers-unique)
1523 (write-file-functions, get-free-disk-space):
1524 Fix typos in docstrings.
1525 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
1526 (write-contents-hooks, write-file-hooks):
1527 Declare with `define-obsolete-variable-alias'.
1528
1529 * forms-d2.el (arch-rj): Fix typo in docstrings.
1530 (arch-tocol): Likewise. "?\ " -> "?\s".
1531
1532 * frame.el (set-frame-font, cursor-in-non-selected-windows):
1533 Fix typo in docstring.
1534 (set-screen-width, set-screen-height): Delete redundant info in
1535 doctrings.
1536 (new-frame, screen-height, screen-width): Declare with
1537 `define-obsolete-function-alias'.
1538 (delete-frame-hook, blink-cursor): Declare with
1539 `define-obsolete-variable-alias'.
1540
1541 * paths.el (prune-directory-list): Fix typos in docstring.
1542
1543 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
1544 (cvs-prefix-get): Fix typos in docstrings.
1545
1546 * ps-print.el (ps-extend-face-list, ps-extend-face)
1547 (ps-print-background-image): Fix typos in docstrings.
1548 (ps-default-fg, ps-default-bg): Doc fixes.
1549
1550 * s-region.el (s-region-bind): Doc fix.
1551 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
1552
1553 * textmodes/org.el (org-table-formula-substitute-names)
1554 (org-table-get-vertical-vector): Doc fixes.
1555 (org-table-recalculate): Remove unused argument to `message'.
1556
1557 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
1558
1559 * textmodes/org.el (org-table-column-names)
1560 (org-table-column-name-regexp)
1561 (org-table-named-field-locations): New variables.
1562 (org-archive-subtree): Protect `this-command' when calling
1563 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
1564 the kill buffer.
1565 (org-complete): Remove fixed-formula completion.
1566 (org-edit-formulas-map): New variable.
1567 (org-table-edit-formulas): New command.
1568 (org-finish-edit-formulas, org-abort-edit-formulas)
1569 (org-show-variable, org-table-get-vertical-vector): New functions.
1570 (org-table-maybe-eval-formula): Handle `:=' fields.
1571 (org-table-get-stored-formulas, org-table-store-formulas)
1572 (org-table-get-formula, org-table-modify-formulas)
1573 (org-table-replace-in-formulas): Handle named field formulas.
1574 (org-table-get-specials): Store locations of named fields.
1575
1576 2005-07-19 Juri Linkov <juri@jurta.org>
1577
1578 * progmodes/grep.el (grep-regexp-alist)
1579 (grep-mode-font-lock-keywords, grep-process-setup):
1580 Use default GNU grep match color "01;31m" instead of "01;41m".
1581 (grep-regexp-alist, grep-mode-font-lock-keywords):
1582 Use `\\[[0-9]*m' instead of `\\[00m'.
1583 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
1584 sgr_start where its handling is more important. Use the real
1585 length of sgr_start instead of constant 8.
1586 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
1587 specially. Delete all remaining escape sequences.
1588 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
1589 (grep-regexp-alist): Make hyperlink only for binary file name
1590 instead of the whole line.
1591 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
1592 (grep-mode): Add autoload.
1593
1594 * emacs-lisp/find-func.el (find-function-regexp):
1595 Add `define-compilation-mode'.
1596
1597 2005-07-19 Juri Linkov <juri@jurta.org>
1598
1599 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
1600 (compare-windows-sync-string-size, compare-windows-recenter)
1601 (compare-windows-highlight, compare-windows): Add version 22.1.
1602 (compare-windows) <defface>: Inherit from lazy-highlight instead
1603 of duplicating its default value.
1604
1605 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
1606 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
1607
1608 * descr-text.el (describe-char): Create link buttons for `charset'
1609 and `code point'. Add the current input method name with a link
1610 button to `to input' field. Print face names of display table
1611 characters in `The display table entry is displayed by' section
1612 instead of printing face-id in the `display' field.
1613 Guess hardcoded faces and create a link button for them.
1614 Skip empty fields when calculating max-width.
1615 Treat `widget-create' specially while inserting strings from the
1616 collected field list.
1617 (describe-char-after): Made obsolete in version 22.1, not 21.5.
1618
1619 * diff-mode.el (diff-file-header): Change foreground color from
1620 yellow to green on light backgrounds.
1621 (diff-context): Inherit from `shadow' only for color/grayscale
1622 with more than 88 colors.
1623 (diff-indicator-removed, diff-indicator-added)
1624 (diff-indicator-changed): New faces.
1625 (diff-font-lock-keywords): Use new faces. Regroup rules.
1626 Add "^---$" for `normal' diff format. Fontify `#' lines with
1627 font-lock-comment-delimiter-face and font-lock-comment-face.
1628 Add `#' to ^[^...] in the rule for `diff-context-face'.
1629
1630 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
1631 a button-like box. Inherit from `highlight' on low colors.
1632 (shadow): Use shades of gray only for color/grayscale with
1633 more than 88 colors. Use green for light backgrounds with
1634 8 colors, and yellow for dark backgrounds with 8 colors.
1635
1636 * font-lock.el (font-lock-regexp-grouping-backslash):
1637 Don't inherit from escape-glyph (use bold for all cases).
1638
1639 * info.el (info-xref-visited): Use light foreground color `violet'
1640 for dark backgrounds instead of dark color `magenta3'.
1641 (info-title-1): Use `yellow' color for dark backgrounds.
1642
1643 * isearch.el (isearch): Use not-too-dark magenta3 instead of
1644 too-light magenta2.
1645
1646 * replace.el (match): Use slightly more light RoyalBlue3 instead
1647 of dark RoyalBlue4.
1648
1649 * wid-edit.el (widget-inactive): Inherit from `shadow'.
1650
1651 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
1652
1653 * novice.el (disabled-command-hook): Declare it with
1654 `define-obsolete-variable-alias'.
1655
1656 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
1657 (desktop-buffer-misc-functions, desktop-buffer-handlers)
1658 (desktop-load-default): Add release to obsolescence info.
1659 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
1660 (desktop-append-buffer-args, desktop-read):
1661 Fix typos in docstrings.
1662 (desktop-kill): Fix typo in message.
1663 (desktop-save): Doc fix.
1664
1665 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
1666
1667 * viper-cmd.el (viper-escape-to-state): Bug fix.
1668 (viper-envelop-ESC-key): Change the definition of fast
1669 keysequence so it'll work with keyboard macros.
1670
1671 * ediff.el (ediff-patch-buffer): Change the docstring.
1672
1673 2005-07-19 Kenichi Handa <handa@m17n.org>
1674
1675 * international/mule-cmds.el (select-safe-coding-system): Try to
1676 use an auto-coding (if any) before anything else. If the found
1677 auto-coding is invalid, show a warning message.
1678
1679 * international/mule.el (find-auto-coding): New function created
1680 by modifying the body of set-auto-coding.
1681 (set-auto-coding): Use find-auto-coding to find a coding.
1682
1683 2005-07-18 Richard M. Stallman <rms@gnu.org>
1684
1685 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
1686 not isearch-mode-end-hook-error.
1687 (allout-before-change-protect): Fix error message.
1688
1689 2005-07-18 Juri Linkov <juri@jurta.org>
1690
1691 * allout.el (allout-mode):
1692 * calculator.el (calculator-copy):
1693 * custom.el (custom-known-themes):
1694 * dired.el (dired-desktop-buffer-misc-data)
1695 (dired-restore-desktop-buffer):
1696 * dired-x.el (dired-omit-marker-char):
1697 * files.el (basic-save-buffer):
1698 * font-core.el (font-lock-mode):
1699 * calendar/calendar.el (calendar-goto-hebrew-date)
1700 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
1701 (calendar-goto-persian-date):
1702 * language/ethio-util.el (ethio-sera-to-fidel-region):
1703 * textmodes/picture.el (picture-mode):
1704 Delete duplicate duplicate words.
1705
1706 2005-07-18 Juri Linkov <juri@jurta.org>
1707
1708 * isearch.el (isearch-mode-map): Remove key bindings for regexp
1709 chars * ? } |.
1710 (isearch-fallback): Don't call `isearch-process-search-char'.
1711 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
1712 (isearch-process-search-char): Call `isearch-fallback' for regexp
1713 chars * ? } |.
1714 (isearch-return-char): Make obsolete with `make-obsolete' instead
1715 of simply documenting it as obsolete in the docstring.
1716 (isearch-fallback): Refill docstring.
1717
1718 * international/isearch-x.el
1719 (isearch-process-search-multibyte-characters): Remove unneeded
1720 `concat'. Add intermediate values to `junk-hist' instead of
1721 `minibuffer-history'. Test the length of `str'.
1722
1723 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
1724
1725 * allout.el (allout-resolve-xref): Fix typos in error strings.
1726 (allout-before-change-protect): Remove unneeded `concat'.
1727
1728 * array.el (array-mode, array-reconfigure-rows)
1729 (untabify-backward): Fix typos in docstrings.
1730 (array-reconfigure-rows): Use `insert-buffer-substring', not
1731 `insert-buffer'.
1732
1733 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
1734 * progmodes/ada-mode.el (ada-make-body):
1735 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
1736
1737 * dired.el (dired-log):
1738 * tar-mode.el (tar-subfile-save-buffer):
1739 * play/zone.el (zone-pgm-stress-destress):
1740 Use `insert-buffer-substring', not `insert-buffer'.
1741
1742 2005-07-17 Simon Josefsson <jas@extundo.com>
1743
1744 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
1745
1746 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
1747
1748 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
1749 Add plain auth method.
1750 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
1751
1752 2005-07-17 Kim F. Storm <storm@cua.dk>
1753
1754 * ido.el (dired-other-window): Add ido property.
1755
1756 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
1757
1758 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
1759 Fix typo in docstring.
1760 (byte-compile-interactive-only-functions): Add `insert-buffer' and
1761 `insert-file-literally'.
1762
1763 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
1764 info and delete redundant message. Doc fix.
1765 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
1766 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
1767
1768 2005-07-16 Richard M. Stallman <rms@gnu.org>
1769
1770 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
1771 (byte-compile-and): Use byte-compile-and-recursion.
1772 (byte-compile-or-recursion): New function.
1773 (byte-compile-or): Use that.
1774 (byte-compile-if): Guard the else-clause too.
1775 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
1776
1777 * isearch.el (isearch-mode-end-hook-quit): New variable.
1778 (isearch-done): Bind it.
1779 (isearch-mode-end-hook): Doc fix.
1780
1781 * allout.el (allout-isearch-did-quit): Variable deleted.
1782 (allout-real-isearch-abort): Function name no longer used.
1783 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
1784 (allout-isearch-rectification): isearch-mode always exists.
1785 Don't set allout-isearch-did-quit.
1786 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
1787 allout-isearch-did-quit.
1788 (allout-enwrap-isearch): Just add the hook.
1789 (allout-isearch-abort): Function deleted.
1790 (allout-pre-command-business): Avoid warning.
1791
1792 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
1793 Correctly avoid warnings.
1794 (pascal-outline): Likewise.
1795
1796 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
1797
1798 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
1799
1800 * play/tetris.el (tetris-mode): Avoid warning.
1801
1802 * play/snake.el (snake-mode): Avoid warning.
1803
1804 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
1805 (gamegrid-set-display-table): Avoid warning.
1806 (gamegrid-set-timer): Likewise.
1807 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
1808 (gamegrid-add-score-with-update-game-score-1): Take FILE
1809 as argument.
1810 (gamegrid-add-score-with-update-game-score): Pass that argument.
1811 Rename have-shared-game-dir to gamegrid-shared-game-dir.
1812
1813 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
1814
1815 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
1816 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
1817
1818 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
1819 and insert-file.
1820
1821 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
1822 (sc-ask): Avoid warnings.
1823
1824 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
1825 (eshell-hist-initialize): Use that var the natural way.
1826
1827 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
1828
1829 * emacs-lisp/re-builder.el (reb-cook-regexp):
1830 Avoid warning calling lre-compile-string.
1831 (reb-color-display-p): Avoid warning.
1832
1833 * calculator.el (calculator-last-input): Guard uses
1834 of event-key and key-press-event-p.
1835 (event-key, key-press-event-p): Delete definitions.
1836
1837 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
1838 (find-gc-source-directory, find-gc-subrs-callers)
1839 (find-gc-noreturn-list, find-gc-source-files)
1840 (find-gc-subrs-called): Vars renamed and defvar'd.
1841
1842 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
1843 (checkdoc-overlay-put, checkdoc-delete-overlay)
1844 (checkdoc-overlay-start, checkdoc-overlay-end)
1845 (checkdoc-mode-line-update, checkdoc-char=):
1846 Define such that compiler knows they are defined.
1847 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
1848 (checkdoc-read-event): Delete. Use read-event directly.
1849
1850 * whitespace.el (whitespace-make-overlay)
1851 (whitespace-overlay-put, whitespace-delete-overlay)
1852 (whitespace-overlay-start, whitespace-overlay-end):
1853 Define such that compiler knows they are defined.
1854 (whitespace): Move conditional inside.
1855
1856 * tempo.el (tempo-insert-template): Suppress warning.
1857
1858 * ediff-diff.el (longlines-mode): Add defvar.
1859
1860 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
1861
1862 * server.el: Bind "C-x #" in a way that works even if C-x is
1863 redefined to a command key, not a prefix key.
1864
1865 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
1866
1867 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
1868 cl-make-type-test till execution time.
1869
1870 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
1871
1872 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
1873 arg ARG and use it.
1874
1875 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
1876
1877 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
1878
1879 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
1880
1881 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
1882 a defcustom with two :set or :type keywords.
1883
1884 2005-07-15 Richard M. Stallman <rms@gnu.org>
1885
1886 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
1887 Don't give ^M comment-end syntax.
1888
1889 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
1890
1891 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
1892 Don't consider gdbmi (gdb-mi.el has its own update functions).
1893 (gdb-var-delete): Make it work for gdbmi as well.
1894 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
1895
1896 * progmodes/gud.el (etags, sdb): Only require etags when needed.
1897 (gud-speedbar-menu-items): Correct logic for enabling items.
1898
1899 2005-07-15 Kim F. Storm <storm@cua.dk>
1900
1901 * ido.el: Fix commentary.
1902 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
1903 Use with-no-warnings around ffap-guesser.
1904 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
1905 Let bind minibuffer-completing-file-name to t.
1906
1907 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
1908
1909 * startup.el (site-run-file, keyboard-type): Doc fixes.
1910 (command-line): Check for "--basic-display" argument; also for
1911 "--quick", not "--bare-bones" (which was renamed).
1912 (fancy-splash-text): Add missing item "Getting New Versions".
1913 (normal-splash-screen): Fix typos and improve consistency with
1914 `fancy-splash-text'. Update copyright year.
1915
1916 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
1917 valid binding for `help-char'.
1918
1919 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
1920
1921 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
1922
1923 * term.el (term-mode): Disable cua-mode for term buffers.
1924
1925 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
1926
1927 * add-log.el (add-log-mailing-address, change-log-merge):
1928 Doc fixes.
1929 (change-log-get-method-definition): Fix typo in docstring.
1930
1931 2005-07-14 Kim F. Storm <storm@cua.dk>
1932
1933 * emulation/cua-base.el:
1934 (cua--pre-command-handler-1, cua--pre-command-handler)
1935 (cua--post-command-handler-1, cua--post-command-handler):
1936 Split in two. Check (buffer local) value of cua-mode.
1937 (cua-selection-mode): New command.
1938
1939 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
1940
1941 * custom.el (custom-initialize-safe-set)
1942 (custom-initialize-safe-default): Doc fixes.
1943
1944 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
1945 and simplify :init-value again.
1946
1947 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
1948 and simplify :init-value again. Delete autoload.
1949
1950 * startup.el (command-line): Use `custom-reevaluate-setting' again
1951 for tooltip-mode.
1952
1953 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
1954 a defcustom with two :initialize keywords.
1955
1956 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
1957
1958 * allout.el (my-mark-marker, allout-isearch-prior-pos)
1959 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
1960 (allout-post-command-business, allout-flag-region)
1961 (isearch-reenable-font-lock, allout-yank)
1962 (allout-insert-latex-header, allout-insert-latex-trailer)
1963 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
1964 (allout-latex-verb-quote): Fix typos in docstrings.
1965 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
1966 (allout-unprotected, allout-prefix-data):
1967 Improve argument/docstring consistency.
1968 (allout-chart-subtree): Fix argument spec.
1969 (allout-open-topic): Rename `use_sib_bullet' argument to
1970 `use-sib-bullet'. Doc fix.
1971
1972 * whitespace.el (whitespace-check-buffer-leading)
1973 (whitespace-check-buffer-trailing)
1974 (whitespace-check-buffer-indent)
1975 (whitespace-check-buffer-spacetab)
1976 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
1977 (whitespace-check-leading-whitespace)
1978 (whitespace-check-trailing-whitespace)
1979 (whitespace-check-spacetab-whitespace)
1980 (whitespace-check-indent-whitespace)
1981 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
1982 (whitespace-modes): Fix typos in docstrings.
1983 (defgroup, defcustom): Doc fixes.
1984
1985 * winner.el (winner-mode, winner-boring-buffers)
1986 (winner-pending-undo-ring): Doc fixes.
1987 (winner-ring): Remove unneeded `progn'.
1988 (winner-equal): `defsubst' it.
1989 (winner-redo): Fix message.
1990
1991 2005-07-13 Kim F. Storm <storm@cua.dk>
1992
1993 * simple.el (line-move-1): Always use vertical-motion to
1994 do the last (or only) line move to ensure some movement.
1995 Undo 2005-06-23 change--don't check for overlays.
1996
1997 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1998
1999 * term/mac-win.el (ccl-encode-mac-roman-font)
2000 (ccl-encode-mac-centraleurroman-font)
2001 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
2002 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
2003 Change charset-id boundary of dimension to ?\xef.
2004 (mac-char-fontspec-list): New constant.
2005 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
2006 argument. Nil uses itself as family in font-spec. Previous
2007 behavior for nil is now provided by non-nil non-string argument.
2008 All callers changed. Add font-specs for Mac fonts to
2009 "fontset-default" unless iso8859-1 fonts are installed.
2010
2011 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
2012
2013 * progmodes/sh-script.el (sh-get-indent-info): Only indent
2014 a continuation line if the \ is preceded by SPC or TAB.
2015 (sh-get-indent-info): Simplify.
2016 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
2017 Use with-current-buffer.
2018
2019 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
2020 when the matched text is empty.
2021
2022 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
2023
2024 * startup.el (command-line): Revert to previous handling of
2025 tooltip-mode. Explain in comment why the complexity is needed.
2026
2027 * tooltip.el (tooltip-mode): Revert to previous implementation of
2028 its defcustom.
2029
2030 * frame.el (blink-cursor-mode): Revert to previous implementation
2031 of its defcustom. Update comment.
2032
2033 2005-07-12 Lars Hansen <larsh@soem.dk>
2034
2035 * desktop.el: Update e-mail address.
2036
2037 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2038
2039 * term/mac-win.el (mac-services-mail-selection)
2040 (mac-services-mail-to): New functions.
2041 (mac-application-menu-map): Bind them.
2042
2043 2005-07-12 wulei <milton@wulei.net> (tiny change)
2044
2045 * progmodes/gdb-ui.el: Add note about buffering with Windows.
2046
2047 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
2048
2049 * custom.el (custom-reevaluate-setting): Doc fix.
2050
2051 2005-07-11 Jay Belanger <belanger@truman.edu>
2052
2053 * calc/calc.el (calc-embedded-announce-formula-alist)
2054 (calc-embedded-open-close-plain-alist)
2055 (calc-embedded-open-close-mode-alist): Add checks for additional
2056 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
2057
2058 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
2059
2060 * custom.el (custom-enable-theme): Don't add theme to
2061 `custom-enabled-themes' with `push' because there is no
2062 setf-method for `delq'.
2063
2064 2005-07-11 Richard M. Stallman <rms@gnu.org>
2065
2066 * custom.el (custom-declare-variable): Doc fix.
2067
2068 * dired-aux.el (dired-compare-directories): Remove "." and ".."
2069 from the alists.
2070
2071 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
2072 Do nothing if edebug-active.
2073
2074 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
2075 (edebug-display): Do it here instead.
2076
2077 2005-07-10 Richard M. Stallman <rms@gnu.org>
2078
2079 * cus-face.el (custom-theme-set-faces): Make it work.
2080 (custom-reset-faces): Doc fix.
2081 (custom-theme-reset-internal-face, custom-theme-face-value):
2082 Functions deleted.
2083
2084 * custom.el (custom-push-theme): Maintain list of the settings
2085 of a given theme in its theme-settings property.
2086 Maintain position of old settings in the theme-value
2087 or theme-face property.
2088 (custom-enabled-themes): New variable.
2089 (custom-theme-enabled-p): New function.
2090 (provide-theme): Update custom-enabled-themes.
2091 Disable and reenable the `user' theme.
2092 (require-theme): Doc fix.
2093 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
2094 (custom-theme-value, custom-theme-variable-value): Likewise.
2095 (custom-theme-reset-internal): Likewise.
2096 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
2097 (custom-enable-theme, custom-disable-theme): New functions.
2098 (custom-variable-theme-value, custom-face-theme-value): Likewise.
2099 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
2100 (custom-theme-reset-variables): Simplify.
2101 (deftheme, custom-declare-theme, custom-make-theme-feature):
2102 Definitions moved.
2103
2104 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
2105
2106 * longlines.el (longlines-show-region)
2107 (longlines-unshow-hard-newlines): Recognize hard newlines by
2108 non-nil hard property, instead of t.
2109
2110 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
2111
2112 * viper-cmd.el (viper--key-maps): New variable.
2113 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
2114 emulation-mode-map-alists.
2115 (viper-envelop-ESC-key): Use viper-subseq.
2116 (viper-search-forward/backward/next): Disable debug-on-error.
2117
2118 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
2119 (viper-ESC-key): New defcustoms.
2120
2121 * viper-macs.el (ex-map-read-args): Use viper-subseq.
2122
2123 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
2124 (viper-subseq): Copy of subseq from cl.el.
2125
2126 * viper.el (viper-go-away, viper-set-hooks): Use
2127 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
2128
2129 * viper-mous.el (viper-current-frame-saved): Use defvar.
2130
2131 * viper-init.el: Get rid of -face in face names.
2132
2133 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
2134 Make it work with longlines mode
2135
2136 * ediff-mult.el (ediff-meta-mode-hook): New variable.
2137
2138 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
2139
2140 * ediff-init: Get rid of -face in face names.
2141
2142 2005-07-10 Richard M. Stallman <rms@gnu.org>
2143
2144 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
2145 and with-timeout-unsuspend.
2146
2147 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
2148 and with-timeout-unsuspend.
2149
2150 * emacs-lisp/timer.el (with-timeout-timers): New variable.
2151 (with-timeout): Bind that variable to record timers.
2152 (with-timeout-suspend, with-timeout-unsuspend): New functions.
2153
2154 * emacs-lisp/debug.el (debug-help-follow): New function.
2155 (debugger-mode-map): Use that instead of help-follow.
2156 (debugger-setup-buffer): Use eval-buffer-list
2157 to handle eval-buffer frames.
2158
2159 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
2160
2161 * timezone.el (timezone-parse-date): Change first regexp
2162 so it will not mistakenly match dates with no time zone.
2163
2164 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
2165
2166 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
2167
2168 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
2169
2170 * custom.el (custom-initialize-safe-set)
2171 (custom-initialize-safe-default): New functions.
2172
2173 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
2174 and simplify :init-value.
2175
2176 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
2177 and simplify :init-value. Delete obsolete comment.
2178
2179 * startup.el (command-line): Use `custom-reevaluate-setting' to
2180 handle `tooltip-mode'. Delete obsolete comment.
2181
2182 * files.el (set-visited-file-name): Avoid calling
2183 `file-name-nondirectory' with a nil argument.
2184
2185 2005-07-09 Richard M. Stallman <rms@gnu.org>
2186
2187 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
2188 was called with nil for the buffer, handle the read position right.
2189 Handle read position for eval-region, too.
2190
2191 2005-07-09 Juri Linkov <juri@jurta.org>
2192
2193 * fringe.el (fringe-mode): Add period in docstring.
2194 (fringe-query-style): Build prompt depending on `all-frames' arg.
2195
2196 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
2197 to not create links to unrelated functions in the Help buffer.
2198
2199 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
2200 Doc fix.
2201
2202 * simple.el (next-error-hook): New variable.
2203 (next-error): Use it. Doc fix.
2204
2205 * textmodes/ispell.el (ispell-command-loop): Add current
2206 dictionary name and program name to mode-line-format.
2207 (ispell-region, ispell-process-line): Add current dictionary name
2208 and program name to messages.
2209
2210 2005-07-08 Jay Belanger <belanger@truman.edu>
2211
2212 * calc/calc.el (calc-embedded-announce-formula-alist)
2213 (calc-embedded-open-close-formula-alist)
2214 (calc-embedded-open-close-word-alist)
2215 (calc-embedded-open-close-plain-alist)
2216 (calc-embedded-open-close-new-formula-alist)
2217 (calc-embedded-open-close-mode-alist)
2218 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
2219 (calc-embedded-mode-hook): New variables.
2220
2221 * calc/calc-embed.el (calc-embedded-firsttime)
2222 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
2223 New variables.
2224 (calc-do-embedded): Use calc-embedded-firsttime,
2225 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
2226 determine whether or not to run hooks.
2227 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
2228 calc-embedded-firsttime-formula appropriately.
2229 Set calc-embedded delimiter variables according to mode.
2230
2231 2005-07-08 Richard M. Stallman <rms@gnu.org>
2232
2233 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
2234 Check for "emacs", etc., as entire symbol, not just as word.
2235 (checkdoc-file-comments-engine): Use regexp-quote on FN.
2236
2237 * files.el (set-visited-file-name): Report the error
2238 for "empty filename" earlier.
2239 (kill-some-buffers): Ignore buffers already dead.
2240
2241 * fringe.el (fringe-mode): Doc fix.
2242
2243 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
2244 Check for (featurep 'xemacs) and turn off warnings in what it guards.
2245 Use unwind-protect to ensure byte-compile-unresolved-functions
2246 is updated.
2247
2248 * whitespace.el (whitespace-buffer-leading-cleanup):
2249 Simplify w/ skip-chars-forward.
2250 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
2251
2252 * mail/rmail.el (rmail-only-expunge): Fix paren error.
2253 Unconditionally try to leave point at the same old place.
2254
2255 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
2256
2257 * comint.el (comint-postoutput-scroll-to-bottom)
2258 (comint-show-maximum-output): Take scroll-margin into consideration.
2259
2260 2005-07-08 Kim F. Storm <storm@cua.dk>
2261
2262 * ido.el (ido-use-filename-at-point): New choice `guess'.
2263 (ido-file-internal): Try ffap-guesser if selected.
2264
2265 * ido.el (ido-before-fallback-functions): New hook.
2266 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
2267 (ido-read-file-name): Run it.
2268
2269 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
2270
2271 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
2272 strings rather than a list of symbols to the completion function.
2273
2274 2005-07-07 Jay Belanger <belanger@truman.edu>
2275
2276 * calc/calc-units.el (math-apply-units): Change the places in
2277 which units are simplified.
2278
2279 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
2280
2281 * cus-edit.el (customize-option, customize-option-other-window):
2282 Make them handle aliases.
2283
2284 * custom.el (custom-variable-p): Make it recursively follow
2285 aliases. Mention that in the docstring.
2286
2287 2005-07-07 Richard M. Stallman <rms@gnu.org>
2288
2289 * cus-start.el (exec-path): Use `directory' instead of `file'.
2290 Fix tag for nil.
2291
2292 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
2293
2294 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
2295 when called non-interactively. Doc fix.
2296
2297 2005-07-07 Lute Kamstra <lute@gnu.org>
2298
2299 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
2300 new address as well.
2301
2302 2005-07-07 Kenichi Handa <handa@m17n.org>
2303
2304 * international/mule.el (make-coding-system):
2305 Describe `ascii-incompatible' property in the docstring.
2306 (set-file-name-coding-system): Signal an error if coding-system is
2307 ascii-incompatible.
2308 (set-keyboard-coding-system): Likewise.
2309
2310 * international/mule-cmds.el (set-default-coding-systems):
2311 Don't set default-file-name-coding-system and
2312 default-keyboard-coding-system if coding-system is ASCII-incompatible.
2313
2314 * international/utf-16.el: Declare that all UTF-16-based coding
2315 systems are ASCII-incompatible.
2316
2317 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
2318
2319 * progmodes/gud.el: Require font-lock for displaying errors.
2320 Used by gdb-ui.el.
2321
2322 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
2323
2324 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
2325 values for the pattern lists which are `read'able but not
2326 `append'able (like symbols).
2327
2328 2005-07-06 Richard M. Stallman <rms@gnu.org>
2329
2330 * progmodes/flymake.el (flymake-float-time): Instead of
2331 with-no-warnings, test for xemacs.
2332 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
2333 to avoid warning.
2334
2335 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
2336
2337 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
2338
2339 2005-07-05 Lute Kamstra <lute@gnu.org>
2340
2341 * battery.el: Add support for Darwin (with much debugging help
2342 from Samuel Lauber <sam124@operamail.com>).
2343 (battery-status-function, battery-echo-area-format)
2344 (battery-mode-line-format): Add support for pmset on Darwin.
2345 (battery-load-low, battery-load-critical): New user options.
2346 (battery-pmset): New function.
2347
2348 2005-07-05 Lute Kamstra <lute@gnu.org>
2349
2350 Update FSF's address in GPL notices.
2351
2352 * textmodes/page-ext.el: Update FSF's address.
2353
2354 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2355
2356 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
2357 filling from using prefix when filling a single-line docstring.
2358
2359 * progmodes/flymake.el: Remove useless eval-when-compile.
2360
2361 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
2362
2363 2005-07-04 Richard M. Stallman <rms@gnu.org>
2364
2365 * textmodes/org.el (org-file-apps-defaults-gnu):
2366 Rename from org-file-apps-defaults-linux.
2367 (org-default-apps): Don't test system-type for `linux'.
2368 (org-file-apps): Doc fix.
2369
2370 2005-07-04 David Ponce <david@dponce.com>
2371
2372 * tree-widget.el: Improve header Commentary section.
2373 (tree-widget) [defgroup]
2374 (tree-widget-image-enable, tree-widget-themes-directory)
2375 (tree-widget-theme, tree-widget-image-properties-emacs)
2376 (tree-widget-image-properties-xemacs, tree-widget-create-image)
2377 (tree-widget-image-formats, tree-widget-control)
2378 (tree-widget-empty-control, tree-widget-leaf-control
2379 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
2380 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
2381 (tree-widget-keep, tree-widget-after-toggle-functions)
2382 (tree-widget-open-node, tree-widget-close-node): Doc fix.
2383 (tree-widget-open-control, tree-widget-close-control): Fix doc and
2384 :help-echo message.
2385 (tree-widget-set-theme): Doc fix. Use `string-equal'.
2386 (tree-widget-image-properties): Doc fix. Clearer implementation.
2387 (tree-widget--cursors): New constant.
2388 (tree-widget-lookup-image): New function split from
2389 `tree-widget-find-image'. Clearer implementation.
2390 (tree-widget-find-image): Use it.
2391 (tree-widget-button-keymap): Use `set-keymap-parent'.
2392 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
2393 Define the sub-widgets here.
2394 (tree-widget-node): Check that :node is not a tree-widget.
2395 (tree-widget-get-super, tree-widget-open-control)
2396 (tree-widget-close-control, tree-widget-empty-control)
2397 (tree-widget-leaf-control, tree-widget-guide)
2398 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
2399 (tree-widget-no-handle, tree-widget-value-delete)
2400 (tree-widget-map): Remove.
2401 (tree-widget-children-value-save): Doc fix. Simplified.
2402 (tree-widget-value-create): Update according to previous changes.
2403
2404 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
2405
2406 * textmodes/org.el: Leading space replaced by TABS.
2407 (org-recalc-marks, org-table-rotate-recalc-marks)
2408 (org-table-get-specials): Treat "^" and "_" marks.
2409 (org-table-justify-field-maybe): Optional argument NEW.
2410 (org-table-eval-formula): Parsing of the format simplified.
2411 New modes C,I. Honor the %= parameter in the current table.
2412 Avoid unnecessary re-align by using the NEW argument to
2413 `org-table-justify-field-maybe'.
2414 (org-calc-default-modes): Default for date-format mimicks org-mode.
2415 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
2416
2417 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
2418
2419 * cus-face.el (custom-theme-set-faces): Make it handle face
2420 aliases whose alias declarations are pre- or autoloaded.
2421
2422 2005-07-04 Juri Linkov <juri@jurta.org>
2423
2424 * faces.el (read-face-name): Put the code for getting a face name
2425 from the buffer before adding the faces from the `face' property.
2426 Use `completing-read-multiple' instead of `completing-read'.
2427 Require `crm'. Add default value and post-process the returned
2428 list of faces.
2429
2430 * emacs-lisp/crm.el (crm-find-current-element)
2431 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
2432
2433 * emacs-lisp/lisp-mode.el (eval-defun-1):
2434 * emacs-lisp/edebug.el (edebug-eval-defun):
2435 Remove unnecessary quotes.
2436
2437 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
2438
2439 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
2440 (prolog-indent-level): Fix typo in docstring.
2441
2442 * info.el (Info-history, Info-history-forward)
2443 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
2444
2445 * add-log.el (add-change-log-entry):
2446 * comint.el (comint-dynamic-list-input-ring)
2447 (comint-dynamic-list-completions):
2448 * dabbrev.el (dabbrev-expand):
2449 * delim-col.el (delimit-columns-rectangle-line):
2450 * diff-mode.el (diff-context->unified, diff-reverse-direction)
2451 (diff-unified->context):
2452 * ediff-init.el (ediff-abbrev-jobname):
2453 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
2454 (ediff-replace-session-activity-marker-in-meta-buffer):
2455 * info.el (Info-summary):
2456 * lpr.el (printify-region):
2457 * printing.el (pr-create-interface):
2458 * ps-print.el (ps-print-quote):
2459 * ses.el (ses-column-widths, ses-print-cell)
2460 (ses-adjust-print-width, ses-center):
2461 * shell.el (shell-file-name-quote-list):
2462 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
2463 (strokes-fill-current-buffer-with-whitespace)
2464 (strokes-xpm-for-stroke, strokes-list-strokes)
2465 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
2466 * term.el (term-dynamic-list-input-ring)
2467 (term-dynamic-list-completions):
2468 * calc/calc.el (math-format-stack-value):
2469 * emacs-lisp/edebug.el (edebug-display-freq-count):
2470 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
2471 (delphi-new-comment-line):
2472 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
2473 * progmodes/executable.el (executable-set-magic):
2474 * progmodes/python.el (inferior-python-mode):
2475 * progmodes/scheme.el (scheme-mode-syntax-table):
2476 * progmodes/sh-script.el (sh-maybe-here-document):
2477 * progmodes/sql.el (sql-copy-column):
2478 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
2479 * textmodes/bibtex.el (bibtex-mode):
2480 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
2481 (sgml-auto-attributes):
2482 * textmodes/table.el (table-insert, table-shorten-cell)
2483 (table--generate-source-scan-lines, table-delete-row)
2484 (*table--cell-delete-char, table--spacify-frame)
2485 (table--horizontally-shift-above-and-below)
2486 (table--cell-insert-char, table--cell-blank-str)
2487 (table--fill-region-strictly):
2488 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
2489 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
2490
2491 * add-log.el (change-log):
2492 * apropos.el (apropos):
2493 * comint.el (comint-completion, comint-source):
2494 * dabbrev.el (dabbrev):
2495 * delim-col.el (columns):
2496 * diff-mode.el (diff-mode):
2497 * ediff.el (ediff):
2498 * ediff-diff.el (ediff-diff):
2499 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
2500 * ediff-mult.el (ediff-mult):
2501 * ediff-ptch.el (ediff-ptch):
2502 * ediff-wind.el (ediff-window):
2503 * facemenu.el (facemenu):
2504 * indent.el (indent):
2505 * info.el (info):
2506 * jka-cmpr-hook.el (compression, jka-compr):
2507 * lpr.el (lpr):
2508 * outline.el (outlines):
2509 * pcmpl-cvs.el (pcmpl-cvs):
2510 * pcmpl-rpm.el (pcmpl-rpm):
2511 * printing.el (printing):
2512 * ps-print.el (postscript, ps-print, ps-print-horizontal)
2513 (ps-print-vertical, ps-print-headers, ps-print-font)
2514 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
2515 (ps-print-background, ps-print-printer, ps-print-page)
2516 (ps-print-miscellany):
2517 * ses.el (ses):
2518 * shell.el (shell, shell-directories, shell-faces):
2519 * startup.el (initialization):
2520 * strokes.el (strokes):
2521 * term.el (term):
2522 * uniquify.el (uniquify):
2523 * w32-vars.el (w32):
2524 * calc/calc.el (calc):
2525 * emacs-lisp/bytecomp.el (bytecomp):
2526 * emacs-lisp/cl-indent.el (lisp-indent):
2527 * emacs-lisp/edebug.el (edebug):
2528 * emacs-lisp/elp.el (elp):
2529 * emacs-lisp/testcover.el (testcover):
2530 * emacs-lisp/trace.el (trace):
2531 * emulation/viper-ex.el (viper-ex):
2532 * emulation/viper-mous.el (viper-mouse):
2533 * mail/mailalias.el (mailalias):
2534 * mail/supercite.el (supercite, supercite-frames)
2535 (supercite-attr, supercite-cite, supercite-hooks):
2536 * net/rcompile.el (remote-compile):
2537 * net/rlogin.el (rlogin):
2538 * obsolete/ooutline.el (outlines):
2539 * progmodes/delphi.el (delphi):
2540 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
2541 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
2542 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
2543 (ebnf-optimization):
2544 * progmodes/etags.el (etags):
2545 * progmodes/executable.el (executable):
2546 * progmodes/idlwave.el (idlwave):
2547 * progmodes/pascal.el (pascal):
2548 * progmodes/prolog.el (prolog):
2549 * progmodes/python.el (python):
2550 * progmodes/scheme.el (scheme):
2551 * progmodes/sh-script.el (sh, sh-script):
2552 * progmodes/sql.el (SQL):
2553 * progmodes/tcl.el (tcl):
2554 * textmodes/bibtex.el (bibtex, bibtex-autokey):
2555 * textmodes/enriched.el (enriched):
2556 * textmodes/makeinfo.el (makeinfo):
2557 * textmodes/sgml-mode.el (sgml):
2558 * textmodes/table.el (table-hooks):
2559 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
2560 * textmodes/texinfo.el (texinfo):
2561 * textmodes/two-column.el (two-column):
2562 Finish `defgroup' description with period.
2563
2564 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
2565 * eshell/esh-var.el (eshell-var):
2566 * progmodes/vhdl-mode.el (vhdl-testbench):
2567 * textmodes/org.el (org): Fix typos in docstrings.
2568
2569 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
2570 consistency.
2571
2572 * progmodes/flymake.el (flymake-find-file): Remove.
2573 (flymake-float-time): Use `with-no-warnings'.
2574 (flymake-check-start-time, flymake-check-was-interrupted)
2575 (flymake-err-info, flymake-is-running, flymake-last-change-time)
2576 (flymake-new-err-info): `defvar' at compile time.
2577
2578 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
2579
2580 * replace.el (occur-hook): Doc fix.
2581 (occur-1): Don't call `occur-hook' if there are no matches.
2582
2583 2005-07-03 Richard M. Stallman <rms@gnu.org>
2584
2585 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
2586 global-map, save the same map.
2587 (global-map): Don't alter it at top level.
2588 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
2589 Then alter it here instead.
2590 (tpu-edt-off): Set global-map to the saved one.
2591
2592 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
2593 All references simplified.
2594 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
2595 (zmacs-regions): Add defvar.
2596 (repeat-complex-command-map): Everything about that deleted.
2597
2598 * textmodes/artist.el (artist-key-is-drawing)
2599 (artist-key-endpoint1, artist-key-poly-point-list)
2600 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
2601 (artist-key-compl-table, artist-rb-save-data)
2602 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
2603 Don't put them in eval-when-compile.
2604 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
2605
2606 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
2607 Use with-no-warnings.
2608
2609 * net/browse-url.el (dos-windows-version): Add defvar.
2610
2611 * mail/supercite.el (filladapt-prefix-table): Add defvar.
2612
2613 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
2614 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
2615 (rmail-new-summary-line-count): Rename from new-summary-line-count.
2616 Add defvar.
2617 (rmail-summary-beginning-of-message): Use with-no-warnings.
2618 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
2619
2620 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
2621 Use with-no-warnings.
2622
2623 * emulation/vi.el (vi-mark-region): Use c-mark-function.
2624 (c-mark-function): Add point-moving-unit property.
2625 (vi-goto-line): Use with-no-warnings.
2626
2627 * emulation/edt.el (edt-last-copied-word): Add defvar.
2628 (zmacs-region-stays): Likewise.
2629 (edt-mark-section-wisely): Use c-mark-function for C.
2630 Use makr-defun for Fortran.
2631 (time-string): defvar deleted.
2632 (edt-display-the-time): Don't set time-string.
2633
2634 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
2635
2636 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
2637 Don't warn when name is not constant
2638 or for defining the group `emacs'.
2639
2640 * tooltip.el (gud-tooltip-mode): Add defvar.
2641
2642 * startup.el (default-frame-background-mode): Add defvar.
2643
2644 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
2645
2646 * info.el (tool-bar-map): Add defvar.
2647
2648 * dired.el (dnd-protocol-alist): Add defvar.
2649
2650 * dired-aux.el (dired-query): Display question with answer, when
2651 the user answers.
2652
2653 * custom.el (custom-add-option): Doc fix.
2654
2655 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
2656
2657 2005-07-03 Eli Zaretskii <eliz@gnu.org>
2658
2659 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
2660 bogus name from the last change.
2661
2662 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
2663
2664 * custom.el (custom-declare-variable): Fix typos in comment.
2665 (custom-known-themes): Doc fix.
2666 (custom-theme-directory): New defcustom.
2667 (require-theme): Make it check `custom-theme-directory'.
2668
2669 * cus-theme.el (custom-new-theme-mode): New function.
2670 (custom-theme-name, custom-theme-variables, custom-theme-faces)
2671 (custom-theme-description): Add compiler defvars.
2672 (customize-create-theme): Add doc to the "*New Custom Theme*"
2673 buffer. Use `custom-new-theme-mode'.
2674 (custom-theme-write): Put the created buffer in emacs-lisp-mode
2675 and save it to the `custom-theme-directory'. Make this the
2676 default directory of the buffer.
2677
2678 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
2679
2680 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
2681 Fix unbalanced parentheses.
2682
2683 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
2684
2685 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
2686 into flymake-mode and delegate to flymake-mode.
2687
2688 * find-file.el (ff-which-function-are-we-in): Clean up.
2689
2690 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
2691
2692 * replace.el (occur-rename-buffer): Fix docstring.
2693
2694 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
2695 (edt-last-copied-word, edt-learn-macro-count)
2696 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
2697 (edt-rect-start-point, edt-user-global-map, rect-start-point)
2698 (time-string, zmacs-region-stays):
2699 * emulation/edt-mapper.el (edt-save-function-key-map)
2700 (EDT-key-name): `defvar' to silence the byte-compiler.
2701
2702 2005-07-02 Martin Rudalics <rudalics@gmx.at> (tiny change)
2703
2704 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
2705 font-lock-regexp-backslash. Doc fix.
2706 (font-lock-regexp-backslash-grouping-construct): Rename from
2707 font-lock-regexp-backslash-construct. Doc fix.
2708 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
2709 grouping constructs.
2710
2711 2005-07-02 Eli Zaretskii <eliz@gnu.org>
2712
2713 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
2714 updating all the prerequisites.
2715
2716 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
2717
2718 * textmodes/org.el (org-agenda-start-on-weekday)
2719 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
2720 (org-agenda-use-time-grid, org-archive-location)
2721 (org-allow-space-in-links, org-usenet-links-prefer-google)
2722 (org-enable-table-editor, org-export-default-language)
2723 (org-export-html-show-new-buffer, org-fill-paragraph)
2724 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
2725 (org-goto-quit, org-occur, org-eval-in-calendar)
2726 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
2727 (org-agenda-diary-entry, org-remember-help)
2728 (org-table-convert-region, org-at-table-p)
2729 (org-table-move-row-down, org-table-move-row-up)
2730 (org-table-copy-region, org-table-toggle-vline-visibility)
2731 (org-table-get-stored-formulas, org-table-get-specials)
2732 (org-recalc-commands, org-table-eval-formula)
2733 (org-table-formula-substitute-names, orgtbl-make-binding)
2734 (org-format-org-table-html, org-format-table-table-html)
2735 (org-format-table-table-html-using-table-generate-source)
2736 (org-customize): Fix typos in docstrings.
2737 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
2738 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
2739 (org-back-to-heading): Doc fixes.
2740 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
2741 (org-agenda-change-all-lines, org-get-header):
2742 Improve argument/docstring consistency.
2743 (orgtbl-error): Fix error message.
2744
2745 * progmodes/flymake.el (flymake-find-possible-master-files)
2746 (flymake-master-file-compare, flymake-get-line-err-count)
2747 (flymake-highlight-line, flymake-gui-warnings-enabled):
2748 Fix typos in docstrings.
2749 (flymake-parse-line, flymake-get-project-include-dirs-function)
2750 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
2751 Doc fixes.
2752 (flymake-get-project-include-dirs-function)
2753 (flymake-make-err-menu-data):
2754 Improve argument/docstring consistency.
2755
2756 2005-07-01 Lute Kamstra <lute@gnu.org>
2757
2758 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
2759 Catch errors with ignore-errors. Use temporary buffer.
2760 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
2761
2762 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
2763 background color faces.
2764 (facemenu-set-foreground, facemenu-set-background):
2765 Use facemenu-set-face-from-menu.
2766 (facemenu-set-face-from-menu): Treat face names that start with
2767 "fg:" or "bg:" as special.
2768 (facemenu-add-new-color): Don't create faces. Simplify.
2769
2770 2005-06-30 Richard M. Stallman <rms@gnu.org>
2771
2772 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
2773 (crm-find-current-element): Likewise.
2774
2775 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
2776
2777 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
2778
2779 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
2780
2781 * arc-mode.el (archive-extract): Make it work as a mouse binding.
2782 (archive-mouse-extract): Make it an obsolete alias.
2783 (archive-mode-map): Don't use archive-mouse-extract any more.
2784 (archive-mode, archive-extract): write-contents-hooks ->
2785 write-contents-functions.
2786 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
2787 first arg.
2788 (archive-rename-entry): Update the call.
2789 (archive-zip-summarize): Remove unused var `method'.
2790 (archive-lzh-summarize): Remove unused var `creator'.
2791
2792 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
2793 dedicated frame upon exit.
2794
2795 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
2796 (archive-zip-extract, archive-zip-expunge)
2797 (archive-zip-update, archive-zip-update-case): Use executable-find.
2798 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
2799 Use restore-buffer-modified-p.
2800 (archive-extract, archive-add-new-member, archive-write-file-member):
2801 Use with-current-buffer.
2802 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
2803
2804 2005-06-30 Andreas Schwab <schwab@suse.de>
2805
2806 * progmodes/gud.el (gud-filter): Remove unneeded progn.
2807
2808 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
2809
2810 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
2811
2812 2005-06-30 Juri Linkov <juri@jurta.org>
2813
2814 * faces.el (vertical-border): Inherit from mode-line-inactive
2815 only on tty.
2816
2817 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
2818
2819 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
2820 example, -NLINES in the `occur' docstring).
2821
2822 * replace.el (occur-1): When no matches are found, do not set the
2823 `buffer-read-only' and modified flags for the occur buffer,
2824 because it is deleted.
2825
2826 * emulation/cua-base.el (cua-check-pending-input)
2827 (cua-repeat-replace-region, cua-mode, cua-debug)
2828 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
2829 Fix typos in docstrings.
2830
2831 * emulation/cua-gmrk.el (cua-toggle-global-mark)
2832 (cua-cut-region-to-global-mark)
2833 (cua--cut-rectangle-to-global-mark):
2834 Remove period from end of messages.
2835
2836 * emulation/cua-rect.el (cua-do-rectangle-padding):
2837 Remove period from end of messages.
2838 (cua--rectangle-seq-format): Fix typo in docstring.
2839 (cua-sequence-rectangle, cua-fill-char-rectangle):
2840 Improve argument/docstring consistency.
2841
2842 2005-06-29 Juri Linkov <juri@jurta.org>
2843
2844 * faces.el (default-frame-background-mode): New internal variable.
2845 (frame-set-background-mode): Use it.
2846
2847 * startup.el (normal-top-level): Set default-frame-background-mode
2848 instead of frame-background-mode. Before setting it, test for its
2849 nil value. Remove tests for frame-background-mode and frame
2850 parameter `reverse'. Add test for "unspecified-fg".
2851
2852 * term/xterm.el (xterm-rxvt-set-background-mode):
2853 * term/rxvt.el (rxvt-set-background-mode):
2854 Set default-frame-background-mode instead of frame-background-mode.
2855
2856 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
2857
2858 * simple.el (set-variable): Warn about obsolete user variables.
2859
2860 * imenu.el (imenu--completion-buffer):
2861 * mouse.el (mouse-buffer-menu-alist):
2862 * msb.el (msb-invisible-buffer-p):
2863 * calendar/diary-lib.el (diary-header-line-format):
2864 * emacs-lisp/pp.el (pp-buffer):
2865 * progmodes/cperl-mode.el (cperl-do-auto-fill):
2866 * textmodes/picture.el (picture-replace-match):
2867 Change space constants followed by a sexp to "?\s ".
2868
2869 * play/decipher.el (decipher-loop-with-breaks):
2870 * textmodes/texinfo.el (texinfo-insert-@item): Change space
2871 constants "protected" from end of line by a comment to "?\s".
2872
2873 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2874
2875 * font-lock.el (save-buffer-state): Use `declare'.
2876
2877 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
2878 reset the syntax-table to cperl-mode-syntax-table.
2879 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
2880 "foo_print_bar" is not matched as a reserved keyword.
2881
2882 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
2883
2884 * textmodes/org.el (orgtbl-setup): New function, for delayed
2885 setup for the orgtbl commands.
2886 (org-calc-default-modes): New option.
2887 (orgtbl-make-binding): Use `defun' to get better help display.
2888 (org-diary): Call `org-compile-prefix-format'.
2889 (org-table-formula-substitute-names): New function.
2890 (org-agenda-day-view, org-agenda-week-view): New commands.
2891 (org-agenda-toggle-week-view): Command removed.
2892 (org-tbl-menu): Split off from org-org-menu.
2893 (org-mode): Move removal of outline-mode menus to here.
2894 (org-table-formula-debug): New option.
2895 (org-table-insert-row): Keep first field if just "#" or "*".
2896 (org-mode): Paragraph regexps fixed.
2897 (org-table-recalculate-regexp): New constant.
2898 (org-table-justify-field-maybe): Avoid replace if not necessary.
2899 (org-copy-special, org-cut-special): Use `call-interactively'.
2900 (org-table-copy-region): Take region from `interactive' call.
2901 (org-trim): Return string even if no match.
2902 (org-formula): New face.
2903 (org-set-font-lock-defaults): No longer highlight "FIXME".
2904 But highlight formula-related fields in table.
2905 (org-table-p): Use regexp, not fontification.
2906 (org-table-align): Handle white space at end of line.
2907 (org-table-formula-evaluate-inline): New option.
2908 (org-mode): Auto-wrapping in comment lines turned off.
2909 (org-table-copy-down): Evaluate only in copied field, not in
2910 destination.
2911 (org-table-current-formula): Variable removed.
2912 (org-table-store-formulas, org-table-get-stored-formulas)
2913 (org-table-modify-formulas, org-table-replace-in-formulas)
2914 (org-table-maybe-eval-formula): New functions.
2915 (org-table-get-formula): Modify to use stored formulas.
2916 (org-table-insert-column, org-table-delete-column)
2917 (org-table-move-column): Call `org-table-modify-formulas'.
2918 (org-complete): Add completion for keyword formulas.
2919 (orgtbl-mode): Pull orgtbl-mode-map to start of
2920 minor-mode-map-alist.
2921
2922 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2923
2924 * progmodes/python.el (python-check): Require `compile' before
2925 modifying its variables.
2926
2927 * newcomment.el (comment-indent-default): Don't get fooled by an early
2928 end of buffer.
2929
2930 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2931
2932 * ps-print.el (ps-print-version): Fix version number.
2933
2934 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
2935
2936 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
2937
2938 2005-06-28 Richard M. Stallman <rms@gnu.org>
2939
2940 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
2941 (flyspell-local-mouse-map): Declaration deleted.
2942 (flyspell-mouse-map): Bind only mouse-2.
2943 (flyspell-mode-map): Don't test flyspell-use-local-map.
2944 (flyspell-overlay-keymap-property-name): Var deleted.
2945 (flyspell-mode-on): Don't make local bindings for
2946 flyspell-mouse-map and flyspell-mode-map.
2947 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
2948
2949 * textmodes/ispell.el (ispell-word): Do not ignore short words.
2950
2951 * progmodes/compile.el (compilation-next-error-function):
2952 Don't switch buffers; operate on the current buffer.
2953
2954 * progmodes/compile.el (compilation-error-file-name)
2955 (compilation-warning-file-name, compilation-info-file-name)
2956 (compilation-line-number, compilation-column-number): New faces.
2957 (compilation-error-face, compilation-warning-face)
2958 (compilation-info-face, compilation-line-face)
2959 (compilation-column-face): Use them.
2960
2961 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
2962
2963 * comint.el (comint-password-prompt-regexp): Accept ", try again".
2964
2965 * bindings.el (global-map): Bind insertchar and its variants.
2966
2967 2005-06-27 Richard M. Stallman <rms@gnu.org>
2968
2969 * textmodes/artist.el (artist-text-overwrite)
2970 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
2971
2972 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2973
2974 * ps-print.el: It was not working the page selection for printing.
2975 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
2976 (ps-print-version): New version 6.6.7.
2977 (ps-end-sheet): New fun.
2978 (ps-header-sheet, ps-end-job): Call it.
2979
2980 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
2981
2982 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
2983
2984 2005-06-27 Lute Kamstra <lute@gnu.org>
2985
2986 * facemenu.el (facemenu-unlisted-faces): Add foreground and
2987 background color faces.
2988 (facemenu-get-face): Delete function.
2989 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
2990 (facemenu-add-new-color): Make second argument mandatory.
2991 Create the appropriate face and return it. Simplify.
2992 (facemenu-set-foreground, facemenu-set-background): Don't check if
2993 color is defined. Use return value of facemenu-add-new-color.
2994
2995 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
2996
2997 * progmodes/gud.el (gud-filter): Add missing argument to
2998 with-selected-window.
2999
3000 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
3001
3002 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
3003 a :require to the defcustom.
3004
3005 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
3006 defcustoms corresponding to minor modes.
3007
3008 2005-06-26 David Ponce <david@dponce.com>
3009
3010 * recentf.el: Require tree-widget instead of wid-edit.
3011 (recentf-filename-handler): Fix widget :type.
3012 (recentf-cancel-dialog, recentf-open-more-files)
3013 (recentf-open-files-action): Doc fix.
3014 (recentf-dialog-goto-first): New function.
3015 (recentf-dialog-mode-map): Set parent keymap first.
3016 (recentf-dialog-mode): Define with define-derived-mode.
3017 Don't display continuation lines in dialogs.
3018 (recentf-edit-list): Rename from recentf-edit-selected-items.
3019 (recentf-edit-list-select): Rename from recentf-edit-list-action.
3020 Simplify.
3021 (recentf-edit-list-validate): New function.
3022 (recentf-edit-list): Update accordingly.
3023 (recentf-open-files-item-shift): Remove.
3024 (recentf-open-files-item): Convert menu elements into tree and
3025 link widgets. Don't create the widgets.
3026 (recentf-open-files): Update accordingly.
3027 (recentf-save-list): Untabify.
3028
3029 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
3030
3031 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
3032 (keep-lines): Add INTERACTIVE arg. Never delete lines only
3033 partially contained in the active region. Do not take active
3034 region into account when called from Lisp, unless INTERACTIVE arg
3035 is non-nil. Use `forward-line' instead of `beginning-of-line' to
3036 avoid trouble with fields. Make marker point nowhere when no
3037 longer used. Always return nil. Doc fix.
3038 (flush-lines): Add INTERACTIVE arg. Do not take active region
3039 into account when called from Lisp, unless INTERACTIVE arg is
3040 non-nil. Use `forward-line' instead of `beginning-of-line' to
3041 avoid trouble with fields. Make marker point nowhere when no
3042 longer used. Always return nil. Doc fix.
3043 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
3044 interchangeable. Do not take active region into account when
3045 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
3046 message in echo area when called from Lisp, unless INTERACTIVE arg
3047 is non-nil. Avoid saying "1 occurrences". Do not use markers.
3048 Return the number of matches. Doc fix.
3049 (occur): Doc fix.
3050 (perform-replace): Make comment follow double space convention for
3051 the sake of `outline-minor-mode'.
3052
3053 * faces.el (facep): Doc fix.
3054
3055 2005-06-25 Richard M. Stallman <rms@gnu.org>
3056
3057 * facemenu.el (facemenu-enable-faces-p): New function.
3058 (facemenu-background-menu, facemenu-foreground-menu)
3059 (facemenu-face-menu): Add menu-enable property.
3060
3061 * jka-compr.el (jka-compr-insert-file-contents):
3062 Special handling if cannot find the uncompression program.
3063
3064 * cus-face.el (custom-face-attributes): Add autoload.
3065
3066 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
3067 Bind comment-indent-function locally.
3068
3069 * window.el (save-selected-window): Use save-current-buffer.
3070
3071 * subr.el (with-selected-window): Use save-current-buffer.
3072
3073 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
3074 and with-current-buffer.
3075
3076 2005-06-24 Richard M. Stallman <rms@gnu.org>
3077
3078 * simple.el (line-move-1): Fix previous change.
3079
3080 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
3081
3082 * replace.el (occur-1): Set `buffer-read-only' and the
3083 buffer-modified flag before running `occur-hook' to protect
3084 against unintentional buffer switches that can lead to data loss.
3085
3086 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
3087
3088 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
3089 (gud-gdb-marker-filter): Use font-lock-warning-face for any
3090 initial error.
3091
3092 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
3093 after fresh input.
3094 (gdb-var-create-handler): Put name of expression in quotes.
3095
3096 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
3097
3098 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
3099 elements of RING in order, and without bogus nil elements.
3100
3101 2005-06-23 Richard M. Stallman <rms@gnu.org>
3102
3103 * simple.el (set-variable): Args renamed; doc fix.
3104 (line-move-1): When there are overlays around, use vertical-motion.
3105
3106 * faces.el (escape-glyph): Use brown against light background.
3107 (nobreak-space): Rename from no-break-space.
3108 Fix previous change.
3109
3110 * dired-aux.el (dired-do-copy): Fix arg prompt.
3111
3112 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
3113
3114 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
3115
3116 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
3117 rather than "Distributor".
3118
3119 2005-06-23 Lute Kamstra <lute@gnu.org>
3120
3121 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
3122 (debug-on-entry): Use it. New interactive declaration that uses
3123 function-called-at-point.
3124
3125 2005-06-23 Kim F. Storm <storm@cua.dk>
3126
3127 * subr.el (save-match-data): Add comment about using evaporate arg
3128 to set-match-data.
3129
3130 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
3131
3132 * cus-edit.el (customize-face)
3133 (customize-face-other-window): Handle face aliases.
3134
3135 * faces.el (face-documentation, set-face-attribute)
3136 (face-spec-set): Handle face aliases.
3137
3138 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
3139
3140 * help-mode.el (help-make-xrefs): If a symbol representing a face
3141 name is not followed by the word "face", it could still be a
3142 function or variable name, so don't bypass other checks.
3143
3144 2005-06-22 Juri Linkov <juri@jurta.org>
3145
3146 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
3147 Replace aliased functions with calls where second arg `inherit' is t.
3148
3149 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
3150
3151 * progmodes/gdb-ui.el (gdb-error): New variable.
3152 (gdb-error): New function.
3153 (gdb-annotation-rules): Act on error-begin and error annotations.
3154 (gdb-concat-output): Use font-lock-warning-face for errors.
3155
3156 2005-06-22 Miles Bader <miles@gnu.org>
3157
3158 * bindings.el (propertized-buffer-identification): Use renamed
3159 `Buffer-menu-buffer' face.
3160
3161 * faces.el (vertical-border): Rename from `vertical-divider'.
3162 (escape-glyph): Change dark-background color back to `cyan'.
3163
3164 2005-06-21 Juri Linkov <juri@jurta.org>
3165
3166 * faces.el (face-user-default-spec): Try getting `customized-face'
3167 prior to `saved-face'.
3168 (frame-background-mode): Refill docstring.
3169
3170 * emacs-lisp/lisp-mode.el (eval-defun-1):
3171 * emacs-lisp/edebug.el (edebug-eval-defun):
3172 Set `saved-face' temporarily to nil before calling form.
3173 Set `customized-face' to the new spec after that.
3174
3175 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
3176
3177 * subr.el (1value, lambda, key-substitution-in-progress):
3178 Doc fixes.
3179
3180 * autoinsert.el (auto-insert-alist):
3181 * ses.el (ses-call-printer):
3182 * subr.el (noreturn):
3183 * emacs-lisp/lisp.el (check-parens):
3184 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
3185 * net/browse-url.el (browse-url-mosaic):
3186 * progmodes/cc-defs.el (c-safe-scan-lists):
3187 * progmodes/ebnf-abn.el (ebnf-abn-lex):
3188 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
3189 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
3190 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
3191 * progmodes/ebnf-iso.el (ebnf-iso-lex):
3192 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
3193
3194 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
3195
3196 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
3197
3198 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
3199
3200 * calendar/appt.el (appt-make-list): Activate the package, if
3201 not already active (for backwards compatibility).
3202
3203 2005-06-20 Kim F. Storm <storm@cua.dk>
3204
3205 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
3206
3207 2005-06-20 Miles Bader <miles@gnu.org>
3208
3209 * faces.el (vertical-divider): New face.
3210
3211 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
3212
3213 * simple.el (kill-whole-line): Doc fix.
3214 (next-error-buffer-p, next-error-find-buffer)
3215 (clone-indirect-buffer): Fix typos in docstrings.
3216 (comment-line-break-function): Doc fix: don't say variable
3217 is automatically buffer-local (it isn't).
3218
3219 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
3220
3221 * net/tramp-ftp.el (top):
3222 * net/tramp-smb.el (top):
3223 * net/tramp-util.el (top):
3224 * net/tramp-uu.el (top):
3225 * net/tramp-vc.el (top):
3226 * net/tramp.el (top): Revert copyright years back to original
3227 ones. Tramp has a life outside GNU Emacs.
3228
3229 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
3230
3231 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
3232
3233 2005-06-18 Juri Linkov <juri@jurta.org>
3234
3235 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
3236 end of first regexp to limit the match to the position between
3237 line number and source line with same separator character as used
3238 between file name and line number. In the second regexp limit
3239 mouse-face area to file name and line number by adding new group
3240 for them and referring it in HYPERLINK arg.
3241 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
3242 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
3243 previous line where grep markers may be already removed.
3244
3245 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
3246
3247 * progmodes/ps-mode.el: Update version and maintainer's email address.
3248
3249 2005-06-18 Steve Youngs <steve@xemacs.org>
3250
3251 * net/browse-url.el (browse-url-browser-function)
3252 (browse-url-default-browser): Add firefox.
3253 (browse-url-firefox-program, browse-url-firefox-arguments)
3254 (browse-url-firefox-startup-arguments)
3255 (browse-url-firefox-new-window-is-tab): New defcustoms.
3256 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
3257
3258 2005-06-17 Richard M. Stallman <rms@gnu.org>
3259
3260 * startup.el (command-line): Warn if specified user name has
3261 no home directory.
3262
3263 * term.el (term-get-old-input, term-input-filter, term-input-sender)
3264 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
3265
3266 * longlines.el (longlines-mode, longlines-show-hard-newlines):
3267 Doc fixes.
3268
3269 * faces.el (underline): Try bold if terminal doesn't support underline.
3270
3271 * mail/sendmail.el (mail-setup-with-from): New variable.
3272 (mail-insert-from-field): New function.
3273 (sendmail-send-it): Call it.
3274 (mail-setup): Optionally call it here.
3275
3276 * term/linux.el: Call tty-no-underline.
3277
3278 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
3279
3280 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
3281
3282 2005-06-17 Miles Bader <miles@gnu.org>
3283
3284 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
3285 (ediff-current-diff-C, ediff-current-diff-Ancestor)
3286 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
3287 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
3288 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
3289 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
3290 Remove "-face" suffix from face names.
3291 (ediff-current-diff-face-A, ediff-current-diff-face-B)
3292 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
3293 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
3294 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
3295 (ediff-even-diff-face-A, ediff-even-diff-face-B)
3296 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
3297 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
3298 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
3299 New backward-compatibility aliases for renamed faces.
3300 (ediff-current-diff-face-A, ediff-current-diff-face-B)
3301 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
3302 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
3303 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
3304 (ediff-even-diff-face-A, ediff-even-diff-face-B)
3305 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
3306 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
3307 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
3308 Use renamed ediff faces.
3309
3310 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
3311 Remove "-face" suffix from face names.
3312 (eshell-test-ok-face, eshell-test-failed-face):
3313 New backward-compatibility aliases for renamed faces.
3314 (eshell-run-test): Use renamed eshell-test faces.
3315
3316 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
3317 face name.
3318 (eshell-prompt-face): New backward-compatibility alias for renamed
3319 face.
3320 (eshell-emit-prompt): Use renamed eshell-prompt face.
3321
3322 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
3323 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
3324 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
3325 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
3326 Remove "-face" suffix from face names.
3327 (eshell-ls-directory-face, eshell-ls-symlink-face)
3328 (eshell-ls-executable-face, eshell-ls-readonly-face)
3329 (eshell-ls-unreadable-face, eshell-ls-special-face)
3330 (eshell-ls-missing-face, eshell-ls-archive-face)
3331 (eshell-ls-backup-face, eshell-ls-product-face)
3332 (eshell-ls-clutter-face):
3333 New backward-compatibility aliases for renamed faces.
3334 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
3335
3336 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
3337 Remove "-face" suffix from face name.
3338 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
3339 instead of literal face.
3340
3341 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
3342
3343 * emacs-lisp/warnings.el (display-warning, lwarn)
3344 (warning-minimum-log-level): Doc fixes.
3345 (warning-minimum-level, warning-minimum-log-level):
3346 Add :debug to :type choices.
3347
3348 * progmodes/ada-mode.el (ada-format-paramlist)
3349 (ada-get-indent-case, ada-check-matching-start)
3350 (ada-check-defun-name, ada-goto-matching-decl-start)
3351 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
3352 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
3353 (ada-make-subprogram-body): Follow error conventions.
3354 (ada-case-exception-file, ada-indent-comment-as-code)
3355 (ada-indent-handle-comment-special, ada-indent-renames)
3356 (ada-indent-return, ada-search-directories-internal)
3357 (ada-tab-policy, ada-case-exception-substring)
3358 (ada-other-file-alist, ada-matching-start-re)
3359 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
3360 (ada-imenu-generic-expression, ada-compile-goto-error)
3361 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
3362 (ada-popup-menu, ada-add-extensions, ada-mode)
3363 (ada-region-selected, ada-create-case-exception)
3364 (ada-create-case-exception-substring, ada-after-keyword-p)
3365 (ada-activate-keys-for-case, ada-adjust-case-region)
3366 (ada-adjust-case-buffer, ada-format-paramlist)
3367 (ada-scan-paramlist, ada-insert-paramlist)
3368 (ada-indent-newline-indent)
3369 (ada-indent-newline-indent-conditional)
3370 (ada-justified-indent-current, ada-goto-previous-word)
3371 (ada-indent-current, ada-get-indent-open-paren)
3372 (ada-get-indent-paramlist, ada-get-indent-end)
3373 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
3374 (ada-get-indent-block-start, ada-get-indent-subprog)
3375 (ada-get-indent-noindent, ada-get-indent-label)
3376 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
3377 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
3378 (ada-goto-stmt-end, ada-goto-next-word)
3379 (ada-check-matching-start, ada-check-defun-name)
3380 (ada-goto-matching-decl-start, ada-goto-matching-start)
3381 (ada-goto-matching-end, ada-search-ignore-string-comment)
3382 (ada-in-decl-p, ada-looking-at-semi-or)
3383 (ada-looking-at-semi-private, ada-in-paramlist-p)
3384 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
3385 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
3386 (ada-next-procedure, ada-previous-procedure, ada-next-package)
3387 (ada-previous-package, ada-create-menu)
3388 (ada-fill-comment-paragraph-justify)
3389 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
3390 (ada-other-file-name, ada-last-which-function-line)
3391 (ada-last-which-function-subprog, ada-which-function)
3392 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
3393 (ada-gen-treat-proc, ada-check-emacs-version)
3394 (ada-continuation-indent, ada-align-region-separate):
3395 Fix typos in docstrings.
3396 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
3397
3398 2005-06-16 Lute Kamstra <lute@gnu.org>
3399
3400 * simple.el (fundamental-mode): Run after-change-major-mode-hook
3401 conditionally.
3402
3403 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
3404
3405 * comint.el (comint-replace-by-expanded-filename)
3406 (comint-prompt-regexp, comint-delimiter-argument-list)
3407 (comint-preinput-scroll-to-bottom):
3408 * info.el (Info-hide-cookies-node):
3409 * ls-lisp.el (ls-lisp-classify):
3410 * find-file.el (ff-search-directories, ff-special-constructs)
3411 (ff-find-other-file):
3412 * font-lock.el (font-lock-keywords):
3413 * shell.el (shell-prompt-pattern)
3414 (shell-dynamic-complete-functions, shell-mode)
3415 (shell-delimiter-argument-list):
3416 * term.el (term-replace-by-expanded-filename)
3417 (term-prompt-regexp, term-delimiter-argument-list):
3418 * woman.el (woman-ignore, woman0-if):
3419 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
3420 * emacs-lisp/elint.el (elint-init-env):
3421 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
3422 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
3423 * language/ethio-util.el (ethio-tilde-escape)
3424 (ethio-use-three-dot-question):
3425 * net/zone-mode.el (zone-mode-load-time-setup):
3426 * progmodes/cc-align.el (c-lineup-argcont):
3427 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
3428 * progmodes/cperl-mode.el (cperl-set-style-back):
3429 * progmodes/inf-lisp.el (inferior-lisp-prompt):
3430 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
3431 Fix spellings in docstrings.
3432
3433 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
3434 * progmodes/modula2.el (m2-for): Fix spellings.
3435
3436 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
3437
3438 * simple.el (undo-more): Don't use `format' on `error' arguments.
3439 Improve argument/docstring consistency.
3440 (pending-undo-list): Doc fix.
3441
3442 * smerge-mode.el (smerge-ensure-match):
3443 * emulation/vip.el (vip-ex):
3444 * net/zone-mode.el (zone-mode-update-serial):
3445 * progmodes/idlwave.el (idlwave-complete):
3446 * progmodes/vhdl-mode.el (vhdl-visit-file)
3447 (vhdl-compose-wire-components):
3448 Don't use `format' on `error' arguments.
3449
3450 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
3451 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
3452 (tooltip-help-tips): Fix typos in docstrings.
3453
3454 2005-06-16 David Ponce <david@dponce.com>
3455
3456 * tree-widget.el (tree-widget-value-create): Simplify last change.
3457
3458 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
3459
3460 * ido.el (ido-incomplete-regexp): New variable.
3461 (ido-set-matches-1): Handle invalid-regexp error and set
3462 ido-incomplete-regexp.
3463 (ido-incomplete-regexp): New face.
3464 (ido-completions): Use it.
3465 (ido-complete, ido-exit-minibuffer, ido-completions):
3466 Handle incomplete regexps.
3467 (ido-completions): Add check for complete match when entering a regexp.
3468
3469 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
3470
3471 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
3472
3473 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3474
3475 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
3476 by field delimiters.
3477
3478 2005-06-15 David Ponce <david@dponce.com>
3479
3480 * tree-widget.el: eval-and-compile inlined functions so they will
3481 be available at run-time too.
3482 (tree-widget-super-format-handler)
3483 (tree-widget-format-handler): Remove.
3484 (tree-widget-value-create): Handle the :indent property.
3485
3486 2005-06-15 Miles Bader <miles@gnu.org>
3487
3488 * progmodes/which-func.el (which-func): Only inherit
3489 `font-lock-function-name-face' when that makes sense against the
3490 default mode-line face, otherwise set the face color explicitly.
3491
3492 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
3493 faces instead of (non-existent) variables.
3494
3495 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
3496
3497 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
3498 (iswitchb-get-matched-buffers): Likewise. Simplify.
3499
3500 2005-06-14 Miles Bader <miles@gnu.org>
3501
3502 * progmodes/ld-script.el (ld-script-location-counter):
3503 Remove "-face" suffix from face name.
3504 (ld-script-location-counter-face):
3505 New backward-compatibility alias for renamed face.
3506 (ld-script-location-counter-face): Use renamed face.
3507
3508 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
3509 (cperl-hash): Remove "-face" suffix from face names.
3510 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
3511 New backward-compatibility aliases for renamed faces.
3512 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
3513 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
3514
3515 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
3516 name.
3517 (which-func-face): New backward-compatibility alias for renamed face.
3518 (which-func-format): Use renamed which-func face.
3519
3520 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
3521 (vhdl-function, vhdl-directive, vhdl-reserved-word)
3522 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
3523 names.
3524 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
3525 (vhdl-speedbar-configuration, vhdl-speedbar-package)
3526 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
3527 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
3528 (vhdl-speedbar-architecture-selected)
3529 (vhdl-speedbar-configuration-selected)
3530 (vhdl-speedbar-package-selected)
3531 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
3532 names.
3533 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
3534 Use renamed faces.
3535 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
3536 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
3537 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
3538 Use renamed faces.
3539 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
3540 names.
3541 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
3542 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
3543 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
3544 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
3545 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
3546 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
3547
3548 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
3549 face name.
3550 (sh-heredoc-face): New backward-compatibility alias for renamed face.
3551 (sh-heredoc-face): Use renamed sh-heredoc face.
3552
3553 * progmodes/idlw-help.el (idlwave-help-link):
3554 Remove "-face" suffix from face name.
3555 (idlwave-help-link-face):
3556 New backward-compatibility alias for renamed face.
3557 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
3558
3559 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
3560 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
3561 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
3562 New backward-compatibility aliases for renamed faces.
3563 (idlwave-shell-disabled-breakpoint-face)
3564 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
3565
3566 * progmodes/flymake.el (flymake-errline, flymake-warnline):
3567 Remove "-face" suffix from face names.
3568 (flymake-errline-face, flymake-warnline-face):
3569 New backward-compatibility aliases for renamed faces.
3570 (flymake-highlight-line): Use renamed flymake faces.
3571
3572 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
3573 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
3574 (ebrowse-member-class, ebrowse-progress):
3575 Remove "-face" suffix from face names.
3576 (ebrowse-tree-mark-face, ebrowse-root-class-face)
3577 (ebrowse-file-name-face, ebrowse-default-face)
3578 (ebrowse-member-attribute-face, ebrowse-member-class-face)
3579 (ebrowse-progress-face):
3580 New backward-compatibility aliases for renamed faces.
3581 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
3582 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
3583 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
3584 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
3585
3586 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
3587 antlr-syntax)
3588 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
3589 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
3590 names.
3591 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
3592 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
3593 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
3594 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
3595 backward-compatibility aliases for renamed faces.
3596 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
3597 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
3598 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
3599 remove "font-lock-". Use renamed antlr-mode faces.
3600 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
3601 literal face-names with face variable references.
3602
3603 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
3604 face name.
3605 (Buffer-menu-buffer-face): New backward-compatibility alias for
3606 renamed face.
3607 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
3608
3609 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
3610
3611 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
3612 Eliminate "-face" suffix.
3613 (makefile-targets): Inherit from font-lock-function-name-face and
3614 eliminate "-face" suffix.
3615 (makefile-shell): Remove attributes and eliminate "-face" suffix.
3616 (makefile-*-font-lock-keywords): Append makefile-targets in rule
3617 actions, instead of prepending, to make it less visible.
3618 (makefile-previous-dependency, makefile-match-dependency):
3619 Don't match a target on a continuation line.
3620
3621 * files.el (auto-mode-alist): Put Makefile in gmake mode.
3622
3623 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
3624
3625 * progmodes/gdb-ui.el (menu): Re-order menu items.
3626 (gdb-tooltip-print): Respect tooltip-use-echo-area.
3627
3628 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
3629 Define in tooltip.el.
3630 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
3631 (gud-tooltip-tips): Respect tooltip-use-echo-area and
3632 gud-tooltip-echo-area.
3633
3634 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
3635 backward compatibility and make obsolete.
3636 (tooltip-help-tips): Use tooltip-use-echo-area.
3637 (tooltip-show-help-function): Rename to...
3638 (tooltip-show-help): ...this, because it is a function.
3639 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
3640
3641 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
3642
3643 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
3644 (edebug-print-length, edebug-print-level, edebug-print-circle)
3645 (edebug-modify-breakpoint, edebug-eval-last-sexp)
3646 (edebug-eval-print-last-sexp): Doc fixes.
3647
3648 2005-06-14 Kim F. Storm <storm@cua.dk>
3649
3650 * ido.el (ido-mode): Make a new keymap every time we enable ido,
3651 as the coverage buffer/file/both may change.
3652
3653 2005-06-14 Lute Kamstra <lute@gnu.org>
3654
3655 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
3656 and run-mode-hooks. Simplify.
3657
3658 * mail/rmailedit.el (rmail-edit-mode):
3659 * progmodes/octave-inf.el (inferior-octave-mode):
3660 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
3661
3662 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
3663 and run-mode-hooks.
3664 (recentf-edit-list, recentf-open-files): Don't call
3665 kill-all-local-variables directly.
3666
3667 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
3668
3669 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
3670
3671 * emacs-lisp/byte-run.el (make-obsolete)
3672 (define-obsolete-function-alias): Rename arguments FUNCTION and
3673 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
3674 (make-obsolete-variable, define-obsolete-variable-alias):
3675 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
3676 respectively.
3677
3678 * isearchb.el (isearchb-activate):
3679 * pcvs.el (cvs-mode):
3680 * ses.el (ses-load):
3681 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
3682 * net/tramp.el (tramp-find-file-exists-command)
3683 (tramp-find-shell):
3684 * progmodes/ada-mode.el (ada-create-case-exception)
3685 (ada-create-case-exception-substring, ada-make-subprogram-body):
3686 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
3687 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
3688 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
3689 * textmodes/org.el (org-promote, org-evaluate-time-range)
3690 (org-agenda-next-date-line, org-agenda-previous-date-line)
3691 (org-agenda-error, org-open-at-point, org-table-move-row)
3692 (org-format-table-table-html-using-table-generate-source)
3693 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
3694 * textmodes/reftex.el (reftex-access-scan-info):
3695 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
3696 (reftex-toc-promote-prepare): Follow error conventions.
3697
3698 * diff-mode.el (diff-mode): Fix typo in docstring.
3699
3700 * forms.el (forms--intuit-from-file): Fix reference to
3701 `forms-number-of-fields' in error message.
3702 (forms-print): Fix quoting in error message.
3703
3704 * forms.el (forms-mode):
3705 * emulation/vi.el (vi-goto-insert-state):
3706 * progmodes/flymake.el (flymake-new-err-info)
3707 (flymake-start-syntax-check-for-current-buffer)
3708 (flymake-simple-cleanup):
3709 * eshell/esh-var.el (eshell/export):
3710 * progmodes/gud.el (xdb):
3711 * textmodes/flyspell.el (flyspell-incorrect-hook)
3712 (flyspell-maybe-correct-transposition)
3713 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
3714
3715 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
3716
3717 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
3718 minibuffer prompt.
3719
3720 2005-06-13 Kim F. Storm <storm@cua.dk>
3721
3722 * subr.el (add-to-ordered-list): New defun.
3723
3724 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
3725 add cua--keymap-alist to emulation-mode-map-alists.
3726
3727 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
3728
3729 * subr.el (complete-in-turn): New macro.
3730 (dynamic-completion-table, lazy-completion-table): Add debug info.
3731
3732 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
3733 in preference to face aliases.
3734
3735 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
3736 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
3737 Remove unused vars `start' and `firstline'.
3738 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
3739 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
3740
3741 2005-06-13 Eli Zaretskii <eliz@gnu.org>
3742
3743 * cus-start.el (all): Don't complain about missing GTK-related
3744 variables, unless either `gtk' is boundp or this isn't a
3745 `windows-nt' build.
3746
3747 2005-06-13 Lute Kamstra <lute@gnu.org>
3748
3749 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
3750 run-mode-hooks.
3751
3752 * ediff-mult.el (ediff-meta-mode):
3753 * ediff-util.el (ediff-mode): Use run-mode-hooks.
3754
3755 * ledit.el (ledit-mode): Use delay-mode-hooks.
3756
3757 * woman.el (woman-mode-line-format): Delete constant.
3758 (woman-mode-map): Initialize it properly.
3759 (woman-mode): Set mode-class property to special.
3760 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
3761 Set major-mode and mode-name. Don't set mode-line-format directly.
3762 (Man-getpage-in-background): Don't reference woman-mode-line-format.
3763
3764 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
3765 string argument obsolete.
3766
3767 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
3768
3769 * textmodes/org.el (org-CUA-compatible): New option.
3770 (org-disputed-keys): New variable.
3771 (org-key): New function.
3772 (orgtbl-make-binding): Add docstring to the created function.
3773 (org-mode): Set paragraph start/separate regexps.
3774 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
3775 (org-archive-location, org-archive-mark-done)
3776 (org-archive-stamp-time): New options.
3777 (org-archive-subtree): New command.
3778 (org-fill-paragraph): New function.
3779 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
3780 (org-fake-empty-table-line): Function removed.
3781 (org-format-org-table-html): Do not create empty table lines at
3782 separator lines. Improved table header treatment.
3783 (org-link-format): New option.
3784 (org-make-link): New function.
3785 (org-insert-link, org-store-link): Use org-make-link.
3786 (org-open-file): Quote file name for shell command, to allow
3787 spaces in file names.
3788 (org-link-regexp): Fix bug with mailto link.
3789 (org-link-maybe-angles-regexp, org-protected-link-regexp):
3790 New constants.
3791 (org-export-as-html): Deal with the optional angles around a link.
3792 Better treatment of file: links.
3793 (org-open-at-point): Replace @{ and @} with < and >.
3794 (org-run-mode-hooks): Function removed.
3795 (org-agenda-mode): No longer use `org-run-mode-hooks'.
3796
3797 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
3798
3799 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
3800 MI command -data-list-register-values.
3801 (gdb-post-prompt): Indent properly.
3802
3803 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
3804
3805 * hilit-chg.el (highlight-changes-colors): Rename from
3806 `highlight-changes-colours'.
3807 (highlight-changes-colours): Keep as obsolete alias.
3808 (highlight-changes-face-list): Doc fix.
3809 (hilit-chg-make-list): Use `highlight-changes-colors'.
3810
3811 2005-06-12 Mark A. Hershberger <mah@everybody.org>
3812
3813 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
3814 defun-prompt-regexp.
3815
3816 2005-06-12 Eli Zaretskii <eliz@gnu.org>
3817
3818 * loadup.el: Don't say we are dumping under 2 names on windows-nt
3819 and cygwin.
3820
3821 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
3822 Don't use an old loaddefs.el, as in Makefile.in.
3823
3824 2005-06-12 Lute Kamstra <lute@gnu.org>
3825
3826 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
3827
3828 * man.el (Man-mode-map): Initialize it properly.
3829 (Man-mode): Set mode-class property to special.
3830
3831 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
3832
3833 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
3834
3835 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
3836 A newline is needed in the docstring there.
3837
3838 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
3839 Doc fixes.
3840
3841 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
3842
3843 * printing.el: Doc fix. The menubar is no more changed when printing
3844 is loaded, it only changes when pr-menu-bind or pr-update-menus is
3845 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
3846 (pr-version): New version number (6.8.4).
3847 (pr-menu-bind): New command.
3848 (pr-update-menus): Docstring and code fix.
3849 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
3850 Docstring fix.
3851 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
3852 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
3853
3854 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
3855
3856 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
3857 "Returns" to "return", document useful return values, etc.
3858
3859 2005-06-11 Alan Mackenzie <acm@muc.de>
3860
3861 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
3862 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
3863 (adaptive-file-function): Minor amendment to doc-string.
3864
3865 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
3866
3867 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
3868 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
3869 Fix :type--it is `integer', not `string'.
3870
3871 * faces.el (modeline-highlight): Rename from (the erroneous)
3872 `modeline-higilight'.
3873
3874 2005-06-11 Lute Kamstra <lute@gnu.org>
3875
3876 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
3877 lisp-interaction-mode-map but make it the parent.
3878 (edebug-eval-mode): Use define-derived-mode.
3879
3880 2005-06-11 Andreas Schwab <schwab@suse.de>
3881
3882 * bindings.el: Add binding of `ESC functionkey' for every
3883 `M-functionkey'.
3884 * hexl.el (hexl-mode-map): Likewise.
3885
3886 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
3887
3888 * progmodes/compile.el (compilation-error-regexp-alist-alist)
3889 [msft]: update regexp for newer msft compilers.
3890
3891 2005-06-10 Mark A. Hershberger <mah@everybody.org>
3892
3893 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
3894 ATTLIST portions of included DTDs.
3895 (xml-parse-dtd): Eliminate use of inefficient match-data.
3896
3897 2005-06-10 Miles Bader <miles@gnu.org>
3898
3899 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
3900 (mpuz-text): Remove "-face" suffix from face names.
3901 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
3902 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
3903 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
3904
3905 * play/gomoku.el (gomoku-O, gomoku-X):
3906 Remove "-face" suffix from face names.
3907 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
3908 New backward-compatibility aliases for renamed faces.
3909 (gomoku-font-lock-keywords): Use renamed gomoku faces.
3910
3911 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
3912
3913 * thumbs.el: Fixes for changes of 2005-06-09.
3914 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
3915 as a directory.
3916 (thumbs-thumbname): Remove directory separator from format string;
3917 `thumbs-thumbsdir' now returns a valid directory name.
3918 (thumbs-temp-dir): New defsubst.
3919 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
3920 Use it.
3921
3922 * cus-edit.el (minibuffer):
3923 * files.el (make-backup-file-name-function):
3924 * filesets.el (filesets-external-viewers):
3925 * hilit-chg.el (highlight-changes-colours)
3926 (highlight-changes-face-list, highlight-changes-rotate-faces):
3927 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
3928 * kmacro.el (kmacro-call-macro):
3929 * log-edit.el (log-edit-changelog-full-paragraphs):
3930 * mouse.el (mouse-1-click-follows-link):
3931 * skeleton.el (skeleton-autowrap):
3932 * subr.el (insert-for-yank-1):
3933 * tempo.el (tempo-insert-region):
3934 * terminal.el (terminal-emulator):
3935 * time.el (display-time-mail-face):
3936 * vc.el (vc-annotate):
3937 * vcursor.el (vcursor-copy-line):
3938 * woman.el (woman-bold-headings, woman-ignore)
3939 (woman-default-faces, woman-monochrome-faces):
3940 * calendar/todo-mode.el (todo-insert-threshold):
3941 * emulation/pc-select.el (pc-select-selection-keys-only)
3942 (pc-selection-mode):
3943 * emulation/vip.el (vip-find-char-forward):
3944 * emulation/viper-cmd.el (viper-find-char-forward):
3945 * international/mule-cmds.el
3946 (select-safe-coding-system-accept-default-p)
3947 (input-method-exit-on-invalid-key):
3948 * international/mule-diag.el (describe-coding-system):
3949 * international/ucs-tables.el (unify-8859-on-encoding-mode):
3950 * net/browse-url.el (browse-url-xterm-program):
3951 * obsolete/lazy-lock.el (lazy-lock-mode):
3952 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
3953 (cperl-mode):
3954 * progmodes/cpp.el (cpp-face-light-name-list)
3955 (cpp-face-dark-name-list):
3956 * progmodes/delphi.el (delphi-newline-always-indents):
3957 Fix spellings in docstrings.
3958
3959 * ido.el (ido-mode, ido-file-extensions-order)
3960 (ido-default-file-method, ido-default-buffer-method)
3961 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
3962 (ido-decorations, ido-read-file-name-as-directory-commands)
3963 (ido-read-file-name-non-ido, ido-work-directory-list)
3964 (ido-ignore-item-temp-list, ido-current-directory)
3965 (ido-magic-forward-char, ido-enter-find-file)
3966 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
3967 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
3968
3969 2005-06-10 Lute Kamstra <lute@gnu.org>
3970
3971 * play/dunnet.el (dun-mode): Use define-derived-mode.
3972 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
3973 obsolete alias.
3974
3975 * play/doctor.el (doctor-mode-map): Remove defvar.
3976 (doctor-mode): Use define-derived-mode.
3977
3978 * mail/mspools.el (mspools-mode):
3979 * net/eudc-hotlist.el (eudc-hotlist-mode):
3980 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
3981
3982 2005-06-10 Miles Bader <miles@gnu.org>
3983
3984 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
3985 Remove "-face" suffix from face names.
3986 (flyspell-incorrect-face, flyspell-duplicate-face):
3987 New backward-compatibility aliases for renamed faces.
3988 (flyspell-mode-on, make-flyspell-overlay)
3989 (flyspell-highlight-incorrect-region)
3990 (flyspell-highlight-duplicate-region)
3991 (flyspell-display-next-corrections)
3992 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
3993
3994 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
3995 from face name.
3996 (texinfo-heading-face): New backward-compatibility alias for
3997 renamed face.
3998 (texinfo-heading-face): Use renamed texinfo-heading face.
3999
4000 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
4001 suffix from face names.
4002 (tex-math-face, tex-verbatim-face):
4003 New backward-compatibility aliases for renamed faces.
4004 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
4005 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
4006 literal face name.
4007
4008 * textmodes/table.el (table-cell): Remove "-face" suffix from face
4009 name.
4010 (table-cell-face): New backward-compatibility alias for renamed face.
4011 (table--put-cell-face-property, table--update-cell-face):
4012 Use renamed table-cell face.
4013
4014 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
4015 from face name.
4016 (sgml-namespace-face): New backward-compatibility alias for
4017 renamed face.
4018 (sgml-namespace-face): Use renamed sgml-namespace face.
4019
4020 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
4021 (org-level-4, org-level-5, org-level-6, org-level-7)
4022 (org-level-8, org-warning, org-headline-done)
4023 (org-deadline-announce, org-scheduled-today)
4024 (org-scheduled-previously, org-link, org-done, org-table)
4025 (org-time-grid): Remove "-face" suffix from face names.
4026 (org-level-1-face, org-level-2-face, org-level-3-face)
4027 (org-level-4-face, org-level-5-face, org-level-6-face)
4028 (org-level-7-face, org-level-8-face, org-warning-face)
4029 (org-headline-done-face, org-deadline-announce-face)
4030 (org-scheduled-today-face, org-scheduled-previously-face)
4031 (org-link-face, org-done-face, org-table-face)
4032 (org-time-grid-face):
4033 New backward-compatibility aliases for renamed faces.
4034 (org-level-faces, org-set-font-lock-defaults, org-timeline)
4035 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
4036 (org-agenda-get-timestamps, org-agenda-get-scheduled)
4037 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
4038
4039 * emulation/viper-init.el (viper-search, viper-replace-overlay)
4040 (viper-minibuffer-emacs, viper-minibuffer-insert)
4041 (viper-minibuffer-vi): Remove "-face" suffix from face names.
4042 (viper-search-face, viper-replace-overlay-face)
4043 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
4044 (viper-minibuffer-vi-face):
4045 New backward-compatibility aliases for renamed faces.
4046 (viper-search-face, viper-replace-overlay-face)
4047 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
4048 (viper-minibuffer-vi-face): Use renamed viper faces.
4049
4050 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
4051 Remove "-face" suffix from face names.
4052 (testcover-nohits-face, testcover-1value-face):
4053 New backward-compatibility aliases for renamed faces.
4054 (testcover-mark): Use renamed testcover faces.
4055
4056 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
4057 face name.
4058 (diary-button-face): New backward-compatibility alias for renamed face.
4059 (diary-entry): Use renamed diary-button face.
4060
4061 * calendar/calendar.el (diary, calendar-today, holiday)
4062 (mark-visible-calendar-date): Remove "-face" suffix from face names.
4063 (diary-face, calendar-today-face, holiday-face):
4064 New backward-compatibility aliases for renamed faces.
4065 (eval-after-load "facemenu", diary-entry-marker)
4066 (calendar-today-marker, calendar-holiday-marker, diary-face):
4067 Use renamed calendar faces.
4068
4069 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
4070 (compare-windows-face): New backward-compatibility alias for
4071 renamed face.
4072 (compare-windows-highlight): Use renamed compare-windows face.
4073
4074 * strokes.el (strokes-char): Remove "-face" suffix from face name.
4075 (strokes-char-face): New backward-compatibility alias for renamed face.
4076 (strokes-encode-buffer): Use renamed strokes-char face.
4077
4078 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
4079 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
4080 Remove "-face" suffix from face names.
4081 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
4082 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
4083 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
4084 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
4085 Use renamed pcvs faces.
4086 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
4087 * pcvs-defs.el (cvs-mode-map): Likewise.
4088 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
4089
4090 * info.el (info-title-1, info-title-2, info-title-3)
4091 (info-title-4): Remove "-face" suffix from and downcase face names.
4092 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
4093 (Info-title-4-face):
4094 New backward-compatibility aliases for renamed faces.
4095 (Info-fontify-node): Use renamed info faces.
4096
4097 * hilit-chg.el (highlight-changes, highlight-changes-delete):
4098 Remove "-face" suffix from face names.
4099 (highlight-changes-face, highlight-changes-delete-face):
4100 New backward-compatibility aliases for renamed faces.
4101 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
4102 (hilit-chg-make-list): Use renamed highlight-changes faces.
4103
4104 * generic-x.el (show-tabs-tab, show-tabs-space):
4105 Remove "-face" suffix from face names.
4106 (show-tabs-tab-face, show-tabs-space-face):
4107 New backward-compatibility aliases for renamed faces.
4108 (show-tabs-generic-mode-font-lock-defaults-1)
4109 (show-tabs-generic-mode-font-lock-defaults-2):
4110 Use renamed show-tabs faces.
4111
4112 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
4113 (smerge-markers): Remove "-face" suffix from face names.
4114 (smerge-mine-face, smerge-other-face, smerge-base-face)
4115 (smerge-markers-face):
4116 New backward-compatibility aliases for renamed faces.
4117 (smerge-mine-face, smerge-other-face, smerge-base-face)
4118 (smerge-markers-face): Use renamed smerge faces.
4119
4120 * log-view.el (log-view-file, log-view-message): Remove "-face"
4121 suffix from face names.
4122 (log-view-file-face, log-view-message-face): New
4123 backward-compatibility aliases for renamed faces.
4124 (log-view-file-face, log-view-message-face): Use renamed log-view
4125 faces.
4126
4127 * paren.el (show-paren-match, show-paren-mismatch):
4128 Remove "-face" suffix from face names.
4129 (show-paren-match-face, show-paren-mismatch-face):
4130 New backward-compatibility aliases for renamed faces.
4131 (show-paren-function): Use renamed show-paren faces.
4132
4133 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
4134 (ruler-mode-margins, ruler-mode-fringes)
4135 (ruler-mode-column-number, ruler-mode-fill-column)
4136 (ruler-mode-comment-column, ruler-mode-goal-column)
4137 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
4138 suffix from face names.
4139 (ruler-mode-default-face, ruler-mode-pad-face)
4140 (ruler-mode-margins-face, ruler-mode-fringes-face)
4141 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
4142 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
4143 (ruler-mode-tab-stop-face, ruler-mode-current-column-face): New
4144 backward-compatibility aliases for renamed faces.
4145 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
4146 (ruler-mode-column-number, ruler-mode-fill-column)
4147 (ruler-mode-comment-column, ruler-mode-goal-column)
4148 (ruler-mode-tab-stop, ruler-mode-current-column)
4149 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
4150 faces.
4151
4152 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
4153 face name.
4154 (whitespace-highlight-the-space): Use renamed face.
4155 (whitespace-highlight-face): New backward-compatibility alias for
4156 renamed face.
4157
4158 * woman.el (woman-italic, woman-bold, woman-unknown)
4159 (woman-addition, woman-symbol-face):
4160 Remove "-face" suffix from face names.
4161 (woman-italic-face, woman-bold-face, woman-unknown-face)
4162 (woman-addition-face):
4163 New backward-compatibility aliases for renamed faces.
4164 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
4165 (woman-decode-region, woman-replace-match)
4166 (woman-display-extended-fonts, woman-special-characters)
4167 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
4168 Use renamed woman faces.
4169
4170 * longlines.el (longlines-visible-face): Face removed.
4171
4172 * diff-mode.el (diff-header, diff-file-header, diff-index)
4173 (diff-hunk-header, diff-removed, diff-added, diff-changed)
4174 (diff-function, diff-context, diff-nonexistent): Remove "-face"
4175 suffix from face names.
4176 (diff-header-face, diff-file-header-face, diff-index-face)
4177 (diff-hunk-header-face, diff-removed-face, diff-added-face)
4178 (diff-changed-face, diff-function-face, diff-context-face)
4179 (diff-nonexistent-face): New backward-compatibility aliases for
4180 renamed faces.
4181 (diff-header-face, diff-file-header-face)
4182 (diff-index, diff-index-face, diff-hunk-header)
4183 (diff-hunk-header-face, diff-removed, diff-removed-face)
4184 (diff-added, diff-added-face, diff-changed-face, diff-function)
4185 (diff-function-face, diff-context-face, diff-nonexistent)
4186 (diff-nonexistent-face): Use renamed diff-mode faces.
4187
4188 * progmodes/compile.el (compilation-warning-face)
4189 (compilation-info-face): Remove "-face" suffix from face names.
4190 (compilation-warning-face, compilation-info-face):
4191 New backward-compatibility aliases for renamed faces.
4192 (compilation-warning-face, compilation-info-face):
4193 Use renamed compilation faces.
4194
4195 * add-log.el (change-log-date, change-log-name)
4196 (change-log-email, change-log-file, change-log-list)
4197 (change-log-conditionals, change-log-function)
4198 (change-log-acknowledgement): Remove "-face" suffix from face names.
4199 (change-log-date-face, change-log-name-face)
4200 (change-log-email-face, change-log-file-face)
4201 (change-log-list-face, change-log-conditionals-face)
4202 (change-log-function-face, change-log-acknowledgement-face):
4203 New backward-compatibility aliases for renamed faces.
4204 (change-log-font-lock-keywords): Use renamed change-log faces.
4205
4206 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
4207 (custom-set, custom-changed, custom-saved, custom-button)
4208 (custom-button-pressed, custom-documentation, custom-state)
4209 (custom-comment, custom-comment-tag, custom-variable-tag)
4210 (custom-variable-button, custom-face-tag, custom-group-tag-1)
4211 (custom-group-tag): Remove "-face" suffix from face names.
4212 (custom-magic-alist, custom-magic-value-create)
4213 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
4214 (custom-invalid-face, custom-rogue-face, custom-modified-face)
4215 (custom-set-face, custom-changed-face, custom-saved-face)
4216 (custom-button-face, custom-button-pressed-face)
4217 (custom-documentation-face, custom-state-face)
4218 (custom-comment-face, custom-comment-tag-face)
4219 (custom-variable-tag-face, custom-variable-button-face)
4220 (custom-face-tag-face, custom-group-tag-face-1)
4221 (custom-group-tag-face):
4222 New backward-compatibility aliases for renamed faces.
4223
4224 * wid-edit.el (widget-documentation, widget-button)
4225 (widget-field, widget-single-line-field, widget-inactive)
4226 (widget-button-pressed): "-face" suffix removed from face names.
4227 (widget-documentation-face, widget-button-face)
4228 (widget-field-face, widget-single-line-field-face)
4229 (widget-inactive-face, widget-button-pressed-face):
4230 New backward-compatibility aliases for renamed faces.
4231 (widget-documentation-face, widget-button-face)
4232 (widget-button-pressed-face, widget-specify-field)
4233 (widget-specify-inactive): Use renamed widget faces.
4234
4235 2005-06-10 Kenichi Handa <handa@m17n.org>
4236
4237 * term/x-win.el (x-clipboard-yank): Remove condition-case
4238 wrapping.
4239
4240 2005-06-11 Kenichi Handa <handa@m17n.org>
4241
4242 * add-log.el (change-log-font-lock-keywords): Make the regexp for
4243 date lines stricter.
4244
4245 2005-06-10 Zhang Wei <id.brep@gmail.com> (tiny change)
4246
4247 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
4248 of x-get-selection.
4249
4250 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
4251
4252 * comint.el (comint-mode, comint-snapshot-last-prompt):
4253 * frame.el (frame-current-scroll-bars):
4254 * term.el (term-mode, term-check-proc, term-input-sender)
4255 (term-simple-send, term-extract-string, term-word)
4256 (term-match-partial-filename):
4257 * window.el (window-current-scroll-bars):
4258 * emulation/cua-base.el (cua-normal-cursor-color)
4259 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
4260 (cua-global-mark-cursor-color):
4261 * mail/undigest.el (rmail-forward-separator-regex):
4262 Fix typos in docstrings.
4263
4264 * comint.el (comint-check-proc, make-comint-in-buffer)
4265 (comint-source-default): Doc fixes.
4266
4267 * term.el (term-send-string): Improve argument/docstring
4268 consistency.
4269
4270 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
4271
4272 * comint.el (comint-send-input): Bind `inhibit-read-only' around
4273 call to `delete-region'.
4274 (comint-mode-hook): Do not enable Font Lock by default.
4275
4276 2005-06-09 Lute Kamstra <lute@gnu.org>
4277
4278 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
4279 could be void.
4280
4281 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
4282
4283 * emacs-lisp/debug.el (debugger-will-be-back): New var.
4284 (debug): Use it.
4285 (debugger-step-through, debugger-continue, debugger-jump)
4286 (debugger-return-value): Set it when needed.
4287 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
4288 Use inhibit-read-only.
4289
4290 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
4291
4292 * window.el (shrink-window-if-larger-than-buffer)
4293 (window-size-fixed): Fix typo in docstring.
4294
4295 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
4296 thumbnails directory on loading.
4297 (thumbs-conversion-program): Use `eq' to check the system type,
4298 not `equal'.
4299 (thumbs-temp-dir): Initialize to `temporary-file-directory',
4300 not "/tmp". Fix docstring.
4301 (thumbs-thumbsdir): New function to return the thumbnails
4302 directory, creating it if needed.
4303 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
4304 (thumbs-temp-file): Delete variable and make it into a function.
4305 (thumbs-resize-image, thumbs-modify-image): Use it.
4306 (thumbs-kill-buffer): Simplify.
4307 (thumbs-gensym): Defalias or duplicate CL `gensym'.
4308 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
4309 docstrings.
4310
4311 2005-06-09 Kim F. Storm <storm@cua.dk>
4312
4313 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
4314 set-match-data to free markers in match-data.
4315
4316 * replace.el (replace-match-data): Pass RESEAT arg `t' to
4317 match-data to unchain markers in match-data.
4318
4319 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
4320
4321 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
4322 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
4323 unnecessary now.
4324
4325 2005-06-08 Richard M. Stallman <rms@gnu.org>
4326
4327 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
4328 give the variable a doc string that doesn't say don't set it directly.
4329
4330 * textmodes/ispell.el (ispell-check-version):
4331 Use match-string-no-properties.
4332 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
4333 (ispell-buffer-local-words): Likewise.
4334
4335 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
4336 except on terminals with enough colors to really display it.
4337 (makefile-dependency-regex): Delete spurious `bb'.
4338
4339 * faces.el (escape-glyph): Use blue once again in last case.
4340 (no-break-space): Redefine so that it isn't invisible on a tty.
4341
4342 2005-06-08 Kim F. Storm <storm@cua.dk>
4343
4344 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
4345 also when reading directory name.
4346
4347 2005-06-08 Lute Kamstra <lute@gnu.org>
4348
4349 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
4350 (flyspell-mode-line-string): Remove autoload cookie.
4351 (flyspell-mode): Remove defvar.
4352
4353 2005-06-07 Lute Kamstra <lute@gnu.org>
4354
4355 * textmodes/org.el (org-run-mode-hooks): New function.
4356 (org-agenda-mode): Use it.
4357
4358 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
4359
4360 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
4361
4362 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
4363
4364 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
4365
4366 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
4367
4368 * font-lock.el (font-lock-add-keywords): Doc fix.
4369
4370 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
4371
4372 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
4373 (tex-compile-default): In the absence of any history, use the order in
4374 tex-compile-alist to choose the preferred command.
4375 (tex-compile-commands): Reorder a bit.
4376
4377 * textmodes/flyspell.el (flyspell-auto-correct-binding)
4378 (flyspell-incorrect-face, flyspell-duplicate-face):
4379 Use (X)Emacs-agnostic code.
4380 (flyspell-mode-map): Don't overwrite at each load. Remove code
4381 redundant with the subsequent add-minor-mode. Merge Emacs and
4382 XEmacs code.
4383 (flyspell-word): Minor simplification.
4384 (flyspell-math-tex-command-p): Quieten the byte-compiler.
4385 (flyspell-external-point-words): Remove unused vars `size' and
4386 `start'.
4387 (flyspell-do-correct): Rename from flyspell-xemacs-correct. Merge
4388 the corresponding Emacs code.
4389 (flyspell-correct-word, flyspell-xemacs-popup): Use
4390 flyspell-do-correct.
4391
4392 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
4393 a dedicated window.
4394
4395 * international/latexenc.el (latexenc-find-file-coding-system):
4396 Undo part of last patch, to turn off a compiler warning.
4397
4398 2005-06-06 Juri Linkov <juri@jurta.org>
4399
4400 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
4401 Rename `tmm-inactive-face' to `tmm-inactive'.
4402
4403 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
4404
4405 * iswitchb.el: Rename faces.
4406
4407 2005-06-06 Kim F. Storm <storm@cua.dk>
4408
4409 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
4410 (cua-global-mark): Remove -face suffix from face names.
4411
4412 * emulation/cua-gmrk.el (cua--init-global-mark):
4413 Remove cua-global-mark face setup.
4414
4415 2005-06-06 Richard M. Stallman <rms@gnu.org>
4416
4417 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
4418 just like other allowed characters.
4419 (makefile-match-dependency): Exclude leading and training whitespace
4420 from the range of regexp subexp 1.
4421 (makefile-macroassign-regex): Don't try to match the body,
4422 just the name of the macro being defined.
4423
4424 * info.el (Info-read-node-name-2): New function.
4425 (Info-read-node-name-1): Use that.
4426 Add a completion-base-size-function property.
4427
4428 * simple.el (completion-setup-function): Look for
4429 completion-base-size-function property of
4430 minibuffer-completion-table.
4431
4432 * files.el (locate-file-completion): Doc fix.
4433
4434 * printing.el: Don't call pr-update-menus; user must do that.
4435
4436 * emacs-lisp/debug.el (debugger-window): New variable.
4437 (debug): Use debugger-window if it is set and still alive.
4438 Record debugger-window for next entry.
4439
4440 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
4441
4442 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
4443
4444 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
4445 (hack-one-local-variable, hack-local-variables)
4446 (hack-local-variables-prop-line): Pass that arg.
4447
4448 2005-06-06 Kim F. Storm <storm@cua.dk>
4449
4450 * ido.el (ido-first-match, ido-only-match, ido-subdir)
4451 (ido-indicator): Remove -face suffix from face names.
4452
4453 2005-06-06 Juri Linkov <juri@jurta.org>
4454
4455 * font-lock.el (font-lock-regexp-backslash)
4456 (font-lock-regexp-backslash-construct): New faces.
4457 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
4458 after `('. Add `while-no-input' to control structures.
4459
4460 * faces.el (no-break-space, shadow): New faces.
4461 (escape-glyph): Use less loud colors pink2 and red4.
4462
4463 * diff-mode.el (diff-context-face)
4464 * dired.el (dired-ignored)
4465 * rfn-eshadow.el (file-name-shadow)
4466 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
4467
4468 * info.el (Info-title-1-face): Use green instead of yellow because
4469 bold yellow is not readable on light backgrounds.
4470
4471 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
4472 before selecting the desired mode to not spend time fontifying
4473 old contents.
4474
4475 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
4476
4477 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
4478 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
4479
4480 * ps-print.el (ps-default-fg, ps-default-bg):
4481 Fix typos in docstrings.
4482
4483 * isearchb.el (isearchb): Don't pass a spurious second argument to
4484 `iswitchb-completions'.
4485
4486 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
4487
4488 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
4489 to preserve point.
4490 (gdb-find-file-hook): Add doc string.
4491
4492 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
4493 C dereferenced pointer expression.
4494 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
4495
4496 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
4497
4498 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
4499 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
4500 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
4501 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
4502 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
4503 Make background transparent.
4504
4505 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
4506
4507 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
4508 (font-lock-remove-keywords): Doc fix.
4509 (font-lock-mode-major-mode): Compiler defvar.
4510 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
4511
4512 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
4513 (font-lock-mode): Update `font-lock-mode-major-mode'.
4514 (font-lock-set-defaults): Compiler defvar.
4515 (font-lock-default-function): Take `font-lock-mode-major-mode'
4516 into account.
4517
4518 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
4519 keep track of which major mode it enabled the minor mode for.
4520 Use find-file-hook again. Update docstring.
4521
4522 * simple.el (eval-expression-print-level)
4523 (eval-expression-print-length, eval-expression-debug-on-error):
4524 Doc fixes.
4525
4526 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
4527
4528 * iswitchb.el (iswitchb-single-match-face)
4529 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
4530 (iswitchb-invalid-regexp-face): New faces.
4531 (iswitchb-completions): Use them.
4532 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
4533 now marked as an obsolete alias.
4534 (iswitchb-read-buffer): Remove check for bound font variables.
4535 (iswitchb-invalid-regexp): New free variable.
4536 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
4537 set iswitchb-invalid-regexp.
4538 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
4539 invalid regexps.
4540 (iswitchb-completions): Add check for complete match when entering
4541 a regexp.
4542 (iswitchb-completions): Remove require-match argument.
4543 (iswitchb-exhibit): Fix caller.
4544 (iswitchb-common-match-inserted): New variable.
4545 (iswitchb-complete, iswitchb-completion-help): Use it.
4546
4547 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
4548
4549 * url-http.el (url-http-chunked-encoding-after-change-function):
4550 Use `url-http-debug' instead of `message'.
4551
4552 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
4553
4554 * url-http.el (url-http-parse-headers): Pass redirected URL as a
4555 callback argument.
4556
4557 2005-06-04 Kim F. Storm <storm@cua.dk>
4558
4559 * simple.el (line-move): Only call sit-for when moving backwards.
4560
4561 * ido.el (ido-make-merged-file-list-1): New defun split from
4562 ido-make-merged-file-list.
4563 (ido-make-merged-file-list): Bind throw-on-input around call to
4564 ido-make-merged-file-list-1. Return input-pending-p if
4565 interrupted by more input available.
4566 (ido-read-internal): Handle input-pending-p return value from
4567 ido-make-merged-file-list.
4568
4569 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
4570
4571 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
4572 compatibility code.
4573
4574 * international/latexenc.el (latexenc-find-file-coding-system):
4575 Don't inherit the EOL part of the coding-system from the
4576 tex-main buffer. Fit within 80 columns.
4577
4578 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
4579
4580 * tmm.el (tmm-inactive-face): New face.
4581 (tmm-remove-inactive-mouse-face): New function.
4582 (tmm-prompt, tmm-add-one-shortcut)
4583 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
4584 but not selectable.
4585
4586 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
4587
4588 * faces.el (face-equal): Improve argument/docstring consistency.
4589
4590 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
4591
4592 * progmodes/make-mode.el (makefile-targets-face)
4593 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
4594 (makefile-bsdmake-dependency-regex)
4595 (makefile-makepp-rule-action-regex)
4596 (makefile-bsdmake-rule-action-regex): New constants.
4597 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
4598
4599 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4600 Allow (...) within `...' for makepp messages.
4601
4602 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
4603
4604 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
4605
4606 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
4607 "." files are deleted from all file lists before comparison.
4608
4609 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
4610 (viper-ESC-key): Made them customizable.
4611
4612 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
4613
4614 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
4615
4616 * autorevert.el (auto-revert-buffers): Use save-match-data.
4617
4618 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
4619
4620 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
4621 menu items with a nil command binding.
4622
4623 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
4624
4625 * emacs-lisp/cl-macs.el (defsetf):
4626 Improve argument/docstring consistency.
4627
4628 * faces.el (list-faces-display): Improve the formatting by
4629 computing the maximum length required for any face-name (reworked
4630 patch of 1999-01-11, accidentally deleted on 1999-07-21).
4631 (internal-find-face): Remove redundant info in docstring.
4632
4633 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
4634
4635 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
4636 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
4637 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
4638 (gdb-assembler-custom): Improve regexps.
4639 (def-gdb-auto-update-handler): Use window point to preserve point.
4640
4641 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
4642
4643 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
4644
4645 2005-05-31 Jay Belanger <belanger@truman.edu>
4646
4647 * calc/calc-embed.el (calc-embedded-word): Change argument passed
4648 to calc-embedded.
4649 (calc-embedded-make-info): Have plain prefix argument select
4650 entire line.
4651
4652 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
4653
4654 * faces.el (list-faces-display): Signal error if passed a regexp
4655 that matches no face name.
4656
4657 * simple.el (filter-buffer-substring): Fix typo in docstring.
4658
4659 2005-05-31 Richard M. Stallman <rms@gnu.org>
4660
4661 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
4662 (vhdl-emacs-21): Doc fix.
4663 (vhdl-mode): Unconditionally set comment-padding.
4664 (vhdl-fixup-whitespace-region): Insert spaces only where
4665 there are none.
4666 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
4667
4668 2005-05-30 John Wiegley <johnw@newartisans.com>
4669
4670 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
4671 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
4672 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
4673 `directory-sep-char' to ?/, and all uses of `string-to-int' to
4674 `string-to-number'.
4675
4676 2005-05-30 Jay Belanger <belanger@truman.edu>
4677
4678 * calc/calc.el (calc-bug-address): Fix docstring.
4679 (calc-window-hook, calc-trail-window-hook): New variables.
4680 (calc-trail-display): Restore use of calc-trail-window-hook.
4681 (calc): Restore use of calc-window-hook.
4682
4683 2005-05-31 Masatake YAMATO <jet@gyve.org>
4684
4685 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
4686
4687 * help-fns.el (help-C-file-name): Add autoload mark for
4688 `find-function-noselect'.
4689
4690 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
4691
4692 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
4693 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
4694
4695 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
4696
4697 * calendar/diary-lib.el (mark-included-diary-files): Only kill
4698 included diary buffer if it was not already being visited.
4699 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
4700
4701 * calendar/icalendar.el (top-level): Do not require 'appt.
4702
4703 * mail/supercite.el (sc-select-attribution): Only use a list
4704 element from sc-attrib-selection-list if it returns a string.
4705 Reported by Davide G. M. Salvetti <salve@debian.org>.
4706
4707 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
4708
4709 * thumbs.el (thumbs-thumbname): The resulting thumbname now
4710 includes a hash value to improve its uniqueness, and has a ".jpg"
4711 extension. Also, it is now a valid filename on all systems.
4712 (thumbs-make-thumb): Use `let', not `let*'.
4713 (thumbs-show-thumbs-list): Check for JPEG availability.
4714
4715 2005-05-30 Richard M. Stallman <rms@gnu.org>
4716
4717 * filesets.el (filesets-menu-ensure-use-cached):
4718 Prevent warning when emacs-version>= is undefined.
4719
4720 * printing.el (pr-interactive-n-up): Use string-to-number.
4721
4722 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
4723
4724 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
4725 Warn only when name to be defined is quoted.
4726
4727 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
4728
4729 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
4730 Make regexp more robust.
4731 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
4732 Force regeneration of disassembly.
4733
4734 2005-05-29 Jay Belanger <belanger@truman.edu>
4735
4736 * calc/calc.el (calc-user-invocation): Check if
4737 calc-invocation-macro is non-nil.
4738
4739 2005-05-29 Juri Linkov <juri@jurta.org>
4740
4741 * add-log.el (change-log-font-lock-keywords):
4742 Add `+' to e-mail regexp to accept mail address with keywords.
4743
4744 * man.el (Man-name-regexp): Add `:' to accept qualified names.
4745
4746 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
4747
4748 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
4749
4750 * ielm.el (inferior-emacs-lisp-mode): Ditto.
4751
4752 2005-05-29 Richard M. Stallman <rms@gnu.org>
4753
4754 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
4755 Undo the change that moves to end of the current word.
4756
4757 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
4758
4759 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
4760 Throw error when count <= 0 to ensure input is a number.
4761 (gdb-read-memory-custom): Pick up address from buffer.
4762 (gdb-memory-mode): Allow user to increment and decrement
4763 memory address from header line.
4764
4765 2005-05-29 Richard M. Stallman <rms@gnu.org>
4766
4767 * flyspell.el (flyspell-version): Function deleted.
4768 (flyspell-auto-correct-previous-hook): Doc fix.
4769
4770 * jit-lock.el (jit-lock-function, jit-lock-after-change):
4771 Do nothing if memory is full.
4772
4773 * font-lock.el (font-lock-fontify-syntactically-region):
4774 Pass t for GREEDY to looking-back.
4775
4776 * saveplace.el (save-place-alist-to-file): Write the file
4777 using write-region.
4778
4779 * subr.el (looking-back): New argument GREEDY.
4780
4781 * progmodes/compile.el (compilation-start): Set the mode
4782 before inserting the initial text.
4783
4784 * progmodes/which-func.el (which-func-update-1): Turn the mode
4785 off in case of error by setting which-func-mode.
4786
4787 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
4788
4789 * flyspell.el (flyspell-auto-correct-previous-word):
4790 Narrow down to what's on the screen, and recenter overlays
4791 at the end of the next word.
4792
4793 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
4794
4795 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
4796 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
4797 (flyspell-abbrev-p): Default to nil.
4798 (flyspell-use-global-abbrev-table-p): Doc fix.
4799 (flyspell-large-region): Allow nil as value.
4800 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
4801
4802 (mail-mode-flyspell-verify): More robust handling
4803 of `mail-header-separator'. More efficient signature detection.
4804 Allow for regexp metacharacters in message-header-separator.
4805 Adding `To' not to be checked in mail-mode-flyspell-verify.
4806
4807 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
4808 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
4809 Bind flyspell-auto-correct-binding.
4810 Bind C-. and C-, .
4811 (flyspell-mode-map): Likewise.
4812 (flyspell-mode): Doc fix.
4813 (flyspell-accept-buffer-local-defs): Preserve current buffer.
4814 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
4815 (flyspell-word-cache-result): New var, always local.
4816 (flyspell-check-pre-word-p): Doc fix.
4817 (flyspell-check-changed-word-p): Handle spc like newline.
4818 (flyspell-post-command-hook): Set flyspell-word-cache-result.
4819 (flyspell-word-search-backward, flyspell-word-search-forward):
4820 New functions.
4821 (flyspell-word): Return t if nothing to check.
4822 When parsing TeX code, check for after } or \.
4823 Use flyspell-word-search-backward to find previous word.
4824 Return nil if duplicated word.
4825 For word already checked, return same value as last time.
4826 Set flyspell-word-cache-result after checking.
4827 Don't clobber the return value.
4828 (flyspell-get-word): Major rewrite.
4829 (flyspell-external-point-words): New locals pword, pcount.
4830 Fix size used in progress message.
4831 Find the proper corresponding word in flyspell-large-region-buffer.
4832 (flyspell-region): Check for flyspell-large-region = nil.
4833 (flyspell-highlight-incorrect-region): Clean up overlays in region.
4834 (flyspell-auto-correct-word): Check that WORD is a cons.
4835 (flyspell-correct-word): Likewise.
4836
4837 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
4838
4839 * progmodes/make-mode.el (makefile-rule-action-regex)
4840 (makefile-macroassign-regex, makefile-makepp-mode)
4841 (makefile-bsdmake-mode): Continuation lines may be empty.
4842 Reported by Joshua Varner.
4843 (makefile-makepp-font-lock-keywords): Add $(stem).
4844
4845 2005-05-28 Karl Berry <karl@gnu.org>
4846
4847 * textmodes/tex-mode.el: Now that tex-send-command calls
4848 shell-quote-argument (2005-03-31 change), remove all calls to
4849 shell-quote-argument; they all end up invoking tex-send-command.
4850 The double quoting loses on filenames with non-safe characters,
4851 such as "@". Reported by Frederik Fouvry.
4852
4853 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
4854
4855 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
4856 about preserving point.
4857
4858 2005-05-27 Jay Belanger <belanger@truman.edu>
4859
4860 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
4861 Info-goto-node.
4862
4863 * calc/calc-embed.el (calc-embed-arg): New variable.
4864 (calc-do-embedded-activate, calc-embedded-activate-formula)
4865 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
4866 variable by new variable.
4867 (calc-embedded-make-info): Replace undeclared variable by new
4868 variable. When selecting region with positive prefix
4869 argument, use end of previous line instead of beginning of line.
4870
4871 * calc/calc-aent.el (calc-arg-values): Declare it.
4872
4873 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
4874 Declare them.
4875
4876 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
4877
4878 * calc/calc.el (calc-alg-map): Declare it.
4879
4880 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
4881
4882 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
4883
4884 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
4885 (gdb-registers-buffer, toggle-gdb-all-registers):
4886 Toggle display of floating point registers.
4887 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
4888
4889 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
4890 (toggle-gud-tooltip-dereference):
4891 Rename from gud-toggle-tooltip-dereference.
4892
4893 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
4894
4895 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
4896
4897 2005-05-27 Jay Belanger <belanger@truman.edu>
4898
4899 * calc/calc-prog.el (calc-kbd-report): Remove.
4900 (calc-kbd-query): Rewrite.
4901
4902 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
4903
4904 * image.el (image-library-alist): Move to image.c.
4905 (image-type-available-p): Doc fix.
4906
4907 2005-05-27 Lute Kamstra <lute@gnu.org>
4908
4909 * calc/calc.el (calc):
4910 * outline.el (outline-1, outline-2, outline-3, outline-4)
4911 (outline-5, outline-6, outline-7, outline-8):
4912 * textmodes/dns-mode.el (dns-mode):
4913 * textmodes/sgml-mode.el (sgml-namespace-face):
4914 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
4915 (tex-verbatim-face, tex-use-reftex):
4916 * textmodes/texinfo.el (texinfo-heading-face):
4917 Specify customization group.
4918
4919 * longlines.el: Don't require easy-mmode.
4920 (longlines-visible-face): Specify customization group.
4921
4922 2005-05-27 Kenichi Handa <handa@m17n.org>
4923
4924 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
4925 encoding table of windows-1251.
4926
4927 * international/ucs-tables.el (ucs-set-table-for-input):
4928 If translation-table-for-input of a coding system is a symbol, get
4929 its translation-table property.
4930
4931 * international/code-pages.el: Don't register a coding system into
4932 non-iso-charset-alist more than once.
4933 (cp-make-coding-system): Likewise.
4934
4935 2005-05-26 John Wiegley <johnw@newartisans.com>
4936
4937 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
4938 `eshell-resume-eval' is wrapped in a list, it indicates that the
4939 command was run asynchronously. In that case, unwrap the value
4940 before checking the delimiter value.
4941
4942 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
4943 character before a space at the end of a line is \, assume the space
4944 is part of the last argument rather than a final argument separator.
4945
4946 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
4947 is in use, and the target is `t' or `nil' (which are the most common
4948 values), don't assume that the symbol target is a buffer.
4949
4950 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
4951
4952 * calendar/calendar.el (calendar-mode-line-format):
4953 Use mode-line-highlight as mouse-face.
4954
4955 * time.el (display-time-string-forms, display-time-update):
4956 Use mode-line-highlight as mouse-face.
4957
4958 2005-05-26 Jay Belanger <belanger@truman.edu>
4959
4960 * calc/calc.el (calc-language-alist): Remove extra defvar.
4961
4962 2005-05-26 Lute Kamstra <lute@gnu.org>
4963
4964 * arc-mode.el (archive-mode):
4965 * bookmark.el (bookmark-read-annotation-mode)
4966 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
4967 * bs.el (bs-mode):
4968 * calc/calc-yank.el (calc-edit-mode):
4969 * calc/calc.el (calc-mode, calc-trail-mode):
4970 * calculator.el (calculator-mode):
4971 * chistory.el (command-history-mode):
4972 * comint.el:
4973 * cus-edit.el (custom-mode):
4974 * descr-text.el (describe-text-mode):
4975 * ebuff-menu.el (Electric-buffer-menu-mode):
4976 * ediff-util.el (ediff-mode):
4977 * emacs-lisp/re-builder.el (reb-mode):
4978 * emulation/vi.el (vi-mode-setup):
4979 * emulation/ws-mode.el (wordstar-mode):
4980 * eshell/esh-mode.el (eshell-mode):
4981 * forms.el (forms-mode):
4982 * help-mode.el (help-mode):
4983 * hexl.el (hexl-mode):
4984 * ibuffer.el (ibuffer-mode):
4985 * ielm.el (inferior-emacs-lisp-mode):
4986 * info.el (Info-mode, Info-edit-mode):
4987 * international/swedish.el:
4988 * ledit.el (ledit-from-lisp-mode):
4989 * locate.el (locate-mode):
4990 * mail/rmail.el (rmail-mode):
4991 * mail/rmailedit.el (rmail-edit-mode):
4992 * mail/rmailsum.el (rmail-summary-mode):
4993 * mail/supercite.el (sc-electric-mode):
4994 * net/eudc.el (eudc-mode):
4995 * net/quickurl.el (quickurl-list-mode):
4996 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
4997 * obsolete/ooutline.el (outline-mode):
4998 * obsolete/options.el (Edit-options-mode):
4999 * obsolete/rnews.el (news-mode):
5000 * obsolete/rnewspost.el (news-reply-mode):
5001 * play/5x5.el (5x5-mode):
5002 * play/decipher.el (decipher-mode, decipher-stats-mode):
5003 * play/gomoku.el (gomoku-mode):
5004 * play/snake.el (snake-mode):
5005 * play/solitaire.el (solitaire-mode):
5006 * play/tetris.el (tetris-mode):
5007 * progmodes/ada-mode.el (ada-mode):
5008 * progmodes/antlr-mode.el (antlr-mode):
5009 * progmodes/autoconf.el (autoconf-mode):
5010 * progmodes/dcl-mode.el (dcl-mode):
5011 * progmodes/delphi.el (delphi-mode):
5012 * progmodes/ebrowse.el (ebrowse-tree-mode)
5013 (ebrowse-electric-list-mode, ebrowse-member-mode)
5014 (ebrowse-electric-position-mode):
5015 * progmodes/f90.el (f90-mode):
5016 * progmodes/fortran.el (fortran-mode):
5017 * progmodes/icon.el (icon-mode):
5018 * progmodes/idlw-help.el (idlwave-help-mode):
5019 * progmodes/idlw-shell.el (idlwave-shell-mode):
5020 * progmodes/idlwave.el (idlwave-mode):
5021 * progmodes/inf-lisp.el (inferior-lisp-mode):
5022 * progmodes/m4-mode.el (m4-mode):
5023 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
5024 * progmodes/modula2.el (modula-2-mode):
5025 * progmodes/octave-inf.el (inferior-octave-mode):
5026 * progmodes/octave-mod.el (octave-mode):
5027 * progmodes/pascal.el (pascal-mode):
5028 * progmodes/sh-script.el (sh-mode):
5029 * progmodes/sql.el (sql-mode, sql-interactive-mode):
5030 * progmodes/vhdl-mode.el (vhdl-mode):
5031 * progmodes/xscheme.el (scheme-interaction-mode):
5032 * replace.el (occur-mode):
5033 * ses.el (ses-mode):
5034 * simple.el (completion-list-mode):
5035 * skeleton.el:
5036 * speedbar.el (speedbar-mode):
5037 * term.el (term-mode):
5038 * terminal.el (terminal-edit-mode):
5039 * textmodes/reftex-index.el (reftex-index-mode)
5040 (reftex-index-phrases-mode):
5041 * textmodes/reftex-sel.el (reftex-select-label-mode)
5042 (reftex-select-bib-mode):
5043 * textmodes/reftex-toc.el (reftex-toc-mode):
5044 * wdired.el (wdired-change-to-wdired-mode):
5045 * wid-browse.el (widget-browse-mode):
5046 Use run-mode-hooks.
5047
5048 * array.el (array-mode):
5049 * calendar/todo-mode.el (todo-mode):
5050 * man.el (Man-mode):
5051 * play/landmark.el (lm-mode):
5052 * play/mpuz.el (mpuz-mode):
5053 Use kill-all-local-variables and run-mode-hooks.
5054
5055 * subr.el (delay-mode-hooks): Specify indentation.
5056
5057 2005-05-26 Mark A. Hershberger <mah@everybody.org>
5058
5059 * xml.el (xml-substitute-special): Don't die for undefined xml
5060 entities.
5061
5062 2005-05-26 Jay Belanger <belanger@truman.edu>
5063
5064 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
5065 of nil.
5066
5067 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
5068
5069 * progmodes/gdb-ui.el (gdb-frame-address):
5070 Rename from gdb-current-address.
5071 (gdb-previous-frame-address): Rename from gdb-previous-address.
5072 (gdb-selected-frame): Rename from gdb-current-frame.
5073 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
5074 (gdb-frame-number): Rename from gdb-current-stack-level.
5075 (gdb-ann3): Match new mode-name for disassembly buffer.
5076 Extend initialization of variables.
5077 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
5078 (gdb-memory-mode): Use mouse-face in header line.
5079 (gdb-assembler-buffer-name): Call it disassembly and give frame
5080 in mode line.
5081 (gdb-source-spec-regexp, gdb-assembler-custom)
5082 (gdb-invalidate-assembler, gdb-frame-handler):
5083 Make robust to leading zeroes in address format.
5084
5085 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
5086
5087 * textmodes/org.el (org-mode): Use `define-derived-mode' to
5088 define `org-mode'.
5089 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
5090
5091 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
5092
5093 * log-edit.el (log-edit-changelog-entries): Distinguish between
5094 filenames like xfns.c and fns.c.
5095
5096 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
5097
5098 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
5099 point after reverting.
5100 (Buffer-menu-make-sort-button): Handle the case where
5101 `Buffer-menu-use-header-line' is nil.
5102
5103 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
5104
5105 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
5106 New funcs. In minibuffer-local-completion-map bind `]', `/'
5107 and `:' to them.
5108
5109 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
5110
5111 * startup.el (normal-top-level): Allow modification of load-path while
5112 we're iterating over it.
5113
5114 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
5115
5116 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
5117 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
5118 (thumbs-resize-interactive, thumbs-insert-image)
5119 (thumbs-insert-thumb, thumbs-dired-show-marked)
5120 (thumbs-find-image-at-point, thumbs-delete-images)
5121 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
5122 (thumbs-increment-image-size, thumbs-decrement-image-size):
5123 Fix typos in docstrings.
5124
5125 2005-05-24 Andre Spiegel <spiegel@gnu.org>
5126
5127 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
5128 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
5129 (cperl-mode): Use them.
5130
5131 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
5132
5133 * window.el (quit-window, shrink-window-if-larger-than-buffer):
5134 Doc fixes.
5135
5136 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
5137
5138 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
5139 Bind C-d to gdb-inferior-io-eof.
5140
5141 * dired.el (dired-dnd-popup-notice): Use message-box.
5142
5143 2005-05-23 Masatake YAMATO <jet@gyve.org>
5144
5145 * bindings.el (mode-line-major-mode-keymap):
5146 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
5147
5148 * faces.el (mode-line-highlight): New face.
5149
5150 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
5151 as mouse-face.
5152
5153 * bindings.el (top-level, help-echo, mode-line-modified)
5154 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
5155 as mouse-face.
5156
5157 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
5158
5159 * progmodes/cc-engine.el (c-guess-basic-syntax):
5160 Remove spurious call to `zerop'.
5161
5162 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
5163
5164 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
5165
5166 CC Mode update to 5.30.10:
5167
5168 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
5169 could go past the limit in decoration level 2, thereby causing
5170 errors during interactive fontification.
5171
5172 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
5173 the file is evaluated interactively.
5174
5175 * cc-engine.el (c-guess-basic-syntax): Handle operator
5176 declarations somewhat better in C++.
5177
5178 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
5179 make use of `run-mode-hooks' which has been added in Emacs 21.1.
5180 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
5181 (awk-mode): Use it.
5182 (make-local-hook): Suppress warning about obsoleteness.
5183
5184 * cc-engine.el, cc-align.el, cc-cmds.el
5185 (c-append-backslashes-forward, c-delete-backslashes-forward)
5186 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
5187 Compensate for return value from `forward-line' when it has moved
5188 but not to a different line due to eob.
5189
5190 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
5191 `objc-method-intro' and `objc-method-args-cont'.
5192
5193 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
5194
5195 CC Mode update to 5.30.10:
5196
5197 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
5198 in the copyright statement. Incidentally, change "along with GNU
5199 Emacs" to "along with this program" where it occurs.
5200
5201 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
5202 so that it is interactive, hence can be found by M-x awk-mode
5203 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
5204 <gmorris+emacs@ast.cam.ac.uk>.
5205
5206 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
5207 Mode's regexps.
5208
5209 2005-05-23 Kevin Ryde <user42@zip.com.au>
5210
5211 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
5212 c-parse-state, to avoid a lisp error (on bad code).
5213
5214 2005-05-23 Lute Kamstra <lute@gnu.org>
5215
5216 * subr.el (font-lock-defaults): Remove defvar as it's already
5217 defined in font-core.el.
5218
5219 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
5220
5221 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
5222
5223 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
5224 more general and work when GDB variable "print pretty" is on,
5225 as with Emacs, for example.
5226
5227 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
5228
5229 * font-core.el: Update comment.
5230
5231 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
5232 Use `after-change-major-mode-hook' instead of `find-file-hook'.
5233
5234 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
5235
5236 2005-05-22 Eli Zaretskii <eliz@gnu.org>
5237
5238 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
5239 and `yank-handler' in the doc strings.
5240
5241 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
5242
5243 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
5244
5245 2005-05-22 Richard M. Stallman <rms@gnu.org>
5246
5247 * help.el (describe-key): Move print-help-return-message call
5248 out of conditional.
5249
5250 * progmodes/etags.el (list-tags): Use with-no-warnings.
5251
5252 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
5253 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
5254 (starttls-extra-args, starttls-extra-arguments): Add defvars.
5255
5256 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
5257
5258 * language/viet-util.el (viet-viscii-nonascii-translation-table):
5259 Add defvar.
5260
5261 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
5262 Use defvar, not defconst.
5263
5264 * hexl.el (hexl-follow-line): Use with-no-warnings.
5265
5266 * emulation/tpu-extras.el: Use write-file-functions instead of
5267 write-file-hooks.
5268
5269 * dired.el (dired-font-lock-keywords): Fontify files with junk
5270 extensions even if marked by -F.
5271
5272 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
5273
5274 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
5275 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
5276 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
5277 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
5278 (concatenate, list-length, get*, getf, cl-remprop):
5279 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
5280 (etypecase, progv, lexical-let, lexical-let*)
5281 (multiple-value-bind, multiple-value-setq, shiftf):
5282 Improve argument/docstring consistency.
5283
5284 * subr.el (focus-frame, unfocus-frame):
5285 Revert deletion on 2005-05-01.
5286
5287 2005-05-22 Andre Spiegel <spiegel@gnu.org>
5288
5289 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
5290 doesn't exist.
5291
5292 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
5293 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
5294
5295 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
5296
5297 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
5298 already deleted variables: auto-fill-hook, blink-paren-hook,
5299 lisp-indent-hook, inhibit-local-variables, unread-command-event,
5300 suspend-hooks, comment-indent-hook, meta-flag,
5301 before-change-function, after-change-function,
5302 font-lock-doc-string-face.
5303
5304 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
5305
5306 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
5307
5308 2005-05-21 Eli Zaretskii <eliz@gnu.org>
5309
5310 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
5311 rmail-dont-reply-to.
5312
5313 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
5314
5315 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
5316 literal blank when splitting new-header-values.
5317
5318 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
5319
5320 * calendar/cal-menu.el (cal-menu-update): Add separator as a
5321 string so that tmm doesn't create a completion entry for it.
5322
5323 * textmodes/table.el (table-disable-menu): Ditto.
5324
5325 2005-05-21 Richard M. Stallman <rms@gnu.org>
5326
5327 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
5328
5329 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
5330
5331 * net/rcompile.el (remote-compile): Use compilation-start.
5332
5333 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
5334
5335 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
5336
5337 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
5338 Default to makefile-bsdmake-mode on BSD systems.
5339
5340 * imenu.el (imenu-generic-expression, imenu--generic-function'):
5341 REGEXP may also be a search function now. The part of doc-string
5342 for describing the structure was 95% identical to that of
5343 `imenu--generic-function'. Unify it there.
5344
5345 * progmodes/make-mode.el (makefile-imenu-generic-expression):
5346 Use function to find dependencies, because regexp alone is so complex,
5347 it easily goes into an endless loop.
5348 (makefile-makepp-mode): Also add submenu for Perl functions
5349 defined in the makefile.
5350 (makefile-bsdmake-mode): Special imenu-generic-expression no
5351 longer needed, due to function call.
5352 (makefile-match-dependency): Take BOUND into account when checking
5353 if we're through.
5354
5355 2005-05-20 Jay Belanger <belanger@truman.edu>
5356
5357 * calc/calc-units.el (calc-invalidate-units-table):
5358 Use inhibit-read-only.
5359 (math-build-units-table-buffer): Use view-mode.
5360
5361 2005-05-20 David Kastrup <dak@gnu.org>
5362
5363 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
5364 easy-menu-add is not a nop on Emacs; and clarify when to call it.
5365
5366 2005-05-20 Lute Kamstra <lute@gnu.org>
5367
5368 * diff-mode.el (diff-header-face, diff-file-header-face)
5369 (diff-index-face, diff-hunk-header-face, diff-removed-face)
5370 (diff-added-face, diff-changed-face, diff-function-face)
5371 (diff-context-face, diff-nonexistent-face): Put them in the
5372 diff-mode customization group.
5373
5374 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
5375
5376 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
5377
5378 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
5379
5380 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
5381 Minor regexp-optimization.
5382
5383 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
5384
5385 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
5386 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
5387 (org-agenda-add-time-grid-maybe): New function.
5388 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
5389 (org-table-create): `dotimes' instead of `mapcar'.
5390 (org-xor): Simplify implementation.
5391 (org-agenda): `inhibit-redisplay' turned on.
5392 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
5393 a consistent line after a state change.
5394 (org-agenda-remove-times-when-in-prefix): New option.
5395 (org-prefix-has-time): New variable.
5396 (org-parse-time-string): Optional argument NODEFAULT.
5397 (org-format-agenda-item): Parse items for time-of-day
5398 specifications and move these into the prefix if possible.
5399 (org-agenda-priority): Get current heading, not previous heading
5400 during agenda remote editing.
5401
5402 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
5403
5404 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
5405 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
5406 (remove-duplicates, delete-duplicates, substitute)
5407 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
5408 (nsubstitute-if-not, find, find-if, find-if-not, position)
5409 (position-if, position-if-not, count, count-if, count-if-not)
5410 (mismatch, search, sort*, stable-sort, merge, member*)
5411 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
5412 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
5413 (intersection, nintersection, set-difference, nset-difference)
5414 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
5415 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
5416 (nsublis, tree-equal): Improve argument/docstring consistency.
5417
5418 * subr.el (send-string, send-region):
5419 Remove obsolescence declaration.
5420 (window-dot, set-window-dot, read-input, show-buffer)
5421 (eval-current-buffer, string-to-int):
5422 Add release number to obsolescence declarations.
5423
5424 2005-05-19 Kim F. Storm <storm@cua.dk>
5425
5426 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
5427 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
5428
5429 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
5430
5431 * faces.el (list-faces-display): Make back button respect optional
5432 regexp arg.
5433
5434 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
5435
5436 * calculator.el (calculator-radix-grouping-mode)
5437 (calculator-radix-grouping-digits, calculator-displayer)
5438 (calculator-radix-grouping-separator, calculator-copy-displayer):
5439 * dabbrev.el (dabbrev-search-these-buffers-only):
5440 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
5441 (diff-advance-after-apply-hunk, diff-mode-hook)
5442 (diff-minor-mode-prefix):
5443 * imenu.el (imenu-use-popup-menu):
5444 * jit-lock.el (jit-lock-context-time):
5445 * newcomment.el (comment-fill-column, comment-column)
5446 (comment-style, comment-padding, comment-multi-line)
5447 (comment-empty-lines, comment-auto-fill-only-comments):
5448 * reveal.el (reveal-around-mark):
5449 * uniquify.el (uniquify-buffer-name-style)
5450 (uniquify-after-kill-buffer-p)
5451 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
5452 (uniquify-min-dir-content, uniquify-separator)
5453 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
5454 * w32-vars.el (w32-fixed-font-alist):
5455 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
5456 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
5457 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
5458 * progmodes/perl-mode.el (perl-indent-level)
5459 (perl-continued-statement-offset, perl-continued-brace-offset)
5460 (perl-brace-offset, perl-brace-imaginary-offset)
5461 (perl-label-offset, perl-indent-continued-arguments)
5462 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
5463 * progmodes/tcl.el (tcl-indent-level)
5464 (tcl-continued-indent-level, tcl-auto-newline)
5465 (tcl-tab-always-indent, tcl-electric-hash-style)
5466 (tcl-help-directory-list, tcl-use-smart-word-finder)
5467 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
5468 (inferior-tcl-source-command):
5469 * textmodes/fill.el (enable-kinsoku):
5470 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
5471 * textmodes/table.el (table-yank-handler):
5472 Specify missing group (and type, if simple) in defcustom.
5473
5474 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
5475
5476 * progmodes/compile.el (compilation-finish-function): Fix defvar.
5477
5478 2005-05-19 Richard M. Stallman <rms@gnu.org>
5479
5480 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
5481
5482 * subr.el (event-basic-type): Don't get an error.
5483 (left-fringe-p): Function deleted.
5484
5485 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
5486 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
5487
5488 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
5489 in recursive copy.
5490
5491 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
5492
5493 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
5494
5495 * emacs-lisp/bytecomp.el
5496 (byte-compile-file-form-custom-declare-variable): Call
5497 byte-compile-nogroup-warn if appropriate.
5498
5499 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
5500 (compilation-set-window): Don't call left-fringe-p; do it directly.
5501
5502 2005-05-19 Jay Belanger <belanger@truman.edu>
5503
5504 * calc/calc-graph.el (calc-graph-format-data): Make sure
5505 var-PlotRejects is bound before trying to check its value.
5506
5507 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
5508
5509 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
5510 definition of this variable from reftex-global.el to reftex.el,
5511 because it is needed in the menu.
5512
5513 2005-05-19 Lute Kamstra <lute@gnu.org>
5514
5515 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
5516 years are fixed. Don't insert a space after a dash.
5517
5518 2005-05-19 Kim F. Storm <storm@cua.dk>
5519
5520 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
5521
5522 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
5523
5524 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
5525 strings, because (eq ... ?\\) is fairly frequent.
5526
5527 * progmodes/make-mode.el (makefile-add-this-line-targets):
5528 Simplify and integrate into `makefile-pickup-targets'.
5529 (makefile-add-this-line-macro): Simplify and integrate into
5530 `makefile-pickup-macros.
5531 (makefile-pickup-filenames-as-targets): Simplify.
5532 (makefile-previous-dependency, makefile-match-dependency):
5533 Don't stumble over `::'.
5534
5535 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
5536
5537 * subr.el (post-command-idle-hook, post-command-idle-delay):
5538 Remove obsoletion of post-command-idle-hook and
5539 post-command-idle-delay.
5540
5541 * faces.el (list-faces-display): Provide button when describe-face
5542 is called to take user back to the list of faces.
5543
5544 * help-fns.el (describe-variable): Remove hyperlinks in a
5545 variable's value as these are quite frequently inappropriate.
5546
5547 * follow.el (follow-submit-feedback, follow-mode):
5548 Remove references to post-command-idle-hook.
5549
5550 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
5551
5552 * progmodes/make-mode.el (makefile-previous-dependency)
5553 (makefile-match-dependency): Check for := (and in bsd mode also
5554 !=) to give a better result, even when font-lock is not on.
5555
5556 2005-05-18 Jay Belanger <belanger@truman.edu>
5557
5558 * calc/calc-help.el (calc-s-prefix-help):
5559 Add `calc-copy-special-constant' to help string.
5560
5561 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
5562
5563 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
5564
5565 2005-05-18 Jay Belanger <belanger@truman.edu>
5566
5567 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
5568 in linear factors are in proper order.
5569
5570 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
5571
5572 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
5573 Support for jurabib.
5574
5575 * textmodes/reftex.el (featurep): Define aliases for overlay
5576 commands, for XEmacs compatibility, and use these aliases in
5577 overlay initializations.
5578 (reftex-highlight): Use `reftex-move-overlay'.
5579 (reftex-unhighlight): Use `reftex-delete-overlay'.
5580 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
5581 (reftex-access-search-path): Use `reftex-uniquify' instead of
5582 `reftex-uniq'
5583
5584 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
5585 `before-string' property modification enables for Emacs as well.
5586 (reftex-select-item): Use `reftex-delete-overlay'.
5587 (reftex-select-mark): Use `reftex-make-overlay' and
5588 `reftex-overlay-put'.
5589 (reftex-select-unmark): Use `reftex-delete-overlay' and
5590 `reftex-overlay-put'.
5591
5592 2005-05-18 Lute Kamstra <lute@gnu.org>
5593
5594 * emacs-lisp/lisp.el (check-parens): Fix docstring.
5595
5596 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
5597
5598 * add-log.el (add-change-log-entry):
5599 * array.el (array-make-template, array-reconfigure-rows)
5600 (array-init-max-row, array-init-max-column)
5601 (array-init-columns-per-line, array-init-field-width):
5602 * replace.el (replace-match-maybe-edit, perform-replace):
5603 * textmodes/spell.el (spell-region):
5604 Replace `read-input' by `read-string'.
5605
5606 * forms.el (forms-mode):
5607 * finder.el (finder-compile-keywords):
5608 * shadowfile.el (shadow-read-files):
5609 Replace `eval-current-buffer' by `eval-buffer'.
5610
5611 * terminal.el (te-pass-through):
5612 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
5613 (ange-ftp-raw-send-cmd):
5614 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
5615 (send-process-next-char, telnet-initial-filter, telnet):
5616 Replace `send-string' by `process-send-string'.
5617
5618 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
5619 (prolog-consult-region): Replace `send-string' by
5620 `process-send-string'; replace `send-region' by `process-send-region'.
5621
5622 * progmodes/delphi.el (delphi-log-msg):
5623 Replace `set-window-dot' by `set-window-point'.
5624
5625 * subr.el (window-dot, set-window-dot, read-input, send-string)
5626 (send-region, show-buffer, eval-current-buffer):
5627 Make really obsolete, as the comment says.
5628
5629 2005-05-17 Kim F. Storm <storm@cua.dk>
5630
5631 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
5632 (cua--init-keymaps): Bind C-return instead of S-return to set
5633 rectangle mark.
5634
5635 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
5636 instead of S-return to toggle/clear rectangle mark.
5637
5638 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
5639
5640 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
5641 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
5642 Also fontify plain strings assigned to variables, mostly so that a
5643 colon has a face and is thus not taken as a dependency separator.
5644 (makefile-previous-dependency): Inline the new matcher, because it
5645 is too complex to work in both directions.
5646 (makefile-match-dependency): Eliminate `backward' arg (see above).
5647 Completely reimplemented so as to not sometimes go into an endless
5648 loop. It should also be more efficient, because first it only
5649 searches for `:', instead of applying the very complex regexp.
5650 (makefile-mode): Cancel `font-lock-support-mode', because blocks
5651 to be fontified in one piece can be too long for JIT.
5652 Makefiles are never *that* big.
5653
5654 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
5655
5656 * dired.el (dired-mode): Simplify.
5657
5658 2005-05-17 Lute Kamstra <lute@gnu.org>
5659
5660 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
5661 defcustom for the mode hook variable.
5662
5663 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
5664 Emacs Lisp Reference Manual.
5665
5666 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
5667
5668 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
5669 (evenp, list*):
5670 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
5671 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
5672
5673 * net/tramp-smb.el (tramp-smb-open-connection):
5674 Pass `tramp-chunksize' as fifth (required) argument.
5675
5676 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
5677
5678 * font-lock.el (lisp-font-lock-keywords-1):
5679 Set `font-lock-negation-char-face' for [^...] char group.
5680 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
5681
5682 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
5683 a var, and refine it to mask one more level of nested vars.
5684 (makefile-rule-action-regex): Turn it into a var, and refine it so
5685 it recognizes backslashed continuation lines as belonging to the
5686 same command.
5687 (makefile-macroassign-regex): Refine it so it recognizes
5688 backslashed continuation lines as belonging to the same command.
5689 (makefile-var-use-regex): Don't look at the next char, because it
5690 might be the same one to be skipped by the initial [^$], leading
5691 to an overlooked variable use.
5692 (makefile-make-font-lock-keywords): Remove two parameters, which
5693 are now variables that some of the modes set locally.
5694 Handle dependency and rule action matching through functions, because
5695 regexps alone match too often. Dependency matching now comes
5696 last, so it can check, whether a colon already matched something else.
5697 (makefile-mode): Inform that font-lock improves makefile parsing
5698 capabilities.
5699 (makefile-match-dependency, makefile-match-action): New functions.
5700
5701 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
5702
5703 * emacs-lisp/cl-extra.el (equalp): Doc fix.
5704
5705 * align.el (align-regexp):
5706 * ansi-color.el (ansi-color-get-face):
5707 * array.el (array-reconfigure-rows, array-init-max-row)
5708 (array-init-max-column, array-init-columns-per-line)
5709 (array-init-field-width):
5710 * dired-aux.el (dired-trample-file-versions):
5711 * dired-x.el (dired-mark-sexp):
5712 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
5713 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
5714 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
5715 * faces.el (face-read-integer):
5716 * files.el (backup-extract-version, insert-directory):
5717 * hexl.el (hexl-insert-decimal-char):
5718 * server.el (server-process-filter):
5719 * shell.el (shell-extract-num):
5720 * startup.el (command-line-1):
5721 * term.el (term-command-hook):
5722 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
5723 (time-stamp-do-number):
5724 * time.el (display-time-update):
5725 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
5726 (timezone-fix-time):
5727 * vms-patch.el (vms-suspend-resume-hook):
5728 * calendar/appt.el (appt-convert-time):
5729 * calendar/cal-bahai.el (mark-bahai-diary-entries):
5730 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
5731 * calendar/cal-islam.el (mark-islamic-diary-entries):
5732 * calendar/calendar.el (calendar-cursor-to-date)
5733 (calendar-star-date):
5734 * calendar/diary-lib.el (diary-attrtype-convert)
5735 (mark-diary-entries, diary-entry-time):
5736 * calendar/solar.el (solar-get-number):
5737 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
5738 * emacs-lisp/re-builder.el (reb-display-subexp):
5739 * emulation/edt.el (edt-set-scroll-margins):
5740 * emulation/tpu-extras.el (tpu-set-scroll-margins):
5741 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
5742 (vip-get-ex-count):
5743 * emulation/viper-ex.el (viper-get-ex-token)
5744 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
5745 * international/fontset.el (fontset-plain-name):
5746 * mail/feedmail.el (feedmail-look-at-queue-directory):
5747 * mail/mailalias.el (mail-get-names):
5748 * mail/rmail.el (rmail-convert-to-babyl-format):
5749 * mail/rmailsum.el (rmail-make-basic-summary-line)
5750 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
5751 (rmail-summary-goto-msg):
5752 * mail/smtpmail.el (smtpmail-read-response):
5753 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
5754 (ange-ftp-vms-add-file-entry):
5755 * play/gametree.el (gametree-looking-at-ply)
5756 (gametree-current-branch-score):
5757 * progmodes/ada-xref.el (ada-prj-find-prj-file)
5758 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
5759 * progmodes/cperl-mode.el (condition-case):
5760 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
5761 (ebrowse-set-member-buffer-column-width)
5762 (ebrowse-select-1st-to-9nth):
5763 * progmodes/etags.el (etags-snarf-tag):
5764 * progmodes/flymake.el (flymake-parse-line):
5765 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
5766 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
5767 (idlwave-shell-menu-def):
5768 * progmodes/ps-mode.el (ps-run-goto-error):
5769 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
5770 (vhdl-speedbar-contract-level):
5771 * term/mac-win.el (x-handle-numeric-switch):
5772 * term/sun-mouse.el (sun-get-frame-data):
5773 * term/w32-win.el (x-handle-numeric-switch):
5774 * term/x-win.el (x-handle-numeric-switch):
5775 * textmodes/ispell.el (ispell-parse-output):
5776 * textmodes/nroff-mode.el (nroff-outline-level):
5777 * textmodes/reftex-cite.el (reftex-bib-sort-year)
5778 (reftex-bib-sort-year-reverse, reftex-format-citation):
5779 * textmodes/reftex-parse.el (reftex-init-section-numbers)
5780 (reftex-section-number):
5781 * textmodes/texinfmt.el (texinfo-paragraphindent):
5782 Replace `string-to-int' by `string-to-number'.
5783
5784 * international/latexenc.el: Add page marker to force the "Local
5785 Variables:" string out of the last page.
5786
5787 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
5788
5789 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
5790 tooltip-change-major-mode.
5791 (gud-tooltip-print-command): Remove case where gud-minor-mode
5792 is gdb ("--fullname").
5793 (gud-tooltip-tips): Turn GUD tooltips off for this case and
5794 explain to user.
5795
5796 2005-05-16 Jay Belanger <belanger@truman.edu>
5797
5798 * calc/calc-store.el (calc-copy-special-constant): New function.
5799
5800 * calc/calc-ext.el (calc-init-extensions): Add binding for
5801 `calc-copy-special-constant'.
5802
5803 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
5804 for the `calc-copy-special-constant' command.
5805
5806 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
5807
5808 * subr.el (left-fringe-p): New function.
5809
5810 * progmodes/compile.el (compilation-setup): Set local value of
5811 overlay-arrow-string to "" always.
5812 (compilation-set-window): Left fringe then don't scroll.
5813 No left fringe then no arrow and scroll message to top.
5814 (compilation-context-lines): Adjust doc string accordingly.
5815
5816 2005-05-16 Kim F. Storm <storm@cua.dk>
5817
5818 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
5819 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
5820 (ido-wide-find-dir-or-delete-dir): New command for M-d.
5821 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
5822 (ido-read-file-name): Handle commands with ido property value
5823 equal to find-file as reading a file name, to allow C-d to enter dired.
5824 (ibuffer-find-file): Add ido property with value find-file.
5825
5826 2005-05-15 Kim F. Storm <storm@cua.dk>
5827
5828 * subr.el (open-network-stream-nowait): Remove.
5829 (open-network-stream-server): Remove.
5830
5831 2005-05-15 Richard M. Stallman <rms@gnu.org>
5832
5833 * faces.el (describe-face): Output a definition link button.
5834
5835 * help-mode.el (help-face-def): New button type.
5836
5837 * emacs-lisp/copyright.el (copyright-fix-years):
5838 Match properly if the first year is 2-digit.
5839 Don't mess up the whitespace after the years by filling.
5840
5841 * dired-aux.el (dired-mark-confirm):
5842 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
5843
5844 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
5845 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
5846 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
5847
5848 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
5849 Set font-lock-comment-start-skip.
5850
5851 * font-lock.el (font-lock-comment-start-skip): New variable.
5852 (font-lock-comment-end-skip): New variable.
5853 (font-lock-fontify-syntactically-region): Use them if non-nil.
5854
5855 2005-05-15 Jay Belanger <belanger@truman.edu>
5856
5857 * calc/calc-store.el (calc-store-value): Return a string rather
5858 than display it as a message.
5859 Use calc-var-name for variable name.
5860 (calc-store-into): Add the result of calc-store-value to message.
5861 (calc-copy-variable): Add a message.
5862 (calc-store-exchange): Improve error messages.
5863 (calc-store-binary, calc-store-map): Don't reset the values of
5864 special constants.
5865
5866 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
5867
5868 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
5869 manual to docstring.
5870
5871 * files.el (hack-local-variables-confirm): Add STRING argument.
5872 Make the function handle non file visiting buffers correctly.
5873 (hack-local-variables-prop-line, hack-local-variables)
5874 (hack-one-local-variable): Use STRING arg of
5875 `hack-local-variables-confirm'.
5876
5877 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
5878
5879 Sync with Tramp 2.0.49.
5880
5881 * tramp.el (tramp-handle-dired-call-process)
5882 (tramp-handle-insert-directory):`insert-buffer' cannot be used
5883 because the contents of the Tramp buffer is changed before
5884 insertion (`expand-file' and alike).
5885 (tramp-handle-insert-directory): If `localname' has an empty
5886 nondirectory name, it must not be quoted.
5887 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
5888 variable `tramp-chunksize'. Change callees.
5889 (tramp-open-connection-setup-interactive-shell): Check remote host
5890 for buggy `send-process-string' implementation.
5891 Set `tramp-chunksize' if found. Reported by Michael Kifer
5892 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
5893 (tramp-handle-shell-command): `insert-buffer' cannot be used
5894 because the contents of the Tramp buffer is changed before
5895 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
5896 <frederic.bothamy@free.fr>.
5897 (tramp-set-auto-save): Actions should be done for Tramp file name
5898 handler only. Ange-FTP has its own auto-save mechanism.
5899 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
5900 (tramp-set-auto-save-file-modes): Set file modes of
5901 `buffer-auto-save-file-name' to ?\600 as fallback solution.
5902 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
5903 (tramp-bug): Remove obsolete variable.
5904 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
5905 for presence of `mml-mode'. Make it running for older Emacsen as well.
5906
5907 2005-05-14 John Paul Wallington <jpw@pobox.com>
5908
5909 * ibuf-ext.el (define-ibuffer-filter filename):
5910 If `dired-directory' is a list, use its car.
5911
5912 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
5913
5914 * ibuffer.el (define-ibuffer-column filename):
5915 If `dired-directory' is a list, use its car.
5916
5917 2005-05-14 Richard M. Stallman <rms@gnu.org>
5918
5919 * subr.el (symbol-file): Doc fix.
5920
5921 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
5922 (byte-compile-form): Call byte-compile-nogroup-warn.
5923 (byte-compile-warning-types): Doc fix.
5924
5925 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
5926
5927 * progmodes/cc-engine.el (c-literal-faces):
5928 Add font-lock-comment-delimiter-face.
5929
5930 * net/net-utils.el (dig): Use with-no-warnings.
5931
5932 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
5933 (sc-recite-frame-alist, sc-default-cite-frame)
5934 (sc-default-uncite-frame, sc-default-recite-frame)
5935 (sc-attrib-selection-list, sc-rewrite-header-list):
5936 Mark as risky-local-variable.
5937
5938 * international/ogonek.el (ogonek-jak, ogonek-how):
5939 Don't use beginning-of-buffer.
5940
5941 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
5942
5943 * calendar/solar.el (solar-data-list): Move definition up.
5944
5945 * dnd.el (dnd-protocol-alist): Add autoload.
5946
5947 * progmodes/sh-script.el: Many doc usage fixes.
5948 (sh-indent-after-do): Change default to match common styles.
5949
5950 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
5951
5952 * files.el (interpreter-mode-alist)
5953 (auto-mode-interpreter-regexp): Doc fixes.
5954
5955 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
5956
5957 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
5958
5959 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
5960
5961 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5962
5963 * dired.el (dired-mode): make-variable-buffer-local =>
5964 make-local-variable.
5965
5966 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5967
5968 * term/mac-win.el (mac-select-convert-to-string): Try coding
5969 systems in mac-script-code-coding-systems if specified one cannot
5970 encode string for `com.apple.traditional-mac-plain-text'.
5971
5972 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
5973
5974 * progmodes/make-mode.el (makefile-targets-face)
5975 (makefile-shell-face, makefile-makepp-perl-face): New faces.
5976 (makefile-dependency-regex): Fix it to not make the colon in
5977 $(var:a=b) special.
5978 (makefile-rule-action-regex): New regexp for highlighting embedded
5979 Shell strings.
5980 (makefile-macroassign-regex): Handle != for highlighting as
5981 embedded Shell strings.
5982 (makefile-var-use-regex): New const.
5983 (makefile-statements, makefile-automake-statements)
5984 (makefile-gmake-statements, makefile-makepp-statements)
5985 (makefile-bsdmake-statements): New consts.
5986 (makefile-make-font-lock-keywords): New function.
5987 (makefile-automake-font-lock-keywords)
5988 (makefile-gmake-font-lock-keywords)
5989 (makefile-makepp-font-lock-keywords)
5990 (makefile-bsdmake-font-lock-keywords): New consts.
5991 (makefile-mode-map): Add switchers between the various submodes.
5992 (makefile-mode): Document the availability of the variants.
5993 (makefile-automake-mode, makefile-gmake-mode)
5994 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
5995
5996 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
5997 new variants of makefile-mode.
5998
5999 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6000
6001 * font-lock.el (font-lock-comment-delimiter-face): Fix up
6002 the inheritance.
6003
6004 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
6005
6006 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
6007 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
6008
6009 * files.el (normal-mode): Extend the scope of the
6010 `enable-local-variables' binding to include the `set-auto-mode' call.
6011 (magic-mode-alist): Doc fix.
6012
6013 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
6014
6015 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
6016 font-lock-comment-face rather than copying its setting.
6017
6018 2005-05-12 Andreas Schwab <schwab@suse.de>
6019
6020 * eshell/esh-mode.el (eshell-send-input): Doc fix.
6021
6022 2005-05-12 Lute Kamstra <lute@gnu.org>
6023
6024 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
6025 defcustom for the mode hook variable. Delete the last argument.
6026 * generic-x.el: Fix callers of define-generic-mode.
6027 (generic-x-modes): Delete group.
6028 (show-tabs-tab-face, show-tabs-space-face): Put them in the
6029 generic-x customization group.
6030
6031 2005-05-12 Kim F. Storm <storm@cua.dk>
6032
6033 * font-lock.el (font-lock-negation-char-face): Default to "off".
6034
6035 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
6036 font-lock-negation-char-face to ! in !=.
6037
6038 2005-05-12 Masatake YAMATO <jet@gyve.org>
6039
6040 * add-log.el (find-change-log): Fix typos in the docstring
6041 of function.
6042
6043 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
6044
6045 * international/latexenc.el (latexenc-find-file-coding-system):
6046 Avoid `re-search-forward' when looking for input encoding because
6047 of speed and safety. Better regular expressions for recognizing
6048 input encoding. Limit a search for TeX-master/tex-main-file to
6049 the local variable section.
6050
6051 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
6052
6053 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
6054 syntax of $ to "'" (quote).
6055
6056 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
6057
6058 * dnd.el (dnd-protocol-alist): Improve custom type.
6059
6060 * dired.el (dired-dnd-protocol-alist): New variable.
6061 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
6062 `dired-mode-hook' to the end.
6063
6064 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
6065
6066 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
6067 comment-end if comment-start-skip is not set.
6068 Obey the font-lock-comment-delimiter-face variables.
6069
6070 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
6071
6072 * files.el (executable-find): Move from executable.el. Use
6073 locate-file.
6074 * progmodes/executable.el (executable-find): Move to files.el.
6075
6076 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
6077 when trying to ensure forward progress.
6078
6079 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
6080
6081 * mouse-sel.el (mouse-sel-follow-link-p): New function.
6082 (mouse-select, mouse-select-internal, mouse-extend-internal):
6083 Use it to implement mouse-1-click-follows-link functionality.
6084
6085 2005-05-11 Richard M. Stallman <rms@gnu.org>
6086
6087 * font-lock.el (font-lock-fontify-syntactically-region):
6088 Use font-lock-comment-delimiter-face for comment delimiters.
6089
6090 2005-05-10 Jay Belanger <belanger@truman.edu>
6091
6092 * calc/calc-help.el (calc-m-prefix-help): Add mention of
6093 preserving embedded modes.
6094
6095 2005-05-10 Richard M. Stallman <rms@gnu.org>
6096
6097 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
6098
6099 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
6100 Move from ada-stmt.el.
6101 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
6102
6103 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
6104 Move to ada-mode.el.
6105 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
6106
6107 * cus-edit.el (custom-file): Call file-chase-links.
6108
6109 * files.el (read-directory-name): Fix previous change.
6110 (hack-local-variables-confirm): New function.
6111 (hack-local-variables-prop-line, hack-local-variables)
6112 (hack-one-local-variable): Use it.
6113
6114 2005-05-10 Lute Kamstra <lute@gnu.org>
6115
6116 * font-lock.el (font-lock-keywords-alist)
6117 (font-lock-removed-keywords-alist): Clarify docstrings.
6118
6119 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
6120
6121 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
6122 (gdb-source-info): Check for preprocessor info.
6123 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
6124 a macro for a function.
6125 (gdb-info-breakpoints-custom): Try to find file again if not already
6126 found (user might have used GDB dir command).
6127 (gdb-get-location): Update gdb-location-alist correctly for change
6128 to gdb-info-breakpoints-custom.
6129
6130 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
6131 (gud-tooltip-print-command): Add gdbmi case.
6132 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
6133 preprocessor info.
6134
6135 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
6136
6137 * startup.el (fancy-splash-insert): Fix typo in doc string.
6138
6139 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
6140
6141 * obsolete/float.el (string-to-float):
6142 * obsolete/hilit19.el (hilit-add-pattern):
6143 * obsolete/rnews.el (news-parse-range, news-select-message)
6144 (news-get-pruned-list-of-files): Replace `string-to-int' by
6145 `string-to-number'.
6146
6147 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
6148 `find-file-not-found-hooks'; use `add-hook'.
6149 (uncompress-while-visiting): Set `write-file-functions', not
6150 `write-file-hooks'; use `add-hook'.
6151
6152 2005-05-09 Kim F. Storm <storm@cua.dk>
6153
6154 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
6155 (cua-paste): Handle clipboard action.
6156 (cua--init-keymaps): Remap clipboard-kill-region and
6157 clipboard-kill-ring-save.
6158
6159 2005-05-08 Eli Zaretskii <eliz@gnu.org>
6160
6161 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
6162 Improve commentary.
6163
6164 * simple.el (next-error-overlay-arrow-position): Revert the change
6165 made on 2005-04-30.
6166
6167 2005-05-07 Jay Belanger <belanger@truman.edu>
6168
6169 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
6170 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
6171 `calc-sel-reselect'.
6172
6173 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
6174 Calc is in embedded mode.
6175
6176 2005-05-07 Eli Zaretskii <eliz@gnu.org>
6177
6178 * progmodes/compile.el (compilation-setup):
6179 Set overlay-arrow-string to an empty string on text terminals.
6180
6181 * textmodes/ispell.el (ispell-program-name): Try looking for
6182 "aspell" along exec-path, and if found, use it as the default
6183 speller program.
6184
6185 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
6186
6187 * international/mule.el (sgml-xml-auto-coding-function):
6188 Recognize encoding='FOO' in single quotes as well as in double quotes.
6189
6190 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
6191
6192 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
6193 as well as `interactive', so that defmacro* would recognize
6194 `declare' forms.
6195
6196 2005-05-07 Eli Zaretskii <eliz@gnu.org>
6197
6198 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
6199 Explain more about the LIGHTER arg's usage in the doc string.
6200 Add commentary to clarify what the code does. Fix the regexp that
6201 strips whitespace from LIGHTER. Quote LIGHTER before using it,
6202 since it could have characters special to regular expressions.
6203
6204 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
6205
6206 * replace.el (occur-1): Bind inhibit-read-only so that
6207 erase-buffer doesn't barf on read-only text properties (likewise
6208 for add-text-properties in occur-engine). Mark buffer as unmodified.
6209 (occur-engine): Don't set buffer-read-only here.
6210
6211 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6212
6213 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
6214 list-buffers-directory. This caused the *cvs-commit* buffer to be
6215 sometimes mistakenly reused as a *cvs* buffer.
6216
6217 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
6218
6219 * tooltip.el: Move code for GUD tooltips into gud.el.
6220 (require): CL no longer needed to compile case.
6221 (tooltip-mode): Do not toggle functions for GUD tooltips.
6222 (tooltip-gud-tips-p): Remove. Replace with minor mode
6223 gud-tooltip-mode in gud.el.
6224 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
6225 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
6226 tooltip-gud prefix with gud-tooltip and obsolete.
6227 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
6228 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
6229 (tooltip-mouse-motion): Mouse movement functions/variable.
6230 Rename in gud.el by adding gud prefix.
6231 (tooltip-gud-original-filter, tooltip-gud-dereference)
6232 (tooltip-gud-event, tooltip-toggle-gud-tips)
6233 (tooltip-gud-process-output, tooltip-gud-print-command)
6234 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
6235 gud.el by replacing tooltip-gud prefix with gud-tooltip.
6236 (gdb-tooltip-print): Move to gdb-ui.el.
6237
6238 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
6239 (require): CL needed to compile case.
6240 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
6241 tooltip-gud-tips-p. Make it a minor-mode.
6242 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
6243 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
6244 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
6245 (gud-tooltip-change-major-mode)
6246 (gud-tooltip-activate-mouse-motions-if-enabled)
6247 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
6248 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
6249 (gud-tooltip-original-filter, gud-tooltip-dereference)
6250 (gud-tooltip-event, tooltip-toggle-gud-tips)
6251 (gud-tooltip-process-output, gud-tooltip-print-command)
6252 (gud-tooltip-tips): Move from tooltip.el.
6253
6254 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
6255 (gdb-cpp-define-alist-flags): Doc fix.
6256 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
6257 gud-tooltip-mode is t.
6258
6259 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
6260
6261 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
6262 evaporate if their text is deleted.
6263 (goto-address-at-point): Make it work as a mouse binding as well.
6264 (goto-address-at-mouse): Obsolete it. Update users.
6265
6266 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
6267
6268 * calendar/appt.el (top-level): No longer activate on load.
6269
6270 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
6271
6272 * calendar/cal-bahai.el (mark-bahai-diary-entries):
6273 * net/webjump.el (webjump):
6274 * progmodes/idlw-help.el (idlwave-do-context-help1)
6275 (idlwave-highlight-linked-completions):
6276 * textmodes/po.el (po-find-file-coding-system-guts):
6277 Replace `assoc-ignore-case' by `assoc-string'.
6278
6279 2005-05-06 Eli Zaretskii <eliz@gnu.org>
6280
6281 * files.el (locate-file): Doc fix.
6282
6283 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
6284 Remove the redundant test for ms-dos.
6285
6286 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
6287 look for the preprocessor with exec-suffixes. If not found in
6288 standard places, look in exec-path. Remove most of the tests that
6289 used system-type.
6290
6291 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
6292
6293 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
6294
6295 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
6296 file-name clash with jka-compr.el on 8+3 filesystems.
6297
6298 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6299
6300 * term/mac-win.el: Don't define or bind scroll bar functions if
6301 x-toolkit-scroll-bars is t.
6302 (x-select-text, x-get-selection-value): Clear
6303 x-last-selected-text-clipboard if x-select-enable-clipboard is
6304 nil.
6305 (PRIMARY): Put mac-scrap-name property.
6306 (mac-select-convert-to-file-url): New function.
6307 (public.file-url): New selection target type. Add to
6308 selection-converter-alist.
6309 (x-get-selection, x-selection-value): Handle it.
6310 (x-cut-buffer-or-selection-value): New alias.
6311
6312 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6313
6314 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
6315 entry to avoid calling bibtex-find-entry with arg global
6316 being t. Remove arg key.
6317 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
6318 (bibtex-copy-summary-as-kill): Change accordingly.
6319
6320 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
6321
6322 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
6323 (org-agenda-date-later): Use with-current-buffer.
6324
6325 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
6326
6327 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
6328 (define-obsolete-variable-alias): Doc Fixes.
6329
6330 2005-05-06 Kim F. Storm <storm@cua.dk>
6331
6332 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
6333 vertical-motion when selective-display is active.
6334
6335 * ido.el (ido-setup-hook): New hook.
6336 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
6337 (ido-input-stack): New var.
6338 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
6339 ido-next-work-file binding to M-O.
6340 Bind M-f to ido-wide-find-file-or-pop-dir.
6341 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
6342 (ido-read-internal): Run ido-setup-hook.
6343 Catch quit in read-file-name and read-string to cancel edit.
6344 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
6345 Automatically pop-all when completing a directory name (RET).
6346 (ido-file-internal): Add with-no-warnings around ffap and dired code.
6347 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
6348 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
6349 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
6350 New functions for M-b/M-f to move among the directory components.
6351 (ido-make-merged-file-list): Catch quit to cancel merge.
6352 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
6353 (ido-completion-help): No warnings for ido-completion-buffer-full.
6354
6355 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
6356
6357 * font-lock.el (font-lock-negation-char-face): New face and variable.
6358 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
6359 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
6360 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
6361 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
6362
6363 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
6364
6365 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
6366 Fix typo in docstring.
6367
6368 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
6369 (ebrowse-print-statistics-line)
6370 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
6371
6372 * term/w32-win.el (image-library-alist): Add additional name for
6373 Xpm library.
6374
6375 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
6376
6377 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
6378 use gcc instead of cpp.
6379
6380 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
6381 (gdb-create-define-alist): Use it.
6382 (gdb-cpp-define-alist-program): Update for MS-DOS.
6383
6384 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
6385
6386 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
6387
6388 2005-05-04 Richard M. Stallman <rms@gnu.org>
6389
6390 * help.el (describe-key): No error when UNTRANSLATED is nil.
6391
6392 * simple.el (line-move-1): Fix previous change to signal errors
6393 appropriately.
6394
6395 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
6396
6397 * calendar/icalendar.el (icalendar-version): Now at 0.12.
6398 (icalendar-duration-correction): Remove.
6399 (icalendar--get-event-properties): Split result at commas.
6400 (icalendar--decode-isoduration): New optional argument
6401 DURATION-CORRECTION.
6402 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
6403 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
6404 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
6405 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
6406 (icalendar--convert-anniversary-to-ical): New functions, extracted
6407 from icalendar-export-region, with bug fixes.
6408 (icalendar-export-region): Use the above functions.
6409 (icalendar-import-buffer): Check before saving diary file.
6410 (icalendar--convert-recurring-to-diary)
6411 (icalendar--convert-non-recurring-all-day-to-diary)
6412 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
6413 extracted from icalendar--convert-ical-to-diary, with bug fixes.
6414 (icalendar--convert-ical-to-diary): Use the above functions.
6415
6416 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
6417
6418 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
6419 Remove these recent additions.
6420 (c-mode): Restore to before 2005-04-28.
6421
6422 * progmodes/cc-vars.el (cc-define-list-program): Remove this
6423 recent addition.
6424
6425 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
6426 (gdb-define-alist): New variables.
6427 (gdb-create-define-alist): New function.
6428 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
6429 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
6430 with string-to-number.
6431 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
6432
6433 * progmodes/gud.el: Replace string-to-int with string-to-number.
6434 (gud-find-file): Handle gdb-define-alist.
6435
6436 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
6437
6438 2005-05-02 Jay Belanger <belanger@truman.edu>
6439
6440 * calc/calc-aent.el (math-read-token):
6441 * calc/calc-bin.el (calc-word-size):
6442 * calc/calc-ext.el (calc-read-number-fancy):
6443 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
6444 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
6445 * calc/calc-frac.el (calc-over-notation):
6446 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
6447 (calc-graph-num-points, calc-graph-init):
6448 * calc/calc-prog.el (calc-read-parse-table-part)
6449 (calc-edit-macro-repeats):
6450 * calc/calc-yank.el (calc-do-grab-rectangle):
6451 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
6452 Replace `string-to-int' by `string-to-number'.
6453
6454 2005-05-02 Kim F. Storm <storm@cua.dk>
6455
6456 * kmacro.el: Use executing-kbd-macro-index variable.
6457
6458 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
6459
6460 * net/rlogin.el (rlogin-parse-words): Delete func.
6461 (rlogin): Use split-string, not rlogin-parse-words.
6462 Also, if there are option-like elements in the parsed args,
6463 take the host to be the first arg immediately following them.
6464 Suggested by Michael Mauger.
6465
6466 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
6467
6468 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
6469
6470 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
6471
6472 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
6473 (cc-mode-cpp-program): Rename to cc-define-list-program and
6474 move to cc-vars.el.
6475
6476 * progmodes/cc-vars.el (cc-define-list-program):
6477 Change to "gcc -E -dM -". Make customizable.
6478
6479 2005-05-02 Kim F. Storm <storm@cua.dk>
6480
6481 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
6482
6483 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
6484
6485 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
6486
6487 * international/mule-util.el (truncate-string): Remove alias and
6488 obsolete declaration.
6489
6490 * international/mule-cmds.el (update-iso-coding-systems):
6491 Remove alias and obsolete declaration.
6492
6493 * international/mule.el (coding-system-parent): Remove alias and
6494 obsolete declaration.
6495
6496 * subr.el (define-function, sref): Remove aliases and obsolete
6497 declarations.
6498 (chars-in-region): Remove obsolete declaration.
6499
6500 2005-05-01 Richard M. Stallman <rms@gnu.org>
6501
6502 * info.el (Info-mode): Set widen-automatically to nil, locally.
6503
6504 * simple.el (widen-automatically): New variable.
6505 (pop-global-mark): Obey widen-automatically.
6506
6507 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
6508
6509 * term/xterm.el (function-key-map): Call substitute-key-definition
6510 before the keymap size is increased by a lot of define-key calls.
6511
6512 2005-05-01 Richard M. Stallman <rms@gnu.org>
6513
6514 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
6515 Rename ARG to ELEMENT. Doc fix.
6516
6517 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
6518
6519 * allout.el (allout-exposure): Remove macro and obsolete declaration.
6520 Remove references to allout-exposure/change to allout-new-exposure.
6521
6522 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
6523 bytecode symbols.
6524
6525 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
6526 (compiled-function-p, focus-frame, unfocus-frame):
6527 Remove aliases and obsolete declarations.
6528 Back out inadvertent changes from previous commit.
6529
6530 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
6531
6532 * files.el (require-final-newline): Make Custom tags consistent
6533 with mode-require-final-newline.
6534 (mode-require-final-newline): Doc fix.
6535
6536 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
6537
6538 * international/latexenc.el (latexenc-find-file-coding-system):
6539 Fix regular expressions.
6540
6541 2005-05-01 David Kastrup <dak@gnu.org>
6542
6543 * international/latexenc.el (latexenc-find-file-coding-system):
6544 Fix regular expressions.
6545
6546 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
6547
6548 * subr.el (string-to-int): Make obsolete.
6549
6550 2005-04-30 Richard M. Stallman <rms@gnu.org>
6551
6552 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
6553
6554 * loadup.el: load jka-comp-hook.
6555
6556 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
6557 (jka-compr-handler): Add autoload. `put' calls moved
6558 to jka-comp-hook.el.
6559 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
6560 (jka-compr-inhibit): Autoload.
6561
6562 * jka-comp-hook.el: New file.
6563 Enable the mode by default.
6564
6565 * files.el (backup-buffer-copy): Use copy-file instead
6566 of write-region, and put back the 'excl.
6567
6568 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
6569
6570 * progmodes/flymake.el (flymake-split-string)
6571 (flymake-split-string, flymake-log, flymake-pid-to-names)
6572 (flymake-reg-names, flymake-get-source-buffer-name)
6573 (flymake-unreg-names, flymake-add-line-err-info)
6574 (flymake-add-err-info): Clarify docstrings.
6575 (flymake-popup-menu, flymake-make-emacs-menu)
6576 (flymake-make-xemacs-menu): Add docstrings.
6577 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
6578 Set variables directly throughout.
6579
6580 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
6581
6582 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
6583 exists. Initialize cc-define-alist.
6584 (c-mode): Add cc-create-define-alist locally to after-save-hook.
6585 If there is no file (Macroexpansion) don't create an alist.
6586
6587 2005-04-29 Sam Steingold <sds@gnu.org>
6588
6589 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
6590 (cc-create-define-alist): Use it instead of the hard-coded string.
6591
6592 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
6593
6594 * international/mule-conf.el (file-coding-system-alist): Fix regexp
6595 for latexenc.
6596
6597 2005-04-29 Lute Kamstra <lute@gnu.org>
6598
6599 * emacs-lisp/generic.el: Improve commentary section.
6600 (define-generic-mode): Improve docstring.
6601
6602 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
6603
6604 * textmodes/org.el (many places): Change to quiet the byte compiler.
6605 (org-prefix-format-compiled): New variable.
6606 (org-compile-prefix-format): New function.
6607 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
6608 (org-agenda-prefix-format,org-timeline-prefix-format): New options.
6609 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
6610 (org-get-entries-from-diary): Use `org-get-time-of-day' for
6611 consistency with entries from `org-mode' files.
6612 (org-get-time-of-day): Fix bug with partial matches early in a line.
6613 (org-non-link-chars): New constant.
6614 (org-link-regexp): Respect `org-non-link-chars'.
6615 (org-agenda-day-view): Remove command.
6616 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
6617 (org-follow-bbdb-link, org-store-link): Search also company field.
6618 (org-highlight-overlay): New variable.
6619 (org-highlight, org-unhighlight): New functions.
6620 (org-agenda-mode): Add pre-command-hook to remove highlight.
6621 (org-evaluate-time-range): Behavior depends upon whether time stamp
6622 contains a time or not.
6623 (org-show-subtree, org-show-entry): New functions.
6624 (org-agenda-cleanup-fancy-diary): Remove empty lines.
6625
6626 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
6627
6628 * comint.el (comint-output-filter-functions): Add autoload cookie.
6629
6630 2005-04-28 Kim F. Storm <storm@cua.dk>
6631
6632 * ido.el (ido-everywhere): Fix last change.
6633
6634 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
6635
6636 * international/latexenc.el: New file.
6637 * international/mule-conf.el (file-coding-system-alist): For .tex,
6638 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
6639
6640 2005-04-28 Lute Kamstra <lute@gnu.org>
6641
6642 * font-lock.el (font-lock-add-keywords)
6643 (font-lock-remove-keywords): Clarify docstring.
6644 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
6645 Don't start docstrings with a `*'.
6646 (font-lock-update-removed-keyword-alist): Give it a docstring.
6647
6648 * generic-x.el: Update commentary section.
6649 Only require font-lock when compiling.
6650 Define all modes conditionally.
6651 Place all generic modes in the generic-x-modes customization group.
6652 (generic-x-modes): New customization group.
6653 (generic-default-modes, generic-mswindows-modes)
6654 (generic-unix-modes, generic-other-modes): New constants.
6655 (generic-define-mswindows-modes, generic-define-unix-modes):
6656 Update docstrings. Make them obsolete.
6657 (generic-extras-enable-list): New default value. Update docstring.
6658 Improve :type. Change :set function.
6659 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
6660 Fix docstring.
6661
6662 * emacs-lisp/generic.el (generic-mode-internal):
6663 Simplify font-lock-defaults.
6664 (define-generic-mode): Fix docstring.
6665
6666 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
6667
6668 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
6669 font-lock-face property to highlight matches.
6670
6671 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
6672
6673 * progmodes/cc-mode.el (cc-create-define-alist): New function.
6674 (cc-define-alist): New variable.
6675 (c-mode): Make it local and initialize it.
6676
6677 * progmodes/gdb-ui.el (gdb-active-process): New variable.
6678 (gdb-exited): New function.
6679 (gdb-annotation-rules): Use it.
6680 (gdb-starting): Set gdb-active-process to t.
6681 (gdb-stopping): Amend doc string.
6682 (gdb-reset): Set gdb-active-process to nil.
6683
6684 * tooltip.el (tooltip-gud-tips): Show the associated #define
6685 directives when a C program under GDB is not executing.
6686
6687 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
6688
6689 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
6690 font-lock-fontify-syntactic-keywords.
6691
6692 * font-lock.el (font-lock-default-fontify-region): Don't force
6693 parse-sexp-lookup-properties to nil.
6694
6695 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
6696
6697 * man.el (man-mode-syntax-table): Set up `:' to have
6698 word-constituent syntax.
6699
6700 2005-04-27 Lute Kamstra <lute@gnu.org>
6701
6702 * novice.el (disable-command): Don't add spurious newlines to the
6703 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
6704
6705 2005-04-26 Jay Belanger <belanger@truman.edu>
6706
6707 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
6708 than one window before deleting window.
6709
6710 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
6711
6712 * shell.el (shell-prompt-pattern): Doc fix.
6713 (shell-mode): Set paragraph-separate buffer locally to "\\'".
6714
6715 * comint.el (comint-prompt-regexp, comint-get-old-input)
6716 (comint-use-prompt-regexp)
6717 (comint-use-prompt-regexp-instead-of-fields)
6718 (comint-replace-by-expanded-history, comint-send-input)
6719 (comint-output-filter, comint-get-old-input-default)
6720 (comint-line-beginning-position, comint-bol, comint-show-output)
6721 (comint-backward-matching-input, comint-forward-matching-input)
6722 (comint-next-prompt, comint-previous-prompt):
6723 Rename `comint-use-prompt-regexp-instead-of-fields' to
6724 `comint-use-prompt-regexp'. Keep old name as alias and declare
6725 obsolete.
6726 (comint-use-prompt-regexp): Shorten first line of doc string.
6727
6728 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
6729 Set paragraph-separate buffer locally to "\\'".
6730
6731 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
6732 Adapt to above name change.
6733
6734 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
6735 (smbclient-prompt-regexp): Ditto.
6736
6737 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
6738
6739 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
6740
6741 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
6742 gdb-location-list.
6743 Break lines that are over 80 characters wide.
6744
6745 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
6746
6747 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
6748 New fun and var, to preserve compatibility.
6749
6750 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
6751
6752 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
6753
6754 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
6755 name to file-newer-than-file-p.
6756
6757 2005-04-26 Richard M. Stallman <rms@gnu.org>
6758
6759 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
6760
6761 * progmodes/python.el (python-mode):
6762 Use new name eldoc-documentation-function.
6763
6764 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
6765
6766 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
6767 (eldoc-documentation-function):
6768 Rename from eldoc-print-current-symbol-info-function. Calls changed.
6769
6770 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
6771
6772 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
6773
6774 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
6775
6776 * term/xterm.el (function-key-map): Fix strings for
6777 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
6778 {C,S,A,C-S}-{f1-f12}.
6779
6780 2005-04-26 Kenichi Handa <handa@m17n.org>
6781
6782 * international/mule-cmds.el (select-safe-coding-system):
6783 Fix previous change.
6784
6785 2005-04-26 Lute Kamstra <lute@gnu.org>
6786
6787 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
6788
6789 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
6790 (font-lock-comment-delimiter-face): Ditto.
6791
6792 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
6793
6794 2005-04-25 Jay Belanger <belanger@truman.edu>
6795
6796 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
6797 to t while inserting information; use help-mode.
6798
6799 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
6800
6801 * term.el (ansi-term-color-vector): Use the xterm colors.
6802 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
6803
6804 2005-04-25 Lute Kamstra <lute@gnu.org>
6805
6806 * font-core.el (font-lock-defaults): Fix docstring.
6807
6808 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
6809
6810 2005-04-25 Kenichi Handa <handa@m17n.org>
6811
6812 * international/mule-cmds.el (select-safe-coding-system):
6813 Don't check consistency with coding: spec, etc if raw-text or
6814 no-conversion was found to be safe.
6815
6816 2005-04-24 Richard M. Stallman <rms@gnu.org>
6817
6818 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
6819 citation markers at start of each line.
6820
6821 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
6822 citation markers at start of each line.
6823
6824 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
6825
6826 * files.el (mode-require-final-newline): Fix previous change.
6827 (require-final-newline): Fix type label.
6828
6829 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
6830
6831 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
6832 statement in buffer (broken by 2004-11-24 change).
6833
6834 2005-04-24 Kim F. Storm <storm@cua.dk>
6835
6836 * ido.el (ido-everywhere): Save and restore old read-buffer-function
6837 and read-file-name-function values. Don't overwrite existing
6838 non-nil values if ido-mode is enabled without ido-everywhere.
6839
6840 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
6841
6842 * files.el (mode-require-final-newline): Minor doc fix.
6843
6844 2005-04-24 Eli Zaretskii <eliz@gnu.org>
6845
6846 * subr.el (syntax-after): Doc fix.
6847 (syntax-class): If argument is nil, return nil. Mask off upper 16
6848 bits, not 8 bits.
6849
6850 * files.el (mode-require-final-newline): Doc fix.
6851 (backup-buffer-copy): Fix last change.
6852
6853 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6854
6855 * term/mac-win.el: Require select. Set selection-coding-system to
6856 mac-system-coding-system. Call menu-bar-enable-clipboard.
6857 (x-last-selected-text-clipboard, x-last-selected-text-primary)
6858 (x-select-enable-clipboard): New variables.
6859 (x-select-text, x-get-selection, x-selection-value)
6860 (x-get-selection-value, mac-select-convert-to-string)
6861 (mac-services-open-file, mac-services-open-selection)
6862 (mac-services-insert-text): New functions.
6863 (CLIPBOARD, FIND): Put mac-scrap-name property.
6864 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
6865 (public.tiff): Put mac-ostype property.
6866 (selection-converter-alist): Add entries for them.
6867 (mac-application-menu-map): New keymap.
6868 (interprogram-cut-function, interprogram-paste-function): Set to
6869 x-select-text and x-get-selection-value, respectively.
6870 (split-window-keep-point): Set to t.
6871
6872 2005-04-23 Richard M. Stallman <rms@gnu.org>
6873
6874 * files.el (read-directory-name): Always pass non-nil
6875 DEFAULT-FILENAME arg to read-file-name.
6876 (backup-buffer-copy, basic-save-buffer-2): Take care against
6877 writing thru an unexpected existing symlink.
6878 (revert-buffer): In indirect buffer, revert the base buffer.
6879 (magic-mode-alist): Doc fix.
6880 (buffer-stale-function): Doc fix.
6881 (minibuffer-with-setup-hook): Avoid warning.
6882 (mode-require-final-newline): Doc and custom fix.
6883
6884 * follow.el (follow-end-of-buffer): Use with-no-warnings.
6885
6886 * font-lock.el (font-lock-comment-face): On terminals with few colors,
6887 use the default appearance.
6888 (font-lock-comment-delimiter-face): New face, new variable.
6889
6890 * imenu.el (imenu--generic-function): The official position of a
6891 definition is the start of the line that BEG is in.
6892
6893 * midnight.el (midnight-timer): Move defvar up.
6894
6895 * mouse.el (mouse-drag-region-1): Delete some debugging code.
6896
6897 * saveplace.el (save-place-to-alist): Use with-no-warnings.
6898
6899 * startup.el (command-line): Use with-no-warnings.
6900
6901 * window.el (window-size-fixed): New defvar.
6902
6903 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
6904
6905 * mail/rmail.el (rmail-font-lock-keywords):
6906 Use font-lock-comment-delimiter-face.
6907
6908 * mail/sendmail.el (mail-font-lock-keywords):
6909 Use font-lock-comment-delimiter-face.
6910
6911 * progmodes/compile.el (next-error-highlight-timer): New defvar.
6912
6913 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
6914
6915 * progmodes/compile.el (compilation-mode-font-lock-keywords):
6916 Specify t for LAXMATCH when matching directories.
6917 Save match data around compilation-compat-error-properties form.
6918
6919 2005-04-23 David Kastrup <dak@gnu.org>
6920
6921 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
6922 Mention that the autoloaded aliases should be kept for AUCTeX.
6923
6924 2005-04-23 Andreas Schwab <schwab@suse.de>
6925
6926 * isearch.el (isearch-forward): Doc fix.
6927
6928 2005-04-23 Eli Zaretskii <eliz@gnu.org>
6929
6930 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
6931 (jit-lock-stealth-nice): Change default value to 0.5.
6932
6933 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
6934
6935 * abbrev.el (write-abbrev-file): Write table entries in
6936 alphabetical order by table name.
6937
6938 2005-04-22 Kim F. Storm <storm@cua.dk>
6939
6940 * ido.el (ido-read-internal): Fix `list' completion.
6941
6942 2005-04-22 Kenichi Handa <handa@m17n.org>
6943
6944 * recentf.el (recentf-save-file-coding-system): New variable.
6945 (recentf-save-list): Encode the file by
6946 recentf-save-file-coding-system and add coding: tag.
6947
6948 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
6949
6950 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
6951
6952 2005-04-21 Lute Kamstra <lute@gnu.org>
6953
6954 * loadhist.el (unload-feature): Don't remove a function from hooks
6955 if it is about to be restored to an autoload . Remove functions
6956 that will become unbound from auto-mode-alist. Simplify the code.
6957
6958 * subr.el (assq-delete-all): New implementation that is linear,
6959 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
6960 (rassq-delete-all): New function.
6961
6962 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
6963 Add size-indication-mode.
6964
6965 2005-04-21 Kenichi Handa <handa@m17n.org>
6966
6967 * international/mule-cmds.el: Add autoload for widget-value in
6968 eval-when-compile.
6969
6970 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
6971
6972 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
6973 Add tooltip-mode.
6974
6975 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
6976
6977 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
6978
6979 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
6980 (inferior-lisp-filter-regexp, inferior-lisp-program)
6981 (inferior-lisp-load-command, inferior-lisp-prompt)
6982 (inferior-lisp-mode-hook, lisp-source-modes)
6983 (inferior-lisp-load-hook): defvar->defcustom.
6984 (inferior-lisp-program, inferior-lisp-prompt)
6985 (inferior-lisp-load-hook): Doc fixes.
6986 (inferior-lisp-install-letter-bindings): Small change in
6987 introductory comment.
6988
6989 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
6990
6991 * vc.el (vc-annotate-color-map): Change some colors so that text
6992 using them as foreground is readable on both white and black
6993 backgrounds.
6994
6995 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6996
6997 * international/mule-conf.el (translation-table-for-input):
6998 Remove redundant declaration.
6999
7000 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
7001
7002 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
7003
7004 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
7005 (tooltip-toggle-gud-tips): New function.
7006
7007 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7008
7009 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
7010 right angle brackets.
7011
7012 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
7013
7014 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
7015
7016 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
7017
7018 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
7019 Remove. Update callers to use expand-file-name instead.
7020
7021 * subr.el (syntax-class): New function.
7022
7023 * simple.el (blink-matching-open): Use it.
7024
7025 * paren.el (show-paren-function): Use it to recognize parens that are
7026 also used in 2-char comment markers.
7027
7028 2005-04-19 Lute Kamstra <lute@gnu.org>
7029
7030 * loadhist.el (unload-feature): Update for new format of
7031 load-history. Simplify the code.
7032
7033 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7034
7035 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
7036 (mac-add-charset-info): New function. Initialize variable
7037 mac-charset-info-alist using it.
7038 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
7039 for translation.
7040 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
7041 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
7042 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
7043 New CCL programs.
7044
7045 2005-04-19 Kim F. Storm <storm@cua.dk>
7046
7047 * simple.el (next-buffer, prev-buffer, next-error)
7048 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
7049 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
7050
7051 * bindings.el (next-buffer, prev-buffer, next-error)
7052 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
7053 (clone-indirect-buffer-other-window): Move bindings from simple.el.
7054 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
7055 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
7056
7057 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
7058
7059 * isearch.el (isearch-edit-string): Make the search-ring available for
7060 minibuffer history commands.
7061 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
7062 the default history commands now work just as well.
7063 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
7064
7065 2005-04-18 Kim F. Storm <storm@cua.dk>
7066
7067 * emulation/cua-base.el (cua--pre-command-handler): Add more
7068 elaborate check for shift modifier on non-window systems.
7069
7070 2005-04-18 Lars Hansen <larsh@math.ku.dk>
7071
7072 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
7073
7074 2005-04-18 Kim F. Storm <storm@cua.dk>
7075
7076 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
7077 and make it optional. Don't test tooltip-gud-echo-area here.
7078 (tooltip-gud-process-output, gdb-tooltip-print):
7079 Pass tooltip-gud-echo-area to tooltip-show.
7080 (tooltip-help-tips): Remove second optional arg to tooltip-show.
7081
7082 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7083
7084 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
7085 `display-graphic-p' may not be bound yet.
7086
7087 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
7088
7089 * startup.el (command-line): No longer enable Xterm Mouse mode by
7090 default in terminals compatible with xterm.
7091
7092 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
7093
7094 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
7095
7096 * tooltip.el (tooltip-gud-echo-area): Rename from
7097 tooltip-use-echo-area.
7098 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
7099 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
7100 area independently of where help tooltips are displayed.
7101
7102 2005-04-17 David Kastrup <dak@gnu.org>
7103
7104 * cus-theme.el (custom-theme-write-variables): Quote variables
7105 where necessary.
7106
7107 2005-04-17 Richard M. Stallman <rms@gnu.org>
7108
7109 * simple.el (yank-excluded-properties): Add follow-link to value.
7110
7111 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
7112
7113 * startup.el (fancy-splash-max-time): Just 30 seconds.
7114 (fancy-splash-delay): Just 7.
7115 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
7116
7117 * loadhist.el (unload-feature): Update for new format of load-history.
7118 Simplify the code.
7119
7120 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
7121 (rmail-font-lock-keywords): Don't fontify the text of a citation.
7122
7123 * mail/sendmail.el (mail-font-lock-keywords):
7124 Don't fontify subject text.
7125 Don't fontify the text of a citation.
7126
7127 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
7128
7129 * comint.el (comint-output-filter): Run comint-output-filter-functions
7130 with point where the user had it.
7131
7132 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
7133
7134 * international/ucs-tables.el (ucs-set-table-for-input):
7135 Disable when using unify-on-decoding.
7136
7137 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
7138
7139 * emulation/cua-base.el (cua-global-mark-face): Add special case
7140 for displays supporting a high number of colors.
7141
7142 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
7143
7144 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
7145
7146 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
7147
7148 * filesets.el (filesets-add-buffer): If user supplies a name of a
7149 non-existing fileset, create a new fileset.
7150
7151 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
7152
7153 * textmodes/org.el (org-up-heading-all): Fix bug with
7154 `outline-up-heading-all'.
7155
7156 2005-04-16 Andreas Schwab <schwab@suse.de>
7157
7158 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
7159 /etc/permissions.d/* and /etc/aliases.d/*.
7160
7161 2005-04-16 Kenichi Handa <handa@m17n.org>
7162
7163 * international/code-pages.el (cp-make-coding-system):
7164 Set `translation-table-for-input' property value to the symbol
7165 ucs-mule-to-mule-unicode, not to that value.
7166 (pt154): Escape guillemet by `\'.
7167
7168 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
7169
7170 * loadup.el: Load tooltip if x-show-tip is fboundp.
7171
7172 * startup.el (command-line): Add comment.
7173
7174 * tooltip.el (tooltip-mode): Specify correct standard value for
7175 Custom in init-value.
7176
7177 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
7178
7179 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
7180 possible.
7181
7182 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
7183
7184 * textmodes/org.el (org-agenda-date-prompt): Rename from
7185 `org-agenda-date-today'.
7186 (org-evaluate-time-range): Insert at point instead of directly
7187 after time range.
7188 (org-first-headline-recenter, org-subtree-end-visible-p)
7189 (org-optimize-window-after-visibility-change): New functions
7190 (org-agenda-post-command-hook): Don't allow point at end of line,
7191 to make sure it always hits the text properties.
7192 (org-agenda-next-date-line, org-agenda-previous-date-line):
7193 New commands.
7194 (org-set-regexps-and-options): Category may contain white space.
7195 (org-agenda-get-deadlines, org-agenda-get-scheduled):
7196 Improve marker positions.
7197 (org-agenda-new-marker): Argument POS made optional.
7198 (org-agenda-get-timestamps): Deadlines which are done are listed
7199 in org-done-face now.
7200 (org-agenda-get-todos, org-agenda-get-timestamps)
7201 (org-agenda-get-deadlines, org-agenda-get-scheduled):
7202 Set `undone-face' and `done-face' properties.
7203 (org-last-todo-state-is-todo): New variable.
7204 (org-todo): Set `org-last-todo-state-is-todo'.
7205 (org-agenda-todo): Change face according to
7206 `org-last-todo-state-is-todo'. And change other lines referring to
7207 the same entry.
7208 (org-calendar-goto-agenda): New command.
7209 (org-calendar-to-agenda-key): New option.
7210 (org-startup-folded): New allowed value `content'.
7211 (org-set-regexps-and-options): Accept new value `content' for
7212 `org-startup-folded'.
7213 (org-get-current-options): Handle new value `content' for
7214 `org-startup-folded'.
7215 (org-insert-todo-heading): New command.
7216 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
7217 interactively in empty file and option
7218 `org-insert-mode-line-in-empty-file' has been set.
7219 (org-agenda-todo,org-agenda-priority): Modify to use
7220 `org-agenda-change-all-lines'.
7221 (org-warning-face): Change color on dark background
7222
7223 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7224
7225 * international/mule-cmds.el (set-locale-environment): On Mac OS,
7226 use preferences AppleLocale and AppleLanguages, and variable
7227 mac-system-locale for default locale. On Mac OS Classic, use
7228 mac-system-coding-system for default coding systems.
7229
7230 * term/mac-win.el: Don't set file-name-coding-system.
7231 Decode variables system-name, emacs-build-system, user-login-name, and
7232 user-full-name by mac-system-coding-system on Mac OS Classic.
7233 (mac-system-coding-system): New variable.
7234
7235 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
7236
7237 * startup.el (command-line): Handle `xterm-mouse-mode' before
7238 reading init file.
7239
7240 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
7241
7242 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
7243
7244 * progmodes/sh-script.el (sh-here-document-word): Make it a
7245 defcustom. Doc fix.
7246 (sh-add): Bash uses $(( )) for arithmetic.
7247 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
7248 (sh-maybe-here-document): Remove quotes and leading whitespace
7249 from heredoc word when closing. Indent heredoc with tabs if word
7250 starts with "-".
7251
7252 2005-04-13 Richard M. Stallman <rms@gnu.org>
7253
7254 * simple.el (undo): Fix previous change.
7255
7256 * custom.el (defface): Doc fix.
7257
7258 2005-04-13 Lute Kamstra <lute@gnu.org>
7259
7260 * Makefile.in (DONTCOMPILE): Remove list.
7261 (compile, compile-always): Don't use DONTCOMPILE.
7262 (update-authors): Load the library in which batch-update-authors
7263 is defined.
7264 * makefile.w32-in (DONTCOMPILE): Remove list.
7265 (compile, compile-always): Fix comments.
7266 (update-authors): Load the library in which batch-update-authors
7267 is defined.
7268
7269 * generic-x.el (generic-mode-ini-file-find-file-hook):
7270 Rename to ini-generic-mode-find-file-hook.
7271 Keep generic-mode-ini-file-find-file-hook as an alias.
7272 (ini-generic-mode-find-file-hook): Rename from
7273 generic-mode-ini-file-find-file-hook. Fix docstring.
7274 (ini-generic-mode): Docstring change.
7275 (bat-generic-mode-run-as-comint): Silence the byte compiler.
7276
7277 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
7278 called from lisp.
7279
7280 * generic.el: Move to the emacs-lisp subdir.
7281
7282 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
7283
7284 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
7285 and C-S- function and cursor motion keys.
7286
7287 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
7288
7289 * startup.el (command-line): Enable Xterm Mouse mode by default.
7290 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
7291 for Custom. No longer show "Mouse" in mode line when enabled.
7292 Doc fix.
7293
7294 2005-04-12 Kim F. Storm <storm@cua.dk>
7295
7296 * emulation/cua-base.el (cua-rectangle-face)
7297 (cua-rectangle-noselect-face): Define face attributes here.
7298
7299 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
7300
7301 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7302
7303 * startup.el (command-line): Turn off blinking cursor if
7304 cursorBlink in resources is off or false.
7305
7306 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7307
7308 * term/mac-win.el (dnd): Require dnd.
7309 (mac-drag-n-drop): Call dnd-handle-one-url.
7310 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
7311 (kTextEncodingISOLatin2): Remove constants.
7312 (mac-script-code-coding-systems): New constant.
7313 (mac-handle-language-change): New function.
7314 (special-event-map): Bind it to `language-change' event.
7315 (mac-centraleurroman, mac-cyrillic): New coding systems.
7316 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
7317 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
7318 and mac-cyrillic-encoder to encode-mac-centraleurroman and
7319 encode-mac-cyrillic, respectively.
7320
7321 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
7322
7323 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
7324 Don't set overlay-arrow-string to "=>" as this is done
7325 globally in C now.
7326
7327 2005-04-12 Lute Kamstra <lute@gnu.org>
7328
7329 * generic-x.el (rc-generic-mode, rul-generic-mode):
7330 Fix auto-mode-alist entries.
7331 (etc-fstab-generic-mode): Tweak fontification.
7332
7333 * generic.el (generic-make-keywords-list): Fix docstring.
7334 (generic-mode-internal): Simplify generic-font-lock-keywords.
7335
7336 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
7337
7338 * whitespace.el (whitespace-buffer-leading)
7339 (whitespace-buffer-trailing): Revert the incorrect test inversion.
7340 However, fix the highlight area for the leading and
7341 trailing whitespaces to show space.
7342
7343 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
7344
7345 * whitespace.el (whitespace-version): Bump to 3.5
7346
7347 (whitespace-buffer-leading, whitespace-buffer-trailing):
7348 Invert sense of the test to highlight the whitespace.
7349
7350 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
7351
7352 * progmodes/gud.el (gud-display-line): GUD uses its own
7353 overlay arrow now so don't set overlay-arrow-string.
7354 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
7355
7356 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
7357
7358 * term.el (term-ansi-current-bold, term-ansi-current-underline)
7359 (term-ansi-current-reverse, term-ansi-current-invisible)
7360 (term-ansi-face-already-done): Change to boolean.
7361 (term-reset-terminal, term-handle-colors-array): Handle the above
7362 vars accordingly.
7363 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
7364 (term-emulate-terminal): Use the new name.
7365
7366 * faces.el (secondary-selection): Use yellow1, not yellow.
7367 (trailing-whitespace): Use red1, not red.
7368
7369 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7370
7371 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
7372 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
7373 (dired-dnd-handle-file): Call dnd-get-local-file-uri
7374
7375 * cus-edit.el (dnd): New group.
7376
7377 * term/w32-win.el (dnd): Require dnd
7378 (w32-drag-n-drop): Call dnd-handle-one-url.
7379
7380 * x-dnd.el: Require dnd.
7381 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
7382 Call dnd-handle-one-url.
7383 (x-dnd-types-alist, x-dnd-insert-utf8-text)
7384 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
7385 to dnd-insert-text.
7386 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
7387 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
7388 (x-dnd-get-local-file-name, x-dnd-open-local-file)
7389 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
7390
7391 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
7392
7393 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
7394
7395 * wdired.el: Doc fixes.
7396 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
7397 (wdired-use-dired-vertical-movement): Rename from
7398 wdired-always-move-to-filename-beginning.
7399 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
7400 (wdired-change-to-wdired-mode): Change mode name.
7401 (wdired-newline): Delete.
7402
7403 2005-04-11 Richard M. Stallman <rms@gnu.org>
7404
7405 * whitespace.el (whitespace-highlight-the-space):
7406 Don't call whitespace-unhighlight-the-space here.
7407
7408 * simple.el (undo): Record t in undo-equiv-table
7409 for the redo record made by an undo-in-region.
7410
7411 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
7412
7413 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
7414 (gdb-frame-inferior-io-buffer): New Functions to control
7415 display of separate IO buffer.
7416 (menu): Add them to menu-bar.
7417 (gdb-display-buffer): Check for buffer another frame.
7418 Protect GUD buffer.
7419 (gdb-setup-windows): Create IO buffer if not already there.
7420 (gdb-memory-mode): Remove purecopy noops.
7421
7422 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
7423
7424 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
7425 and pass to self-insert-command.
7426
7427 2005-04-11 Lute Kamstra <lute@gnu.org>
7428
7429 * generic.el: Commentary section cleanup.
7430 (generic): Delete.
7431 (generic-use-find-file-hook, generic-lines-to-scan)
7432 (generic-find-file-regexp, generic-ignore-files-regexp)
7433 (default-generic-mode, generic-mode-find-file-hook)
7434 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
7435 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
7436 (generic-use-find-file-hook, generic-lines-to-scan)
7437 (generic-find-file-regexp, generic-ignore-files-regexp)
7438 (default-generic-mode, generic-mode-find-file-hook)
7439 (generic-mode-ini-file-find-file-hook): Move from generic.el.
7440
7441 2005-04-10 Karl Fogel <kfogel@red-bean.com>
7442
7443 * bookmark.el (bookmark-write-file): Catch errors writing file.
7444 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
7445
7446 2005-04-10 Richard M. Stallman <rms@gnu.org>
7447
7448 * startup.el (fancy-splash-tail): Update copyright year.
7449 (command-line): Split part of -Q into -D.
7450 (emacs-basic-display): New defvar.
7451 (fancy-splash-text): Correct name of menu item.
7452
7453 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
7454
7455 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
7456 lines in one node.
7457
7458 * comint.el (comint-send-input): New arg ARTIFICIAL.
7459 Callers in this file changed.
7460
7461 * abbrev.el (define-abbrevs): Read system abbrevs properly.
7462
7463 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
7464
7465 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
7466
7467 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
7468 `ldap-search-internal'.
7469
7470 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
7471
7472 * files.el (set-auto-mode-1): Use line-end-position.
7473
7474 * international/latin-1.el:
7475 * international/latin-2.el:
7476 * international/latin-3.el:
7477 * international/latin-4.el:
7478 * international/latin-5.el:
7479 * international/latin-8.el:
7480 * international/latin-9.el: Give punctuation syntax to NBSP.
7481
7482 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
7483 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
7484 Use char-classes to accept non-ascii letters, accepted in some recent
7485 bibtex implementations.
7486
7487 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
7488
7489 * custom.el (custom-set-minor-mode): Any non-nil value for the
7490 variable should enable the mode when set through Custom.
7491
7492 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
7493
7494 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
7495 TAB binding so tab-always-indent is obeyed.
7496 (vhdl-minibuffer-local-map): Move initialization into declaration.
7497 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
7498 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
7499 (vhdl-hooked-abbrev): Avoid test for XEmacs.
7500 (vhdl-current-line): Use line-beginning-position.
7501 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
7502 with-output-to-temp-buffer, so the current position can be recorded.
7503
7504 2005-04-10 Masatake YAMATO <jet@gyve.org>
7505
7506 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7507 Add regexp for gcov.
7508
7509 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
7510
7511 * calendar/time-date.el (time-to-seconds, seconds-to-time)
7512 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
7513 syntax which Emacs 20 doesn't support.
7514
7515 2005-04-09 Richard M. Stallman <rms@gnu.org>
7516
7517 * help.el (describe-key-briefly, describe-key):
7518 Replace strings as event types with "(any string)".
7519
7520 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
7521
7522 * arc-mode.el (archive-mode-map): Move initialization into
7523 the declaration. Override *all* bindings of `undo'.
7524 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
7525
7526 2005-04-09 Jay Belanger <belanger@truman.edu>
7527
7528 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
7529
7530 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
7531
7532 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
7533 (xterm-register-default-colors): Update color values computation
7534 to match xterm-200.
7535
7536 2005-04-09 Kenichi Handa <handa@m17n.org>
7537
7538 * international/code-pages.el (iso-latin-7): Fix the map.
7539
7540 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
7541
7542 * emacs-lisp/lisp.el (defun-prompt-regexp)
7543 (parens-require-spaces, buffer-end, end-of-defun)
7544 (insert-parentheses): Doc fixes.
7545
7546 2005-04-08 Kim F. Storm <storm@cua.dk>
7547
7548 * comint.el (comint-highlight-prompt): Fix face spec.
7549 * hi-lock.el (hi-green): Likewise.
7550
7551 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
7552
7553 * cus-edit.el (custom-modified-face):
7554 * comint.el (comint-highlight-input): Fix previous changes.
7555 * term.el (term-handle-ansi-escape): Add a comment.
7556
7557 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
7558
7559 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
7560 in the buffer and in whitespace-highlighted-space.
7561 (whitespace-unhighlight-the-space): Simplify.
7562 (whitespace-buffer): Simplify.
7563
7564 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
7565
7566 * textmodes/table.el (table-cell-face): Add special case for
7567 displays supporting a high number of colors.
7568 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
7569 (vhdl-font-lock-reserved-words-face)
7570 (vhdl-speedbar-architecture-face)
7571 (vhdl-speedbar-instantiation-face)
7572 (vhdl-speedbar-architecture-selected-face)
7573 (vhdl-speedbar-instantiation-selected-face): Likewise.
7574 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
7575 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
7576 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
7577 (ebrowse-root-class-face, ebrowse-member-attribute-face)
7578 (ebrowse-progress-face): Likewise.
7579 * progmodes/compile.el (compilation-info-face): Likewise.
7580 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
7581 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
7582 * calendar/calendar.el (diary-face): Likewise.
7583 * woman.el (woman-italic-face, woman-bold-face)
7584 (woman-unknown-face): Likewise.
7585 * wid-edit.el (widget-button-pressed-face): Likewise.
7586 * whitespace.el (whitespace-highlight-face): Likewise.
7587 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
7588 * pcvs-info.el (cvs-marked-face): Likewise.
7589 * info.el (info-xref): Likewise.
7590 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
7591 * hilit-chg.el (highlight-changes-face)
7592 (highlight-changes-delete-face): Likewise.
7593 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
7594 (hi-red-b): Likewise.
7595 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
7596 * font-lock.el (font-lock-keyword-face)
7597 (font-lock-function-name-face, font-lock-warning-face): Likewise.
7598 * cus-edit.el (custom-invalid-face, custom-modified-face)
7599 (custom-set-face, custom-changed-face, custom-variable-tag-face)
7600 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
7601 * comint.el (comint-highlight-prompt): Likewise.
7602
7603 2005-04-08 Lute Kamstra <lute@gnu.org>
7604
7605 * font-lock.el (font-lock-keywords): Docstring fixes.
7606
7607 2005-04-08 Kenichi Handa <handa@m17n.org>
7608
7609 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
7610 chars are more than a limit, print " and more..." at the tail.
7611
7612 2005-04-08 Kim F. Storm <storm@cua.dk>
7613
7614 * emacs-lisp/authors.el (authors-aliases): Update list.
7615 (authors-ignored-files): New list.
7616 (authors-fixed-entries): Fix typo.
7617 (authors-renamed-files-alist): Update list.
7618 (authors-add): Check authors-ignored-files.
7619
7620 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
7621
7622 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
7623 optional, to ensure backward compatibility.
7624
7625 2005-04-08 Stephen Eglen <stephen@gnu.org>
7626
7627 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
7628
7629 2005-04-08 Kim F. Storm <storm@cua.dk>
7630
7631 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
7632
7633 * mouse.el (mouse-on-link-p): Doc fix.
7634
7635 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
7636
7637 * ielm.el (ielm-prompt-read-only): Doc fix.
7638
7639 * comint.el (comint-prompt-read-only): Doc fix.
7640
7641 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
7642
7643 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
7644 ensure dired always handles wildcards passed to ffap.
7645 (find-file-at-point): Use it.
7646 (ffap-dired-wildcards): Doc fix.
7647
7648 2005-04-07 Juri Linkov <juri@jurta.org>
7649
7650 * simple.el (next-error-overlay-arrow-position): New defvar.
7651 Put "=>" on its property `overlay-arrow-string'. Add it to
7652 `overlay-arrow-variable-list'.
7653
7654 * progmodes/compile.el (compilation-setup):
7655 Set `next-error-overlay-arrow-position' to nil. Also set it to
7656 nil in the local hook `kill-buffer-hook'. Make local variable
7657 `overlay-arrow-string' and set it to "=>".
7658 (compilation-goto-locus): Set BOL position to
7659 `next-error-overlay-arrow-position' instead of
7660 `overlay-arrow-position'.
7661
7662 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
7663 locally instead of adding it to the global hook.
7664 (Info-kill-buffer): Move up.
7665
7666 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
7667
7668 * term/xterm.el (xterm-standard-colors): Update color values from
7669 xterm-200.
7670
7671 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
7672
7673 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
7674
7675 * fast-lock.el:
7676 * lazy-lock.el: Move them to the obsolete subdir.
7677
7678 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
7679
7680 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
7681 (wdired-add-replace-advice): Remove.
7682 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
7683
7684 2005-04-06 Kim F. Storm <storm@cua.dk>
7685
7686 * startup.el (command-line): Add --bare-bones alias for -Q.
7687
7688 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7689
7690 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
7691 create the startup fontset if a font specification ends with
7692 `mac-roman'.
7693
7694 2005-04-06 Lute Kamstra <lute@gnu.org>
7695
7696 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
7697 change.
7698
7699 * emacs-lisp/copyright.el (copyright-update-year): Replace the
7700 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
7701
7702 2005-04-05 Lute Kamstra <lute@gnu.org>
7703
7704 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
7705 (define-generic-mode): Ditto. Fix debug declaration.
7706
7707 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
7708 Put them in the generic-x group.
7709
7710 * calendar/timeclock.el (timeclock): Doc fix.
7711
7712 * generic.el (define-generic-mode): Don't use custom-current-group.
7713 Document default :group value.
7714 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
7715 (define-global-minor-mode): Don't use custom-current-group.
7716
7717 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
7718
7719 * startup.el (command-line-1): Display startup-echo-area-message
7720 when fancy splash screen is in use.
7721
7722 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
7723 (sh-escaped-newline): New face.
7724 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
7725 newline, and use sh-escaped-newline face.
7726
7727 * progmodes/tcl.el (tcl-escaped-newline): New face.
7728 (tcl-builtin-list): New variable.
7729 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
7730 newlines. Fix keywords subexpression number.
7731
7732 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
7733
7734 * textmodes/org.el (org-diary-default-entry): Fix call to
7735 `add-to-diary-entry'.
7736
7737 2005-04-05 Kim F. Storm <storm@cua.dk>
7738
7739 * ediff-init.el: Use (featurep 'xemacs).
7740
7741 2005-04-05 David Ponce <david@dponce.com>
7742
7743 * cus-edit.el (face): Derive from symbol widget. Display sample
7744 of the current face on the fly.
7745 (widget-face-sample-face-get, widget-face-notify): New functions.
7746 (widget-face-value-create): Remove.
7747
7748 * wid-edit.el (widget-field-end): Temporarily remove field
7749 narrowing before to call `get-char-property'.
7750
7751 2005-04-04 Jay Belanger <belanger@truman.edu>
7752
7753 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
7754 (math-read-subscripts): New variable.
7755 (math-read-preprocess-string): Process subscripts.
7756
7757 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
7758
7759 * comint.el (comint-prompt-read-only): Doc fix.
7760
7761 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
7762 `-1'. Doc fix.
7763
7764 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
7765
7766 * textmodes/org.el (org-insert-mode-line-in-empty-file):
7767 Change default value to nil.
7768
7769 2005-04-04 Lute Kamstra <lute@gnu.org>
7770
7771 * autorevert.el (auto-revert-mode): Specify :group.
7772 * battery.el (display-battery-mode): Specify :group.
7773 * diff-mode.el (diff-minor-mode): Specify :group.
7774 * font-core.el (font-lock-mode): Specify :group.
7775 * hl-line.el (hl-line-mode): Specify :group.
7776 * iimage.el (iimage): New customization group.
7777 (iimage-mode): Specify :group.
7778 * longlines.el (longlines-mode): Specify :group.
7779 * master.el: Don't require easy-mmode.
7780 (master): New customization group.
7781 (master-mode): Specify :group.
7782 * msb.el (msb-mode): Specify :group.
7783 * reveal.el (reveal-mode): Specify :group.
7784 * simple.el (next-error-follow-minor-mode): Specify :group.
7785 * smerge-mode.el (smerge-mode): Specify :group.
7786 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
7787 * emulation/cua-base.el (cua-mode): Specify :group.
7788 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
7789 * language/thai-util.el (thai-auto-composition-mode)
7790 (thai-word-mode): Specify :group.
7791 * mail/supercite.el (sc-minor-mode): Specify :group.
7792 * progmodes/cwarn.el (cwarn-mode): Specify :group.
7793 * progmodes/flymake.el (flymake-mode): Specify :group.
7794 * progmodes/glasses.el (glasses-mode): Specify :group.
7795 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
7796 * textmodes/enriched.el (enriched-mode): Specify :group.
7797 * textmodes/refill.el (refill-mode): Specify :group.
7798
7799 * add-log.el (change-log-font-lock-keywords): Names in
7800 parenthesized lists can contain spaces.
7801
7802 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
7803
7804 * startup.el (fancy-splash-text): Shorten default text of
7805 "Emacs Tutorial" line. Also, if the current language env
7806 indicates an available tutorial file other than TUTORIAL,
7807 extract its title and append it to the line in parentheses.
7808 (fancy-splash-insert): If arg is a thunk, funcall it.
7809
7810 2005-04-04 Jay Belanger <belanger@truman.edu>
7811
7812 * calc.el (calc-language-alist): Add tags to customization type.
7813
7814 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
7815
7816 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
7817 Doc fix.
7818
7819 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
7820
7821 * add-log.el (change-log-font-lock-keywords): The manual
7822 describing a Change Log entry, says: (...) "Aside from these
7823 header lines, every line in the change log starts with a space or
7824 a tab.". The font-lock was not highlighting lines started with
7825 spaces, added support for it.
7826
7827 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7828
7829 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
7830 (bibtex-generate-url-list): Update docstring accordingly. Put the
7831 complex example in the docstring.
7832 (bibtex-font-lock-url): Use pop.
7833
7834 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
7835
7836 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
7837
7838 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
7839
7840 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
7841
7842 * filesets.el (filesets-set-default): Doc fix.
7843
7844 2005-04-03 Lute Kamstra <lute@gnu.org>
7845
7846 * generic.el (define-generic-mode): Add argument to specify
7847 keywords for defcustom.
7848 (default-generic-mode): Specify :group.
7849
7850 * generic-x.el: Specify :group for all generic modes.
7851
7852 * desktop.el (desktop-no-desktop-file-hook)
7853 (desktop-after-read-hook): Doc fix.
7854
7855 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
7856
7857 * simple.el (visible-mode): Use explicit :group keyword.
7858 This changes the group of `visible-mode-hook' from paren-blinking
7859 to editing-basics.
7860
7861 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
7862
7863 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
7864 mailbox specifications as well as URLs.
7865 (rmail-insert-inbox-text): Remove unused conditional branches.
7866
7867 2005-04-01 Jay Belanger <belanger@truman.edu>
7868
7869 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
7870 (calc-gnuplot-print-command): Move definitions to calc.el.
7871
7872 * calc/calc-embed.el (calc-embedded-announce-formula)
7873 (calc-embedded-open-formula, calc-embedded-close-formula)
7874 (calc-embedded-open-word, calc-embedded-close-word)
7875 (calc-embedded-open-plain, calc-embedded-close-plain)
7876 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
7877 (calc-embedded-open-mode, calc-embedded-close-mode):
7878 Move definitions to calc.el.
7879
7880 * calc/calc.el (calc-settings-file, calc-language-alist):
7881 Make customizable.
7882 (calc-embedded-announce-formula, calc-embedded-open-formula)
7883 (calc-embedded-close-formula, calc-embedded-open-word)
7884 (calc-embedded-close-word, calc-embedded-open-plain)
7885 (calc-embedded-close-plain, calc-embedded-open-new-formula)
7886 (calc-embedded-close-new-formula, calc-embedded-open-mode)
7887 (calc-embedded-close-mode, calc-gnuplot-name)
7888 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
7889 from other files and make customizable.
7890
7891 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
7892
7893 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
7894 Use buffer-live-p.
7895 (cvs-mode-run): Don't call cvs-update-header here.
7896 (cvs-run-process): Call cvs-update-header.
7897 Use process properties for cvs-postprocess and cvs-buffer so that
7898 the sentinel can behave better if the temp buffer is killed.
7899 Use a pipe rather than a tty, to better handle unexpected prompts.
7900 (cvs-sentinel): Rewrite. Call cvs-update-header.
7901
7902 2005-04-01 Andre Spiegel <spiegel@gnu.org>
7903
7904 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
7905 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
7906
7907 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
7908
7909 * generic.el (define-generic-mode): Add indentation rule.
7910
7911 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
7912
7913 * files.el (mode-require-final-newline): Make Custom correctly
7914 report a nil value and allow to set it to nil via Custom.
7915 Doc fix.
7916
7917 2005-04-01 Kenichi Handa <handa@m17n.org>
7918
7919 * international/characters.el: Enable the correct case setting for
7920 dotless-i and dotted-I.
7921
7922 2005-04-01 Kim F. Storm <storm@cua.dk>
7923
7924 * ido.el (ido-file-internal): Fall back to non-ido command if
7925 initial directory is on slow ftp (or tramp) host.
7926
7927 2005-03-31 Richard M. Stallman <rms@gnu.org>
7928
7929 * emacs-lisp/autoload.el (make-autoload):
7930 Handle define-global-minor-mode.
7931
7932 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
7933 Rename from easy-mmode-define-global-mode.
7934 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
7935
7936 * progmodes/scheme.el (scheme-mode-syntax-table):
7937 Update syntax of | and # for two-character comment syntax.
7938
7939 2005-03-31 Lute Kamstra <lute@gnu.org>
7940
7941 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
7942 (define-minor-mode): Call custom-current-group at load-time.
7943
7944 * generic.el (define-generic-mode): Add debug declaration.
7945 Add defcustom for the mode hook.
7946 (generic-mode-internal): Use run-mode-hooks.
7947
7948 2005-03-31 Kim F. Storm <storm@cua.dk>
7949
7950 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
7951 (mouse-fixup-help-message): New defun called by show_help_echo
7952 to fixup mouse-2 prefix in help messages when applicable.
7953
7954 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
7955
7956 2005-03-31 Kenichi Handa <handa@m17n.org>
7957
7958 * language/thai-word.el (thai-find-word-ends): Pay attention to
7959 the case that we reach the end of buffer.
7960
7961 * textmodes/fill.el (fill-text-properties-at): New function.
7962 (fill-newline): Use fill-text-properties-at instead of
7963 text-properties-at.
7964
7965 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
7966
7967 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
7968 not comint-quote-filename.
7969
7970 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
7971
7972 * help-fns.el (help-with-tutorial): Revert last change.
7973
7974 2005-03-31 Kim F. Storm <storm@cua.dk>
7975
7976 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
7977
7978 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
7979
7980 * calendar/cal-china.el: Update reference to "Calendrical
7981 Calculations" book; there's a new edition.
7982 * calendar/cal-coptic.el: Likewise.
7983 * calendar/cal-french.el: Likewise.
7984 * calendar/cal-hebrew.el: Likewise.
7985 * calendar/cal-islam.el: Likewise.
7986 * calendar/cal-iso.el: Likewise.
7987 * calendar/cal-julian.el: Likewise.
7988 * calendar/cal-mayan.el: Likewise.
7989 * calendar/cal-persia.el: Likewise.
7990 * calendar/calendar.el: Likewise.
7991 * calendar/holidays.el: Likewise.
7992 * calendar/lunar.el: Likewise.
7993 * calendar/solar.el: Likewise.
7994
7995 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
7996 white space from doc string.
7997
7998 2005-03-30 Jay Belanger <belanger@truman.edu>
7999
8000 * calc/calc-help.el (calc-full-help): Remove email address.
8001
8002 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
8003
8004 * help-fns.el (help-with-tutorial): Delete title line.
8005
8006 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
8007
8008 * calendar/cal-x.el (calendar-one-frame-setup)
8009 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
8010 rather than 'symbol for set-window-dedicated-p.
8011
8012 * calendar/appt.el (appt-buffer-name): Make it a constant.
8013 (appt-add): Doc fix.
8014
8015 * filesets.el (filesets-menu-path, filesets-menu-before)
8016 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
8017 (filesets-menu-cache-file): Use directory ~/.emacs.d.
8018 (filesets-add-submenu): Delete and use add-submenu instead.
8019
8020 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
8021
8022 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
8023 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
8024 (org-diary-default-entry): New function.
8025 (org-get-entries-from-diary): Better parsing of diary entries.
8026 (org-agenda-check-no-diary): New function.
8027 ("diary-lib"): Advice to function `add-to-diary-list', to allow
8028 linking to diary entries.
8029 (org-agenda-execute-calendar-command): New function.
8030 (org-agenda): Improve visible section in window.
8031 Use `org-fit-agenda-window'.
8032 (org-fit-agenda-window): New option.
8033 (org-move-subtree-down): Better handling of empty lines
8034 at end of subtree.
8035 (org-cycle): Numeric prefix is interpreted now as show-subtree N
8036 levels up.
8037 (org-fontify-done-headline): New option.
8038 (org-headline-done-face): New face.
8039 (org-set-font-lock-defaults): Use `org-headline-done-face'.
8040 (org-table-copy-down): Rename from `org-table-copy-from-above'.
8041 When current field is non-empty, it is copied to next row.
8042 (org-table-copy-from-above): Fix bug which made it
8043 impossible to copy fields containing only a single non-white character.
8044
8045 2005-03-30 Kim F. Storm <storm@cua.dk>
8046
8047 * kmacro.el (kmacro-end-macro): Isearch may store this command
8048 into the macro -- so ignore it when executing keyboard macro.
8049
8050 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
8051
8052 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
8053
8054 2005-03-29 Kenichi Handa <handa@m17n.org>
8055
8056 * language/thai.el ("Thai"): Set setup-function and exit-function
8057 for Thai language environment.
8058
8059 * language/thai-util.el: Require thai-word.
8060 (thai-word-mode-map): New variable.
8061 (thai-word-mode): New minor mode.
8062 (setup-thai-language-environment-internal): New function.
8063 (exit-thai-language-environment-internal): New function.
8064
8065 * language/thai-word.el (thai-word-table): Declare it by defvar,
8066 use dolist to initialize it.
8067 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
8068 (thai-fill-find-break-point): New functions.
8069
8070 2005-03-29 Richard M. Stallman <rms@gnu.org>
8071
8072 * simple.el (idle-update-delay): Move definition up.
8073 (set-mark): Doc fix.
8074
8075 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
8076
8077 * longlines.el: New file.
8078
8079 * simple.el (buffer-substring-filters): New variable.
8080 (filter-buffer-substring): New function.
8081 (kill-region, copy-region-as-kill): Use it.
8082
8083 * register.el (copy-to-register, append-to-register)
8084 (prepend-to-register): Use filter-buffer-substring.
8085
8086 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
8087
8088 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
8089 (gud-filter-pending-text): Move in front of gdb.
8090 (gud-overlay-arrow-position): New variable.
8091 (gud-sentinel, gud-display-line): Use it in place of
8092 overlay-arrow-position.
8093
8094 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
8095
8096 * progmodes/fortran.el (fortran-if-indent): Doc fix.
8097 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
8098 (fortran-font-lock-keywords-4): New variable.
8099 (fortran-blocks-re, fortran-end-block-re)
8100 (fortran-start-block-re): New constants, for hideshow.
8101 (hs-special-modes-alist): Add a Fortran entry.
8102 (fortran-mode-map): Bind fortran-end-of-block,
8103 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
8104 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
8105 (fortran-looking-at-if-then, fortran-end-of-block)
8106 (fortran-beginning-of-block): New functions, for hideshow.
8107
8108 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
8109 Doc fix. Tweak regexp.
8110 (f90-beginning-of-block): Push mark first.
8111
8112 2005-03-29 Jay Belanger <belanger@truman.edu>
8113
8114 * calc/calc.el: Update copyright date.
8115 (calc-version): Increase to 2.1.
8116 (calc-version-date): Remove.
8117
8118 * calc/calc-help.el: Update copyright date.
8119 (calc-full-help): Remove reference to calc-version-date.
8120 Update copyright date.
8121
8122 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
8123
8124 * vc.el (vc-do-command): Use a pipe for async processes, so password
8125 prompts don't show up at places where the user can't reply.
8126
8127 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
8128
8129 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
8130 on the file name we pass to the inferior shell.
8131
8132 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
8133
8134 * progmodes/which-func.el (which-function): Be robust in the face of an
8135 imenu--make-index-alist failure.
8136
8137 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
8138
8139 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
8140
8141 * progmodes/python.el (python-preoutput-filter): Fix last change.
8142
8143 2005-03-29 Lute Kamstra <lute@gnu.org>
8144
8145 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
8146 functions and compiled macros.
8147 (debug-convert-byte-code): Handle macros too.
8148 (debug-on-entry-1): Don't signal an error when trying to clear a
8149 function that is not set to debug on entry.
8150
8151 2005-03-29 Jay Belanger <belanger@truman.edu>
8152
8153 * calc/calc-lang.el: Add functions to math-function-table
8154 properties of tex and math.
8155
8156 2005-03-29 Kenichi Handa <handa@m17n.org>
8157
8158 * ps-mule.el (ps-mule-plot-string): Translate characters by
8159 ps-print-translation-table.
8160 (ps-mule-begin-job): Call find-charset-region/string with
8161 ps-print-translation-table.
8162 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
8163
8164 * ps-print.el (ps-print-translation-table): New variable.
8165 (ps-plot-region): Translate characters by ps-print-translation-table.
8166
8167 2005-03-29 Juri Linkov <juri@jurta.org>
8168
8169 * simple.el (next-error-highlight-timer): New variable.
8170
8171 * progmodes/compile.el (compilation-goto-locus):
8172 Use `next-error-highlight-timer' instead of `sit-for'.
8173
8174 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8175
8176 * mail/supercite.el (sc-mail-field): Use assoc-string.
8177 (sc-get-address): Simplify regexps.
8178
8179 * files.el (minibuffer-with-setup-hook): New macro.
8180 (find-file-read-args): Use it to avoid let-binding
8181 minibuffer-with-setup-hook (which breaks turning on/off
8182 file-name-shadow-mode while in the prompt).
8183
8184 * complete.el (PC-read-include-file-name-internal): Use
8185 test-completion.
8186
8187 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
8188
8189 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
8190
8191 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8192
8193 * window.el (window-buffer-height): Use count-screen-lines.
8194
8195 * progmodes/python.el (python-preoutput-leftover): New var.
8196 (python-preoutput-filter): Use it.
8197 (python-send-receive): Loop until all the result has been received.
8198
8199 2005-03-28 Juri Linkov <juri@jurta.org>
8200
8201 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
8202
8203 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
8204 "Recover Crashed Session".
8205 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
8206 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
8207 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
8208 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
8209 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
8210 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
8211 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
8212 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
8213
8214 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
8215 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
8216 Ediff Sessions", "Toggle use of separate control buffer frame",
8217 "Use separate frame for Ediff control buffer".
8218
8219 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
8220 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
8221 "Rename Bookmark", "Delete Bookmark".
8222
8223 * info.el (Info-mode-menu): Remove ellipsis from "Index".
8224 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
8225 Add `:active Info-index-alternatives' to "Next Matching Item".
8226
8227 * wdired.el (wdired-change-to-wdired-mode):
8228 Mention `wdired-abort-changes' key in the initial message.
8229
8230 * international/mule.el (auto-coding-alist): Associate non-ascii
8231 image filename extensions with `no-conversion'.
8232
8233 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
8234
8235 * international/iso-acc.el:
8236 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
8237
8238 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
8239
8240 * textmodes/sgml-mode.el (html-mode): Doc update.
8241
8242 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
8243
8244 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
8245
8246 * term.el (term-move-columns): Fix face after extending a line.
8247 (term-insert-spaces): Likewise.
8248 (term-reset-terminal): Fix off by one error.
8249
8250 2005-03-26 Eli Zaretskii <eliz@gnu.org>
8251
8252 * international/mule.el (auto-coding-alist): Add .xpi files.
8253
8254 * files.el (auto-mode-alist): Add .xpi files.
8255
8256 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
8257
8258 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
8259
8260 2005-03-26 Eli Zaretskii <eliz@gnu.org>
8261
8262 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
8263
8264 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
8265
8266 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
8267 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
8268
8269 * calendar/cal-move.el (calendar-beginning-of-year): Move the
8270 cursor to Jan 1 when needed.
8271 (calendar-end-of-year): Fix -/+ typo.
8272 Reported by Chong Yidong <cyd@stupidchicken.com>.
8273
8274 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8275
8276 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
8277
8278 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
8279 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
8280
8281 2005-03-25 Richard M. Stallman <rms@gnu.org>
8282
8283 * filesets.el (filesets-init): Add autoload.
8284
8285 * mail/mailalias.el (mail-directory): Doc fix.
8286
8287 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
8288
8289 * mail/mailalias.el (mail-directory-process): Do nothing if
8290 mail-directory-process is an atom.
8291 (mail-get-names): Ignore mail-directory-names if it is an atom.
8292 (mail-directory-process defvar): Doc fix.
8293 (mail-names): Doc fix.
8294
8295 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
8296
8297 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
8298
8299 2005-03-26 Kenichi Handa <handa@m17n.org>
8300
8301 * international/mule-util.el (detect-coding-with-priority):
8302 Call update-coding-systems-internal before detect-coding-region.
8303
8304 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
8305
8306 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
8307 (gdb-frames-mode-map): Add follow-link property.
8308
8309 2005-03-25 Jay Belanger <belanger@truman.edu>
8310
8311 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
8312 for variables.
8313
8314 2005-03-25 Juri Linkov <juri@jurta.org>
8315
8316 * image-mode.el: Optimize image filename extension regexps in
8317 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
8318 in `auto-mode-alist'.
8319 (image-mode): Add `image-toggle-display-text' to local hook
8320 `change-major-mode-hook'. Display the image as an image by
8321 default. Set `cursor-type' and `truncate-lines' if the image
8322 is already displayed. Take into account the current mode (image
8323 or text) in message.
8324 (image-minor-mode): New minor mode.
8325 (image-mode-maybe, image-toggle-display-text): New functions.
8326 (image-toggle-display): Use called-interactively-p.
8327 Let-bind `inhibit-read-only' to t.
8328
8329 * image-mode.el (image-minor-mode): Set `cursor-type' and
8330 `truncate-lines' if the image is already displayed. Add turning
8331 image-minor-mode off to `change-major-mode-hook'. Add message.
8332 Call `image-toggle-display-text' after turning image-minor-mode off.
8333
8334 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
8335
8336 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
8337 Terminal.app, use utf-8.
8338 (set-display-table-and-terminal-coding-system): Add coding-system arg.
8339 (set-locale-environment): Use it.
8340
8341 * term/xterm.el: Undo last change, better done in mule-cmds.el.
8342
8343 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
8344
8345 * progmodes/python.el (python-close-block-statement-p)
8346 (python-outdent-p, python-current-defun): Use symbol-end.
8347
8348 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
8349
8350 * files.el (save-some-buffers): Doc fix.
8351
8352 2005-03-25 Werner Lemberg <wl@gnu.org>
8353
8354 * complete.el, thumbs.el: Replace `legal' with `valid'.
8355 * calendar/calendar.el: Replace `legal' with `valid'.
8356 * emacs-lisp/advice.el: Replace `legal' with `valid'.
8357 * mail/supercite.el: Replace `legal' with `valid'.
8358 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
8359 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
8360 Replace `legal' with `valid'.
8361 * textmodes/reftex-vars.el, textmodes/reftex.el:
8362 Replace `legal' with `valid'.
8363
8364 2005-03-25 Werner Lemberg <wl@gnu.org>
8365
8366 * calc/calc-forms.el, calc/calc-sel: Replace `illegal' with `invalid'.
8367 * midnight.el, vc-cvs.el: Replace `illegal' with `invalid'.
8368 * emacs-lisp/cl-macs.el: Replace `illegal' with `invalid'.
8369 * emulation/vip.el: Replace `illegal' with `invalid'.
8370 * eshell/esh-io.el, eshell/esh-var.el: Replace `illegal' with
8371 `invalid'.
8372 * mail/supercite.el: Replace `illegal' with `invalid'.
8373 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
8374 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
8375 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
8376 * progmodes/sh-script.el, progmodes/xscheme.el:
8377 Replace `illegal' with `invalid'.
8378 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
8379 * textmodes/reftex-index.el, textmodes/reftex-parse.el
8380 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
8381 * textmodes/reftex.el, textmodes/org.el:
8382 Replace `illegal' with `invalid'.
8383
8384 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8385
8386 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
8387 (flymake-find-buildfile, flymake-find-possible-master-files)
8388 (flymake-check-include, flymake-parse-line): Replace loops over the
8389 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
8390
8391 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
8392 Substitute file-name-as-directory in the rest of the file.
8393 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
8394 (flymake-replace-region): Remove unused arg `buffer'.
8395 (flymake-check-patch-master-file-buffer): Update calls to it.
8396 (flymake-add-err-info): Remove unused var `count'.
8397 (flymake-mode): Use define-minor-mode.
8398
8399 * progmodes/flymake.el: Use with-current-buffer.
8400 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
8401 flymake-replace-regexp-in-string, flymake-line-beginning-position)
8402 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
8403 Avoid testing for `xemacs'.
8404 (flymake-nop): Move.
8405 (flymake-region-has-flymake-overlays): Return the computed value.
8406 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
8407 Remove unused var `endline'.
8408 (flymake-get-line-count): Remove unused function.
8409 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
8410
8411 * emulation/vi.el:
8412 * generic.el:
8413 * hilit-chg.el (global-highlight-changes):
8414 * hi-lock.el (hi-lock-mode):
8415 * follow.el: find-file-hooks -> find-file-hook.
8416
8417 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
8418
8419 2005-03-24 Juri Linkov <juri@jurta.org>
8420
8421 * dired.el (dired-mode-map): Add menu item "Compare directories"
8422 for dired-compare-directories.
8423
8424 * dired-aux.el (dired-compare-directories): Add autoload cookie.
8425 Doc fix. Replace `read-file-name' with `read-directory-name'.
8426
8427 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8428
8429 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
8430
8431 2005-03-24 Jay Belanger <belanger@truman.edu>
8432
8433 * calc/calc-embed.el (calc-embedded-mode-change): Save all
8434 relevant mode settings in calc-embedded-original-modes when modes
8435 are permanently changed.
8436
8437 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8438
8439 * autoinsert.el: find-file-hooks -> find-file-hook.
8440
8441 2005-03-24 Lute Kamstra <lute@gnu.org>
8442
8443 * generic.el (generic-font-lock-defaults): Make it obsolete.
8444 (generic-font-lock-keywords): New variable to replace
8445 generic-font-lock-defaults.
8446 (generic-mode-set-font-lock): Delete it.
8447 (generic-mode-internal): Don't call generic-mode-set-font-lock.
8448 (generic-bracket-support): Add docstring.
8449
8450 * generic-x.el: Rename generic-font-lock-defaults to
8451 generic-font-lock-keywords throughout.
8452 (mailagent-rules-setup-function): Delete it.
8453 (mailagent-rules-generic-mode): Use anonymous function instead.
8454 (show-tabs-generic-mode-font-lock-defaults-1)
8455 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
8456 Quote faces.
8457 (show-tabs-tab-face, show-tabs-space-face): Specify background,
8458 not foreground.
8459
8460 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8461 Recognize define-generic-mode.
8462
8463 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
8464
8465 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
8466 if there's no completion table.
8467
8468 2005-03-23 Miles Bader <miles@gnu.org>
8469
8470 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
8471 Remove tty-specific variants, as they're no longer needed.
8472
8473 2005-03-23 Lute Kamstra <lute@gnu.org>
8474
8475 * generic-x.el: Code cleanup: make args constant whenever possible.
8476 (installshield-statement-keyword-list)
8477 (installshield-system-functions-list)
8478 (installshield-system-variables-list, installshield-types-list)
8479 (installshield-funarg-constants-list): Make them constants.
8480
8481 * generic.el (generic-make-keywords-list): Add autoload cookie.
8482
8483 * calendar/time-date.el: Add comment on time value formats.
8484 Don't require parse-time.
8485 (with-decoded-time-value): New macro.
8486 (encode-time-value): New function.
8487 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
8488 (days-to-time): Return a valid time value when arg is huge.
8489 (time-since): Use time-subtract.
8490 (time-to-number-of-days): Use time-to-seconds.
8491
8492 2005-03-23 David Ponce <david@dponce.com>
8493
8494 * recentf.el: (recentf-keep): New option.
8495 (recentf-menu-action): Default to `find-file'.
8496 (recentf-keep-non-readable-files-flag)
8497 (recentf-keep-non-readable-files-p)
8498 (recentf-file-readable-p, recentf-find-file)
8499 (recentf-cleanup-remote): Remove.
8500 (recentf-include-p): More robust.
8501 (recentf-keep-p): New function.
8502 (recentf-remove-if-non-kept): Rename from
8503 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
8504 All callers updated.
8505 (recentf-menu-items-for-commands): Fix help string.
8506 (recentf-track-closed-file): Update. Doc fix.
8507 (recentf-cleanup): Update. Count removed files. Doc fix.
8508
8509 2005-03-23 Kim F. Storm <storm@cua.dk>
8510
8511 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
8512 Don't inherit from fringe face (now happens automatically).
8513
8514 2005-03-22 Kim F. Storm <storm@cua.dk>
8515
8516 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
8517 position values.
8518
8519 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
8520
8521 * menu-bar.el (showhide-date-time): Remove.
8522 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
8523 (menu-bar-make-mm-toggle): Simplify.
8524
8525 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
8526
8527 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
8528 Accept qualified variable and function names.
8529
8530 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
8531
8532 * bindings.el (completion-ignored-extensions):
8533 Remove ".lis" for `vax-vms'.
8534
8535 2005-03-22 Andreas Schwab <schwab@suse.de>
8536
8537 * generic-x.el: Revert last change.
8538 * ldefs-boot.el: Update.
8539
8540 2005-03-22 Jay Belanger <belanger@truman.edu>
8541
8542 * calc/calc-embed (calc-embedded-original-modes): New variable.
8543 (calc-embedded-save-original-modes)
8544 (calc-embedded-restore-original-modes): New functions.
8545 (calc-do-embedded): Save original modes when entering embedded mode
8546 and restore when leaving embedded mode.
8547 (calc-embedded-modes-change): Change the value of
8548 calc-embedded-original-modes to reflect permanent changes.
8549
8550 2005-03-22 Lute Kamstra <lute@gnu.org>
8551
8552 * generic-x.el: Require generic again.
8553
8554 2005-03-22 Miles Bader <miles@gnu.org>
8555
8556 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
8557 Tweak details to look good on both ttys and bitmap displays, light
8558 or dark background, etc.
8559
8560 2005-03-21 Kim F. Storm <storm@cua.dk>
8561
8562 * tooltip.el (tooltip-show-help-function): Check car and cdr of
8563 mouse position.
8564
8565 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
8566
8567 * icomplete.el: Don't forcibly turn on the mode upon load.
8568 (icomplete-mode): Use define-minor-mode.
8569 (icomplete-eoinput): Default to nil.
8570 (icomplete-minibuffer-setup): Remove autoload.
8571 (icomplete-tidy): Simplify.
8572 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
8573 in the initial state or if the user has modified the field.
8574 Fix handling of icomplete-max-delay-chars.
8575 Remove code that handles the oddball case where
8576 minibuffer-completion-table is an integer.
8577 Wrap icomplete-completions in while-no-input in case building
8578 completions takes more time than expected.
8579 (icomplete-completions): Simplify.
8580
8581 2005-03-21 Richard M. Stallman <rms@gnu.org>
8582
8583 * jka-compr.el (jka-compr-really-do-compress):
8584 Make variable buffer-local.
8585
8586 * image-mode.el: Handle .xpm files too.
8587 (image-toggle-display): Preserve modification flag.
8588
8589 * help.el (where-is): Don't mention aliases with no key bindings.
8590
8591 2005-03-21 Lute Kamstra <lute@gnu.org>
8592
8593 * generic.el: Fix commentary section. Don't require cl for
8594 compilation.
8595 (generic-mode-list): Add autoload cookie.
8596 (generic-use-find-file-hook, generic-lines-to-scan)
8597 (generic-find-file-regexp, generic-ignore-files-regexp)
8598 (generic-mode, generic-mode-find-file-hook)
8599 (generic-mode-ini-file-find-file-hook): Fix docstrings.
8600 (define-generic-mode): Make it a defmacro. Fix docstring.
8601 (generic-mode-internal): Code cleanup. Add autoload cookie.
8602 (generic-mode-set-comments): Code cleanup.
8603 * generic-x.el: Don't prevent compilation. Don't require generic.
8604 Follow coding conventions. Minor code cleanup.
8605 (etc-fstab-generic-mode): Add some keywords.
8606 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
8607 define-generic-mode like a function declaration.
8608
8609 2005-03-21 Jay Belanger <belanger@truman.edu>
8610
8611 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
8612 changing modes.
8613
8614 2005-03-21 Sam Steingold <sds@gnu.org>
8615
8616 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
8617
8618 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
8619
8620 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
8621 Add underscore to "f$ lexicals" regexp.
8622
8623 2005-03-20 Juri Linkov <juri@jurta.org>
8624
8625 * subr.el (progress-reporter-do-update): When `min-value' is equal
8626 to `max-value', set `percentage' to 0 and prevent division by zero.
8627
8628 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
8629
8630 Sync with Tramp 2.0.48.
8631
8632 * tramp.el (all): Change all addresses to .gnu.org.
8633 (tramp-append-tramp-buffers): New defun.
8634 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
8635 Catch `dont-send' signal.
8636 (tramp-set-auto-save-file-modes): Set always permissions, because
8637 there might be an old auto-saved file belonging to another
8638 original file. This could be a security threat. Reported by
8639 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
8640 Check for Emacs 21.3.50 removed.
8641
8642 * tramp-smb.el (all): Remove debug construct for
8643 `with-parsed-tramp-file-name'.
8644 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
8645 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
8646 No error message if DIRECTORY or FILENAME doesn't exist.
8647 (tramp-smb-open-connection): Check existence of
8648 `tramp-smb-program'.
8649
8650 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8651
8652 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
8653 Properly handle the case where the `m' or `s' command's argument is not
8654 yet terminated.
8655 (perl-indent-new-calculate): New function.
8656 (perl-indent-line): Use it.
8657
8658 2005-03-20 Miles Bader <miles@gnu.org>
8659
8660 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
8661 in text-mode too. Change to new face names.
8662 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
8663 Add `:weight bold' attribute.
8664 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
8665
8666 2005-03-19 Juri Linkov <juri@jurta.org>
8667
8668 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
8669
8670 * international/mule.el (auto-coding-alist): Sync with
8671 `auto-mode-alist' by adding upper case archive file extensions
8672 and adding ear/war to jar extension.
8673
8674 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
8675
8676 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
8677 running, restart it.
8678
8679 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
8680
8681 * finder.el (finder-current-item): Throw an error on an empty line.
8682
8683 * man.el (Man-follow-manual-reference): If current-word returns
8684 nil, use "".
8685
8686 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
8687
8688 * simple.el (goto-line): Doc fix.
8689
8690 2005-03-19 Aaron Hawley <Aaron.Hawley@uvm.edu> (tiny change)
8691
8692 * files.el (save-buffer): Doc fix.
8693
8694 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
8695
8696 * recentf.el (recentf-cleanup-remote): New variable.
8697 (recentf-cleanup): Use it to conditionally check availability of
8698 remote files.
8699
8700 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
8701
8702 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
8703 function names.
8704
8705 2005-03-19 Eli Zaretskii <eliz@gnu.org>
8706
8707 * language/thai-word.el: New file.
8708
8709 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
8710
8711 * files.el (backup-buffer): If the file's directory is not
8712 writable, use copy instead of move to backup the file.
8713
8714 2005-03-19 Eli Zaretskii <eliz@gnu.org>
8715
8716 * obsolete/keyswap.el: Moved to obsolete/ from term/.
8717
8718 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8719
8720 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
8721 Use functionp instead of symbolp and fboundp. Reported by Drkm
8722 <darkman_spam@yahoo.fr>.
8723 (ps-print-version): New version 6.6.6.
8724
8725 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
8726
8727 * textmodes/table.el (table--line-column-position): New idiom.
8728 (table--row-column-insertion-point-p): New function to test
8729 validity of row and column insertion operation at a location.
8730 (table-global-menu, table-cell-menu): Use above functions for
8731 deterministic test operation.
8732 (table--editable-cell-p): Behave in deterministic fashion.
8733
8734 2005-03-18 Juri Linkov <juri@jurta.org>
8735
8736 * isearch.el (isearch-lazy-highlight-new-loop):
8737 Make arguments beg and end optional.
8738 (isearch-update): Remove optional arguments nil from
8739 isearch-lazy-highlight-new-loop.
8740 (isearch-lazy-highlight-search): Let-bind case-fold-search to
8741 isearch-lazy-highlight-case-fold-search instead of
8742 isearch-case-fold-search, and let-bind isearch-regexp to
8743 isearch-lazy-highlight-regexp.
8744 Use isearch-lazy-highlight-last-string instead of isearch-string.
8745
8746 * replace.el (perform-replace): Remove bindings of global
8747 variables isearch-string, isearch-regexp, isearch-case-fold-search.
8748 Add three new arguments to `replace-highlight'.
8749 (replace-highlight): Add arguments string, regexp, case-fold.
8750 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
8751 to allow isearch-lazy-highlight-new-loop to use these values
8752 to set corresponding isearch-lazy-highlight-* internal
8753 variables whose values lazy highlighting will use regardless of
8754 changes to global variables isearch-string, isearch-regexp,
8755 isearch-case-fold-search during lazy highlighting loop.
8756 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
8757 to `lazy-highlight-cleanup'.
8758
8759 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
8760 (ispell-highlight-face): Set default face to `isearch' when
8761 lazy highlighting is enabled.
8762 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
8763 priority to 1. Add lazy highlighting.
8764 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
8765 from `isearch-dehighlight'.
8766
8767 2005-03-18 David Ponce <david@dponce.com>
8768
8769 * files.el (hack-local-variables): Do a case-insensitive search
8770 for End.
8771
8772 2005-03-18 Juri Linkov <juri@jurta.org>
8773
8774 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
8775 `isearch-lazy-highlight-cleanup', add alias to old name and
8776 declare obsolete. Add release numbers to other obsolete vars.
8777 (isearch-done, isearch-lazy-highlight-new-loop):
8778 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
8779 (lazy-highlight-cleanup) <variable>: Doc fix.
8780 (isearch-lazy-highlight-update): Rename obsolete
8781 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
8782
8783 2005-03-18 Kenichi Handa <handa@m17n.org>
8784
8785 * language/thai-util.el: Fix categorization of Thai characters in
8786 thai-category-table.
8787 (thai-composition-pattern): Adjust it for the above change.
8788 (thai-self-insert-command, thai-compose-syllable): New functions.
8789 (thai-compose-region): Use thai-compose-syllable.
8790 (thai-compose-string): Likewise.
8791 (thai-composition-function): Likewise.
8792 (thai-auto-composition): New function.
8793 (thai-auto-composition-mode): New minor mode.
8794
8795 * language/thai.el: Fix patterns to be registered in
8796 composition-function-table.
8797
8798 * international/quail.el (quail-input-method): Locally bind
8799 inhibit-modification-hooks to t.
8800
8801 2005-03-17 Richard M. Stallman <rms@gnu.org>
8802
8803 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
8804 (perl-mode): Use run-mode-hooks.
8805
8806 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
8807 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
8808 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
8809
8810 * mail/sendmail.el (sendmail-send-it): Reenable the code
8811 to compute resend-to-address and use it.
8812
8813 * tar-mode.el (tar-mode): Turn off undo unconditionally.
8814
8815 * image-mode.el: New file.
8816
8817 * image.el (insert-sliced-image): Add autoload cookie.
8818
8819 * font-lock.el (font-lock-lines-before): New user option.
8820 (font-lock-after-change-function): Obey it.
8821
8822 * bindings.el (esc-map): Make M-g a prefix.
8823 Bind M-g g and M-g M-g to goto-line.
8824
8825 * faces.el (face-id): Doc fix.
8826
8827 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
8828
8829 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
8830 (rmail-show-message): Use rmail-unknown-mail-followup-to.
8831 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
8832
8833 * mail/sendmail.el (mail-yank-ignored-headers)
8834 (mail-font-lock-keywords, mail-mode-fill-paragraph):
8835 Add Mail-Followup-To and Mail-Reply-To headers.
8836 (mail-citation-hook): Add autoload cookie.
8837 (mail-mode): Doc fix.
8838 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
8839 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
8840 (mail-mode-fill-paragraph): Handle those headers.
8841 (mail-mailing-lists): New variable.
8842 (mail-mail-reply-to, mail-mail-followup-to): New functions.
8843
8844 2005-03-17 Juri Linkov <juri@jurta.org>
8845
8846 * isearch.el (isearch-fallback): Check for `(car previous)'
8847 before calling `isearch-other-end-state'.
8848
8849 2005-03-17 Kim F. Storm <storm@cua.dk>
8850
8851 * simple.el (move-beginning-of-line): Move to beginning of buffer
8852 line, as well as beginning of screen line.
8853
8854 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
8855
8856 * calendar/diary-lib.el (mark-diary-entries): Use new optional
8857 argument REDRAW rather than calendar-redrawing variable.
8858 * calendar/calendar.el (calendar-redrawing): Delete.
8859 (redraw-calendar): Do not bind calendar-redrawing.
8860
8861 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
8862
8863 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
8864 diary-file buffer.
8865
8866 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
8867
8868 * help.el (describe-mode): Allow a :minor-mode-function property to
8869 specify a different minor mode toggle function than the variable.
8870 * simple.el (auto-fill-function):
8871 * subr.el (add-minor-mode): Use it.
8872
8873 2005-03-16 Kenichi Handa <handa@m17n.org>
8874
8875 * language/ethio-util.el (sera-being-called-by-w3): New variable.
8876 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
8877 (ethio-fidel-to-sera-buffer): Likewise.
8878
8879 2005-03-16 Juri Linkov <juri@jurta.org>
8880
8881 * emacs-lisp/find-func.el (find-function-regexp):
8882 Add defun-emitting macro `menu-bar-make-toggle'.
8883
8884 * isearch.el: Put `isearch-scroll' property to
8885 `split-window-horizontally'.
8886
8887 * info.el: Update error messages for `debug-ignored-errors'.
8888 (Info-isearch-search): Doc fix.
8889 (Info-find-node): Move up code to go into info buffer before
8890 recording the node to the history.
8891 (Info-fontify-node): Fontify titles only if the next line
8892 has two or more `*', `=', `-', `.'.
8893 Display "go to this node" for empty (match-string 3).
8894
8895 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8896
8897 * term/mac-win.el: Add mouse pointer shape constants.
8898
8899 2005-03-15 Kim F. Storm <storm@cua.dk>
8900
8901 * simple.el (move-beginning-of-line): Use vertical-motion.
8902
8903 2005-03-15 Juri Linkov <juri@jurta.org>
8904
8905 * isearch.el (isearch-error): New variable.
8906 (isearch-invalid-regexp, isearch-within-brackets): Remove.
8907 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
8908 (isearch-within-brackets-state): Remove.
8909 (isearch-case-fold-search-state, isearch-pop-fun-state):
8910 Decrease frame index.
8911 (isearch-mode, isearch-top-state, isearch-push-state)
8912 (isearch-edit-string, isearch-abort, isearch-search-and-update)
8913 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
8914 (isearch-search, isearch-lazy-highlight-new-loop):
8915 Replace `isearch-invalid-regexp' with `isearch-error'.
8916 Remove `isearch-within-brackets'.
8917 (isearch-search): Add `search-failed' handler to `condition-case'.
8918 (isearch-lazy-highlight-search): Add `condition-case' to catch
8919 errors and allow `isearch-lazy-highlight-update' to try
8920 highlighting from the beginning of the window.
8921 (isearch-repeat): Move up code to set isearch-wrapped to t
8922 before calling isearch-wrap-function.
8923
8924 * info.el (Info-isearch-initial-node): New internal variable.
8925 (Info-search): Signal an error in isearch mode when search leaves
8926 the initial node. Signal an error when `bound' is non-nil and
8927 nothing was found in the current subfile.
8928 (Info-isearch-search): Remove `condition-case'.
8929 (Info-isearch-wrap): Don't wrap when search failed during leaving
8930 the initial node. If `Info-isearch-search' is nil, wrap around
8931 the current node.
8932 (Info-isearch-start): New fun.
8933 (Info-mode): Add buffer-local hook `Info-isearch-start' to
8934 `isearch-mode-hook'.
8935
8936 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8937
8938 * simple.el (normal-erase-is-backspace): Set default to t if
8939 running on Mac.
8940
8941 * term/mac-win.el (function-key-map): Sync with x-win.el.
8942
8943 2005-03-15 Kenichi Handa <handa@m17n.org>
8944
8945 * international/mule-cmds.el (locale-language-names): Modify the
8946 format of elements and add more entries.
8947 (locale-preferred-coding-systems): Add more entries.
8948 (set-locale-environment): Adjust for the change of
8949 locale-language-names.
8950
8951 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
8952
8953 * pcvs.el (smerge-ediff): Remove bogus autoload.
8954
8955 2005-03-14 Lute Kamstra <lute@gnu.org>
8956
8957 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
8958 Ignore a `*' at the beginning of a line.
8959
8960 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
8961 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
8962 subr.el.
8963 (dont-compile, eval-when-compile, eval-and-compile): Use declare
8964 to specify indentation.
8965
8966 * generic.el (define-generic-mode): Let generic-mode-list be a
8967 list of strings; test membership with equal.
8968
8969 2005-03-14 Kim F. Storm <storm@cua.dk>
8970
8971 * simple.el (next-line, previous-line): Add optional try-vscroll
8972 arg to recognize interactive use. Pass it on to line-move.
8973 (line-move): Don't perform auto-window-vscroll when defining or
8974 executing keyboard macro to ensure consistent behavior.
8975
8976 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
8977
8978 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
8979
8980 2005-03-13 Lute Kamstra <lute@gnu.org>
8981
8982 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
8983 debugger-setup-buffer so that backtrace marks the frames set to
8984 debug-on-exit and we don't have to do it manually. Set an extra
8985 debug-on-exit for macro's.
8986 (debugger-setup-buffer): Don't mark the top frame manually.
8987
8988 2005-03-12 Lute Kamstra <lute@gnu.org>
8989
8990 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
8991 lisp-indent-function throughout.
8992 (with-no-warnings): Set lisp-indent-function property.
8993
8994 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
8995
8996 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
8997 Add entry for backslash.
8998
8999 2005-03-12 Juri Linkov <juri@jurta.org>
9000
9001 * info.el (Info-search): Four fixes for backward search.
9002
9003 2005-03-11 Jay Belanger <belanger@truman.edu>
9004
9005 * calc/calc.el (calc-language-alist): New variable.
9006 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
9007 (calc-embedded-find-modes): Use calc-language-alist instead of
9008 calc-embedded-language-alist.
9009
9010 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
9011
9012 * calendar/calendar.el (calendar-redrawing): New internal
9013 variable.
9014 (redraw-calendar): Remove bogus save-excursion from previous
9015 change. Bind calendar-redrawing to t for mark-diary-entries.
9016 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
9017 calendar if that is why we were called.
9018
9019 2005-03-11 Kenichi Handa <handa@m17n.org>
9020
9021 * international/mule.el (make-coding-system): Set property
9022 coding-system-define-form to nil.
9023 (define-coding-system-alias): Likewise.
9024
9025 2005-03-11 Kenichi Handa <handa@m17n.org>
9026
9027 These changes are suggested by Dave Love <fx@gnu.org>.
9028
9029 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
9030 coding: tag.
9031 (adaptive-fill-regexp): Add more bullets.
9032 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
9033 regexps.
9034
9035 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
9036
9037 * help.el (describe-mode): Properly handle non-trivial lighters.
9038 Don't ignore minor modes that are not listed in minor-mode-list.
9039
9040 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
9041 feature ON when the user requests to turn it OFF.
9042
9043 2005-03-10 Lute Kamstra <lute@gnu.org>
9044
9045 * emacs-lisp/debug.el (debug-entry-code): Delete it.
9046 (implement-debug-on-entry): New function to replace debug-entry-code.
9047 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
9048 second argument as the 2005-03-07 change makes it obsolete.
9049 (debug-on-entry, cancel-debug-on-entry): Update call to
9050 debug-on-entry-1.
9051 (debug, debugger-setup-buffer): Comment update.
9052 (debugger-frame-number): Update to work with implement-debug-on-entry.
9053
9054 2005-03-10 Jay Belanger <belanger@truman.edu>
9055
9056 * calc/calc-embed.el (math-ms-args): Declare it.
9057 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
9058 math-ms-args.
9059 (calc-embedded-subst): Use math-multi-subst-rec to substitute
9060 variables.
9061
9062 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
9063
9064 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
9065 Use message-box.
9066
9067 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
9068 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
9069 (tooltip-gud-tips): Simplify.
9070 (tooltip-gud-tips-p): Remove superfluous :set.
9071 (tooltip-gud-modes): Add fortran-mode.
9072 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
9073
9074 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
9075
9076 2005-03-09 Kim F. Storm <storm@cua.dk>
9077
9078 * play/animate.el (animate-place-char): Use forward-line instead
9079 of next-line to improve performance.
9080
9081 2005-03-09 Simon Josefsson <jas@extundo.com>
9082
9083 * net/browse-url.el (browse-url-default-browser): Doc fix.
9084
9085 2005-03-09 Miles Bader <miles@gnu.org>
9086
9087 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
9088 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
9089
9090 2005-03-09 Kenichi Handa <handa@m17n.org>
9091
9092 * international/latin-1.el: Set case and syntax for 255 only if
9093 set-case-syntax-set-multibyte is nil.
9094
9095 * textmodes/ispell.el (ispell-insert-word): New function.
9096 (ispell-word): Use ispell-insert-word to insert a new word.
9097 (ispell-process-line): Likewise.
9098 (ispell-complete-word): Likewise.
9099
9100 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
9101
9102 * calendar/calendar.el (redraw-calendar): Preserve point.
9103 Reported by Matt Hodges <MPHodges@member.fsf.org>.
9104 (calendar-week-start-day): Move after definition of
9105 redraw-calendar. Delete buffer test, since redraw-calendar has
9106 that now.
9107
9108 * calendar/diary-lib.el (mark-diary-entries): Only call
9109 redraw-calendar in the first of any recursive calls.
9110 Reported by Alan Shutko <ats@acm.org>.
9111
9112 2005-03-08 Juri Linkov <juri@jurta.org>
9113
9114 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
9115 (html-horizontal-rule, html-line, html-image, html-checkboxes)
9116 (html-radio-buttons): Add a space before the trailing `/>' where
9117 sgml-xml-mode is non-nil.
9118 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
9119 the subsequent tag of the empty XML tag.
9120 (html-href-anchor): Don't set initial input to "http:".
9121 (html-image): Ask for the image URL and set point inside alt="".
9122 (html-name-anchor): Duplicate the name in the `id' attribute when
9123 sgml-xml-mode is non-nil.
9124 (html-paragraph): Remove \n before <p>.
9125 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
9126 instead of `checked' when sgml-xml-mode is non-nil.
9127
9128 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
9129 Remove 1 space before #RRGGBB to not truncate it on terminal
9130 windows w/o fringes. Remove 1 space between bg and fg examples
9131 to get more space.
9132 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
9133 avoid byte-compile warnings.
9134
9135 * image-file.el (image-file-handler): Put `safe-magic' property to
9136 `image-file-handler'.
9137
9138 * info.el (Info-isearch-search): Emulate word search in
9139 isearching through multiple Info nodes with Info-search.
9140 (Info-isearch-wrap): Allow isearch-word.
9141
9142 2005-03-08 Lute Kamstra <lute@gnu.org>
9143
9144 * emacs-lisp/debug.el (debugger-step-through): Make sure that
9145 stepping into the debugger's code is not possible.
9146 (debugger-jumping-flag): Docstring update.
9147
9148 2005-03-08 Jay Belanger <belanger@truman.edu>
9149
9150 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
9151 embedded mode begins.
9152 (calc-embedded-language-alist): New variable.
9153 (calc-embedded-find-modes): Use calc-embedded-language-alist to
9154 set default language mode.
9155
9156 2005-03-08 Kenichi Handa <handa@m17n.org>
9157
9158 * international/ccl.el (define-ccl-program): Fix docstring about
9159 extra 256 bytes assured for the output buffer.
9160
9161 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
9162 Fix BUFFER_MAGNIFICATION to 2.
9163 (ccl-encode-mule-utf-16be-with-signature): Likewise.
9164
9165 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
9166
9167 * align.el (align-rules-list): Added an alignment rule for CSS
9168 declarations (applies to css-mode and html-mode buffers).
9169
9170 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
9171
9172 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
9173
9174 2005-03-07 Kim F. Storm <storm@cua.dk>
9175
9176 * simple.el (move-beginning-of-line): New command.
9177
9178 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
9179
9180 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
9181
9182 * emulation/cua-base.el: Put CUA move property on move-end-of-line
9183 and move-beginning-of-line.
9184
9185 * apropos.el (apropos-print): Omit command from M-x ... RET.
9186
9187 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
9188
9189 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
9190 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
9191
9192 2005-03-06 Richard M. Stallman <rms@gnu.org>
9193
9194 * bindings.el (esc-map): Bind M-g to goto-line.
9195
9196 * facemenu.el (global-map): Bind M-o, not M-g.
9197
9198 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9199
9200 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
9201 "Open Directory" as for "Open File".
9202
9203 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
9204
9205 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
9206 (push-mark-command): Run activate-mark-hook.
9207
9208 2005-03-06 Richard M. Stallman <rms@gnu.org>
9209
9210 * help-mode.el (help-mode-finish): Don't alter the element
9211 in view-return-to-alist if there already is one.
9212
9213 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
9214 make sure the current buffer is the expected one.
9215
9216 * novice.el (disabled-command-function): Output in *Disabled Command*.
9217 Explicitly ignore non-keyboard events, and explicitly handle C-g.
9218
9219 * textmodes/flyspell.el (flyspell-large-region):
9220 Pass args differently for aspell.
9221
9222 * files.el (mode-require-final-newline): Doc fix.
9223
9224 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
9225
9226 * progmodes/which-func.el (which-function):
9227 Specify NOERROR when calling imenu--make-index-alist.
9228
9229 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
9230
9231 * simple.el (normal-erase-is-backspace): Define default value.
9232
9233 * custom.el (custom-theme-set-variables): Remove unused var
9234 `immediate'.
9235 (custom-reevaluate-setting): Simple function to handle variables
9236 that are defined before their default value can really be
9237 computed.
9238
9239 * startup.el (command-line): Use it for temporary-file-directory,
9240 small-emporary-file-directory, auto-save-file-name-transforms,
9241 blink-cursor-mode, and normal-erase-is-backspace.
9242
9243 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
9244 progress, even with buggy anchored keywords.
9245
9246 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
9247
9248 * simple.el (goto-line): Remove unbalanced final parenthesis.
9249
9250 2005-03-05 Richard M. Stallman <rms@gnu.org>
9251
9252 * simple.el (goto-line): Use a number at point as the default.
9253 With C-u as arg, switch buffers.
9254
9255 2005-03-05 Juri Linkov <juri@jurta.org>
9256
9257 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
9258 with `no-blinking-cursor'.
9259
9260 * startup.el (no-blinking-cursor): New defvar.
9261 (command-line): Add `--no-blinking-cursor' to longopts.
9262 Set `no-blinking-cursor' to t for command line arguments
9263 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
9264 with `no-blinking-cursor' in the condition for calling
9265 `blink-cursor-mode'.
9266
9267 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
9268
9269 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
9270 (menu-bar-options-save): Add blink-cursor-mode.
9271 (menu-bar-options-menu): Add blink-cursor-mode.
9272
9273 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
9274
9275 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
9276 (icalendar-export-file, icalendar-export-region)
9277 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
9278 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
9279
9280 2005-03-04 Lute Kamstra <lute@gnu.org>
9281
9282 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
9283 (debug-function-list): Ditto.
9284
9285 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
9286
9287 * textmodes/texinfmt.el (texinfo-append-refill):
9288 Redefine the types of line to which @refill
9289 is not appended by replacing a search for `@refill\\|@bye' with
9290 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
9291 itemize@refill' bug and the unfilled long lines bug.
9292 (texinfmt-version): Update number and date.
9293
9294 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
9295
9296 * international/code-pages.el (windows-1250, windows-125[2-8])
9297 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
9298
9299 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
9300
9301 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
9302 bound yet.
9303
9304 2005-03-02 Romain Francoise <romain@orebokech.com>
9305
9306 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
9307 buffer after removing limits.
9308 (ibuffer-pop-filter): Ditto.
9309 Update copyright.
9310
9311 2005-03-02 Miles Bader <miles@gnu.org>
9312
9313 * button.el (make-text-button): If the user doesn't specify a
9314 type, use the default. Rewrite to use `add-text-properties' and
9315 plist functions.
9316
9317 2005-03-01 Lute Kamstra <lute@gnu.org>
9318
9319 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
9320 (debugger-jumping-flag): New var.
9321 (debug-entry-code): Use it.
9322 (debugger-jump): Use debugger-jumping-flag and add
9323 debugger-reenable to post-command-hook.
9324 (debugger-reenable): Use debugger-jumping-flag and remove itself
9325 from post-command-hook.
9326 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
9327 debugger-reenable.
9328
9329 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
9330
9331 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
9332 inclusion of "itemize\\|", which may be unnecessary, is certainly
9333 inelegant, and stops refilling in itemize lists when formatting
9334 Japanese Texinfo files to Info.
9335 Update copyright to 2005.
9336
9337 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
9338
9339 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
9340 of an error if GDB can't find the source file.
9341
9342 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
9343
9344 * calendar/calendar.el (redraw-calendar): Work from any buffer,
9345 not just the calendar.
9346
9347 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
9348 first.
9349 (diary-redraw-calendar): New function.
9350 (make-diary-entry): Add diary-redraw-calendar to local
9351 write-contents-functions. Turn off selective display before
9352 inserting in diary.
9353
9354 2005-03-01 Kim F. Storm <storm@cua.dk>
9355
9356 * emacs-lisp/copyright.el (copyright-fix-years): New command.
9357
9358 2005-03-01 Lute Kamstra <lute@gnu.org>
9359
9360 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
9361 that debug-entry-code can be safely removed from a function while
9362 this code is being evaluated. Revert the 2005-02-27 change as the
9363 new implementation no longer requires it. Make sure that a
9364 function body containing just a string is not mistaken for a docstring.
9365 (debug): Skip one more frame in case of debug on entry.
9366 (debugger-setup-buffer): Delete one more frame line in case of
9367 debug on entry.
9368 (debugger-frame-number): Update to use the new text introduced by
9369 the 1999-11-03 change. Skip one more frame in case of debug on entry.
9370
9371 2005-02-28 Kim F. Storm <storm@cua.dk>
9372
9373 * double.el (double-translate-key): Call force-window-update after
9374 read-event to avoid crash in redisplay.
9375
9376 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
9377
9378 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
9379 (debug): Use it. Move the inhibit-trace earlier.
9380 (debug-entry-code): New const.
9381 (debug-on-entry-1): Use it.
9382
9383 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
9384
9385 * international/utf-16.el (ccl-encode-mule-utf-16le):
9386 Fix BUFFER_MAGNIFICATION to 2.
9387 (ccl-encode-mule-utf-16be): Likewise.
9388
9389 2005-02-28 Kenichi Handa <handa@m17n.org>
9390
9391 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
9392 Fix BUFFER_MAGNIFICATION to 4.
9393 (ccl-encode-mule-utf-16be-with-signature): Likewise.
9394
9395 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
9396
9397 * speedbar.el (speedbar-update-flag): Doc fix.
9398 (speedbar-show-info-under-mouse): Give set-mouse-position the right
9399 argument.
9400
9401 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
9402
9403 * reveal.el (reveal-post-command): Don't try to reveal overlays which
9404 have a non-nil `invisible' property but are actually visible.
9405
9406 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
9407 for perldoc sections.
9408 (perl-outline-regexp, perl-outline-level): New var and function.
9409 (perl-mode): Use them.
9410
9411 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
9412
9413 * calendar/diary-lib.el (diary-remind): Discard any mark portion
9414 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
9415
9416 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
9417
9418 * cus-edit.el: Comment change.
9419 (custom-buffer-create-internal): Slightly reword text at top of
9420 Custom buffers. Mention there that saving an option edits the
9421 init file. Add link to Emacs manual node on `custom-file'.
9422 (custom-magic-alist): Rewrite individual State messages to use
9423 capitalized keywords. Doc fix.
9424
9425 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
9426
9427 * calendar/calendar.el (calendar-buffer): Move above
9428 calendar-week-start-day.
9429 (calendar-week-start-day): Doc fix. Add :set function.
9430 (calendar-minimum-window-height): New variable.
9431 (generate-calendar-window): Only resize window if selected-window
9432 is displaying the calendar buffer. Use new variable
9433 calendar-minimum-window-height.
9434 (generate-calendar): Reword error message.
9435 (calendar-mode-map): Bind DEL to scroll-other-window-down.
9436
9437 2005-02-27 Andreas Schwab <schwab@suse.de>
9438
9439 * vc.el (vc-do-command): Don't run command asynchronously when
9440 operating in a remote directory.
9441
9442 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
9443 change from sync with Tramp 2.0.47.
9444
9445 2005-02-27 Richard M. Stallman <rms@gnu.org>
9446
9447 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
9448
9449 * textmodes/flyspell.el (flyspell-mode-on):
9450 Call ispell-change-dictionary only if necessary.
9451
9452 * emacs-lisp/re-builder.el (regexp-builder): New function.
9453
9454 * register.el (describe-register-1): Explicitly handle
9455 yank-excluded-properties = t.
9456
9457 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
9458 (custom-magic-alist): Change the status descriptions again.
9459 (face widget-type): Total rewrite based on `restricted-sexp'
9460 to eliminate the confusing double hiding levels.
9461
9462 * emacs-lisp/debug.el (debug-on-entry-1):
9463 If function body is empty, add nil as body form.
9464
9465 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
9466
9467 * emacs-lisp/trace.el (inhibit-trace): New var.
9468 (trace-make-advice): Use it.
9469
9470 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
9471
9472 2005-02-26 Kim F. Storm <storm@cua.dk>
9473
9474 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
9475 (mouse-on-link-p, mouse-drag-region-1): Use it.
9476
9477 2005-02-25 Lute Kamstra <lute@gnu.org>
9478
9479 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
9480
9481 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
9482
9483 * frame.el (blink-cursor-mode): Add :group keyword.
9484
9485 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
9486
9487 * calendar/icalendar.el (icalendar--decode-isodatetime):
9488 New optional argument DAY-SHIFT.
9489 (icalendar-export-region): Fix coding-system-for-write.
9490 (icalendar--convert-ical-to-diary): Shift end-day of all-day
9491 events by one.
9492
9493 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
9494
9495 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
9496
9497 2005-02-24 Kim F. Storm <storm@cua.dk>
9498
9499 * international/iso-acc.el (iso-accents-compose): Fix crash
9500 during redisplay. Call force-window-update after read-event
9501 and delete-region to signal that window is not accurate.
9502
9503 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
9504
9505 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
9506 Remove unused and inexistent var `inhibit-trace'.
9507 (debugger-mode): Use run-mode-hooks.
9508 (debugger-list-functions): Add buttons; setup xref stack.
9509
9510 2005-02-23 Richard M. Stallman <rms@gnu.org>
9511
9512 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
9513 appointment says it was explicitly made.
9514 (appt-add): Set the 3rd element.
9515 (appt-make-list): Preserve explicit appointments.
9516
9517 * subr.el (find-tag-default): Catch errors in forward-sexp.
9518
9519 2005-02-23 Juri Linkov <juri@jurta.org>
9520
9521 * info.el (Info-isearch-search): New defcustom.
9522 (Info-isearch-search): Call the default isearch function
9523 when Info-isearch-search is nil.
9524 (Info-isearch-wrap): Use variable Info-isearch-search.
9525
9526 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
9527
9528 * cus-edit.el: Comment change.
9529
9530 2005-02-22 Kim F. Storm <storm@cua.dk>
9531
9532 * progmodes/hideif.el (hide-ifdef-use-define-alist):
9533 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
9534
9535 2005-02-22 Simon Josefsson <jas@extundo.com>
9536
9537 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
9538 New variable.
9539 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
9540 Oskarsson" <myrkraverk@users.sourceforget.net>.
9541
9542 2005-02-22 Kim F. Storm <storm@cua.dk>
9543
9544 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
9545 check that window of that event is the selected window.
9546 (mouse-drag-region-1): Compare mouse event window to selected
9547 window before setting point.
9548
9549 * tooltip.el (tooltip-show-help-function): Pass event to
9550 mouse-on-link-p so it can check selected window.
9551
9552 2005-02-22 Kenichi Handa <handa@m17n.org>
9553
9554 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
9555 (ps-mule-show-warning): New function.
9556 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
9557 characters are found.
9558
9559 * ps-print.el (ps-header-footer-string): Return a list of header
9560 and footer strings.
9561
9562 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9563
9564 * pcvs.el (cvs-retrieve-revision): Fix thinko.
9565
9566 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
9567
9568 * frame.el (blink-cursor-mode): Use define-minor-mode.
9569
9570 * term/mac-win.el (function-key-map): Use char-names more consistently.
9571 (file-name-coding-system): Only set it for MacOS-9. The other case is
9572 already handled in mule-cmds.el (where it also works when mac-win.el
9573 is not used).
9574
9575 2005-02-21 Kenichi Handa <handa@m17n.org>
9576
9577 * international/mule.el (ctext-pre-write-conversion): Always use
9578 " *code-converting-work*" buffer for work.
9579
9580 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
9581
9582 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
9583
9584 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
9585
9586 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
9587
9588 * ses.el (undo-more): Restore defadvice, but only the part that
9589 allows changes outside the restricted area of the buffer.
9590
9591 2005-02-20 Kim F. Storm <storm@cua.dk>
9592
9593 * simple.el (line-move): Add fourth optional arg try-vscroll which
9594 must be set to perform auto-window-vscroll.
9595 When moving backwards and doing auto-window-vscroll, automatically
9596 vscroll to the last part of lines which are taller than the window.
9597 (next-line, previous-line): Set try-vscroll arg on line-move.
9598
9599 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
9600
9601 * replace.el (query-replace, query-replace-regexp)
9602 (replace-string, replace-regexp): When operating on region, make
9603 the minibuffer prompt say so.
9604
9605 * isearch.el (isearch-forward): Document isearch-query-replace and
9606 isearch-query-replace-regexp keybindings.
9607
9608 2005-02-19 Jay Belanger <belanger@truman.edu>
9609
9610 * calc/calc-aent.el (math-read-token): Add local variable.
9611
9612 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
9613 (calc-edit-top): Move declaration to earlier in file.
9614 (calc-edit-macro-repeats): Add local variables.
9615
9616 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
9617 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
9618 calcFunc-tanh.
9619 Adjust integration rule for calcFunc-tan.
9620
9621 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
9622
9623 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
9624 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
9625 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
9626 (viper-skip-separators): Bug fix.
9627 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
9628 particular major mode.
9629 (viper-del-backward-char-in-replace): Don't put deleted char on the
9630 kill ring.
9631
9632 * viper-ex.el (viper-color-display-p): New function.
9633 (viper-has-face-support-p): Use viper-color-display-p.
9634
9635 * viper-keym.el (viper-gnus-modifier-map): New keymap.
9636
9637 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
9638
9639 * viper-util.el (viper-glob-unix-files): Fix shell status check.
9640 (viper-file-remote-p): Make equivalent to file-remote-p.
9641
9642 * viper.el (viper-major-mode-modifier-list):
9643 Use viper-gnus-modifier-map.
9644
9645 2005-02-19 David Kastrup <dak@gnu.org>
9646
9647 * subr.el (subregexp-context-p): Fix garbled doc string by adding
9648 quoting.
9649
9650 2005-02-19 Jay Belanger <belanger@truman.edu>
9651
9652 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
9653 Remove extra definitions.
9654 (calc-coth): New function.
9655 (calcFunc-cot): Fix `let'.
9656
9657 2005-02-19 Eli Zaretskii <eliz@gnu.org>
9658
9659 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
9660 the reasons we use "type pc" in these faces.
9661
9662 * button.el (button): Ditto.
9663
9664 2005-02-19 Michael Mauger <mmaug@yahoo.com>
9665
9666 * replace.el (query-replace-read-from): Set the value of
9667 query-replace-from-history-variable to handle the case of an empty
9668 string entered to accept the suggested default.
9669
9670 * net/tramp.el (tramp-file-name-for-operation):
9671 Use dired-call-process instead of dired-call-process-command.
9672
9673 2005-02-19 Jay Belanger <belanger@truman.edu>
9674
9675 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
9676 (math-div-non-trig): New variables.
9677 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
9678 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
9679 (math-combine-prod, math-div-symb-fancy): Add simplifications for
9680 trig expressions.
9681
9682 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
9683
9684 * progmodes/gdb-ui.el (gdb-var-update-handler)
9685 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
9686 for watch expressions,
9687 (gdb-var-create-handler): Don't set speedbar-update-flag.
9688 (gdb-post-prompt): Simplify test for speedbar.
9689
9690 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
9691
9692 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
9693 (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
9694 we use the syntax table of the correct buffer.
9695 (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
9696 Felix Gatzemeier.
9697
9698 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
9699 (ediff-file-remote-p): Make synonymous with file-remote-p.
9700 In all deffaces ediff-*-face-*, use min-colors.
9701
9702 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
9703 ediff-recurse-to-subdirectories.
9704 (ediff-mark-if-equal): Check that the arguments are strings, use
9705 ediff-same-contents (after to Felix Gatzemeier).
9706
9707 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
9708 nil.
9709
9710 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
9711
9712 * log-view.el (log-view-message-re): Fix up Subversion regexp.
9713
9714 2005-02-18 David Kastrup <dak@gnu.org>
9715
9716 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
9717 use `mark-active' when defined.
9718
9719 2005-02-18 Kenichi Handa <handa@m17n.org>
9720
9721 * ps-print.el (ps-font-info-database): New entry
9722 ZapfChancery-MediumItalic with correct font name. Fix font name
9723 of the entry Zapf-Chancery-MediumItalic.
9724
9725 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
9726
9727 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
9728
9729 2005-02-16 Kim F. Storm <storm@cua.dk>
9730
9731 * ido.el (ido-fallback-command): Pass user input to fallback command.
9732
9733 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
9734
9735 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
9736 (gdb-find-file-hook): Add server prefix.
9737
9738 2005-02-16 Richard M. Stallman <rms@gnu.org>
9739
9740 * replace.el (perform-replace): Pass new args to replace-highlight.
9741 (replace-highlight): Take region args,
9742 and pass them to isearch-lazy-highlight-new-loop.
9743
9744 * novice.el (disabled-command-hook): Autoload the defalias
9745 and the make-obsolete-variable call.
9746
9747 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
9748
9749 * isearch.el (isearch-lazy-highlight-start-limit)
9750 (isearch-lazy-highlight-end-limit): New variables limit
9751 the region for highlighting.
9752 (isearch-lazy-highlight-new-loop): New args BEG and END.
9753 (isearch-lazy-highlight-search): Use the new vars.
9754 (isearch-lazy-highlight-update): Likewise.
9755
9756 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
9757
9758 * cus-start.el (all): Use default-boundp.
9759
9760 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
9761
9762 * menu-bar.el (menu-bar-select-frame): Handle current frame.
9763
9764 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
9765
9766 * autorevert.el (auto-revert-stop-on-user-input)
9767 (auto-revert-verbose): Doc fixes.
9768
9769 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
9770
9771 * international/mule-cmds.el (set-locale-environment): Remove call
9772 to set-selection-coding-system on Windows.
9773
9774 2005-02-15 Jay Belanger <belanger@truman.edu>
9775
9776 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
9777 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
9778 calcFunc-coth.
9779 (math-simplify-sqrt): Add simplifications.
9780
9781 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
9782 to list.
9783
9784 * calc/calc-ext.el: Add functions to autoloads.
9785
9786 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
9787 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
9788 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
9789 (math-csc-raw, math-cot-raw): New functions.
9790
9791 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
9792
9793 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
9794 the variable name in a message.
9795
9796 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
9797 calcFunc-csc, calcFunc-cot.
9798
9799 * calc/calcalg2.el: Add derivative and integration rules for
9800 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
9801 calcFunc-csch, calcFunc-coth.
9802 (math-do-integral-methods): Add to checks for when to use
9803 substitutions.
9804
9805 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
9806
9807 2005-02-15 Lute Kamstra <lute@gnu.org>
9808
9809 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
9810 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
9811 <monnier@iro.umontreal.ca>
9812 (lisp-outline-level): Improve efficiency. Suggested by David
9813 Kastrup <dak@gnu.org>.
9814
9815 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
9816
9817 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
9818 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
9819 (gdb-set-gud-minor-mode-existing-buffers): New functions.
9820 (gdb-find-file-hook): New hook. Add it to find-file-hook.
9821 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
9822
9823 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
9824
9825 * cus-start.el (all): Comment change.
9826
9827 2005-02-14 Lute Kamstra <lute@gnu.org>
9828
9829 * cus-start.el (all): Check if symbol is void.
9830
9831 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
9832
9833 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
9834 optional argument to \cite.
9835
9836 2005-02-14 Richard M. Stallman <rms@gnu.org>
9837
9838 * cus-edit.el (custom-buffer-create-internal): Update help message.
9839 (custom-magic-alist): Update help messages.
9840
9841 * cus-start.el (all): Allow a var to specify a standard value.
9842
9843 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
9844
9845 * custom.el (custom-theme-set-variables): Handle variable aliases.
9846
9847 * frame.el (blink-cursor-timer): Doc fix.
9848 (blink-cursor): Make it an alias for `blink-cursor-mode' and
9849 declare obsolete.
9850 (blink-cursor-mode): Define with defcustom and use correct
9851 standard expression in that defcustom.
9852 * startup.el (command-line): Adapt to above changes in frame.el.
9853
9854 2005-02-11 Lute Kamstra <lute@gnu.org>
9855
9856 * apropos.el (apropos-score-doc): Prevent division by zero.
9857
9858 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
9859
9860 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
9861 (icalendar--get-event-property-attributes)
9862 (icalendar--get-event-properties)
9863 (icalendar--datetime-to-diary-date): New functions.
9864 (icalendar--split-value): Doc fix.
9865 (icalendar--datetime-to-noneuropean-date)
9866 (icalendar--datetime-to-european-date): New optional argument
9867 SEPARATOR. Return result as a string instead of a list.
9868 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
9869 (icalendar--convert-string-for-export): Rename arg S to STRING.
9870 (icalendar-export-region): Doc fix. Change name of error buffer.
9871 Save output buffer.
9872 (icalendar-import-file): Add blank at end of prompt.
9873 (icalendar-import-buffer): Doc fix. Do not switch to error
9874 buffer. Indicate status in return value.
9875 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
9876 buffer. Save output buffer. Handle exception from recurrence
9877 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
9878 events. Fix problems with weekly all-day events.
9879
9880 2005-02-10 Richard M. Stallman <rms@gnu.org>
9881
9882 * simple.el (eval-expression-print-format):
9883 Avoid warning about edebug-active.
9884
9885 * help.el (help-for-help-internal): Rename from help-for-help.
9886 (help-for-help): Define with defalias.
9887
9888 * font-core.el (font-lock-default-function): Use with-no-warnings.
9889
9890 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
9891
9892 * custom.el (defface): Doc fix.
9893
9894 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
9895
9896 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
9897 width 0" to prevent word wrapping problems.
9898
9899 2005-02-09 Kim F. Storm <storm@cua.dk>
9900
9901 * ido.el (ido-file-extensions-order): New defcustom.
9902 (ido-file-extension-lessp, ido-file-extension-aux)
9903 (ido-file-extension-order): New advanced file ordering.
9904 (ido-file-lessp): New simple file ordering.
9905 (ido-sort-list): Remove.
9906 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
9907 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
9908
9909 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
9910
9911 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
9912 that some versions of grep produce.
9913 (grep-mode-font-lock-keywords): Likewise.
9914
9915 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
9916
9917 * progmodes/gdb-ui.el (gdb-location-list): New variable.
9918 (gdb-cdir): Delete.
9919 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
9920 (gdb-source-info): Treat case when source file is in another
9921 directory properly.
9922 (gdb-get-location): New function.
9923
9924 2005-02-07 Jay Belanger <belanger@truman.edu>
9925
9926 * calc/calc-prog.el (calc-write-parse-table-part)
9927 (calc-fix-token-name): Fix a check for language type.
9928
9929 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
9930
9931 2005-02-07 Andre Spiegel <spiegel@gnu.org>
9932
9933 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
9934 as directory not writable.
9935
9936 2005-02-07 Kim F. Storm <storm@cua.dk>
9937
9938 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
9939 (cua--standard-movement-commands): Remove list.
9940 Instead, set CUA property value to move for movement commands.
9941 (cua-movement-commands): Remove. Users must set CUA prop instead.
9942 (cua--pre-command-handler): Check CUA property.
9943 (cua--init-keymaps): Don't remap undo commands.
9944 (cua-mode): Don't call cua--rectangle-on-off.
9945
9946 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
9947 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
9948 (cua--rect-undo-set-point): New var.
9949 (cua--rectangle-undo-boundary): Setup undo apply entry.
9950 (cua--rect-undo-handler): New function for rectangle undo.
9951 (cua--rect-start-position, cua--rect-end-position): Add.
9952 (cua--rectangle-post-command): Call cua--rectangle-set-corners
9953 for restored rectangle. Set point if cua--rect-undo-set-point.
9954
9955 2005-02-06 Jay Belanger <belanger@truman.edu>
9956
9957 * calc/calc-lang.el (calc-tex-language): Display more information
9958 in messages.
9959
9960 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
9961 in TeX mode.
9962
9963 2005-02-06 Richard M. Stallman <rms@gnu.org>
9964
9965 * emacs-lisp/lisp.el (buffer-end): Doc fix.
9966
9967 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
9968
9969 * net/ldap.el (ldap-search-internal): Support attributes with
9970 optional descriptions separated by a semi-colon, as in
9971 "userCertificate;binary".
9972
9973 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9974
9975 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
9976 isn't a cons (i.e. the version is 0).
9977
9978 2005-02-05 Eli Zaretskii <eliz@gnu.org>
9979
9980 * help.el (help-for-help): Doc fix.
9981
9982 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
9983
9984 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
9985 GDB-Windows on the menu-bar as this works better.
9986
9987 2005-02-04 Jay Belanger <belanger@truman.edu>
9988
9989 * calc/calc-embed.el (calc-embedded-update): Don't put in
9990 unnecessary newlines. Adjust the end of formula marker.
9991
9992 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
9993 (math-latex-parse-two-args): New function.
9994
9995 2005-02-03 Lute Kamstra <lute@gnu.org>
9996
9997 * help-fns.el (help-with-tutorial): Make sure that users cannot
9998 remove the entire text of the tutorial by means of `undo'.
9999
10000 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
10001
10002 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
10003 in recent changes, where the ispell process was repeatedly
10004 killed & restarted.
10005
10006 * international/mule-cmds.el (set-locale-environment): Set file-name
10007 coding system to utf-8 on Darwin systems.
10008 (set-default-coding-systems): Don't set default-file-name-coding-system
10009 on Darwin systems.
10010
10011 2005-02-03 Richard M. Stallman <rms@gnu.org>
10012
10013 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
10014
10015 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
10016
10017 * faces.el (list-faces-display): Add optional argument.
10018
10019 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
10020
10021 * font-core.el (font-lock-default-function): Handle the rare case where
10022 only font-lock-keywords is set.
10023
10024 2005-02-02 Kenichi Handa <handa@m17n.org>
10025
10026 * international/characters.el: Cancel previous change for
10027 I-WITH-DOT-ABOVE and DOTLESS-i.
10028
10029 * international/latin-5.el: Cancel previous change.
10030
10031 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
10032
10033 * progmodes/gud.el: Correction to syntax in gud-menu-map.
10034
10035 2005-02-02 Kenichi Handa <handa@m17n.org>
10036
10037 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
10038 DOTLESS-i.
10039
10040 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
10041 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
10042
10043 * case-table.el (get-upcase-table): New function.
10044 (copy-case-table): Copy upcaes table too if non-nil.
10045 (set-case-syntax-delims): Maintain upcase table too.
10046 (set-case-syntax-pair): Likewise.
10047 (set-upcase-syntax, set-downcase-syntax): New functions.
10048 (set-case-syntax): Maintain upcase table too.
10049
10050 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
10051
10052 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
10053
10054 * progmodes/gud.el (gud-goto-info): New function.
10055 (gud-tool-bar-map): Use correct icon.
10056
10057 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
10058
10059 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
10060 When delegating, order args in the funcall correctly.
10061
10062 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
10063
10064 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
10065
10066 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
10067
10068 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
10069 buffer not visiting a file.
10070
10071 2005-01-31 Jay Belanger <belanger@truman.edu>
10072
10073 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
10074 bound on the line with the formula.
10075
10076 2005-01-31 Kim F. Storm <storm@cua.dk>
10077
10078 * ses.el (ses-create-cell-variable-range)
10079 (ses-destroy-cell-variable-range, ses-reset-header-string)
10080 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
10081 (ses-insert-row): Fix format of apply undo entries.
10082
10083 2005-01-31 Jay Belanger <belanger@truman.edu>
10084
10085 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
10086 parts.
10087
10088 * calc/calc-embed.el (calc-embedded-open-formula)
10089 (calc-embedded-close-formula): Ignore matrix environments.
10090
10091 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
10092 TeX mode.
10093
10094 * calc/calc-lang.el (math-function-table, math-oper-table)
10095 (math-variable-table): Adjust the LaTeX portions.
10096
10097 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
10098 (math-latex-ignore-words): New constant.
10099
10100 2005-01-31 Richard M. Stallman <rms@gnu.org>
10101
10102 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
10103 (ispell-local-dictionary): Doc fix.
10104 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
10105 Don't reinitialize at run time. Don't defcustom.
10106 All uses changed to append ispell-local-dictionary-alist,
10107 or check it first.
10108 (ispell-current-dictionary): New variable for dictionary in use.
10109 (ispell-dictionary): Now used only for global default.
10110 (ispell-start-process): Set ispell-current-dictionary,
10111 not ispell-dictionary.
10112 (ispell-change-dictionary): Use this only for setting
10113 user preferences.
10114 (ispell-internal-change-dictionary): New function
10115 to change the current dictionary in use.
10116 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
10117 Use ispell-current-dictionary.
10118 Handle ispell-local-dictionary-overridden.
10119 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
10120
10121 2005-01-31 Jay Belanger <belanger@truman.edu>
10122
10123 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
10124
10125 * calc/calc-ext.el: Add calc-latex-language to autoloads.
10126 (calc-mode-map): Add calc-latex-language.
10127
10128 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
10129 (math-latex-print-frac): New functions.
10130 (math-oper-table, math-function-table, math-variable-table)
10131 (math-complex-format, math-input-filter): Add latex properties.
10132 (calc-set-language): Set math-expr-special-function-mapping.
10133
10134 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
10135 (calc-write-parse-table-part): Add LaTeX support.
10136
10137 * calc/calc.el (calc-language): Adjust docstring.
10138 (calc-set-mode-line): Add LaTeX support.
10139 (math-expr-special-function-mapping): New variable.
10140 (math-tex-ignore-words): Add to list.
10141
10142 * calc/calccomp.el (math-compose-expr, math-compose-rows):
10143 Add LaTeX support.
10144 (math-compose-expr): Add support for special functions.
10145
10146 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
10147
10148 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
10149
10150 * progmodes/gdb-ui.el (gdb-memory-address)
10151 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
10152 (gdb-memory-mode-map, gdb-memory-format-keymap)
10153 (gdb-memory-format-menu, gdb-memory-unit-keymap)
10154 (gdb-memory-unit-menu): New variables for a buffer
10155 that lets the user examine program memory.
10156 (gdb-memory-set-address, gdb-memory-set-repeat-count)
10157 (gdb-memory-format-binary, gdb-memory-format-octal)
10158 (gdb-memory-format-unsigned, gdb-memory-format-signed)
10159 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
10160 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
10161 (gdb-memory-unit-word, gdb-memory-unit-halfword)
10162 (gdb-memory-unit-byte, gdb-memory-unit-menu)
10163 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
10164 (gdb-memory-mode, gdb-memory-buffer-name)
10165 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
10166 New functions for above buffer.
10167
10168 2005-01-30 Richard M. Stallman <rms@gnu.org>
10169
10170 * cus-edit.el (custom-bury-buffer): Function deleted.
10171 (custom-buffer-done-function): Option deleted.
10172 (custom-buffer-done-kill): New (replacement option.
10173 (Custom-buffer-done): Call quit-window.
10174 (custom-buffer-create-internal): Update for above changes.
10175
10176 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
10177
10178 * simple.el (undo-ask-before-discard): New var.
10179 (undo-outer-limit-truncate): Implement it.
10180 (undo-extra-outer-limit): Doc update.
10181
10182 2005-01-29 Richard M. Stallman <rms@gnu.org>
10183
10184 * ses.el (undo-more): Delete defadvice.
10185 (ses-begin-change): Doc fix.
10186
10187 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
10188 instead of rebinding C-x u and C-_.
10189
10190 * files.el (normal-backup-enable-predicate): Return nil for files
10191 in /tmp, regardless of temporary-file-directory.
10192
10193 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
10194
10195 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
10196 (open-rectangle, delete-whitespace-rectangle-line)
10197 (clear-rectangle-line): If FILL, pass t instead of FILL
10198 for move-to-column's 2nd arg.
10199
10200 * simple.el (undo): Fix the test for continuing a series of undos.
10201 (undo-more): Set pending-undo-list to t when we reach end.
10202 (pending-undo-list): Move up defvar.
10203
10204 * wid-edit.el (widget-button-click):
10205 Shorten the range of the track-mouse binding.
10206
10207 * comint.el (comint-insert-input): Undo previous changes;
10208 use last-input-event in interactive spec.
10209
10210 2005-01-29 Eli Zaretskii <eliz@gnu.org>
10211
10212 * progmodes/compile.el (compilation-start): Bind buffer-read-only
10213 to nil before invoking call-process. Reset buffer's modified flag
10214 after fontifying it in the no-async branch.
10215
10216 * wid-edit.el (widget-specify-button): If mouse pointer shape
10217 cannot be changed, use mouse face instead.
10218
10219 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
10220
10221 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
10222 (gdb-goto-breakpoint): Make breakpoint handling work on template
10223 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
10224 (gdb-assembler-custom): Update to recognize breakpoint information
10225 added on 2005-01-19.
10226
10227 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
10228
10229 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
10230 (dsssl-mode): Use define-derived-mode.
10231 (scheme-mode-initialize): Remove.
10232 (scheme-mode): Use run-mode-hooks.
10233
10234 * cus-edit.el (customize-group-other-window)
10235 (custom-buffer-create-other-window): Don't override special-display-*.
10236 (custom-mode-map): Make it dense.
10237
10238 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
10239 sets the default value.
10240
10241 2005-01-28 Eli Zaretskii <eliz@gnu.org>
10242
10243 * descr-text.el: Add more keywords.
10244
10245 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
10246
10247 * speedbar.el: Avoid unnecessary use of locate-library.
10248
10249 * international/mule-cmds.el (standard-display-european-internal):
10250 Don't fiddle with latin-1 non-break space any more since it's now
10251 special cased in the C code.
10252 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
10253
10254 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
10255
10256 * cus-start.el (all): Add `undo-outer-limit'.
10257
10258 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
10259
10260 * textmodes/bibtex.el (bibtex-format-entry):
10261 Use `bibtex-empty-field-re' only on the text of fields, not on entire
10262 field lines.
10263 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
10264 not on part of a buffer.
10265
10266 2005-01-25 Lute Kamstra <lute@gnu.org>
10267
10268 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
10269 nonempty field text strings like "{letters\\macro{}more letters}".
10270 Clarify docstring.
10271 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
10272 (bibtex-entry-offset, bibtex-parse-association)
10273 (bibtex-parse-field-name): Fix typos in docstrings.
10274 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
10275
10276 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
10277
10278 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
10279 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
10280 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
10281 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
10282
10283 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
10284 isearch minor mode.
10285
10286 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
10287
10288 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
10289
10290 2005-01-24 Lute Kamstra <lute@gnu.org>
10291
10292 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
10293 CASECHARS and NOT-CASECHARS regular expressions of the
10294 "nederlands" and "nederlands8" dictionaries to prevent a "Range
10295 striding over charsets" error.
10296
10297 2005-01-24 Jay Belanger <belanger@truman.edu>
10298
10299 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
10300 display variable name.
10301
10302 2005-01-24 Kenichi Handa <handa@m17n.org>
10303
10304 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
10305 Fix setting of the element of encoded-kbd-iso2022-invocations.
10306
10307 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
10308
10309 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
10310 (gdb-threads-select): Change to also accept mouse events.
10311 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
10312 (gdb-threads-mouse-select): Delete.
10313
10314 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
10315
10316 * files.el (insert-directory): Take care of empty directory,
10317 listed without -a switch.
10318
10319 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
10320
10321 * textmodes/refill.el (refill-post-command-function):
10322 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
10323 to the list of functions that we should be careful not to undo.
10324 (refill-late-fill-paragraph-function): Remove.
10325 (refill-saved-state): New var.
10326 (refill-mode): Use it to save fill-paragraph-function.
10327 Save also the value of auto-fill-function.
10328
10329 * term/w32-win.el: Simplify code.
10330
10331 2005-01-23 Kim F. Storm <storm@cua.dk>
10332
10333 * simple.el (line-move): Adapt to new return value from
10334 pos-visible-in-window-p.
10335
10336 * simple.el (line-move): Fix last change. Check partial
10337 visibility at point rather than at window-start.
10338
10339 2005-01-22 Jason Rumney <jasonr@gnu.org>
10340
10341 * term/w32-win.el (xw-defined-colors): Remove debug-message.
10342
10343 2005-01-22 David Kastrup <dak@gnu.org>
10344
10345 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
10346
10347 2005-01-22 Eli Zaretskii <eliz@gnu.org>
10348
10349 * type-break.el (type-break-mode): Add a test for
10350 type-break-file-name being non-nil.
10351
10352 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
10353
10354 * net/eudc.el (top level): Call (message "") via progn, so that
10355 eudc-options-file is loaded.
10356
10357 2005-01-22 Kim F. Storm <storm@cua.dk>
10358
10359 * simple.el (line-move-1): Rename from line-move.
10360 (line-move): New function that adjusts vscroll for partially
10361 visible rows, and calls line-move-1 otherwise.
10362
10363 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
10364
10365 * pcomplete.el: Define pcomplete-read-event instead of read-event,
10366 since it's not a complete read-event implementation
10367
10368 2005-01-20 Jay Belanger <belanger@truman.edu>
10369
10370 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
10371 for called function.
10372
10373 2005-01-20 Steven Tamm <steventamm@mac.com>
10374
10375 * term/mac-win.el (process-connection-type): Remove.
10376 Controlled now by s/darwin.h:PTY_ITERATION.
10377
10378 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
10379
10380 * window.el (handle-select-window): Don't switch window when we're
10381 in the minibuffer.
10382
10383 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
10384
10385 * subr.el (dotimes-with-progress-reporter): New macro.
10386
10387 * ses.el (ses-dotimes-msg): Remove macro.
10388 Use `dotimes-with-progress-reporter' instead.
10389
10390 2005-01-19 Steven Tamm <steventamm@mac.com>
10391
10392 * term/mac-win.el (process-connection-type): Use new
10393 operating-system-release variable to use ptys on Darwin 7 (OS X
10394 10.3) when using carbon build.
10395
10396 2005-01-19 Jay Belanger <belanger@truman.edu>
10397
10398 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
10399 flags if the last command was a tab or M-tab.
10400
10401 * calc/calc-prog.el (calc-user-define-edit): Put original formula
10402 in formula editing buffer.
10403
10404 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
10405
10406 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
10407 breakpoint image symbol in margin.
10408
10409 2005-01-19 Jay Belanger <belanger@truman.edu>
10410
10411 * calc/calc-prog.el (calc-execute-kbd-macro):
10412 Ignore calc-keep-arg-flag.
10413
10414 2005-01-19 Kenichi Handa <handa@m17n.org>
10415
10416 * textmodes/ispell.el (ispell-looking-at): New function.
10417 (ispell-process-line): Use ispell-looking-at to compare the ispell
10418 output and the buffer contents.
10419
10420 2005-01-18 Jay Belanger <belanger@truman.edu>
10421
10422 * calc/calc.el (calc-display-raw): Fix docstring.
10423
10424 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
10425
10426 * simple.el (blink-matching-open): Strip extra info from syntax.
10427
10428 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
10429 funny chars in the end-of-here-doc marker.
10430
10431 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
10432
10433 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
10434 that enable/disabled state of breakpoints is shown correctly in
10435 fringe and on ttys.
10436 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
10437 Add breakpoint information as text properties.
10438 (gdb-mouse-toggle-breakpoint):
10439 Rename to gdb-mouse-set-clear-breakpoint.
10440 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
10441 breakpoints in the margin.
10442 (gdb-remove-strings): Simplify.
10443
10444 2005-01-17 Jay Belanger <belanger@truman.edu>
10445
10446 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
10447 erasing buffer.
10448
10449 2005-01-17 Richard M. Stallman <rms@gnu.org>
10450
10451 * progmodes/grep.el (grep-find): Copy from `grep' the condition
10452 for calling grep-compute-defaults.
10453
10454 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
10455 if buffer is empty.
10456
10457 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
10458
10459 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
10460
10461 * hilit-chg.el (highlight-changes-mode): Don't autoload.
10462
10463 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
10464 non-preloaded variables.
10465
10466 2005-01-17 Steven Tamm <steventamm@mac.com>
10467
10468 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
10469 tex-shell cause to force interactivity when using pipes.
10470
10471 2005-01-17 Kim F. Storm <storm@cua.dk>
10472
10473 * simple.el (just-one-space): Make arg optional.
10474
10475 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
10476
10477 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
10478 posn-at-x-y to t to access left-margin.
10479
10480 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
10481
10482 Sync with Tramp 2.0.47.
10483
10484 * tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
10485 catching keep-date problems in cp/scp operations.
10486 (tramp-handle-copy-file): Don't call `set-file-modes'
10487 unconditionally. Specialized functions should know better what is
10488 necessary. This improves performance a little bit, and the
10489 functions could catch errors with `cp -p' and `scp -p'.
10490 (tramp-do-copy-or-rename-file-via-buffer)
10491 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
10492 when appropriate.
10493 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
10494 Call `set-file-modes' when appropriate.
10495 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
10496 Johnsson <isak@hypergene.com>
10497 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
10498 of both Tramp buffer and debug buffer. Reported by Joakim Verona
10499 <joakim@verona.se>
10500 (tramp-file-name-for-operation): Mark `shell-command' as magic for
10501 Emacs only.
10502
10503 * tramp-util.el (tramp-minor-mode): New minor mode. Add it to
10504 `find-file-hooks' and `dired-mode-hook'.
10505 (tramp-minor-mode-map): Respective map. Add remapping for
10506 `compile' and `recompile'.
10507 (tramp-remap-command, tramp-recompile): New defuns.
10508 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
10509 in buffer "*Compilation*". Call the commands asynchronously.
10510
10511 * tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
10512 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
10513 `shell-command', because it isn't magic in XEmacs. Reported by
10514 Adrian Aichner <adrian@xemacs.org>.
10515
10516 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
10517 `substitute-in-file-name.
10518 (tramp-smb-handle-substitute-in-file-name): New defun.
10519 (tramp-smb-advice-PC-do-completion): Delete advice.
10520
10521 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
10522
10523 * tramp.el (tramp-wait-for-output): Fix typo in echo processing.
10524 Fix error in deleting region.
10525
10526 2005-01-15 Richard M. Stallman <rms@gnu.org>
10527
10528 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
10529 In non-temp buffer, switch syntax table temporarily.
10530
10531 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
10532
10533 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
10534
10535 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
10536
10537 * imenu.el (imenu--split-menu): Copy menulist before sorting.
10538 (imenu--generic-function): Use START, not BEG, as pos of definition.
10539
10540 * simple.el (just-one-space): Argument specifies number of spaces.
10541
10542 * simple.el (eval-expression-print-format): Avoid warning
10543 about edebug-active.
10544
10545 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
10546
10547 * progmodes/sh-script.el: Code copied from make-mode.el
10548 with small changes,
10549 (sh-mode-map): Bind C-c C-\.
10550 (sh-backslash-column, sh-backslash-align): New variables.
10551 (sh-backslash-region, sh-append-backslash): New functions.
10552
10553 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
10554
10555 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
10556 (rmail-pop-password, rmail-pop-password-required): Move to
10557 rmail-obsolete group.
10558 (rmail-set-pop-password): Rename to rmail-set-remote-password.
10559 All callers updated.
10560 (rmail-get-pop-password): Rename to rmail-get-remote-password.
10561 Take an argument specifying whether it is POP or IMAP mailbox we
10562 are using. All callers updated.
10563 (rmail-pop-password-error): Rename to
10564 rmail-remote-password-error. Added mailutils-specific error message.
10565 (rmail-movemail-search-path)
10566 (rmail-movemail-variant-in-use): New variables.
10567 (rmail-remote-password, rmail-remote-password-required):
10568 New customization variables.
10569 (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
10570 (rmail-parse-url): New function.
10571 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
10572 with GNU mailutils movemail.
10573
10574 2005-01-15 Kevin Ryde <user42@zip.com.au>
10575
10576 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
10577 suffix to space, $ or '$, to correctly position point when going
10578 to @table style constants like DBL_MAX.
10579
10580 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
10581
10582 * type-break.el (type-break-mode, type-break-file-time)
10583 (type-break-file-keystroke-count, type-break-choose-file):
10584 Don't store data in or load data from the file if type-break-file-name
10585 is nil.
10586 (type-break-file-name): Doc update as per the above.
10587
10588 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
10589
10590 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
10591 lookup-key might return nil; handle that.
10592
10593 2005-01-15 Alan Mackenzie <acm@muc.de>
10594
10595 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
10596 rather than the element found, thus enabling the tree to be setcar'd.
10597
10598 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
10599
10600 * textmodes/org.el (org-show-following-heading): New option.
10601 (org-show-hierarchy-above): Use `org-show-following-heading'.
10602 (org-cycle): Documentation fix.
10603
10604 * textmodes/org.el (orgtbl-optimized): New option
10605 (orgtbl-mode): New command, a minor mode.
10606 (orgtbl-mode-map): New variable.
10607 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
10608 (orgtbl-error, orgtbl-self-insert-command)
10609 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
10610
10611 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
10612 a local variable in each org-mode buffer.
10613
10614 * textmodes/org.el (org-set-regexps-and-options): Rename from
10615 `org-set-regexps'. Added checking for STARTUP keyword.
10616 (org-get-current-options): Add STARTUP options.
10617 (org-table-insert-row): Make mode intelligent about when
10618 realignment is needed.
10619 (org-self-insert-command, org-delete-backward-char, org-delete-char):
10620 New commands.
10621 (org-enable-table-editor): New default value `optimized'.
10622 (org-table-blank-field): Support blanking regions if active.
10623
10624 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
10625
10626 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
10627 if the year is not given.
10628
10629 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
10630 Add new escapes %m and %M, fixed bug with %F by adding
10631 save-match-data.
10632 (reftex-reference): Remove ?. from list of spaces.
10633 (reftex-label-info): Add automatic label prefix recognition.
10634
10635 * textmodes/reftex-index.el (reftex-index-next-phrase):
10636 Add slave parameter to call of `reftex-index-this-phrase'.
10637 (reftex-index-this-phrase): New optional argument.
10638 (reftex-index-region-phrases): Add slave parameter to call of
10639 `reftex-index-this-phrase'.
10640 (reftex-display-index): New argument redo.
10641 (reftex-index-rescan): Add 'redo to arguments of
10642 `reftex-display-index'.
10643 (reftex-index-Rescan, reftex-index-revert)
10644 (reftex-index-switch-index-tag): Add 'redo to arguments of
10645 `reftex-display-index'.
10646 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
10647 indexing. Fix bug with matching is there is a quote before or
10648 after the word.
10649
10650 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
10651 Fix bug when collecting citation keys in lines with comments.
10652 (reftex-citation): Prefix argument no longer rescans the document,
10653 but forces prompting for optional arguments of cite macros.
10654 (reftex-do-citation): Prompting for optional arguments implemented.
10655
10656 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
10657 Add optional arguments to most cite commands.
10658 (reftex-cite-cleanup-optional-args): New option
10659 (reftex-cite-prompt-optional-args): New option.
10660 (reftex-trust-label-prefix): New option.
10661
10662 * textmodes/reftex-toc.el (reftex-toc-find-section):
10663 Add push-mark before changing the position in the buffer.
10664
10665 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
10666 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
10667
10668 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
10669
10670 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
10671 more carefully.
10672
10673 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
10674
10675 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
10676 (sgml-mode): Use it.
10677 (sgml-get-context): Better keep track of implicitly closed tags.
10678
10679 2005-01-13 Kenichi Handa <handa@m17n.org>
10680
10681 * textmodes/ispell.el: These changes are to fix misalignment error
10682 caused by equivalent characters of different Emacs charsets.
10683 (ispell-unified-chars-table): New variable.
10684 (ispell-get-decoded-string): New function.
10685 (ispell-get-casechars, ispell-get-not-casechars)
10686 (ispell-get-otherchars): Call ispell-get-decoded-string.
10687
10688 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
10689
10690 * custom.el (custom-declare-variable): Just put symbol instead
10691 of (defvar . symbol) in `current-load-list'.
10692
10693 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
10694
10695 * emacs-lisp/elint.el: Fixed typo in Commentary section.
10696
10697 2005-01-12 Jay Belanger <belanger@truman.edu>
10698
10699 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
10700 to create a Calc summary.
10701
10702 2005-01-12 Kim F. Storm <storm@cua.dk>
10703
10704 * mouse.el (mouse-on-link-p): Change functionality and doc
10705 string to comply with latest description in lisp ref.
10706
10707 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
10708
10709 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
10710 Enable mouse clicks on mode-line, header-line and margin.
10711 (event-type): Give mouse event symbols an 'event-kind property
10712 with value 'mouse-click.
10713
10714 2005-01-12 Juri Linkov <juri@jurta.org>
10715
10716 * facemenu.el (list-colors-display): Add new arg buffer-name.
10717 Use it. Fix docstring. Replace code for identifying duplicate
10718 colors by the name with call to `list-colors-duplicates' which
10719 identifies duplicate colors by the value unless the color
10720 is one of special Windows colors. Set truncate-lines to t.
10721 Print sorted duplicate color names on each line. Indent to 22
10722 \(the longest color name in rgb.txt) instead of 20. Optimize.
10723 (list-colors-duplicates): New function.
10724 (facemenu-color-name-equal): Delete function.
10725
10726 * facemenu.el (list-colors-print): New function created from code
10727 in list-colors-display. Print #RRGGBB at the window right edge.
10728 (list-colors-display): When temp-buffer-show-function is not
10729 defined, call list-colors-print from temp-buffer-show-hook
10730 to get the right value of window-width in list-colors-print
10731 after the buffer is displayed.
10732
10733 * simple.el (pop-mark): Move deactivate-mark out of conditional
10734 part to deactivate the active mark regardless of the state of the
10735 mark ring.
10736
10737 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
10738 variables line in desktop files.
10739
10740 2005-01-12 Juri Linkov <juri@jurta.org>
10741
10742 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
10743 Bring together isearch highlight related options.
10744 (lazy-highlight): Replace group `replace' by `matching'.
10745 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
10746 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
10747 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
10748 and declare them obsolete.
10749 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
10750 (isearch-faces): Remove defgroup.
10751 (isearch-overlay, isearch-highlight, isearch-dehighlight):
10752 Move isearch highlighting code closer to lazy highlighting code.
10753
10754 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
10755 (query-replace-highlight, query-replace-lazy-highlight)
10756 (query-replace): Move definitions to the beginning of the file.
10757
10758 2005-01-11 Juri Linkov <juri@jurta.org>
10759
10760 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
10761 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
10762 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
10763
10764 * info.el (Info-history-forward): New variable.
10765 (Info-select-node): Reset Info-history-forward to nil.
10766 (Info-last): Turn into defalias.
10767 (Info-history-back): Rename from Info-last.
10768 Add current node to Info-history-forward.
10769 (Info-history-forward): New fun.
10770 (Info-mode-map): Replace Info-last by Info-history-back.
10771 Bind Info-history-forward to "r".
10772 (Info-mode-menu): Replace Info-last by Info-history-back.
10773 Fix menu item text. Add menu item for Info-history-forward.
10774 (info-tool-bar-map): Replace Info-last by Info-history-back.
10775 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
10776 for Info-history-forward.
10777 (Info-mode): Replace Info-last by Info-history-back in docstring.
10778 Add local variable Info-history-forward.
10779 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
10780
10781 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
10782
10783 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
10784 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
10785 Ignore select-window events rather than fiddle with
10786 mouse-autoselect-window.
10787
10788 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
10789
10790 * type-break.el (type-break-mode): Fix previous change.
10791
10792 2005-01-10 Jay Belanger <belanger@truman.edu>
10793
10794 * calc/calc-ext.el (calc-reset): Reset when inside embedded
10795 calculator; only reset when point is inside a calculator.
10796 Don't adjust the window height if the window takes up the whole height
10797 of the frame.
10798
10799 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
10800
10801 * ebuff-menu.el (Electric-buffer-menu-mode):
10802 Preserve value of buffer-local var header-line-format.
10803
10804 2005-01-09 Jay Belanger <belanger@truman.edu>
10805
10806 * calc/calc.el (calc-mode-var-list-restore-saved-values):
10807 Make sure settings file exists before accessing it.
10808
10809 * calc/calc-embed.el (calc-embedded-subst):
10810 Replace math-multi-subst-rec, which is only supposed to be called
10811 by math-multi-subst, by math-multi-subst.
10812
10813 2005-01-09 Andre Spiegel <spiegel@gnu.org>
10814
10815 * vc.el (vc-allow-async-revert): New user option.
10816 (vc-disable-async-diff): New internal variable.
10817 (vc-revert-buffer): Use them to disable asynchronous diff.
10818
10819 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
10820 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
10821 asynchronously if vc-disable-async-diff is t.
10822
10823 2005-01-09 Jay Belanger <belanger@truman.edu>
10824
10825 * calc/calc.el (defcalcmodevar): New macro.
10826 (calc-mode-var-list-restore-default-values)
10827 (calc-mode-var-list-restore-saved-values): New functions.
10828 (calc-mode-var-list): Use defcalcmodevar to define it.
10829 (calc-always-load-extensions, calc-line-numbering)
10830 (calc-line-breaking, calc-display-just, calc-display-origin)
10831 (calc-number-radix, calc-leading-zeros, calc-group-digits)
10832 (calc-group-char, calc-point-char, calc-frac-format)
10833 (calc-prefer-frac, calc-hms-format, calc-date-format)
10834 (calc-float-format, calc-full-float-format, calc-complex-format)
10835 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
10836 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
10837 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
10838 (calc-matrix-brackets, calc-language, calc-language-option)
10839 (calc-left-label, calc-right-label, calc-word-size)
10840 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
10841 (calc-display-raw, calc-internal-prec, calc-angle-mode)
10842 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
10843 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
10844 (calc-window-height, calc-display-trail, calc-show-selections)
10845 (calc-use-selections, calc-assoc-selections)
10846 (calc-display-working-message, calc-auto-why, calc-timing)
10847 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
10848 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
10849 (calc-gnuplot-default-device, calc-gnuplot-default-output)
10850 (calc-gnuplot-print-device, calc-gnuplot-print-output)
10851 (calc-gnuplot-geometry, calc-graph-default-resolution)
10852 (calc-graph-default-resolution-3d, calc-invocation-macro)
10853 (calc-show-banner): Use defcalcmodevar to declare them and set
10854 their default values.
10855
10856 * calc/calc-ext.el (calc-reset): Restore saved values of variables
10857 instead of default values (but restore default values if there is
10858 an argument of 0).
10859
10860 2005-01-09 David Kastrup <dak@gnu.org>
10861
10862 * desktop.el (desktop-restore-eager): Fix typo in type.
10863
10864 2005-01-08 Richard M. Stallman <rms@gnu.org>
10865
10866 * cus-edit.el (customize): Delete :link.
10867
10868 2005-01-08 Jay Belanger <belanger@truman.edu>
10869
10870 * calc/calc.el (calc-mode): Remove the extension from the
10871 `calc-settings-file' file name when loading it.
10872
10873 2005-01-08 Kim F. Storm <storm@cua.dk>
10874
10875 * info.el (Info-mode-map, Info-next-link-keymap)
10876 (Info-prev-link-keymap, Info-up-link-keymap):
10877 Map follow-link to mouse-face.
10878 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
10879
10880 2005-01-08 Jay Belanger <belanger@truman.edu>
10881
10882 * calc/calc.el (calc-settings-file): Change default value.
10883 Suggested by cgw in a comment in calc-mode.el.
10884
10885 * calc/calc-mode.el (calc-settings-file-name):
10886 Compare calc-settings-file to user-init-file instead of ~/.emacs.
10887 Replace ~/.emacs in a prompt by calc-settings-file.
10888
10889 2005-01-07 Lars Hansen <larsh@math.ku.dk>
10890
10891 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
10892 (desktop-lazy-idle-delay): New customizable variables.
10893 (desktop-buffer-args-list): New variable.
10894 (desktop-append-buffer-args): New function.
10895 (desktop-save): Call desktop-append-buffer-args for some buffers.
10896 (desktop-lazy-create-buffer): New function.
10897 (desktop-idle-create-buffers): New function.
10898 (desktop-read): Add message about buffers to restore lazily.
10899 (desktop-lazy-abort): New command.
10900 (desktop-clear): Call desktop-lazy-abort.
10901 (desktop-lazy-complete): New command.
10902
10903 2005-01-06 Richard M. Stallman <rms@gnu.org>
10904
10905 * emacs-lisp/find-func.el (find-face-definition):
10906 Rename from find-face.
10907
10908 2005-01-06 Kim F. Storm <storm@cua.dk>
10909
10910 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
10911
10912 * man.el (Man-xref-man-page, Man-xref-header-file)
10913 (Man-xref-normal-file): Add follow-link property.
10914
10915 2005-01-06 Jay Belanger <belanger@truman.edu>
10916
10917 * calc/calc-units.el: Make sure the proper macro definitions are
10918 available when compiling.
10919
10920 2005-01-06 Juri Linkov <juri@jurta.org>
10921
10922 * isearch.el (isearch-lazy-highlight-update):
10923 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
10924
10925 2005-01-06 Miles Bader <miles@gnu.org>
10926
10927 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
10928 (isearch-lazy-highlight-face): Use new name.
10929
10930 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
10931
10932 * uniquify.el (uniquify-rationalize-file-buffer-names):
10933 Re-add an interactive spec.
10934 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
10935 to the same name.
10936
10937 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
10938 (isearch-update, isearch-done): Adjust calls accordingly.
10939
10940 2005-01-05 Richard M. Stallman <rms@gnu.org>
10941
10942 * custom.el (custom-set-variables, custom-theme-set-variables):
10943 Clarify documentation.
10944
10945 * emacs-lisp/find-func.el (find-variable)
10946 (find-variable-other-window, find-variable-other-frame):
10947 Fix the TYPE args to find-function-read and find-function-do-it.
10948 (find-function): Doc fix.
10949 (find-function-at-point): Replace function-at-point alias.
10950
10951 2005-01-04 Richard M. Stallman <rms@gnu.org>
10952
10953 * cus-face.el (custom-declare-face):
10954 Record defface in current-load-list.
10955
10956 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
10957
10958 * emacs-lisp/find-func.el: Doc fixes.
10959 (find-face-regexp): New variable.
10960 (find-function-regexp-alist): New variable.
10961 (find-function-C-source): Third arg is now TYPE.
10962 (find-function-search-for-symbol): Handle general TYPE.
10963 (find-function-read, find-function-do-it): Handle general TYPE.
10964 (find-definition-noselect, find-face): New functions.
10965 (function-at-point): Alias deleted.
10966
10967 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
10968
10969 * battery.el (display-battery-mode): Rename from display-battery.
10970 Handle the case where it gets turned off.
10971
10972 2005-01-04 Richard M. Stallman <rms@gnu.org>
10973
10974 * cus-edit.el (customize): Make :link point to user doc.
10975
10976 * man.el (Man-fontify-manpage): Turn off undo generation.
10977
10978 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
10979
10980 2005-01-04 Andreas Schwab <schwab@suse.de>
10981
10982 * files.el (insert-directory): Only look for error lines in
10983 inserted text. Don't move too far after processing --dired markers.
10984
10985 2005-01-04 Richard M. Stallman <rms@gnu.org>
10986
10987 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
10988 Don't expand if the character is @, period, dash, etc.
10989 (define-mail-abbrev): Quote names that contain problem characters.
10990
10991 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
10992
10993 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
10994
10995 2005-01-03 Richard M. Stallman <rms@gnu.org>
10996
10997 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
10998 (query-replace-highlight, query-replace-lazy-highlight)
10999 (query-replace): Definitions moved up. Doc fix.
11000
11001 2005-01-03 Richard M. Stallman <rms@gnu.org>
11002
11003 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
11004 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
11005 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
11006 (lazy-highlight-face): Rename from isearch-lazy-...
11007 Change all references to them.
11008
11009 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
11010
11011 * cus-edit.el (custom-file): Doc fix for defcustom.
11012 (custom-file): The function no longer sets the variable
11013 `custom-file' to its return value.
11014
11015 * startup.el (command-line): No longer load `custom-file'.
11016
11017 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
11018
11019 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
11020
11021 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
11022 Don't confuse module-prefixed identifiers for labels.
11023 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
11024
11025 2005-01-02 Richard M. Stallman <rms@gnu.org>
11026
11027 * files.el (basic-save-buffer-1): Fix previous change.
11028
11029 * loadhist.el (file-loadhist-lookup): New function.
11030 (file-provides, file-requires): Use it.
11031
11032 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
11033 instead of calculating the right size.
11034
11035 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
11036
11037 * vc-svn.el (vc-svn-diff): Stay local if possible.
11038
11039 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
11040
11041 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
11042
11043 * files.el (hack-local-variables): Fix last change.
11044
11045 2005-01-02 Jay Belanger <belanger@truman.edu>
11046
11047 * calc/calc-yank.el (calc-edit-top): New variable.
11048 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
11049 object. Change header properties.
11050 (calc-edit-finish, calc-edit-finish-stack-object)
11051 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
11052 edited object.
11053 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
11054 for the beginning of the edited object.
11055 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
11056 for the beginning of the edited object.
11057 * calc/calc-prog.el (calc-edit-macro-finish-edit)
11058 (calc-finish-formula-edit, calc-macro-repeats)
11059 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
11060 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
11061 beginning of the edited object.
11062 (calc-user-define-edit): Change the header for editing macros.
11063 Remove unnecessary variable.
11064
11065 2005-01-01 Jay Belanger <belanger@truman.edu>
11066
11067 * calc/calc-yank.el (calc-edit-mode): Change default header.
11068 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
11069 * calc/calc-store.el (calc-edit-variable): Change title to match new
11070 header.
11071 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
11072 mode to match new header.
11073 (calc-user-define-edit): Change titles to include names of commands.
11074 (calc-finish-formula-edit): Adjust to handle new header.
11075 (calc-finish-macro-edit): Remove.
11076 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
11077 (calc-edit-macro-command, calc-edit-macro-command-type)
11078 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
11079 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
11080 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
11081 (calc-edit-macro-finish-edit): New functions.
11082 (calc-user-define-edit): Use new functions to edit named calc macros.
11083
11084 2005-01-01 Stefan <monnier@iro.umontreal.ca>
11085
11086 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
11087
11088 * ses.el (copy-region-as-kill): Deactivate mark.
11089
11090 2005-01-01 Richard M. Stallman <rms@gnu.org>
11091
11092 * replace.el (occur-1): If the output buffer is also an input,
11093 don't kill it, rename it.
11094
11095 * faces.el (set-face-background, set-face-foreground): Doc fix.
11096
11097 * cus-face.el (custom-face-attributes): Fix :help-echo strings
11098 for :foreground and :background.
11099
11100 * dired.el (dired-view-command-alist): Variable deleted.
11101 (dired-view-file, dired-mouse-find-file-other-window):
11102 Delete the code to use it.
11103
11104 2005-01-01 Kim F. Storm <storm@cua.dk>
11105
11106 * image.el (insert-sliced-image): Use t for line-height property.
11107
11108 2004-12-31 Jay Belanger <belanger@truman.edu>
11109
11110 * calc/calc-store.el (calcVar-digit, calcVar-oper): Remove the need
11111 for "var-" at the beginning of the minibuffer.
11112
11113 2004-12-31 Richard M. Stallman <rms@gnu.org>
11114
11115 * faces.el (read-face-name):
11116 Don't treat an attribute spec as a list of faces.
11117
11118 * simple.el (undo): Use undo-equiv-table to detect
11119 unexpected changes since previous undo.
11120 (undo-list-saved): Variable deleted.
11121 (buffer-disable-undo): Don't alter undo-list-saved.
11122
11123 * files.el (require-final-newline): Allow `visit' and `visit-save'.
11124 (mode-require-final-newline): New option.
11125 (after-find-file): Handle require-final-newline with new values.
11126 (basic-save-buffer): Handle new values of require-final-newline.
11127
11128 * progmodes/sh-script.el (sh-require-final-newline):
11129 Alist value now controls whether to use mode-require-final-newline.
11130 (sh-set-shell): Implement that new meaning.
11131
11132 * progmodes/cc-vars.el (c-require-final-newline): Fix custom type, doc.
11133 * progmodes/cc-mode.el (c-common-init): Use mode-require-final-newline.
11134 * progmodes/antlr-mode.el (antlr-mode): Use mode-require-final-newline.
11135 Delete old-Emacs compatibility code.
11136 (antlr-c-common-init): Function deleted.
11137
11138 * net/snmp-mode.el (snmp-common-mode): Use mode-require-final-newline.
11139 * progmodes/vhdl-mode.el (vhdl-mode): Use mode-require-final-newline.
11140 * progmodes/simula.el (simula-mode): Use mode-require-final-newline.
11141 * progmodes/python.el (python-mode): Use mode-require-final-newline.
11142 * progmodes/perl-mode.el (perl-mode): Use mode-require-final-newline.
11143 * progmodes/modula2.el (modula-2-mode): Use mode-require-final-newline.
11144 * progmodes/mixal-mode.el (mixal-mode): Use mode-require-final-newline.
11145 * progmodes/idlwave.el (idlwave-mode): Use mode-require-final-newline.
11146 * progmodes/icon.el (icon-mode): Use mode-require-final-newline.
11147 * progmodes/fortran.el (fortran-mode): Use mode-require-final-newline.
11148 * progmodes/f90.el (f90-mode): Use mode-require-final-newline.
11149 * progmodes/cperl-mode.el (cperl-mode): Use mode-require-final-newline.
11150 * progmodes/cfengine.el (cfengine-mode): Use
11151 mode-require-final-newline.
11152 * progmodes/ada-mode.el (ada-mode): Use mode-require-final-newline.
11153 * textmodes/text-mode.el (text-mode): Use mode-require-final-newline.
11154 * textmodes/texinfo.el (texinfo-mode): Use mode-require-final-newline.
11155
11156 2004-12-31 Jay Belanger <belanger@truman.edu>
11157
11158 * calc/calc-graph.el (calc-graph-show-dumb): Mention C-cC-c as the
11159 way to return to Calc.
11160
11161 * calc/calc-yank.el (calc-edit-mode): Mention C-cC-c as the way to
11162 finish, C-xk as the way to cancel the edit. Add cancel routine to
11163 kill-buffer-hook.
11164
11165 * calc/calc.el (calc-same-interface, calc-quit): Remove obsolete
11166 MacEdit code.
11167
11168 * calc/calc-prog.el: Remove obsolete MacEdit code.
11169 (calc-macro-edit-algebraic, calc-macro-edit-variable)
11170 (calc-macro-edit-variable-2, calc-macro-edit-quick-digit): Remove.
11171
11172 2004-12-31 Kenichi Handa <handa@m17n.org>
11173
11174 * international/mule.el (buffer-file-coding-system-explicit):
11175 Rename for explicit-buffer-file-coding-system.
11176 (after-insert-file-set-coding): Adjust for the above change.
11177
11178 * files.el (revert-buffer): Change explicit-buffer-file-coding-system
11179 to buffer-file-coding-system-explicit.
11180 (basic-save-buffer-1): Likewise.
11181
11182 2004-12-30 Richard M. Stallman <rms@gnu.org>
11183
11184 * textmodes/artist.el (artist-butlast-fn): Var deleted.
11185 (artist-butlast, artist-last): Functions deleted.
11186 (artist-ellipse-mirror-quadrant): Call last and butlast directly.
11187 (artist-compute-key-compl-table): Call remq directly.
11188 (artist-remove-nulls): Function deleted.
11189 (artist-vaporize-lines, artist-flood-fill): Use push and pop directly.
11190 (artist-push, artist-pop): Macro deleted.
11191
11192 2004-12-30 Andreas Leue <al@sphenon.de>
11193
11194 * textmodes/artist.el (artist-version): 1.2.6
11195 (artist-prev-next-op-alist): New variable.
11196 (artist-select-next-op-in-list): New function.
11197 (artist-select-prev-op-in-list): New function.
11198 (artist-make-prev-next-op-alist): New function.
11199 (artist-is-in-op-list-p): New function.
11200 (artist-get-first-non-nil-op): New function.
11201 (artist-get-last-non-nil-op): New function.
11202 (artist-mode-init): Call artist-get-last-non-nil-op to initialize
11203 artist-prev-next-op-alist.
11204 (artist-mode-map): Add binding for C-mouse-4 and C-mouse-5 to
11205 change drawing operation.
11206
11207 2004-12-30 Luc Teirlinck <teirllm@auburn.edu>
11208
11209 * autorevert.el (auto-revert-tail-handler): Put in undo boundaries.
11210
11211 2004-12-31 Masatake YAMATO <jet@gyve.org>
11212
11213 * server.el (server-process-filter): Suppress `error', too.
11214
11215 2004-12-30 Jay Belanger <belanger@truman.edu>
11216
11217 * calc/calc-store.el (calc-copy-variable): Fix mistyped variable name.
11218 Change the way a variable is displayed in a message.
11219
11220 * calc/calc-prog.el (calc-user-define-edit, calc-finish-macro-edit)
11221 (calc-user-define-permanent, calc-execute-kbd-macro):
11222 Replace old function MacEdit-parse-keys with edmacro-parse-keys.
11223
11224 2004-12-30 Kenichi Handa <handa@m17n.org>
11225
11226 * files.el (basic-save-buffer-1):
11227 Set explicit-buffer-file-coding-system to last-coding-system-used.
11228 (revert-buffer): Pay attention to
11229 explicit-buffer-file-coding-system (not buffer-file-coding-system)
11230 on bind coding-system-for-read.
11231
11232 * international/mule.el (explicit-buffer-file-coding-system):
11233 New buffer local variable.
11234 (after-insert-file-set-coding): Set it to coding-system-for-read.
11235
11236 2004-12-29 Luc Teirlinck <teirllm@auburn.edu>
11237
11238 * autorevert.el (auto-revert-tail-mode): Doc fix for defvar.
11239
11240 2004-12-29 Sanghyuk Suh <han9kin@mac.com>
11241
11242 * term/mac-win.el (mac-drag-n-drop): Handle drag-n-drop events
11243 that include line numbers.
11244
11245 2004-12-29 Milan Zamazal <pdm@zamazal.org>
11246
11247 * files.el (hack-local-variables): If no PREFIX, set it to "^".
11248 Redundant variable PREFIXLEN removed.
11249
11250 2004-12-28 Matt Hodges <MPHodges@member.fsf.org>
11251
11252 * eshell/em-hist.el (eshell-previous-matching-input):
11253 Start the deletion from the end of the output.
11254
11255 2004-12-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11256
11257 * term/mac-win.el: Require x-dnd.
11258 (mac-drag-n-drop): Sync with W32 version. Use x-dnd.el functions.
11259
11260 2004-12-29 David Kastrup <dak@gnu.org>
11261
11262 * international/mule.el (decode-coding-inserted-region):
11263 Don't barf if `buffer-undo-list' is already set to `t'.
11264
11265 2004-12-29 Jay Belanger <belanger@truman.edu>
11266
11267 * calc/calc-prog.el (calc-user-define-formula): Put default values
11268 for function names in prompts.
11269 (calc-user-define-permanent, calc-user-define-composition)
11270 (calc-user-define-formula): Remove the need for "calcFunc-" in the
11271 default input for algebraic functions.
11272
11273 2004-12-29 Thien-Thi Nguyen <ttn@gnu.org>
11274
11275 * vc-rcs.el (vc-rcs-annotate-command):
11276 Fix omission bug: Call `vc-setup-buffer'.
11277
11278 2004-12-29 Kenichi Handa <handa@m17n.org>
11279
11280 * international/mule.el (recode-region): New function.
11281
11282 2004-12-28 Richard M. Stallman <rms@gnu.org>
11283
11284 * simple.el (undo-extra-outer-limit): New variable.
11285 (undo-outer-limit-truncate): Test and set it.
11286
11287 * emacs-lisp/lisp.el (mark-sexp, mark-defun): New arg ALLOW-EXTEND
11288 enables the feature to extend the existing region.
11289
11290 * simple.el (mark-word): New arg ALLOW-EXTEND
11291 enables the feature to extend the existing region.
11292
11293 * textmodes/paragraphs.el (mark-paragraph): New arg ALLOW-EXTEND
11294 enables the feature to extend the existing region.
11295
11296 * startup.el (site-run-file): Don't allow setting it with Custom.
11297
11298 * simple.el (buffer-disable-undo): Fix previous change.
11299
11300 2004-12-27 Masatake YAMATO <jet@gyve.org>
11301
11302 * hexl.el (hexlify-buffer): Remove fontification here.
11303 Use font lock mechanism instead.
11304 (hexl-font-lock-keywords): New font lock kewords.
11305 (hexl-mode-old-font-lock-keywords): New variable.
11306 (hexl-mode): Store the old font lock keywords.
11307 (hexl-mode-exit): Restore the old font lock keywords.
11308
11309 2004-12-27 Richard M. Stallman <rms@gnu.org>
11310
11311 * simple.el (undo): Fix previous change.
11312
11313 2004-12-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11314
11315 * term/mac-win.el: Sync with x-win.el. Rearrange the contents.
11316 Call mac-clear-font-name-table if invoked on Mac OS 8/9.
11317 Call x-open-connection on Mac OS X.
11318
11319 2004-12-27 Richard M. Stallman <rms@gnu.org>
11320
11321 * files.el (buffer-save-without-query): New var (buffer-local).
11322 (save-some-buffers): Save those buffers first, w/o asking.
11323
11324 * files.el (insert-directory-ls-version): New variable.
11325 (insert-directory): When ls returns an error, test the version
11326 number to decide what the return code means.
11327 With --dired output format, detect and distinguish lines
11328 that are really error messages.
11329 (insert-directory-adj-pos): New function.
11330
11331 * bookmark.el (bookmark-jump): Nice error if BOOKMARK is nil.
11332
11333 * battery.el (battery-mode-line-format): Remove initial spaces.
11334
11335 * uniquify.el (uniquify-rationalize-file-buffer-names):
11336 Delete interactive spec.
11337
11338 * type-break.el (type-break-mode): Set buffer-save-without-query.
11339 Remove code that tried to set save-some-buffers-always.
11340 (type-break-file-keystroke-count): Bind deactivate-mark.
11341
11342 * mouse.el (mouse-drag-region): Bind mouse-autoselect-window.
11343
11344 * simple.el (next-error-buffer-p): New arg AVOID-CURRENT.
11345 Test that the buffer is live, and maybe reject current buffer too.
11346 Clarify.
11347 (next-error-find-buffer): Rewrite for clarity.
11348
11349 * loadup.el: Don't use buffer-disable-undo; do it directly.
11350
11351 * help-fns.el (describe-function-1): Call symbol-file with `defun'.
11352 (describe-variable): Call symbol-file with `defvar'.
11353
11354 * subr.el (messages-buffer-max-lines): Alias for message-log-max.
11355 (symbol-file): Rewritten to handle new load-history format.
11356 Now takes an arg TYPE to specify looking for a particular
11357 type of definition only.
11358
11359 * emacs-lisp/debug.el (debugger-make-xrefs):
11360 Call symbol-file with `defun'.
11361
11362 * emacs-lisp/find-func.el (find-function-noselect):
11363 Call symbol-file with `defun'.
11364 (find-variable-noselect): Call symbol-file with `defvar'.
11365
11366 * eshell/esh-cmd.el (eshell-find-alias-function):
11367 Call symbol-file with `defun'.
11368
11369 * eshell/esh-test.el (eshell-test-goto-func):
11370 Call symbol-file with `defun'.
11371
11372 * mail/rmail.el (rmail-resend):
11373 Let MAIL-ALIAS-FILE arg override mail-personal-alias-file.
11374
11375 * net/goto-addr.el (goto-address-mail-regexp): Allow = in username.
11376
11377 * progmodes/compile.el (compilation-find-buffer): Rename arg.
11378
11379 * textmodes/texinfmt.el (texinfo-format-buffer-1):
11380 Call buffer-disable-undo.
11381
11382 * simple.el (undo-list-saved): New variable (buffer-local).
11383 (undo): Set and test it.
11384 (buffer-disable-undo): Move here from buffer.c.
11385 Clear out undo-list-saved.
11386
11387 * international/mule.el (decode-coding-inserted-region):
11388 Set buffer-undo-list in a correct and optimal way.
11389
11390 * progmodes/cperl-mode.el (cperl-find-bad-style): Use with-no-warnings.
11391 (cperl-font-lock-unfontify-region-function): No need to save and
11392 restore info, since font-lock.el does it for us.
11393
11394 * ansi-color.el (save-buffer-state): Definition deleted.
11395 (ansi-color-unfontify-region): Don't use save-buffer-state.
11396
11397 2004-12-27 Dave Love <fx@gnu.org>
11398
11399 * wid-edit.el (function): Use restricted-sexp as parent.
11400
11401 2004-12-27 Kevin Ryde <user42@zip.com.au>
11402
11403 * simple.el (next-matching-history-element): Use same
11404 `interactive' form as previous-matching-history-element.
11405
11406 * ffap.el (ffap-string-at-point-mode-alist): Add "*" to url chars,
11407 it can appear unencoded and has been seen from yahoo.
11408
11409 2004-12-27 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
11410
11411 * mail/smtpmail.el (smtpmail-try-auth-methods): Send AUTH CRAM-MD5
11412 in upper case. Reported by Wojciech Polak <polak@gnu.org>.
11413
11414 2004-12-27 Kenichi Handa <handa@m17n.org>
11415
11416 * international/utf-8.el (utf-translate-cjk-load-tables):
11417 Bind coding-system-for-read to nil while loading subst-*.
11418
11419 2004-12-26 Jay Belanger <belanger@truman.edu>
11420
11421 * calc/calc-store.el (calc-read-var-name): Remove "var-" from
11422 default input.
11423
11424 2004-12-26 Luc Teirlinck <teirllm@auburn.edu>
11425
11426 * buff-menu.el (Buffer-menu-revert-function): Clear out undo info
11427 before reverting and disable undo recording while reverting.
11428
11429 2004-12-26 Thien-Thi Nguyen <ttn@gnu.org>
11430
11431 * progmodes/hideshow.el (hs-set-up-overlay): New user var.
11432 (hs-make-overlay): New function.
11433 (hs-isearch-show-temporary): Handle `display' overlay prop specially.
11434 (hs-flag-region): Delete function.
11435 (hs-hide-comment-region): No longer use `hs-flag-region'.
11436 Instead, use `hs-discard-overlays' and `hs-make-overlay'.
11437 (hs-hide-block-at-point): Likewise.
11438 (hs-hide-level-recursive): Use `hs-discard-overlays'.
11439 (hs-hide-all, hs-show-all): Likewise.
11440 (hs-show-block): Likewise.
11441 Also, use overlay prop `hs-b-offset', not `hs-ofs'.
11442
11443 2004-12-24 Thien-Thi Nguyen <ttn@gnu.org>
11444
11445 * progmodes/hideshow.el: Require `cl' when compiling.
11446 Remove XEmacs and Emacs 19 compatibility.
11447 Use `dolist' and `add-to-list' for load-time actions.
11448 (hs-discard-overlays): Use `dolist'.
11449 (hs-show-block): Likewise.
11450
11451 2004-12-23 Dan Nicolaescu <dann@ics.uci.edu>
11452
11453 * faces.el (mode-line, mode-line-inactive): Use min-colors.
11454
11455 2004-12-23 Thien-Thi Nguyen <ttn@gnu.org>
11456
11457 * progmodes/hideshow.el (hs-inside-comment-p): Fix omission bug:
11458 When extending backwards, move outside the current comment first.
11459
11460 2004-12-22 Kenichi Handa <handa@m17n.org>
11461
11462 * international/quail.el (quail-start-translation): Fix prompt
11463 string for the case if input-method-use-echo-area being non-nil.
11464 (quail-start-conversion): Likewise.
11465 (quail-show-guidance): Don't show guidance if
11466 input-method-use-echo-area is non-nil.
11467
11468 2004-12-21 Richard M. Stallman <rms@gnu.org>
11469
11470 * textmodes/ispell.el (ispell-help): Bind resize-mini-windows.
11471
11472 2004-12-21 Markus Rost <rost@ias.edu>
11473
11474 * calendar/diary-lib.el (mark-diary-entries):
11475 Set mark-diary-entries-in-calendar only after checking for diary-file.
11476
11477 2004-12-21 Richard M. Stallman <rms@gnu.org>
11478
11479 * faces.el (escape-glyph): Use blue against light foreground.
11480
11481 * simple.el (undo-outer-limit-truncate): New function.
11482 (undo-outer-limit-function): Use undo-outer-limit-truncate.
11483
11484 2004-12-21 Eli Barzilay <eli@barzilay.org>
11485
11486 * calculator.el (calculator-radix-grouping-mode)
11487 (calculator-radix-grouping-digits)
11488 (calculator-radix-grouping-separator):
11489 New defcustoms for the new radix grouping mode functionality.
11490 (calculator-mode-hook): Now used in electric mode too,
11491 (calculator): Call it.
11492 (calculator-mode-map): Some new keys.
11493 (calculator-message): New function. Some new calls.
11494 (calculator-op, calculator-set-register): Use it.
11495 (calculator-string-to-number): New function, mostly moved and
11496 updated code from calculator-curnum-value.
11497 (calculator-curnum-value): Use it.
11498 (calculator-paste): Use it, and update grabbing the current-kill.
11499 (calculator-rotate-displayer)
11500 (calculator-rotate-displayer-back): Toggle digit grouping when
11501 in radix mode, use calculator-message.
11502 (calculator-displayer-prev, calculator-displayer-next):
11503 Change digit group size when in radix mode.
11504 (calculator-number-to-string): Rename from
11505 calculator-num-to-string. Now deals with digit grouping in
11506 radix mode.
11507 (calculator-update-display, calculator-put-value): Use the new name.
11508 (calculator-fact): Return a floating point number.
11509 (calculator-mode): Doc fix.
11510
11511 2004-12-20 Glenn Morris <gmorris@ast.cam.ac.uk>
11512
11513 * calendar/calendar.el (view-other-diary-entries): Add autoload.
11514 * calendar/diary-lib.el (view-other-diary-entries):
11515 Use current-prefix-arg in interactive spec.
11516
11517 2004-12-19 Jay Belanger <belanger@truman.edu>
11518
11519 * calc/calc-aent.el (calcAlg-blank-matching-open): Temporarily
11520 adjust the syntax of both delimiters of half-open intervals.
11521
11522 2004-12-19 Kim F. Storm <storm@cua.dk>
11523
11524 * mouse.el (mouse-1-click-follows-link): Doc fix.
11525
11526 2004-12-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11527
11528 * term/mac-win.el (encoding-vector, mac-font-encoder-list)
11529 (ccl-encode-mac-centraleurroman-font): Use centraleurroman
11530 instead of centraleuropean as the name
11531
11532 2004-12-17 Michael Albinus <michael.albinus@gmx.de>
11533
11534 Sync with Tramp 2.0.46.
11535
11536 * net/tramp.el (tramp-maybe-send-perl-script): Change order of
11537 parameters wrt Tramp convention.
11538 (tramp-handle-file-attributes-with-perl)
11539 (tramp-handle-directory-files-and-attributes): Apply it.
11540 (tramp-do-copy-or-rename-file-out-of-band): Check for existence of
11541 `copy-program'. Reported by Zack Weinberg
11542 <zack@codesourcery.com>.
11543 (top): Set `edebug-form-spec' property directly rather than
11544 calling `def-edebug-spec'.
11545
11546 * net/tramp-smb.el (tramp-smb-advice-PC-do-completion): Make the
11547 advice less fragile. Surround temporary redefinition of
11548 `substitute-in-file-name' with `unwind-protect'. Suggested by
11549 Matt Hodges <MPHodges@member.fsf.org>.
11550
11551 2004-12-17 Juri Linkov <juri@jurta.org>
11552
11553 * replace.el (occur-accumulate-lines, occur-engine):
11554 Make forcing deferred font-lock fontification jit-specific.
11555
11556 2004-12-17 Kim F. Storm <storm@cua.dk>
11557
11558 * mouse.el (mouse-1-click-follows-link): New defcustom.
11559 (mouse-on-link-p): New function.
11560 (mouse-drag-region-1): Implement mouse-1-click-follows-link
11561 functionality. Map a mouse-1 click event into a mouse-2 (or
11562 other) event when position is inside a link.
11563
11564 * tooltip.el (tooltip-show-help-function): Replace "mouse-2"
11565 prefix in tooltip text with "mouse-1" when this is a link
11566 recognized by mouse-1-click-follows-link functionality.
11567
11568 * help.el (describe-key): Report effective and original binding
11569 for mouse-1 when clicked on a link.
11570 (describe-mode): Add follow-link property to "minor-mode" button.
11571
11572 * help-fns.el (describe-variable): Add follow-link property to
11573 "below" button.
11574
11575 * help-mode.el (help-xref): Add follow-link property.
11576
11577 * apropos.el (apropos-symbol, apropos-function, apropos-macro)
11578 (apropos-command, apropos-variable, apropos-face, apropos-group)
11579 (apropos-widget, apropos-plist): Add follow-link property.
11580
11581 * pcvs-defs.el (cvs-mode-map): Map follow-link to a function which
11582 checks if position is in a filename, rather than some other
11583 clickable item. Function looks for cvs-filename-face at position.
11584
11585 * wid-edit.el (widget-specify-field, widget-specify-button):
11586 Map a :follow-link keyword into a follow-link property.
11587 (link): Add :follow-link keyword, map to RET binding.
11588
11589 * dired.el (dired-mode-map): Map follow-link to mouse-face.
11590
11591 * progmodes/compile.el (compilation-minor-mode-map)
11592 (compilation-button-map, compilation-mode-map): Likewise.
11593
11594 2004-12-17 Thien-Thi Nguyen <ttn@gnu.org>
11595
11596 * play/zone.el (zone): Init `line-spacing' from orig buffer.
11597 (zone-replace-char): Take `count' and `del-count'
11598 instead of `direction'. Update callers. When `del-count' is
11599 non-nil, delete that many characters, otherwise `count' characters
11600 backwards. Insert the newly-replaced string `count' times.
11601 (zone-fret): Handle chars w/ width greater than one.
11602 (zone-fall-through-ws): No longer take window width `ww'.
11603 Update callers. Add handling for `char-width' greater than one.
11604 (zone-pgm-drip): Update var holding window-end position every cycle.
11605
11606 2004-12-17 Andre Spiegel <spiegel@gnu.org>
11607
11608 * vc.el (vc-default-update-changelog): Use insert-file-contents,
11609 rather than insert-file.
11610
11611 2004-12-16 Jay Belanger <belanger@truman.edu>
11612
11613 * calc/calc-comb.el (var-RandSeed): Don't initially bind it.
11614 (math-init-random-base, math-random-digit): Check to see if
11615 var-RandSeed is bound.
11616 (math-random-last): Declare it.
11617 (math-random-digit): Don't make math-random-last local.
11618
11619 2004-12-16 Thien-Thi Nguyen <ttn@gnu.org>
11620
11621 * play/zone.el (zone): Fix omission bug: Use a self-disabling
11622 one-shot thunk for uniform (error, quit, normal) recovery.
11623 Reported by John Paul Wallington.
11624 (zone-pgm-random-life): Fix bug:
11625 Recognize empty initial field by lack of "@" chars.
11626
11627 2004-12-16 Juri Linkov <juri@jurta.org>
11628
11629 * help.el (function-called-at-point):
11630 * help-fns.el (variable-at-point): As a last resort try stripping
11631 non-word prefixes and suffixes.
11632
11633 * descr-text.el (describe-property-list): Don't treat syntax-table
11634 specially. Use describe-text-sexp which inserts [show] button
11635 for large objects and handles printing errors. Sort properties
11636 by names in alphabetical order instead of by value sizes.
11637 Add `mouse-face' to list of properties for `describe-face' widget.
11638 (describe-char): Mask out face-id from 19 bits of character.
11639 Print face-id separately.
11640
11641 * replace.el (occur-accumulate-lines, occur-engine):
11642 Fontify unfontified matching lines in the source buffer
11643 before copying them.
11644 (occur-engine): Don't put mouse-face on context lines.
11645 (occur-next-error): Set point to line beginning/end
11646 before searching for prev/next property to skip multiple
11647 matches on a line (not supported by occur engine).
11648 Remove redundant prefix-numeric-value.
11649
11650 2004-12-15 Juri Linkov <juri@jurta.org>
11651
11652 * replace.el (match): New face.
11653 (list-matching-lines-face): Change default from `bold' to `match'.
11654
11655 * progmodes/grep.el (grep-match-face): New defvar.
11656 (grep-mode-font-lock-keywords): Use grep-match-face instead of
11657 compilation-column-face to highlight grep matches.
11658
11659 * apropos.el (apropos-match-face): Change default from
11660 `secondary-selection' to `match'.
11661
11662 * info-look.el (info-lookup-highlight-face): Change default from
11663 `highlight' to `match'.
11664
11665 2004-12-15 Daniel Pfeiffer <occitan@esperanto.org>
11666
11667 * progmodes/executable.el (executable-interpret): Eliminate
11668 obsolete compile-internal, and switch to comint for interaction.
11669
11670 2004-12-15 J.D. Smith <jdsmith@as.arizona.edu>
11671
11672 * progmodes/idlwave.el (idlwave-skip-multi-commands): Don't match
11673 `&&' when skipping multiple statements on a line.
11674
11675 2004-12-15 Thien-Thi Nguyen <ttn@gnu.org>
11676
11677 * play/zone.el (zone): Set `truncate-lines'.
11678 Also, init `tab-width' with value from original buffer.
11679 (zone-shift-up): Rewrite for speed.
11680 (zone-shift-down, zone-shift-left, zone-shift-right): Likewise.
11681 (zone-pgm-jitter): Remove redundant entries from ops vector.
11682 (zone-exploding-remove): Reduce iteration count.
11683 (zone-cpos): Convert to defsubst.
11684 (zone-replace-char): New defsubst.
11685 (zone-park/sit-for): Likewise.
11686 (zone-fret): Take window-start arg.
11687 Update callers. Use `zone-park/sit-for'.
11688 (zone-fill-out-screen): Rewrite.
11689 (zone-fall-through-ws): Likewise. Update callers.
11690 (zone-pgm-drip): Use `zone-replace-char'.
11691 Move var inits before while-loop. Use `zone-park/sit-for'.
11692 (zone-pgm-random-life): Handle empty initial field.
11693 Use `zone-replace-char' and `zone-park/sit-for'.
11694
11695 2004-12-15 Juri Linkov <juri@jurta.org>
11696
11697 * isearch.el (isearch-update): Test isearch-lazy-highlight
11698 before calling isearch-lazy-highlight-new-loop.
11699 (isearch-lazy-highlight-new-loop):
11700 Don't test isearch-lazy-highlight.
11701
11702 * replace.el (perform-replace): Add isearch-case-fold-search.
11703 Use delimited-flag for isearch-regexp.
11704 Reset isearch-lazy-highlight-last-string to force lazy
11705 highlighting when called from isearch mode.
11706 (query-replace-highlight): Revert defcustom type to boolean.
11707 (query-replace-lazy-highlight): New defcustom.
11708 (query-replace): New face.
11709 (perform-replace, replace-highlight, replace-dehighlight):
11710 Test query-replace-lazy-highlight instead of special value
11711 `isearch' of query-replace-highlight.
11712 (replace-dehighlight): Don't call isearch-dehighlight.
11713 (replace-highlight): Don't call isearch-highlight.
11714 Use face `query-replace' unconditionally.
11715
11716 2004-12-14 Kim F. Storm <storm@cua.dk>
11717
11718 * simple.el (inhibit-mark-movement): Remove defvar.
11719 (beginning-of-buffer, end-of-buffer): Don't use it.
11720
11721 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
11722 Don't use inhibit-mark-movement.
11723
11724 * emulation/cua-base.el (cua--preserve-mark-commands): Remove.
11725 (cua--undo-push-mark): Remove.
11726 (cua--pre-command-handler, cua--post-command-handler):
11727 Don't fiddle with inhibit-mark-movement.
11728
11729 2004-12-14 Juri Linkov <juri@jurta.org>
11730
11731 * buff-menu.el (list-buffers-noselect): Collect internal info
11732 for every buffer in BUFFER-LIST arg too.
11733 (Buffer-menu-switch-other-window): Bind pop-up-windows to t.
11734 (Buffer-menu-switch-other-window, Buffer-menu-2-window):
11735 Bind same-window-buffer-names and same-window-regexps to nil.
11736
11737 2004-12-13 Juri Linkov <juri@jurta.org>
11738
11739 * simple.el (next-error-buffer-p, next-error-find-buffer): Doc fix.
11740
11741 * mail/supercite.el (sc-cite-frame-alist): Doc fix.
11742 (sc-cite-region, sc-uncite-region, sc-recite-region):
11743 Fix previous change to handle not alist as a symbol, but
11744 a citation frame as a symbol that represents a variable name.
11745
11746 2004-12-13 Richard M. Stallman <rms@gnu.org>
11747
11748 * filecache.el (file-cache-add-directory-using-find):
11749 Only set up file-cache-find-command-posix-flag if we will use it.
11750
11751 * bindings.el (mode-line-buffer-identification-keymap):
11752 Don't cancel the mode-line's usual down-mouse-1 binding.
11753
11754 * cus-edit.el (custom-face-selected): Handle `default' specs.
11755 (custom-face-edit): Increase extra-offset.
11756 (custom-display): Handle `default' specs.
11757
11758 * xml.el (xml-name-re, xml-entity-value-re): Add defvars.
11759
11760 * emacs-lisp/elint.el (elint-standard-variables)
11761 (elint-unknown-builtin-args): Move definitions up.
11762
11763 * net/browse-url.el (browse-url-url-at-point): Add autoload.
11764
11765 * info.el (info-xref-visited): Use `default' instead of t.
11766 (Info-try-follow-nearest-node): Don't explicitly load browse-url.
11767
11768 * faces.el (header-line, mode-line-inactive, tool-bar):
11769 Use `default' instead of t for setting the defaults.
11770 (face-spec-choose): Separate `t' from `default'.
11771
11772 * subr.el (while-no-input): New macro.
11773
11774 2004-12-13 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE> (tiny change)
11775
11776 * filecache.el (file-cache-add-directory-using-find):
11777 Only test file-cache-find-command-posix-flag on some systems.
11778
11779 2004-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
11780
11781 * vc-svn.el (vc-svn-repository-hostname): Adjust to new format.
11782 Reported by Ville Skytt\e,Ad\e(B <scop@xemacs.org>.
11783 (vc-svn-annotate-current-time, vc-svn-annotate-time-of-rev)
11784 (vc-svn-annotate-time, vc-svn-annotate-extract-revision-at-line)
11785 (vc-svn-annotate-command, vc-svn-annotate-re): Support for svn
11786 annotate.
11787
11788 2004-12-12 Juri Linkov <juri@jurta.org>
11789
11790 * files.el (find-file-other-window, find-file-other-frame):
11791 Add the first buffer to the returned value to return the complete
11792 list of all visited buffers.
11793 (find-file-read-only, find-file-read-only-other-window)
11794 (find-file-read-only-other-frame): Use nil for `mustmatch' arg of
11795 `find-file-read-args'. Signal an error about non-existent file
11796 only if file name doesn't contain wildcards. Toggle read-only in
11797 all visited buffers.
11798 (find-alternate-file, find-alternate-file-other-window):
11799 Add optional arg `wildcards'. Doc fix. Set `wildcards' to t when
11800 called interactively. Pass arg `wildcards' to other functions.
11801 (find-file-noselect): Doc fix.
11802
11803 * ffap.el (ffap-dired-wildcards): Set default to "[*?][^/]*\\'".
11804 Doc fix.
11805 (ffap-directory-finder): New variable.
11806 (ffap-string-at-point-mode-alist): Add * and ? to `file'.
11807 (ffap-file-at-point): Add /* to immediately rejected names.
11808 Return absolute file names matching ffap-dired-wildcards.
11809 (ffap-read-file-or-url): Set default value for `completing-read'
11810 to `buffer-file-name'.
11811 (find-file-at-point): When filename matches ffap-dired-wildcards,
11812 call ffap-file-finder with t arg `wildcards', instead of dired.
11813 (ffap-other-window, ffap-other-frame): Return visited buffers.
11814 (ffap-read-only, ffap-read-only-other-window)
11815 (ffap-read-only-other-frame, ffap-alternate-file): New commands.
11816 (dired-at-point): Call ffap-directory-finder instead of dired.
11817 (ffap-dired-other-window, ffap-dired-other-frame)
11818 (ffap-list-directory): New commands.
11819 (ffap-bindings): New keybindings for new commands.
11820
11821 2004-12-12 Juri Linkov <juri@jurta.org>
11822
11823 * simple.el (beginning-of-buffer, end-of-buffer):
11824 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
11825 Do not push mark when mark is active in transient-mark-mode.
11826
11827 * simple.el (mark-word):
11828 * emacs-lisp/lisp.el (mark-sexp, mark-defun):
11829 * textmodes/paragraphs.el (mark-paragraph):
11830 Extend the region when mark is active in transient-mark-mode,
11831 regardless of the last command. Doc fix.
11832
11833 * simple.el (mark-word): Preserve direction when repeating.
11834 Make arg optional. Interactive "p" -> "P".
11835 (transient-mark-mode, inhibit-mark-movement): Doc fix.
11836
11837 * emacs-lisp/lisp.el (mark-sexp): Reverse the condition for
11838 preserving direction, to mark forward instead of backward when mark
11839 is equal to point (e.g. when C-SPC C-M-SPC is typed in t-m-m).
11840
11841 2004-12-12 Juri Linkov <juri@jurta.org>
11842
11843 * isearch.el (isearch-edit-string): Set 7th arg of
11844 `read-from-minibuffer' to `t' to inherit the current input
11845 method (whose name is indicated by [IM] in the minibuffer prompt)
11846 from the current buffer to the minibuffer.
11847 (isearch-lazy-highlight-update): Put body to `with-local-quit'
11848 to allow C-g quitting for lazy highlighting looping inside the
11849 search with nested repetition operators. Add overlay to the list
11850 before setting its face and other properties to avoid the case of
11851 code quitting after placing the new overlay but before it's
11852 recorded on the list. Select the window where isearch was
11853 activated, to highlight matches in the right window when isearch
11854 switches the current window to the minibuffer.
11855
11856 * international/isearch-x.el
11857 (isearch-process-search-multibyte-characters):
11858 Use `isearch-message' as initial input for `read-string' instead
11859 of adding it to the minibuffer prompt. After reading a string
11860 remove the initial value of `isearch-message' from the string.
11861
11862 * replace.el (replace-match-maybe-edit): Doc fix.
11863 (perform-replace): Don't call `replace-highlight' when automatic
11864 replacement is requested in literal mode, since it is intended
11865 only to highlight words during entering a new replacement string
11866 for \? in non-literal mode.
11867
11868 * replace.el (query-replace-highlight): Add new value `isearch'
11869 that allows query replacement to use isearch highlighting.
11870 Change type from `boolean' to `choice'. Doc fix.
11871 (replace-highlight, replace-dehighlight, perform-replace):
11872 Use isearch highlighting if query-replace-highlight eq `isearch'.
11873
11874 2004-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
11875
11876 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
11877 (checkdoc-message-text, checkdoc-defun): Fix format messages for
11878 `error'.
11879
11880 * textmodes/tex-mode.el (latex-backward-sexp-1): Handle the special
11881 case of \end{verbatim}.
11882
11883 2004-12-11 Dan Nicolaescu <dann@ics.uci.edu>
11884
11885 * term.el (term-termcap-format): Synchronize with terminfo.
11886 (term-emulate-terminal): Handle reset.
11887 (term-reset-terminal): New function.
11888
11889 2004-12-11 Thien-Thi Nguyen <ttn@gnu.org>
11890
11891 * play/zone.el (zone-programs): Add `zone-pgm-random-life'.
11892 (zone-fill-out-screen): New func.
11893 (zone-pgm-drip): Use `zone-fill-out-screen'.
11894 Also, no longer go to point-min on every cycle.
11895 (zone-pgm-paragraph-spaz): Allow spazzing for texinfo-mode.
11896 (zone-pgm-random-life-wait): New user var.
11897 (zone-pgm-random-life): New func.
11898
11899 2004-12-10 Thien-Thi Nguyen <ttn@gnu.org>
11900
11901 * files.el (auto-mode-alist): Map .com to DCL mode.
11902
11903 2004-12-09 Richard M. Stallman <rms@gnu.org>
11904
11905 * isearch.el (isearch-mode-map): Treat S-SPC like SPC.
11906
11907 2004-12-09 Nick Roberts <nickrob@snap.net.nz>
11908
11909 * xt-mouse.el (xterm-mouse-event): Correct cursor position in a
11910 buffer with a display margin.
11911
11912 2004-12-08 Jay Belanger <belanger@truman.edu>
11913
11914 * calc/calc-keypd.el (calc-keypad-mode): Unbind unused mouse events.
11915 (calc-keypad-left-click): Set buffer to calc-keymap-buffer.
11916
11917 2004-12-08 Richard M. Stallman <rms@gnu.org>
11918
11919 * faces.el: Delete code to set display table.
11920 (escape-glyph): Redefine to be less loud. (Copy minibuffer-prompt.)
11921
11922 2004-12-08 Jay Belanger <belanger@truman.edu>
11923
11924 * calc/calc.el: Add math-read-preprocess-string to autoloads.
11925
11926 * calc/calc-ext.el (math-read-replacement-list)
11927 (math-read-superscripts, math-read-preprocess-string): Move to
11928 calc-aent.el.
11929
11930 * calc/calc-aent.el (math-read-replacement-list)
11931 (math-read-superscripts, math-read-preprocess-string): Move from
11932 calc-ext.el.
11933
11934 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
11935
11936 * isearch.el (isearch-quote-char): Fix up typo in last change.
11937
11938 2004-12-07 Luc Teirlinck <teirllm@auburn.edu>
11939
11940 * mouse.el (mouse-set-font): Handle the case where the command was
11941 not invoked using the mouse.
11942
11943 * edmacro.el: `edit-kbd-macro' is now bound to `C-x C-k e'.
11944 (edmacro-finish-edit): Further update for keyboard macros that are
11945 lambda forms.
11946 (edmacro-sanitize-for-string): Correctly remove Meta modifier.
11947
11948 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
11949
11950 * font-lock.el (font-lock-unfontify-region): Save buffer state.
11951 (font-lock-default-unfontify-region): Don't save buffer state any more.
11952
11953 2004-12-07 Jay Belanger <belanger@truman.edu>
11954
11955 * calc/calc-help.el (calc-describe-key):
11956 Set calc-summary-indentation even when Calc Summary buffer exists.
11957
11958 2004-12-07 Glenn Morris <gmorris@ast.cam.ac.uk>
11959
11960 * calendar/holidays.el (holiday-easter-etc): Make arguments
11961 optional for backwards compatibility. Doc fix.
11962 Remove un-necessary local vars mandatory, output-list.
11963 (holiday-advent): Make arguments optional for backwards
11964 compatibility. Doc fix.
11965
11966 2004-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
11967
11968 * paren.el (show-paren-function): Fix last change (2004-12-02).
11969
11970 * international/mule-util.el (char-displayable-p): Return nil for
11971 unibyte mode.
11972
11973 * subr.el (subregexp-context-p): New function.
11974
11975 * isearch.el (isearch-quote-char): Use it.
11976
11977 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Use it.
11978 (regexp-opt-not-groupie*-re): Remove.
11979 (regexp-opt): Properly handle inputs with duplicate entries.
11980
11981 2004-12-06 Richard M. Stallman <rms@gnu.org>
11982
11983 * info-look.el (info-lookup-maybe-add-help cfengine-mode): Regexp typo.
11984
11985 * cus-edit.el (custom-file): Doc fix.
11986
11987 * textmodes/org.el: New file.
11988
11989 2004-12-06 Kenichi Handa <handa@m17n.org>
11990
11991 * ldefs-boot.el: Update international/mule-util.el section.
11992
11993 2004-12-05 Sam Steingold <sds@gnu.org>
11994
11995 * net/tramp.el (tramp-handle-file-accessible-directory-p):
11996 Fix `tramp-time-diff' comparison logic.
11997
11998 2004-12-05 Paul Pogonyshev <pogonyshev@gmx.net>
11999
12000 * progmodes/which-func.el (which-function):
12001 Use `run-hook-with-args-until-success' instead of a custom loop.
12002 Fixes bug with local hooks.
12003
12004 2004-12-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12005
12006 * textmodes/bibtex.el (bibtex-font-lock-url-regexp):
12007 Use delete-dups when calculating the initial value.
12008 (bibtex-autokey-get-title): Use <=.
12009 (bibtex-goto-line): New function.
12010 (bibtex-reposition-window): Use line numbers instead of point
12011 positions. Use window-body-height.
12012 (bibtex-find-crossref): Use bibtex-reposition-window.
12013 (bibtex-find-entry): Use bibtex-reposition-window. Always return
12014 position of entry if key is found or nil if not found.
12015
12016 2004-12-05 Richard M. Stallman <rms@gnu.org>
12017
12018 * cus-edit.el (custom-file): Doc fix.
12019
12020 * progmodes/sh-script.el (sh-indent-for-then): Change default.
12021
12022 2004-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
12023
12024 * simple.el (blink-matching-open):
12025 * textmodes/tex-mode.el (tex-validate-region):
12026 Obey syntax-table text properties.
12027
12028 2004-12-02 Per Abrahamsen <abraham@dina.kvl.dk>
12029
12030 * wid-edit.el (widget-specify-field): Add `real-field' property to
12031 boundary.
12032 (widget-field-at): Use it.
12033
12034 2004-12-02 Richard M. Stallman <rms@gnu.org>
12035
12036 * progmodes/cc-mode.el (awk-mode autoload):
12037 Supply t meaning interactive function.
12038
12039 * isearch.el (search-whitespace-regexp): Remove the group. Doc fix.
12040 (isearch-mode-map): No special definition for space.
12041 (isearch-whitespace-chars): Command deleted.
12042 (isearch-forward-regexp): Doc fix.
12043 (isearch-quote-char): When a space is not inside brackets,
12044 use `[ ]' instead of just space.
12045 (isearch-lazy-highlight-search): Bind search-spaces-regexp.
12046
12047 * imenu.el (imenu--generic-function): Delete code to exclude
12048 matches in comments.
12049
12050 * man.el (Man-reverse-face): Change default to `highlight'.
12051
12052 * replace.el (occur-1): Specify t for KEEP-PROPS to occur-engine.
12053 (occur-engine): Use `face' prop rather than `font-lock-face'
12054 when specifying use of `match-face'.
12055 (occur-accumulate-lines): Change arg from NO-PROPS to KEEP-PROPS.
12056
12057 * emacs-lisp/elint.el (elint-standard-variables): Update list.
12058
12059 * add-log.el (add-log-current-defun): Handle the case where point
12060 is in the header part of a DEFUN construct.
12061
12062 2004-12-02 Dave Love <fx@gnu.org>
12063
12064 * progmodes/python.el (python-font-lock-syntactic-keywords):
12065 Fix previous change.
12066
12067 2004-12-02 Richard G Bielawski <Richard.G.Bielawski@wellsfargo.com> (tiny change)
12068
12069 * paren.el (show-paren-function): Check for matching chars
12070 specified by text props.
12071
12072 2004-12-02 Jay Belanger <belanger@truman.edu>
12073
12074 * calc/calc.el (calc-read-key-sequence): Leave the old message visible
12075 when reading a new key sequence.
12076
12077 2004-12-02 Kim F. Storm <storm@cua.dk>
12078
12079 * faces.el (escape-glyph): Rename from glyph.
12080 (standard-display-table): Set it here. Add escape-glyph face to
12081 extra slot characters.
12082
12083 * disp-table.el: Undo 2004-12-01 change. Display table is now
12084 setup in faces.el.
12085
12086 2004-12-02 Mark A. Hershberger <mah@everybody.org>
12087
12088 * xml.el (xml-parse-dtd): Don't show validity messages when
12089 xml-validating-parser is nil.
12090 (xml-substitute-special): Fix validity error messages to
12091 actually show the unexpandable entity. Added validity error if &
12092 isn't followed by an entity.
12093 (xml-parse-tag): Concatenate any string following the a
12094 <![CDATA[]]> section to the parsed CDATA.
12095 (xml-parse-dtd): Skip parameter entity declarations and use of
12096 parameter entities.
12097
12098 2004-12-01 Luc Teirlinck <teirllm@auburn.edu>
12099
12100 * kmacro.el (kmacro-default-counter-format): New var.
12101 (kmacro-set-format): Use it. Delete `(printf format)' from prompt.
12102 (kmacro-display): Remove `nil' from `and' form. Delete call to
12103 `format' inside `message'.
12104 (kmacro-start-macro): Use `kmacro-default-counter-format'.
12105
12106 2004-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12107
12108 * pcvs.el (cvs-header-msg): New function.
12109 (cvs-update-header): Use it. Change calling convention.
12110 Correctly handle the case of having simultaneous active processes.
12111 (cvs-sentinel): Don't call cvs-update-header any more.
12112 (cvs-mode-run): Update call and add cvs-update-header to postproc.
12113
12114 2004-12-01 Jay Belanger <belanger@truman.edu>
12115
12116 * calc/calc-ext.el (calc-inverse, calc-hyperbolic):
12117 Change message.
12118
12119 2004-12-01 Juri Linkov <juri@jurta.org>
12120
12121 * progmodes/prolog.el (prolog-mode-variables):
12122 Fix imenu-generic-expression.
12123
12124 2004-12-01 Daniel Pfeiffer <occitan@esperanto.org>
12125
12126 * faces.el (glyph): New face.
12127
12128 * disp-table.el: Add an autoloaded table, that doesn't require
12129 this library, with glyph face.
12130
12131 * textmodes/conf-mode.el (conf-ppd-mode-syntax-table): New var.
12132 (conf-ppd-mode): New conf-mode wrapper for printer descriptions.
12133 (conf-quote-normal): Allow normalizing only ' or ".
12134 (conf-mode): Regexp-quote constructed comment-start and don't
12135 match section {} where "name" contains braces.
12136
12137 * files.el (auto-mode-alist): Add conf-ppd-mode, inittab and acpid
12138 files.
12139
12140 2004-12-01 Kenichi Handa <handa@m17n.org>
12141
12142 * term/x-win.el (x-last-selected-text-cut-encoded): New variable.
12143 (x-select-text): Don't treat eight-bit-control/graphic chars
12144 specially. Store the encoded text in the X cut buffer.
12145 (x-cut-buffer-or-selection-value): Compare the X cut buffer text
12146 with x-last-selected-text-cut-encoded.
12147
12148 2004-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
12149
12150 * man.el (Man-fontify-manpage): Improve handling of ANSI escapes.
12151
12152 2004-11-30 Markus Rost <rost@ias.edu>
12153
12154 * textmodes/tex-mode.el (tex-main-file): Add a compatibility with
12155 AUCTeX.
12156
12157 2004-11-30 Jay Belanger <belanger@truman.edu>
12158
12159 * calc/calc-arith.el (math-possible-signs): Made stronger checks
12160 on signs of intervals.
12161 (math-pow-of-zero): Strengthen checks for positive and negative
12162 exponents.
12163
12164 * calc/calc-aent.el, calc/calc-alg.el, calc/calc-arith.el
12165 * calc/calc-bin.el, calc/calc-comb.el, calc/calc-cplx.el
12166 * calc/calc-embed.el, calc/calc-fin.el, calc/calc-forms.el
12167 * calc/calc-frac.el, calc/calc-funcs.el, calc/calc-graph.el
12168 * calc/calc-help.el, calc/calc-incom.el, calc/calc-keypd.el
12169 * calc/calc-lang.el, calc/calc-map.el, calc/calc-math.el
12170 * calc/calc-misc.el, calc/calc-mode.el, calc/calc-mtx.el
12171 * calc/calc-poly.el, calc/calc-prog.el, calc/calc-rewr.el
12172 * calc/calc-rules.el, calc/calc-sel.el, calc/calc-stat.el
12173 * calc/calc-store.el, calc/calc-stuff.el, calc/calc-trail.el
12174 * calc/calc-undo.el, calc/calc-units.el, calc/calc-vec.el
12175 * calc/calc-yank.el, calc/calcalg2.el, calc/calcalg3.el
12176 * calc/calccomp.el, calc/calcsel2.el: Replace dummy autoloaded
12177 functions with provide statements.
12178
12179 * calc/calc-alg.el (math-defsimplify): Move from calc-ext.el.
12180
12181 * calc/calc-embed.el (calc-do-embedded-activate): Remove from
12182 autoloads.
12183
12184 * calc/calc-ext.el: Remove dummy autoloading functions from autoloads.
12185 (calc-load-everything, math-defsimplify): Replace dummy autoloading
12186 functions by require statements.
12187 (math-defsimplify): Move to calc-alg.el, add to autoloads.
12188
12189 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
12190 (calc-gnuplot-print): Give them values.
12191
12192 * calc/calc.el: Remove calc-Need-calc-aent and calc-Need-calc-misc from
12193 autoloads.
12194 Add calc-do-embedded-activate to autoloads.
12195 (calc-gnuplot-name, calc-gnuplot-plot-command)
12196 (calc-gnuplot-print-command): Move them to calc-graph.el.
12197
12198 2004-11-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12199
12200 * term/mac-win.el (ccl-encode-mac-roman-font)
12201 (ccl-encode-mac-cyrillic-font)
12202 (ccl-encode-mac-centraleuropean-font, encoder-list)
12203 (fontset-add-mac-fonts, create-fontset-from-mac-roman-font):
12204 Support Cyrillic, CentralEuropean, and Dingbat font display
12205
12206 2004-11-30 Andre Spiegel <spiegel@gnu.org>
12207
12208 * vc-hooks.el (vc-recompute-state): Move here from vc.el.
12209
12210 * vc-cvs.el (vc-cvs-state): Handle the case where vc-state is
12211 still nil.
12212
12213 2004-11-29 Luc Teirlinck <teirllm@auburn.edu>
12214
12215 * emulation/tpu-edt.el (tpu-help-keypad-map, tpu-help-text)
12216 (tpu-word-separator-list, tpu-skip-chars): defconst->defvar.
12217
12218 2004-11-29 Jay Belanger <belanger@truman.edu>
12219
12220 * calc/calc-arith.el (math-pow-of-zero): Take into account different
12221 cases of the base and exponent.
12222
12223 2004-11-26 Teodor Zlatanov <tzz@lifelogs.com>
12224
12225 * simple.el (next-error-buffer-p): Allow for inclusive and
12226 exclusive tests for finding a buffer.
12227 (next-error-find-buffer): Pass the exclusive and inclusive tests
12228 to next-error-buffer-p.
12229
12230 * replace.el (occur-next-error): Switch to the Occur buffer when
12231 appropriate, use the exclusive filter to next-error-find-buffer to
12232 do it. Use the absolute value of the motion amount.
12233
12234 2004-11-29 Kenichi Handa <handa@m17n.org>
12235
12236 * startup.el (command-line): Decode all default-directory by
12237 locale-coding-system.
12238
12239 2004-11-29 Jay Belanger <belanger@truman.edu>
12240
12241 * calc/calc-aent.el: Remove unnecessary eval-when-compile.
12242 (calc-do-quick-calc, calc-do-calc-eval, calc-alg-entry)
12243 (math-read-expr-level, calc-check-user-syntax, math-read-factor):
12244 Replace calls to calc-extensions by appropriate require, replace
12245 calc-extensions-loaded by appropriate featurep.
12246
12247 * calc/calc-ext.el: Move require to end of file. Remove redundant
12248 loading of calc.el.
12249 (calc-extensions-loaded): Remove unnecessary variable.
12250 (calc-extensions): Remove unnecessary function.
12251 (calc-load-everything): Replace calc-need-macros by appropriate
12252 require.
12253
12254 * calc/calc-macs.el: Move provide to end of file.
12255 (calc-need-macros): Remove unnecessary function.
12256
12257 * calc/calc-misc.el (calc-do-handle-whys, calc-last-args-stub)
12258 (calc-missing-key, calc-shift-Y-prefix-help, math-concat)
12259 (math-trunc, math-floor, calcFunc-inv, math-mod, math-pow):
12260 Replace calc-extensions by appropriate require.
12261 (calc-power): Replace calc-extensions-loaded by appropriate featurep.
12262
12263 * calc/calc-prog.el (calc-user-define-formula, calc-do-defmath):
12264 Replace calc-need-macros by appropriate require.
12265
12266 * calc/calc.el: Move require to end of file.
12267 (calc-info-filename, calc-autoload-directory, calc-extensions-loaded):
12268 Remove unnecessary variable.
12269 (calc-do-dispatch, calc-mode, calc-check-defines, calc-create-buffer)
12270 (calc, calc-keypad, full-calc-keypad, calc-do, calc-normalize)
12271 (calc-binary-op, calc-unary-op, calcDigit-start, calcDigit-key)
12272 (math-normalize, math-add, math-mul, math-div, math-format-stack-value)
12273 (math-stack-value-offset, math-format-value, math-format-flat-expr)
12274 (math-format-number, math-format-bignum, math-read-number)
12275 (calc-grab-region, calc-grab-rectangle, calc-grab-sum-down)
12276 (calc-grab-sum-across, calc-embedded, defmath): Replace calc-extensions
12277 by appropriate require.
12278 (calc-check-defines): Replace calc-need-macros by appropriate require.
12279
12280 2004-11-29 Kim F. Storm <storm@cua.dk>
12281
12282 * macros.el (insert-kbd-macro): Handle kmacro functions.
12283
12284 2004-11-28 Juri Linkov <juri@jurta.org>
12285
12286 * compare-w.el (compare-windows-highlight): Attach each overlay
12287 to its window to properly highlight differences while comparing
12288 two windows of the same buffer. Fix arguments.
12289 (compare-windows-sync-default-function): Fix arguments of
12290 `compare-windows-highlight'.
12291
12292 * emacs-lisp/edebug.el (edebug-set-global-break-condition):
12293 Use `read-expression-history'. Set initial contents only if
12294 `edebug-global-break-condition' is non-nil. Set histpos to 1
12295 if initial contents is equal to the last history element.
12296 (edebug-set-conditional-breakpoint): Instead of temporarily
12297 prepending the current condition to the history, set initial
12298 contents to the current condition. Set histpos to 1 if initial
12299 contents is equal to the last history element.
12300
12301 * info.el (Info-search-whitespace-regexp): Remove shy group.
12302 (Info-search): Forward line if search is on the header line.
12303 Use search-whitespace-regexp in two other places.
12304
12305 2004-11-27 Luc Teirlinck <teirllm@auburn.edu>
12306
12307 * fringe.el (fringe-indicators): Add fake defvar to avoid compiler
12308 warning. Delay real definition, which uses
12309 `set-fringe-indicators-1' till after the definition of that function.
12310
12311 2004-11-28 Kim F. Storm <storm@cua.dk>
12312
12313 * fringe.el (fringe): New defgroup.
12314 (fringe-mode): Move to fringe group.
12315 (fringe-indicators): New defcustom.
12316 (set-fringe-indicators-1): New defun.
12317
12318 * menu-bar.el (menu-bar-options-save): Add fringe-indicators.
12319 (menu-bar-showhide-fringe-ind-menu): New keymap.
12320 (menu-bar-showhide-fringe-ind-empty)
12321 (menu-bar-showhide-fringe-ind-mixed)
12322 (menu-bar-showhide-fringe-ind-box)
12323 (menu-bar-showhide-fringe-ind-right)
12324 (menu-bar-showhide-fringe-ind-left)
12325 (menu-bar-showhide-fringe-ind-none): New defuns.
12326 (menu-bar-showhide-fringe-menu): Add "Indicators" sub-menu.
12327
12328 2004-11-27 Richard M. Stallman <rms@gnu.org>
12329
12330 * comint.el (comint-read-noecho): Add trivial compatibility definition.
12331
12332 * generic.el (define-generic-mode): Doc fix.
12333
12334 * menu-bar.el (menu-bar-options-save): For the options
12335 that are toggled with menu-bar-make-mm-toggle, don't check
12336 for customized-value prop.
12337
12338 2004-11-27 Eli Zaretskii <eliz@gnu.org>
12339
12340 * mail/supercite.el (sc-cite-region): Handle the case where
12341 sc-cite-frame-alist is a symbol.
12342 (sc-uncite-region): Handle the case where sc-uncite-frame-alist is
12343 a symbol.
12344 (sc-recite-region): Handle the case where sc-recite-frame-alist is
12345 a symbol.
12346
12347 2004-11-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
12348
12349 * wid-edit.el (widget-narrow-to-field): New function.
12350 (widget-complete): Use it.
12351
12352 2004-11-27 Jay Belanger <belanger@truman.edu>
12353
12354 * calc/calc-aent.el (calc-eval-error): Declare and initialize the
12355 variable.
12356 (calc-eval-error): Don't check if the variable calc-eval-error is
12357 bound.
12358 (calc-buffer, calc-digit-value, math-expr-data): Declare them.
12359 (math-alg-inequalities): Move declaration to earlier in the file.
12360
12361 * calc/calc-ext.el (calc-command-flags, calc-gnuplot-buffer)
12362 (calc-gnuplot-input, math-normalize-a, math-integral-cache):
12363 Declare them.
12364
12365 * calc/calc-lang.el (math-expr-data, math-expr-token)
12366 (math-exp-old-pos): Declare them.
12367
12368 * calc/calc-vec.el (math-exp-pos, math-exp-str, math-exp-old-pos)
12369 (math-exp-token, math-exp-keep-spaces, math-expr-data): Declare them.
12370
12371 2004-11-27 Kim F. Storm <storm@cua.dk>
12372
12373 * progmodes/flymake.el: Use (featurep 'xemacs).
12374 (flymake-makehash): Change to defsubst. Use fboundp.
12375 (flymake-time-to-float): Remove.
12376 (flymake-float-time): Merge code from flymake-time-to-float here.
12377 (flymake-replace-regexp-in-string): Change to defsubst.
12378 (flymake-split-string-remove-empty-edges):
12379 Rename to flymake-split-string.
12380 (flymake-split-string): Remove previous defalias.
12381 (flymake-get-temp-dir): Change to defsubst.
12382 (flymake-make-xemacs-menu, flymake-xemacs-window-edges):
12383 Define for xemacs only.
12384 (flymake-master-file-count-limit): Change into compiler defvar only.
12385 (flymake-find-possible-master-files): Let-bind it dynamically while
12386 sorting files using flymake-master-file-compare.
12387
12388 2004-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
12389
12390 * font-lock.el (font-lock-compile-keywords): Don't complain if the end
12391 of defun-prompt-regexp matches inside a comment/string but the
12392 beginning is correctly outside everything.
12393
12394 * progmodes/tcl.el (tcl-omit-ws-regexp): Avoid the case where { or [
12395 appears within a string or a comment.
12396
12397 * emacs-lisp/cl-macs.el (cl-parse-loop-clause, labels): Use gensym
12398 rather than make-symbol for symbols which are used in
12399 a symbol-macrolet or equivalent.
12400
12401 2004-11-26 Jay Belanger <belanger@truman.edu>
12402
12403 * calc-misc.el (calc-last-why-command): Declare it.
12404
12405 * calc-vec.el (math-grade-vec): New variable.
12406 (calcFunc-grade, calcFunc-rgrade, math-grade-beforep):
12407 Replace variable grade-vec by declared variable.
12408 (math-rb-close): New variable.
12409 (math-read-brackets, math-read-vector): Replace variable close by
12410 declared variable.
12411
12412 * calc/calc-yank.el (calc-original-buffer, calc-return-buffer)
12413 (calc-one-window, calc-edit-handler, calc-restore-trail)
12414 (calc-allow-ret): Declare them.
12415
12416 * calc/calc-stuff.el (calc-flush-caches): Remove unnecessary variables.
12417 (math-lud-cache, math-log2-cache, math-radix-digits-cache)
12418 (math-radix-float-cache-tag, math-random-cache)
12419 (math-max-digits-cache, math-integral-cache, math-units-table)
12420 (math-format-date-cache, math-holidays-cache-tag): Declare them.
12421 (math-moc-func): New variable.
12422 (math-map-over-constants, math-map-over-constants-rec):
12423 Replace variable func by declared variable.
12424
12425 * calc/calc-store.el (calc-given-value, calc-store-opers):
12426 Declare them.
12427 (calc-var-name-map): Move declaration to earlier in the file.
12428 (calc-pv-pos): New variable.
12429 (calc-permanent-variable, calc-insert-permanent-variable):
12430 Replace variable pos by declared variable.
12431
12432 * calc/calc-mtx.el (calc-det-lu): New variable.
12433 (math-det-raw, math-det-step): Replace variable lu by declared
12434 variable.
12435
12436 * calc/calc-map.el (math-ms-temp, math-ms-args): New variables.
12437 (math-multi-subst, math-multi-subst-rec): Replace variables temp
12438 and arg by declared variables.
12439 (calcFunc-reducer): Fix incorrect variable.
12440 (math-inner-mul-func, math-inner-add-func): New variables.
12441 (calcFunc-inner, math-inner-mats): Replace variables mul-func
12442 and add-func by declared variables.
12443
12444 * calc/calc-incom.el (calc-prev-char, calc-prev-prev-char)
12445 (calc-digit-value): Declare them.
12446
12447 * calc/calc-help.el (Info-history): Declare it.
12448 (calc-describe-key): Make calc-summary-indentation a local variable.
12449 (calc-help-long-names): Move declaration to earlier in file.
12450
12451 * calc/calc-embed.el (calc-original-buffer): Declare it.
12452 (calc-embed-outer-top, calc-embed-outer-bot, calc-embed-top)
12453 (calc-embed-bot): New variables.
12454 (calc-do-embedded, calc-embedded-mark-formula)
12455 (calc-embedded-find-bounds, calc-embedded-duplicate)
12456 (calc-embedded-new-formula, calc-embedded-make-info):
12457 Replace vars outer-top, outer-bot, bot and top by declared variables.
12458 (calc-embed-prev-modes): New variable.
12459 (calc-embedded-set-modes, calc-embedded-update): Replace variable
12460 prev-modes with declared variable.
12461 (calc-embed-vars-used): New variable.
12462 (calc-embedded-make-info, calc-embedded-evaluate-expr)
12463 (calc-embedded-update, calc-embedded-find-vars): Replace variable
12464 vars-used by declared variable.
12465
12466 * calc/calc-bin.el (math-format-radix-float): Make pos a local
12467 variable.
12468 (math-format-radix-float): Remove unnecessary setq.
12469 (math-radix-float-cache): Declare it.
12470
12471 * calc/calcsel2.el (calc-keep-selection): Declare it.
12472
12473 * calc/calc-maint.el: Remove file.
12474
12475 2004-11-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12476
12477 * textmodes/bibtex.el (bibtex-sort-entry-class)
12478 (bibtex-comment-start): Use defcustom.
12479 (bibtex-entry-field-alist): Use nil if initial content of the
12480 field is undefined. Fix docstring.
12481 (bibtex-parse-keys-timeout, bibtex-autokey-additional-names)
12482 (bibtex-generate-autokey, bibtex-parse-buffers-stealthily)
12483 (bibtex-mode, bibtex-field-list, bibtex-entry-updat)
12484 (bibtex-autofill-entry, bibtex-entry-index, bibtex-next-field):
12485 Fix docstring.
12486 (bibtex-autokey-title-terminators): Use only one regexp.
12487 (bibtex-string-maybe-empty-head): New variable.
12488 (bibtex-remove-delimiters-string): New function.
12489 (bibtex-text-in-field-bounds, bibtex-text-in-string):
12490 Use bibtex-remove-delimiters-string.
12491 (bibtex-progress-message, bibtex-field-left-delimiter)
12492 (bibtex-field-right-delimiter, bibtex-entry-left-delimiter)
12493 (bibtex-entry-right-delimiter, bibtex-search-entry): Use eq.
12494 (bibtex-insert-kill): Rename from `bibtex-insert-current-kill'.
12495 Simplify.
12496 (bibtex-format-entry): Use save-excursion for inherited booktitle.
12497 Use eq and bibtex-remove-delimiters-string. For end markers use
12498 insertion type so that marker stays after inserted text.
12499 (bibtex-autokey-get-names): Return empty string if name is missing.
12500 (bibtex-autokey-demangle-name): Call bibtex-autokey-abbrev before
12501 calling bibtex-autokey-name-case-convert.
12502 (bibtex-autokey-demangle-title):
12503 Call bibtex-autokey-titleword-case-convert. Remove call to
12504 bibtex-autokey-titleword-case-convert from bibtex-autokey-get-title.
12505 (bibtex-global-key-alist, bibtex-read-string-key): New functions.
12506 (bibtex-read-key): New optional arg global.
12507 (bibtex-files-expand): New optional arg force.
12508 (bibtex-complete-string-cleanup): Expansion of abbrev can be absent.
12509 (bibtex-complete-crossref-cleanup): Rename from
12510 bibtex-complete-key-cleanup. Simplify code.
12511 (bibtex-copy-summary-as-kill): Remove arg key. Use looking-at.
12512 Operate on current entry.
12513 (bibtex-button): Add docstring.
12514 (bibtex-entry): Simplify.
12515 (bibtex-make-field): Replace optional arg called-by-yank with more
12516 specific args move and interactive.
12517 (bibtex-end-of-entry): Use forward-sexp.
12518 (bibtex-find-entry-globally): Remove.
12519 (bibtex-find-crossref): Allow for crossref key located in other buffer.
12520 Bound to C-c C-x.
12521 (bibtex-find-entry): New optional args global and display.
12522 (bibtex-find-text): Fix docstring. Remove arg as-if-interactive.
12523 (bibtex-validate): Use arg force of bibtex-files-expand.
12524 (bibtex-clean-entry): Bugfix, clean string entries properly.
12525 Always keep point at beginning of entry.
12526 (bibtex-complete): Bugfix. Handle string entries properly.
12527 Call cleanup functions only if needed.
12528 (bibtex-String): Use bibtex-read-string-key.
12529 (bibtex-url): Use bibtex-remove-delimiters-string. Do not alter
12530 case of replacement text.
12531
12532 2004-11-26 Lars Hansen <larsh@math.ku.dk>
12533
12534 * tramp.el (tramp-handle-directory-files-and-attributes): New function.
12535 (tramp-perl-directory-files-and-attributes): New constant.
12536 (tramp-file-name-handler-alist): Delete file-directory-files, add
12537 directory-files-and-attributes.
12538 (tramp-perl-file-attributes): Surround uid and gid by double
12539 quotes. Change parameter id-format from nonnumeric.
12540 (tramp-convert-file-attributes): New function.
12541 (tramp-handle-file-attributes): Use it.
12542 (tramp-maybe-send-perl-script): New function.
12543 (tramp-handle-file-attributes-with-perl): Use it. Don't convert
12544 file mode. Change parameter id-format from nonnumeric.
12545 (tramp-handle-file-attributes-with-ls): Change parameter id-format
12546 from nonnumeric.
12547 (tramp-post-connection): Don't send tramp-perl-file-attributes
12548 script. Reset connection property "perl-scripts".
12549 (tramp-handle-insert-directory): Run real handler when ls-lisp is
12550 in use.
12551
12552 2004-11-26 Lars Hansen <larsh@math.ku.dk>
12553
12554 * desktop.el (desktop-read): Replace mapcar with mapc.
12555 (desktop-create-buffer): Replace mapcar with mapc.
12556 Remove redundant piece of code.
12557
12558 2004-11-27 Nick Roberts <nickrob@snap.net.nz>
12559
12560 * progmodes/gud.el (gud-display-line): Use display-buffer
12561 for GDB-UI as for GUD.
12562
12563 * progmodes/gdb-ui.el (gdb-view-source, gdb-selected-view):
12564 Delete variables.
12565 (gdb-ann3): Don't make GUD buffer dedicated.
12566 (gdb-goto-breakpoint, gdb-display-buffer): Don't always dedicate.
12567 (gdb-display-source-buffer): Delete function.
12568 (gdb-view-source-function, gdb-view-assembler): Delete functions.
12569 (menu): Delete menu bindings for viewing source/assembler.
12570 (gdb-setup-windows, gdb-restore-windows):
12571 Don't dedicate GUD. No assembler now.
12572 (gdb-reset): No need to undedicate source buffers now.
12573 (gdb-source-info): No assembler now.
12574
12575 2004-11-26 Nick Roberts <nickrob@snap.net.nz>
12576
12577 * progmodes/gdb-ui.el (gdb-frame-parameters): Match height and
12578 width to those for special frames.
12579 (gdb-frame-breakpoints-buffer): Use gdb-frame-parameters.
12580 Use display-buffer.
12581 (gdb-frame-stack-buffer, gdb-frame-threads-buffer)
12582 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
12583 (gdb-frame-assembler-buffer): Rework like
12584 gdb-frame-breakpoints-buffer.
12585
12586 2004-11-25 Richard M. Stallman <rms@gnu.org>
12587
12588 * progmodes/flymake.el: Reindent.
12589 (flymake-split-string): Turn into defalias.
12590 (flymake-fix-file-name): Rename from flymake-fix-path-name.
12591 (flymake-ensure-ends-with-slash): Rename arg to FILENAME.
12592 (flymake-get-common-file-prefix): Rename from ...path... Doc fix.
12593 (flymake-build-relative-filename): Rename from ...path.
12594 Fix error message.
12595
12596 2004-11-25 Cheng Gao <chenggao@gmail.com>
12597
12598 * progmodes/flymake.el: Much whitespace and capitalization change.
12599 Move `provide' to end. Require `compile' only when compiling.
12600
12601 2004-11-24 Jay Belanger <belanger@truman.edu>
12602
12603 * calc/calc-alg.el: Added comment.
12604 (math-polynomial-base): Replace variable mpb-top-expr by
12605 math-poly-base-top-expr.
12606
12607 * calc/calc-poly.el (math-poly-base-top-expr): New variable.
12608 (math-polynomial-p1): Replace variable mpb-top-expr by declared
12609 variable.
12610 (math-poly-base-total-base): New variable.
12611 (math-total-polynomial-base, math-polynomial-p1): Replace variable
12612 mpb-total-base by declared variable.
12613 (math-factored-vars, math-to-list): Declare it.
12614 (math-fact-expr): New variable.
12615 (calcFunc-factors, calcFunc-factor, math-factor-expr)
12616 (math-factor-expr-try, math-factor-expr-part): Replace variable
12617 expr by declared variable.
12618 (math-fet-x): New variable.
12619 (math-factor-expr-try, math-factor-poly-coefs): Replace variable x
12620 by declared variable.
12621 (math-factor-poly-coefs): Make temp a local variable.
12622
12623 * calc/calc-units.el (calc-convert-units): Make units a local
12624 variable.
12625 (calc-num-units, calc-den-units): New variables.
12626 (calc-explain-units, calc-explain-units-rec): Replace variables
12627 num-units and den-units by declared variables.
12628 (math-cu-unit-list): New variable.
12629 (math-build-units-table, math-compare-unit-names)
12630 (math-convert-units, math-convert-units-rec): Replace variable
12631 unit-list by declared variable.
12632 (math-fbu-base, math-fbu-entry): New variables.
12633 (math-find-base-units, math-find-base-units-rec): Replace variables
12634 base and entry by declared variables.
12635 (math-which-standard): New variable.
12636 (math-to-standard-units, math-to-standard-rec): Replace variable
12637 which-standard by declared variable.
12638 (math-fcu-u): New variable.
12639 (math-find-compatible-unit, math-find-compatible-unit-rec):
12640 Replace variable u by declared variable.
12641 (math-cu-new-units, math-cu-pure): New variables.
12642 (math-convert-units, math-convert-units-rec): Replace variables
12643 new-units and pure by declared variables.
12644 (math-try-cancel-units): New variable.
12645 (math-simplify-units-quotient): Replace variable try-cancel-units by
12646 declared variable.
12647
12648 2004-11-24 Richard M. Stallman <rms@gnu.org>
12649
12650 * textmodes/ispell.el (ispell-check-version):
12651 If default-directory is nonexistent, use home dir.
12652
12653 * progmodes/grep.el (grep-regexp-alist):
12654 Don't match parens around line numbers.
12655
12656 * progmodes/cperl-mode.el (cperl-indent-region)
12657 (cperl-imenu--create-perl-index, cperl-xsub-scan):
12658 Don't print progress messages.
12659
12660 * progmodes/compile.el (compilation-mode-map):
12661 Don't inherit from compilation-minor-mode-map;
12662 copy its bindings instead. But the menu bar Compile
12663 entry now does inherit from compilation-menu-map.
12664
12665 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
12666 Use with-no-warnings around compiler-macroexpand.
12667
12668 * imenu.el: Don't always require newcomment.
12669 (imenu--generic-function): Call comment-normalize-vars
12670 if we have a comment syntax.
12671 Exit the loop if REGEXP matches the null string.
12672 Test comment-start as well as comment-start-skip
12673 when deciding whether to check for comments.
12674
12675 * tooltip.el (tooltip-mode): Doc fix.
12676
12677 * term.el (term-escape-char, term-mode): Doc fixes.
12678
12679 2004-11-24 Dave Love <fx@gnu.org>
12680
12681 * progmodes/python.el (python-font-lock-syntactic-keywords):
12682 Check for escapes in the regexp.
12683 (python-quote-syntax): Don't do it here.
12684
12685 2004-11-24 Nick Roberts <nickrob@snap.net.nz>
12686
12687 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
12688 (gdb-frames-mode-map, gdb-threads-mode-map)
12689 (gdb-registers-mode-map, gdb-locals-mode-map)
12690 (gdb-assembler-mode-map): Bind "q" to kill-this-buffer.
12691 (gdb-set-window-buffer): Rename from dedicated-switch-to-buffer.
12692
12693 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>:
12694 (dedicated-switch-to-buffer): Rework.
12695 (gdb-var-evaluate-expression-handler, gdb-put-string):
12696 Remove unused variable bindings.
12697 (gdb-setup-windows, gdb-display-buffer):
12698 Simplify. Use pop-to-buffer.
12699 (gdb-view-source-function): Simplify.
12700 (gdb-frame-breakpoints-buffer):
12701 Use pop-to-buffer, special-display-regexps.
12702
12703 2004-11-24 Glenn Morris <gmorris@ast.cam.ac.uk>
12704
12705 * progmodes/f90.el (f90-smart-end)
12706 (f90-previous-statement, f90-beginning-of-block): Doc fix.
12707 (f90-calculate-indent): Handle un-named PROGRAM blocks.
12708 (f90-end-of-block): Doc fix. Make check of outermost block
12709 conditional on value of `f90-smart-end'.
12710 (f90-block-match): Hack to deal with un-named PROGRAM blocks.
12711 Handle case where END-BLOCK is nil.
12712 (f90-match-end): Handle un-named PROGRAM blocks.
12713 (f90-backslash-not-special): New function.
12714
12715 2004-11-24 Jay Belanger <belanger@truman.edu>
12716
12717 * calc/calc.el (calc-embedded-active): Removed unnecessary
12718 declaration.
12719 (calc-show-banner): Removed redundant declaration.
12720
12721 * calc/calc-graph.el (calc-gnuplot-default-device)
12722 (calc-gnuplot-default-output, calc-gnuplot-print-device)
12723 (calc-gnuplot-print-output, calc-gnuplot-geometry)
12724 (calc-graph-default-resolution, calc-graph-default-resolution-3d):
12725 Remove redundant initial values.
12726
12727 * calc/calc-arith.el (math-scalar-functions)
12728 (math-nonscalar-functions, math-scalar-if-args-functions)
12729 (math-real-functions, math-positive-functions)
12730 (math-nonnegative-functions, math-real-scalar-functions)
12731 (math-real-if-arg-functions, math-integer-functions)
12732 (math-num-integer-functions, math-rounding-functions)
12733 (math-float-rounding-functions, math-integer-if-args-functions)
12734 (math-super-types): Move declarations to earlier in file.
12735 (math-unit-prefixes): Declared it.
12736 (math-floor-prec, math-trunc-prec): New variables.
12737 (math-trunc-fancy): Replace variable prec by declared variable.
12738 (math-floor-fancy): Replace variable prec by declared variable.
12739 (math-com-bterms): New variable.
12740 (math-commutative-equal, math-commutative-collect):
12741 Replace variable bterms by declared variable.
12742
12743 * calc/calc-misc.el (math-trunc): Replace variable prec by
12744 math-trunc-prec.
12745 (math-floor): Replace variable prec by math-floor-prec.
12746
12747 * calc/calc-forms.el (math-fd-date, math-fd-dt, math-fd-year)
12748 (math-fd-month, math-fd-day, math-fd-weekday, math-fd-hour)
12749 (math-fd-minute, math-fd-second, math-fd-bc-flag): New variables.
12750 (math-format-date, math-format-date-part): Replace variables
12751 date, dt, year, month, day, weekday, hour, minute, second and
12752 bc-flag by declared variables.
12753 (math-pd-str): New variable.
12754 (math-parse-date, math-parse-date-word, math-parse-standard-date):
12755 Replace variable str by declared variable.
12756 (math-daylight-savings-hook, math-tzone-names): Move definitions
12757 to earlier in the file.
12758 (var-TimeZone, math-exp-str, math-exp-pos): Declare them.
12759 (math-sh-year): New variable.
12760 (math-setup-add-holidays, math-setup-holidays)
12761 (math-setup-year-holidays): Replace variable `year' by declared
12762 variable.
12763
12764 * calc/calc-math.el (math-nrf-n, math-nrf-nf, math-nrf-nfm1):
12765 New variables.
12766 (math-nth-root-float, math-nth-root-float-iter): Replace variables
12767 n, nf and nfm1 by declared variables.
12768 (math-nri-n): New variable.
12769 (math-nth-root-integer, math-nth-root-int-iter): Replace variable
12770 n by declared variable.
12771 (calcFunc-log): Removed misplaced condition.
12772
12773 2004-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
12774
12775 * generic.el (generic-mode-set-comments): Accept an empty comment-end.
12776
12777 2004-11-24 Nick Roberts <nickrob@snap.net.nz>
12778
12779 * progmodes/gdb-ui.el (dedicated-switch-to-buffer): New function.
12780 (gdb-ann3, gdb-setup-windows, gdb-restore-windows):
12781 Dedicate gdb-related windows.
12782 (gdb-display-buffer): Dedicate gdb-related windows.
12783 Don't grab other frames.
12784 (gdb-reset): Remove dedicated property after debugging.
12785
12786 2004-11-24 Jay Belanger <belanger@truman.edu>
12787
12788 * calc/calc-sel.el: Add comment.
12789
12790 * calc/calc.el (math-stack-value-offset): Replace variables c,
12791 wid and off with math-svo-c, math-svo-wid and math-svo-off.
12792
12793 * calc/calccomp.el (math-comp-sel-tag): Declare it.
12794 (math-svo-c, math-svo-wid, math-svo-off): New variables.
12795 (math-stack-value-offset-fancy): Replace variables c, wid and off
12796 by declared variables.
12797 (math-comp-just, math-comp-comma-spc): New variables.
12798 (math-compose-expr, math-compose-matrix): Replace variables `just'
12799 and comma-spc by declared variable.
12800 (math-comp-vector-prec): New variable.
12801 (math-compose-expr, math-compose-matrix, math-compose-rows):
12802 Replace variable vector-prec by declared variable.
12803 (math-comp-left-bracket, math-comp-right-bracket)
12804 (math-comp-comma): New variables.
12805 (math-compose-expr, math-compose-rows): Replace variables
12806 left-bracket, right-bracket and comma by declared variables.
12807 (math-comp-full-width): New variable.
12808 (math-comp-to-string-flat, math-comp-to-string-flat-term):
12809 Replace variable full-width by declared variable.
12810 (math-comp-highlight, math-comp-word, math-comp-level)
12811 (math-comp-margin, math-comp-pos, math-comp-buf, math-comp-base)
12812 (math-comp-hgt, math-comp-tag, math-comp-hpos, math-comp-vpos):
12813 New variables.
12814 (math-comp-to-string-flat, math-comp-to-string-flat-term)
12815 (math-comp-sel-flat-term): Replace variables comp-highlight,
12816 comp-word, comp-level, comp-margin, comp-pos and comp-buf by
12817 declared variables.
12818 (math-comp-simplify, math-comp-simplify-term)
12819 (math-comp-add-string, math-comp-add-string-sel):
12820 Replace variables comp-highlight, comp-buf, comp-base,
12821 comp-height, comp-tag, comp-hpos and comp-vpos by declared variables.
12822
12823 2004-11-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12824
12825 * cus-start.el (all): Add x-use-old-gtk-file-dialog.
12826
12827 * mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
12828 and x-server-version may throw.
12829
12830 2004-11-23 Kim F. Storm <storm@cua.dk>
12831
12832 * subr.el (substitute-key-definition-key): Optimize.
12833 Don't call indirect-function for nil defn (always signals error).
12834
12835 * ido.el (ido-read-internal): Fix require-match check when
12836 ido-directory-too-big is set.
12837
12838 2004-11-23 Jay Belanger <belanger@truman.edu>
12839
12840 * calc/calc-ext.el (math-read-replacement-list)
12841 (math-read-superscripts): New variables.
12842 (math-read-preprocess-string): New function.
12843 (math-read-expr): Filter input through math-read-preprocess-string.
12844
12845 * calc/calc-aent.el (math-read-exprs): Filter input through
12846 math-read-preprocess-string.
12847
12848 2004-11-23 Daniel Pfeiffer <occitan@esperanto.org>
12849
12850 * progmodes/compile.el (compilation-start): In cd command use
12851 substitute-env-vars -- not quite shell compatible but better than
12852 nothing.
12853 (compilation-error-regexp-alist-alist): Simplify ftnchek to only
12854 handle the newer versions messages, which are more parseable.
12855
12856 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12857
12858 * reveal.el (reveal-mode-map): New var.
12859 (reveal-mode): Use it.
12860
12861 2004-11-23 Nick Roberts <nickrob@snap.net.nz>
12862
12863 * progmodes/gdb-ui.el (gdb-flush-pending-output): New variable.
12864 (gdb-send-item, gdb-resync, gud-gdba-marker-filter): Use it.
12865
12866 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12867
12868 * buff-menu.el (list-buffers-noselect): Re-add the leading space in the
12869 header-line when needed.
12870 Use fixed-pitch only in the header-line.
12871 Build the underline automatically. Use emdash if available.
12872
12873 2004-11-22 Richard M. Stallman <rms@gnu.org>
12874
12875 * dired.el (dired-recursive-copies): Move from dired-aux.el.
12876 * dired-aux.el (dired-recursive-copies): Move to dired.el.
12877
12878 2004-11-22 Nick Roberts <nickrob@snap.net.nz>
12879
12880 * progmodes/gdb-ui.el (gdb-resync): New function.
12881 (gdb-pre-prompt, gdb-prompt, gdb-starting, gdb-stopping)
12882 (gdb-frame-begin, gdb-stopped, gdb-post-prompt):
12883 Use it to fail more gracefully.
12884 (gdb-variables): Delete variable.
12885 Re-order variables to reduce byte-compiler warnings.
12886
12887 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12888
12889 * descr-text.el (describe-char):
12890 * paren.el (show-paren-function):
12891 * subr.el (syntax-after): Undo last change.
12892
12893 * progmodes/python.el (run-python): Don't hard code *Python*.
12894 Don't modify global process-environment.
12895 (python-send-region, python-load-file): Don't assume that
12896 python-buffer == (process-buffer (python-proc)).
12897 (python-switch-to-python): Simplify.
12898
12899 * dired.el (dired-align-file): Don't assume line starts with spaces.
12900
12901 2004-11-21 Jay Belanger <belanger@truman.edu>
12902
12903 * calc/calc-ext.el (math-read-big-expr, math-read-big-bigp):
12904 Replace variable `lines' by math-read-big-lines.
12905 (math-read-big-expr): Replace variables the-baseline, the-h2
12906 and err-msg by math-read-big-baseline, math-read-big-h2 and
12907 math-read-err-msg.
12908 (math-read-big-bigp): Replace variable h2 with math-rb-h2.
12909
12910 * calc/calc-lang.el (math-read-big-rec): Fix typo.
12911 (math-read-big-balance): Replace unbound variable by value.
12912 (math-read-big-lines): New variable.
12913 (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
12914 (math-read-big-error, math-read-big-balance): Replace variable
12915 `lines' by declared variable.
12916 (math-read-big-baseline, math-read-big-h2): New variables.
12917 (math-read-big-rec): Replace variables the-baseline and the-h2
12918 by declared variables.
12919 (math-rb-h1, math-rb-h2, math-rb-v1, math-rb-v2): New variables.
12920 (math-read-big-rec, math-read-big-char, math-read-big-emptyp)
12921 (math-read-big-balance): Replace variables h1, h2, v1 and v2 by
12922 declared variables.
12923 (math-read-big-err-msg): New variable.
12924 (math-read-big-error): Replace variable err-msg by declared variable.
12925
12926 2004-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12927
12928 * ses.el: Add coding cookie.
12929 Fix up docstrings, follow new commenting conventions.
12930 (ses-header-line-menu): Fix missing variable rename for header-row.
12931 (ses-cell-size): Remove.
12932 (ses-make-cell): New function.
12933 (ses-cell, ses-insert-row, ses-insert-column): Use it.
12934 (ses-calculate-cell): Remove unused var `symbol'.
12935 (ses-narrowed-p): New function.
12936 (ses-goto-data, undo-more, ses-reconstruct-all): Use it.
12937 (ses-initial-file-trailer): Change ;;; to ;; for local vars.
12938 (ses-load, ses-reconstruct-all): Adjust string search accordingly.
12939 (ses-setup): Use restore-buffer-modified-p.
12940 (ses-cleanup): Remove unused var `end'.
12941 (ses-header-string-left-offset): Remove.
12942 (ses-create-header-string): Adjust to new behavior of `align-to'.
12943 Truncate excessively large fields to preserve alignment.
12944 (ses-reconstruct-all): Remove unused var `refs'.
12945 (ses-read-cell-printer): Remove unused var `prompt'.
12946 (ses-delete-row): Remove unused var `pos'.
12947 (ses-delete-column): Remove unused var `new'.
12948
12949 2004-11-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12950
12951 * ps-print.el: Insert :version tag into all defgroup and defcustom.
12952 Use (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
12953 Eliminate eval-and-compile usage.
12954 (ps-insert-file): Use insert-file-contents instead of insert-file.
12955 (ps-setup): Code fix.
12956
12957 * printing.el (pr-setup, lpr-setup): Code fix.
12958
12959 2004-11-21 Jay Belanger <belanger@truman.edu>
12960
12961 * calc/calc-prog.el (math-integral-cache-state, calc-lang)
12962 (calc-original-buffer): Declare them.
12963 (calc-user-formula-alist): New variable.
12964 (calc-user-define-formula, calc-fix-user-formula)
12965 (calc-user-define-composition, calc-finish-formula-edit):
12966 Replace variable `alist' by declared variable.
12967 (var-q0, var-q1, var-q2, var-q3, var-q4, var-q5, var-q6)
12968 (var-q7, var-q7, var-q8, var-q9): Declare them.
12969 (calc-kbd-push): Don't check to see if var-q0 through var-q9
12970 are bound.
12971 (calcFunc-typeof): Replace undeclared variable by expression.
12972 (math-exp-env): New variable.
12973 (math-define-body, math-define-exp): Replace exp-env by declared var.
12974 (math-define-exp): Replace misplaced variable by expression.
12975
12976 * calc/calcalg3.el (calc-curve-nvars, calc-curve-varnames)
12977 (calc-curve-model, calc-curve-coefnames): New variables.
12978 (calc-curve-fit, calc-get-fit-variables): Replace variables nvars,
12979 varnames, model and coefnames by declared variables.
12980 (math-root-widen): New variable.
12981 (math-search-root, math-find-root): Replace variable root-widen by
12982 declared variable.
12983 (var-DUMMY): Declare it.
12984 (math-root-vars, math-min-vars): Move the declarations to earlier in
12985 the file.
12986 (math-brent-min): Make d a local variable.
12987 (math-find-minimum): Replace non-existent variable.
12988 (math-ninteg-romberg): Remove unnecessary variable.
12989 (math-ninteg-temp): New variable.
12990 (math-ninteg-romberg, math-ninteg-midpoint): Replace variable
12991 integ-temp by declared variable.
12992 (math-fit-first-var, math-fit-first-coef, math-fit-new-coefs):
12993 New variables.
12994 (math-general-fit): Replace variables first-var, first-coef and
12995 new-coefs by declared variables.
12996 (calcFunc-fitvar): Replace variable first-var by declared variable.
12997 (calcFunc-fitparam): Replace variable first-coef by declared variable.
12998 (calcFunc-fitdummy): Replace variable new-coefs by declared variable.
12999 (math-all-vars-vars, math-all-vars-found): New variables.
13000 (math-all-vars-in, math-all-vars-rec): Replace variables vars and
13001 found by declared variable math-all-vars-vars.
13002
13003 2004-11-20 Luc Teirlinck <teirllm@auburn.edu>
13004
13005 * emacs-lisp/cust-print.el (custom-printers): Use `defvar' instead
13006 of `defconst'.
13007
13008 2004-11-20 Richard M. Stallman <rms@gnu.org>
13009
13010 * isearch.el (isearch-mode-map): Don't bind SPC.
13011 (isearch-whitespace-chars): Function deleted.
13012 (isearch-search): Bind search-spaces-regexp.
13013 (isearch-lazy-highlight-search): Likewise.
13014 (search-whitespace-regexp): Doc fix.
13015 (isearch-forward-regexp): Doc fix.
13016
13017 * emacs-lisp/bytecomp.el (byte-compile-form):
13018 Move the calls to byte-compile-set-symbol-position,
13019 to avoid having two for the same symbol occurrence.
13020
13021 * comint.el (comint-input-ring-size): Increase to 150.
13022
13023 * hexl.el (hexl-mode-old-hl-line-mode, hexl-mode-old-ruler-mode):
13024 New variables.
13025 (hexl-mode): Set those variables, record ruler-mode and hl-line-mode.
13026 (hexl-mode-exit): Restore status of ruler-mode and hl-line-mode.
13027
13028 * imenu.el (imenu--generic-function):
13029 Ensure we keep moving backward even if BEG isn't further back.
13030
13031 * replace.el (query-replace-read-to, query-replace-read-from):
13032 Specify t for KEEP-ALL in read-from-minibuffer.
13033
13034 * progmodes/python.el (python-switch-to-python):
13035 If Python isn't running, start it.
13036 Don't alter debug-ignored-errors.
13037
13038 * progmodes/cperl-mode.el (cperl-indent-region):
13039 Don't mind imenu-scanning-message.
13040
13041 * bindings.el (global-map): Bind C-e to move-end-of-line.
13042
13043 * simple.el (line-move-finish): New arg FORWARD.
13044 Ignore invisible newlines, not intangible ones.
13045 Conditions for acceptable stopping positions depend on FORWARD.
13046 (line-move): Pass FORWARD arg to line-move-finish.
13047
13048 * buff-menu.el (list-buffers-noselect): Eliminate space at the start
13049 of HEADER. Compensate for this change in the code to add display
13050 properties. Don't make the first line intangible.
13051
13052 * info.el (Info-search): Fix previous change.
13053
13054 2004-11-20 Thien-Thi Nguyen <ttn@gnu.org>
13055
13056 * Makefile.in (recompile): Revert 2004-11-19 change.
13057 (compile): Likewise.
13058
13059 2004-11-19 Luc Teirlinck <teirllm@auburn.edu>
13060
13061 * Makefile.in (compile): Set `max-specpdl-size' before compiling.
13062
13063 2004-11-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13064
13065 * progmodes/ebnf2ps.el: Fix typos. Insert :version tag into all
13066 defgroup and defcustom. Eliminate eval-and-compile usage.
13067
13068 * progmodes/ebnf-otz.el: Fix typos.
13069
13070 2004-11-19 Jay Belanger <belanger@truman.edu>
13071
13072 * calc/calc-yank.el (calc-edit-disp-trail): New variable.
13073 (calc-edit-finish, calc-finish-stack-edit): Replace variable
13074 disp-trail by declared variable.
13075
13076 * calc/calc-sel.el (calc-edit-disp-trail): Declare it.
13077 (calc-finish-selection-edit): Replace variable disp-trail by
13078 declared variable.
13079 (calc-selection-cache-entry): Move declaration to earlier in the file.
13080 (calc-selection-cache-num, calc-selection-cache-comp)
13081 (calc-selection-cache-offset, calc-selection-true-num)
13082 (calc-final-point-line, calc-final-point-column)
13083 (calc-original-buffer): Declare them.
13084 (calc-fnp-op, calc-fnp-num): New variables.
13085 (calc-find-nth-part, calc-find-nth-part-rec)
13086 (calc-select-previous): Replace op and num by declared variables.
13087 (calc-rsf-old, calc-rsf-new): New variables.
13088 (calc-replace-sub-formula, calc-replace-sub-formula-rec):
13089 Replace variables old and new by declared variables.
13090 (calc-sel-reselect): New variable.
13091 (calc-auto-selection, calc-enter-selection, calc-edit-selection)
13092 (calc-sel-evaluate, calc-sel-expand-formula, calc-sel-expand-formula)
13093 (calc-sel-mult-both-sides, calc-sel-add-both-sides): Replace variable
13094 reselect with declared variable.
13095
13096 * calc/calc-rewr.el (math-regs, math-num-regs, math-prog-last)
13097 (math-bound-vars, math-conds, math-copy-neg, math-rhs)
13098 (math-pattern, math-remembering, math-aliased-vars, math-mt-many)
13099 (math-import-list, math-rewrite-phase): Declare them.
13100 (math-rewrite): Use let* to declare variables.
13101 (calc-rewrite-selection): Make rules a local variable.
13102 (calc-rewr-sel): New variable.
13103 (calc-rewrite-selection, calc-locate-selection-marker)
13104 (calc-rewrite): Use the declared variable calc-rewr-sel instead
13105 of sel.
13106 (math-rewrite-whole-expr): New variable.
13107 (math-rewrite, math-rewrite-phase): Replace variable expr by
13108 declared variable.
13109 (math-rewrite-heads-heads, math-rewrite-heads-skips)
13110 (math-rewrite-heads-blanks ): New variables.
13111 (math-rewrite-heads, math-rewrite-heads-rec): Replace variables
13112 heads, skips and blanks by declared variables.
13113 (math-rwcomp-subst-old, math-rwcomp-subst-new)
13114 (math-rwcomp-subst-old-func, math-rwcomp-subst-new-func):
13115 New variables.
13116 (math-rwcomp-substitute, math-rwcomp-subst-rec): Replace variables
13117 old, new, old-func and new-func by declared variables.
13118 (math-rwcomp-assoc-args, math-rwcomp-addsub-args):
13119 Remove unnecessary variable.
13120 (math-apply-rw-regs): New variable.
13121 (math-apply-rewrites, math-rwapply-replace-regs)
13122 (math-rwapply-reg-looks-negp): Replace variable regs by declared var.
13123 (math-apply-rw-ruleset): New variable.
13124 (math-apply-rewrites, math-rwapply-remember): Replace variable
13125 ruleset by declared variable.
13126
13127 2004-11-19 Richard M. Stallman <rms@gnu.org>
13128
13129 * info.el (Info-search): Use search-whitespace-regexp.
13130
13131 2004-11-19 Thien-Thi Nguyen <ttn@gnu.org>
13132
13133 * vc-rcs.el (vc-rcs-parse): New function.
13134 (vc-rcs-annotate-command): Likewise.
13135 (vc-rcs-annotate-current-time): Likewise.
13136 (vc-rcs-annotate-time): Likewise.
13137 (vc-rcs-annotate-extract-revision-at-line): Likewise.
13138
13139 2004-11-19 Thien-Thi Nguyen <ttn@gnu.org>
13140
13141 * Makefile.in (recompile): Set `max-specpdl-size' before compiling.
13142
13143 2004-11-18 Jay Belanger <belanger@truman.edu>
13144
13145 * calc/calc-alg.el (math-simplify-divisor): Remove unnecessary vars.
13146
13147 2004-11-17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13148
13149 * printing.el: Eliminate use of interactive-p and eval-and-compile.
13150 Use of (featurep 'xemacs) instead of (eq ps-print-emacs-type 'xemacs).
13151 Use make-temp-file to generate PostScript files in any situation.
13152 (pr-ps-temp-file): Now specify a prefix to generate temporary files.
13153 (pr-interactive-p): Eliminate var.
13154 (pr-save-interactive): Eliminate macro.
13155 (pr-interface, pr-ps-directory-preview)
13156 (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
13157 (pr-ps-directory-ps-print, pr-ps-buffer-preview)
13158 (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
13159 (pr-ps-buffer-ps-print, pr-ps-region-preview)
13160 (pr-ps-region-using-ghostscript, pr-ps-region-print)
13161 (pr-ps-region-ps-print, pr-ps-mode-preview)
13162 (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
13163 (pr-printify-directory, pr-txt-directory, pr-despool-preview)
13164 (pr-despool-using-ghostscript, pr-despool-print, pr-despool-ps-print)
13165 (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
13166 (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
13167 (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
13168 (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
13169 (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
13170 (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
13171 (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
13172 (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
13173 (pr-update-menus, pr-interface-ps-prin, pr-interface-preview):
13174 Eliminate pr-save-interactive usage.
13175 (pr-menu-lock, pr-ps-utility-args, pr-set-outfilename):
13176 Eliminate pr-interactive-p usage.
13177 (pr-toggle-file-duplex-menu, pr-toggle-file-tumble-menu)
13178 (pr-toggle-file-landscape-menu, pr-toggle-ghostscript-menu)
13179 (pr-toggle-faces-menu, pr-toggle-spool-menu, pr-toggle-duplex-menu)
13180 (pr-toggle-tumble-menu, pr-toggle-landscape-menu)
13181 (pr-toggle-upside-down-menu, pr-toggle-line-menu, pr-toggle-zebra-menu)
13182 (pr-toggle-header-menu, pr-toggle-header-frame-menu)
13183 (pr-toggle-lock-menu, pr-toggle-region-menu, pr-toggle-mode-menu):
13184 New funs.
13185 (pr-ps-file): Use make-temp-file to generate a temporary file.
13186
13187 2004-11-17 Jay Belanger <belanger@truman.edu>
13188
13189 * calc/calc-alg.el (calc-poly-div): Make calc-poly-div-remainder
13190 a local variable.
13191 (math-eval-rules-cache, math-eval-rules-cache-other): Declare them.
13192 (math-top-only): New variable.
13193 (math-simplify, math-simplify-step): Replace variable top-only by
13194 declared variable math-top-only.
13195 (math-simplify-expr): Declare it.
13196 Replace argument expr in all calls of math-defsimplify by
13197 math-simplify-expr.
13198 (math-simplify-plus, math-simplify-times, math-simplify-divide)
13199 (math-simplify-divisor, math-simplify-one-divisor)
13200 (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt)
13201 (math-simplify-pow): Replace variable expr by declared variable
13202 math-simplify-expr.
13203 (math-simplify-divisor): Remove local variables temp and op.
13204 (math-simplify-one-divisor): Make temp and op local variables.
13205 (math-simplify-divisor-nover, math-simplify-divisor-dover):
13206 New variables.
13207 (math-simplify-divisor, math-simplify-one-divisor):
13208 Replace variables nover and dover by declared variables.
13209 (math-expr-subst-new, math-expr-subst-old): New variables.
13210 (math-expr-subst, math-expr-subst-rec): Replace variables new
13211 and old by declared variables.
13212 (math-is-poly-degree, math-is-poly-loose): New variables.
13213 (math-is-polynomial, math-is-poly-rec): Replace variables degree
13214 and loose by declared variables.
13215 (math-poly-base-const-ok, math-poly-base-pred): New variables.
13216 (math-polynomial-base, math-polynomial-base-rec):
13217 Replace variables const-ok and mpb-pred by declared variables.
13218
13219 * calc/calc-poly.el (calc-poly-div-remainder): Declare it.
13220
13221 * calc/calc-ext.el (math-defsimplify): Change the argument in
13222 the created function to math-simplify-expr.
13223
13224 * calc/calc-units.el (math-simplify-expr): Declare it.
13225 Replace argument expr in all calls of math-defsimplify by
13226 math-simplify-expr.
13227 (math-simplify-units-prod): Replace variable expr by declared
13228 variable math-simplify-expr.
13229
13230 2004-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
13231
13232 * buff-menu.el (list-buffers-noselect): Massage to fit in 80 columns.
13233 Replace mapcar->dolist, format->string.
13234
13235 2004-11-17 Miles Bader <miles@gnu.org>
13236
13237 * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el
13238 * progmodes/idlwave.el: Remove RCS keywords.
13239
13240 2004-11-17 J.D. Smith <jdsmith@as.arizona.edu>
13241
13242 * progmodes/idlwave.el, progmodes/idlw-toolbar.el
13243 * progmodes/idlw-shell.el, progmodes/idlw-rinfo.el:
13244 Update to IDLWAVE version 5.5. Too many changes to list them here.
13245 * progmodes/idlw-help.el: New file.
13246
13247 2004-11-16 Richard M. Stallman <rms@gnu.org>
13248
13249 * international/iso-cvt.el (iso-tex2iso-trans-tab):
13250 Discard spaces after \i according to TeX rules.
13251
13252 * international/mule.el (set-buffer-file-coding-system):
13253 New arg NOMODIFY.
13254 (after-insert-file-set-coding): Pass that new arg.
13255 Prevent set-buffer-multibyte from trying to lock the file.
13256
13257 * buff-menu.el (list-buffers-noselect): New arg BUFFER-LIST.
13258
13259 * saveplace.el (save-place): Doc fix.
13260
13261 * dabbrev.el (dabbrev-expand): When handling SPC M-/,
13262 temporarily widen before finding the following word to copy.
13263
13264 * emacs-lisp/lucid.el (map-keymap): Definition deleted.
13265 (cl-map-keymap): Definition deleted.
13266
13267 * subr.el (map-keymap-internal): New function.
13268
13269 2004-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13270
13271 * textmodes/flyspell.el (flyspell-mouse-map): Pop the menu
13272 when pressing rather than when releasing mouse-2. Simplify.
13273
13274 2004-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
13275
13276 * progmodes/compile.el (compilation-setup): Don't set buffer-read-only.
13277 (compilation-mode): Set it here instead.
13278
13279 * emacs-lisp/cl-compat.el (pair-with-newsyms): Use make-symbol.
13280
13281 * emacs-lisp/cl-macs.el: Use make-symbol rather than gensym.
13282 (loop, cl-parse-loop-clause, defsetf): Use backquote.
13283
13284 2004-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
13285
13286 * progmodes/compile.el (compilation-internal-error-properties):
13287 Fix up a transposition-typo. Check end-col before using it.
13288
13289 2004-11-14 Frederic Han <han@math.jussieu.fr> (tiny change)
13290
13291 * international/iso-cvt.el (iso-tex2iso-trans-tab):
13292 Discard whitespace after macro \i when converting it.
13293
13294 2004-11-16 Juri Linkov <juri@jurta.org>
13295
13296 * emacs-lisp/find-func.el (find-function-regexp):
13297 Optimize `define-minor-mode'. Add `defun-cvs-mode'.
13298 Add `deffoo'. Add `f' to [^cgv] to exclude `defface'.
13299 Remove invalid `\W' from [^cgv\W]. Doc fix.
13300 (find-function-search-for-symbol): Replace "\\>" with "\\_>".
13301
13302 2004-11-15 Luc Teirlinck <teirllm@auburn.edu>
13303
13304 * play/life.el: Maintainer is now FSF.
13305 (life-patterns, life-neighbor-deltas, life-window-start)
13306 (life-current-generation, life-generation-string): Use defvar
13307 instead of defconst.
13308
13309 2004-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
13310
13311 * progmodes/compile.el (compilation-move-to-column): New fun.
13312 (compilation-internal-error-properties)
13313 (compilation-next-error-function): Use it to make sure we don't go past
13314 the end of line.
13315
13316 2004-11-15 John Paul Wallington <jpw@gnu.org>
13317
13318 * autoinsert.el (auto-insert-alist): Insert the user's name in
13319 copyright notice, rather than Free Software Foundation, for the
13320 Emacs Lisp header case too.
13321
13322 2004-11-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13323
13324 * printing.el (pr-ps-file-print, pr-toggle-duplex): Fix typos.
13325 Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
13326 (pr-switches-string): If SWITCHES is nil, return nil. Otherwise,
13327 return the list of string in a string.
13328 (pr-call-process): Message if calling process returns an error, that
13329 is, the exit status is different of zero.
13330
13331 2004-11-15 Jay Belanger <belanger@truman.edu>
13332
13333 * calc/calcalg2.el (math-integrate-by-parts): Remove unused
13334 variable var-thing.
13335 (math-integ-depth, math-integ-level, math-integral-limit)
13336 (math-enable-subst, math-any-substs, math-integ-msg)
13337 (math-prev-parts-v, math-good-parts, math-max-integral-limit)
13338 (math-int-threshold, math-int-factors, math-double-roots)
13339 (math-solve-simplifying, var-IntegLimit, math-solve-sign)
13340 (var-GenCount): Declare these variables.
13341 (calcFunc-integ): Don't check if var-IntegLimit is bound.
13342 (math-integral-cache, math-integral-cache-state):
13343 Move declarations to earlier in the file.
13344 (math-deriv-var, math-deriv-total, math-deriv-symb)
13345 (math-cur-record, math-has-rules, math-t1, math-t2, math-t3)
13346 (math-so-far, math-integ-expr, math-expr-parts, calc-low)
13347 (calc-high, math-solve-var, math-solve-full, math-solve-vars)
13348 (math-try-solve-sign, math-solve-b, math-solve-system-vv)
13349 (math-solve-res): New variables
13350 (math-derivative, calcFunc-deriv, calcFunc-tderiv)
13351 (math-integral, math-replace-integral-parts)
13352 (math-integrate-by-parts, calc-dump-integral-cache)
13353 (math-try-integral, math-do-integral, math-do-integral)
13354 (math-do-integral-methods, math-try-solve-for)
13355 (math-try-solve-prod, math-solve-poly-funny-powers)
13356 (math-solve-crunch-poly, math-decompose-poly)
13357 (math-solve-find-root-term, math-find-root-in-prod)
13358 (math-integ-try-linear-substitutions)
13359 (math-integ-try-substitutions, math-expr-rational-in)
13360 (math-expr-rational-in-rec, calcFunc-table, math-scan-for-limits)
13361 (math-solve-prod, math-solve-quartic, math-poly-all-roots)
13362 (math-solve-for, math-solve-system, math-solve-system-rec)
13363 (math-solve-get-sign, math-solve-get-int)
13364 (math-solve-system-subst): Replace undeclared variables with newly
13365 declared variables.
13366
13367 2004-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
13368
13369 * winner.el (winner-active-region, winner-edges, winner-window-list):
13370 Define at toplevel.
13371 (winner-mode-map): Move init inside declaration.
13372
13373 2004-11-14 Luc Teirlinck <teirllm@auburn.edu>
13374
13375 * files.el (convert-standard-filename): Doc fix.
13376
13377 2004-11-14 Daniel Pfeiffer <occitan@esperanto.org>
13378
13379 * files.el (auto-mode-alist): Handle .gtkrc, and under /etc
13380 passwd, group, shadow, default/* and pam.d/*.
13381
13382 2004-11-14 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13383
13384 * printing.el (pr-menu-spec): Adjust menu specification.
13385
13386 2004-11-13 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13387
13388 * printing.el: Doc fix. Insert :version tag into all defcustom.
13389 Handle interactive-p as is recommended in Emacs Lisp Reference.
13390 Set the file permission bits for newly created files.
13391 Reported by Glenn Morris <gmorris+emacs@ast.cam.ac.uk>.
13392 The printing menu specification (in `pr-menu-spec') was merged.
13393 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
13394 (pr-version): New version number (6.8.3).
13395 (pr-file-modes): New option.
13396 (pr-interactive-p): New var.
13397 (pr-save-interactive, pr-save-file-modes): New macros.
13398 (pr-setup): Code fix.
13399 (pr-menu-spec): Menu specification merged.
13400 (pr-call-process, pr-text2ps): Set file permission bits.
13401 (pr-despool-print): Set file permission bits. Handle interactive-p as
13402 is recommended.
13403 (pr-interface, pr-ps-directory-preview)
13404 (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
13405 (pr-ps-directory-ps-print, pr-ps-buffer-preview)
13406 (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
13407 (pr-ps-buffer-ps-print, pr-ps-region-preview)
13408 (pr-ps-region-using-ghostscript, pr-ps-region-print)
13409 (pr-ps-region-ps-print, pr-ps-mode-preview)
13410 (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
13411 (pr-printify-directory, pr-txt-directory, pr-despool-preview)
13412 (pr-despool-using-ghostscript, pr-despool-ps-print)
13413 (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
13414 (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
13415 (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
13416 (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
13417 (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
13418 (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
13419 (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
13420 (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
13421 (pr-menu-lock, pr-update-menus, pr-ps-utility-args)
13422 (pr-set-outfilename, pr-interface-ps-print, pr-interface-preview):
13423 Handle interactive-p as is recommended.
13424
13425 2004-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
13426
13427 * emacs-lisp/byte-opt.el (byte-optimize-inline-handler): Simplify.
13428 (byte-decompile-bytecode-1): Remove unused vars `tag' and `retcount'.
13429
13430 * font-lock.el (font-lock-fontify-syntactically-region): Fix last fix
13431 so it doesn't forget to highlight the beginning of the region either.
13432
13433 2004-11-13 Daniel Pfeiffer <occitan@esperanto.org>
13434
13435 * progmodes/cc-mode.el (c-basic-common-initc-font-lock-init)
13436 (c-font-lock-init): Eliminate obsolete make-local-hook.
13437 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
13438 (awk-mode): Use run-mode-hooks.
13439
13440 * progmodes/cperl-mode.el (cperl-mode): Use run-mode-hooks.
13441
13442 2004-11-13 Kim F. Storm <storm@cua.dk>
13443
13444 * mouse.el (mouse-drag-copy-region): Add :version.
13445 (mouse-drag-mode-line-1): Let bind mouse-autoselect-window to nil
13446 while dragging mode line, so mode line can be dragged downwards.
13447 (mouse-drag-region-1): Let bind make-cursor-line-fully-visible
13448 while pressing mouse button so window doesn't scroll until we
13449 release the mouse if clicking on partially visible line.
13450
13451 2004-11-12 Jay Belanger <belanger@truman.edu>
13452
13453 * calc/calc-graph.el (calc-dumb-map): Declare it.
13454 (calc-graph-show-dumb): Check if calc-dumb-map is non-nil rather
13455 than unbound.
13456 (calc-graph-name): Made `end' a local variable.
13457 (calc-graph-lookup): Made `varname' a local variable.
13458 (var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark):
13459 Declare them.
13460 (calc-graph-format-data): Don't check if var-PlotRejects is bound.
13461 (calc-graph-plot, calc-graph-compute-3d): Remove references to
13462 the unused variable y3vec.
13463 (calc-graph-show-dumb): Remove reference to unused variable found-pt.
13464 (calc-graph-kill-hook, calc-graph-plot): Remove reference to
13465 calc-graph-prev-kill-hook.
13466 (calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps)
13467 (calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec)
13468 (calc-graph-xname, calc-graph-yname, calc-graph-xstep)
13469 (calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine)
13470 (calc-graph-keep-file, calc-graph-xval, calc-graph-xlow)
13471 (calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp)
13472 (calc-graph-zp, calc-graph-yvector, calc-graph-resolution)
13473 (calc-graph-y3value, calc-graph-y3name)
13474 (calc-graph-y3step, calc-graph-y3step, calc-graph-zval)
13475 (calc-graph-stepcount, calc-graph-is-splot)
13476 (calc-graph-surprise-splot, calc-graph-blank)
13477 (calc-graph-non-blank, calc-graph-curve-num): New variables.
13478 (calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d)
13479 (calc-graph-recompute-2d, calc-graph-compute-3d)
13480 (calc-graph-format-data): Replace undeclared variables with the
13481 above newly declared variables.
13482
13483 2004-11-12 Diane Murray <dsm@muenster.de> (tiny change)
13484
13485 * mail/rmail.el (rmail-get-new-mail): Use the renamed variables
13486 `rsf-beep' and `rsf-sleep-after-message'.
13487
13488 * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
13489 list if `message-sender' is non-nil.
13490
13491 2004-11-12 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
13492
13493 * desktop.el (desktop-create-buffer, desktop-save): Avoid some
13494 consing by using mapc instead of mapcar.
13495
13496 2004-11-12 Nick Roberts <nickrob@snap.net.nz>
13497
13498 * tooltip.el (require): Explain why CL is needed.
13499
13500 2004-11-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13501
13502 * printing.el: Insert :version into defgroup (printing). All reference
13503 to Files option in menubar were changed to File.
13504 (pr-version): New version number (6.8.2).
13505 (pr-get-symbol): Call easy-menu-intern.
13506 (pr-region-active-p): Now is a fun (it was defsubst). To avoid
13507 compilation gripes.
13508
13509 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
13510
13511 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the
13512 new byte-compile-function-environment binding to t.
13513
13514 * font-lock.el (font-lock-fontify-syntactically-region):
13515 Don't forget to highlight the last char when we hit `end'.
13516
13517 * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name.
13518 (mwheel-scroll): Adjust accordingly.
13519
13520 * cvs-status.el: Reduce spurious warnings.
13521 (cvs-status-checkout): Remove.
13522 (cvs-status-mode-map): Use cvs-mode-checkout instead.
13523
13524 * pcvs.el (cvs-mode-checkout): New command.
13525
13526 * international/iso-cvt.el (iso-cvt-define-menu): Fix typo.
13527
13528 * tooltip.el: Require CL.
13529
13530 * emacs-lisp/bytecomp.el: Use push.
13531 (byte-compile-file-form-defalias): Rename from byte-compile-defalias.
13532 (defalias): Remove the `byte-compile' property and add
13533 a `byte-hunk-handler'.
13534
13535 2004-11-11 Juri Linkov <juri@jurta.org>
13536
13537 * info.el (Info-search): Save match data for isearch.
13538 Skip Tag Table node.
13539
13540 * descr-text.el (describe-char): Replace syntax-after with code
13541 from its previous version.
13542
13543 * files.el (magic-mode-alist): Use optimization for SGML mode too.
13544 (set-auto-mode): Doc fix. Remove unused variable `xml'.
13545
13546 * international/mule.el (sgml-html-meta-auto-coding-function):
13547 Remove > after <html to allow HTML attributes.
13548
13549 2004-11-11 Jay Belanger <belanger@truman.edu>
13550
13551 * calc/calc-comb.el (math-prime-factors-finished): Declare it as
13552 a variable.
13553 (calcFunc-dfac): Replace unbound max by n.
13554 (math-stirling-local-cache): New variable.
13555 (math-stirling-number, math-stirling-1, math-stirling-2):
13556 Replace the variable `cache' by the declared variable
13557 math-stirling-local-cache.
13558 (var-RandSeed): Declare it as a variable.
13559 (math-init-random-base, math-random-digit): Don't check to see if
13560 var-RandSeed is bound.
13561 (math-random-cache, math-gaussian-cache, calc-verbose-nextprime):
13562 Declare them instead of just setting them.
13563 (math-init-random-base): Made i a local variable.
13564 (math-random-digit): Made math-random-last a local variable.
13565 (math-prime-test-cache): Move declaration to before it is used.
13566 (math-prime-test-cache-k, math-prime-test-cache-q)
13567 (math-prime-test-cache-nm1, math-prime-factors-finished):
13568 Declare them as variables.
13569
13570 2004-11-11 Jay Belanger <belanger@truman.edu>
13571
13572 * calc/calc-ext.el (math-defcache): Use defvar for the new
13573 variables it creates.
13574
13575 2004-11-11 Lars Hansen <larsh@math.ku.dk>
13576
13577 * desktop.el (desktop-buffer-mode-handlers, desktop-after-read-hook)
13578 (desktop-clear-preserve-buffers-regexp, desktop-file-name-format)
13579 (desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path)
13580 (desktop-save): Add :version.
13581
13582 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
13583
13584 * printing.el (pr-get-symbol): Don't downcase.
13585
13586 2004-11-10 Jay Belanger <belanger@truman.edu>
13587
13588 * calc/calc-aent.el (calc-do-quick-calc): Use kill-new to append
13589 string to kill-ring.
13590
13591 * calc/calc-aent.el (calc-alg-exp, math-toks)
13592 (math-exp-pos,math-exp-old-pos, math-exp-token)
13593 (math-exp-keep-spaces, math-exp-str): New variables.
13594 (calc-do-alg-entry, calcAlg-equals, calcAlg-edit)
13595 (calcAlg-enter): Use declared variable calc-alg-exp.
13596 (math-build-parse-table, math-find-user-token): Use declared
13597 variable math-toks.
13598 (math-read-exprs, math-read-token, calc-check-user-syntax)
13599 (calc-match-user-syntax, match-factor-after, math-read-factor):
13600 Use declared variables math-exp-pos math-exp-old-pos.
13601 (math-read-exprs, math-read-token, math-read-expr-level)
13602 (calc-check-user-syntax, calc-match-user-syntax)
13603 (match-factor-after, math-read-factor): Use declared variable
13604 math-exp-token.
13605 (math-read-exprs, math-read-expr-list, math-read-token)
13606 (math-read-factor): Use declared variable math-exp-keep-spaces.
13607 (math-read-exprs, math-read-token): Use declared variable
13608 math-exp-str.
13609 (calc-match-user-syntax): Make m a local variable.
13610
13611 * calc/calc-ext.el (math-read-expr): Use declared variables
13612 math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
13613 math-exp-keep-spaces.
13614
13615 * calc/calc-forms.el (math-read-angle-bracket): Use declared
13616 variables math-exp-pos, math-exp-str.
13617
13618 * calc/calc-lang.el (math-parse-tex-sum): Use declared variable
13619 math-exp-old-pos.
13620 (math-parse-fortran-vector, math-parse-fortran-vector-end)
13621 (math-parse-eqn-prime): Use declared variable math-exp-token.
13622
13623 * calc/calc-vec.el (math-read-brackets, math-check-for-commas):
13624 Use declared variable math-exp-pos.
13625 (math-check-for-commas): Use declared variable math-exp-str.
13626 (math-read-brackets): Use declared variables math-exp-old-pos,
13627 math-exp-keep-spaces.
13628 (math-read-brackets, math-read-vector, math-read-matrix):
13629 Use declared variable math-exp-token.
13630
13631 2004-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
13632
13633 * emacs-lisp/easymenu.el (easy-menu-define-key): Understand the case
13634 where the keymap is a symbol.
13635 (easy-menu-add-item): Use keymap-prompt. Simplify.
13636
13637 * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp.
13638
13639 * textmodes/sgml-mode.el (sgml-tag-text-p): New fun.
13640 (sgml-parse-tag-backward): Use it to skip spurious < or >.
13641
13642 2004-11-10 Thien-Thi Nguyen <ttn@gnu.org>
13643
13644 * ebuff-menu.el: Doc fixes throughout.
13645 (electric-buffer-menu-mode-hook): New defvar.
13646
13647 2004-11-10 Nick Roberts <nickrob@snap.net.nz>
13648
13649 * tooltip.el: Don't require cl, comint, gud, gdb-ui for compilation.
13650 The resulting compiler warnings appear to be harmless.
13651
13652 2004-11-10 Daniel Pfeiffer <occitan@esperanto.org>
13653
13654 * textmodes/conf-mode.el: New file.
13655
13656 * files.el (auto-mode-alist, magic-mode-alist): Use it.
13657
13658 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13659
13660 * international/iso-cvt.el (iso-cvt-define-menu): Clean up namespace.
13661
13662 2004-11-09 Jay Belanger <belanger@truman.edu>
13663
13664 * calc/calc-ext.el (calc-init-extensions): Remove old code.
13665
13666 * calc/calc-ext.el (math-expr-data, math-mt-many, math-mt-func)
13667 (calc-z-prefix-buf, calc-z-prefix-msgs): New variables.
13668 (calc-z-prefix-help, calc-user-function-list): Use declared
13669 variables calc-z-prefix-buf, calc-z-prefix-msgs.
13670 (math-map-tree, math-map-tree-rec): Use declared variables
13671 math-mt-many, math-mt-func.
13672 (math-read-expression, math-read-string): Use declared variable
13673 math-expr-data.
13674
13675 * calc/calc-ext.el (math-normalize-nonstandard): Use declared
13676 variable math-normalize-a.
13677
13678 * calc/calc.el (math-normalize-a): New variable.
13679 (math-normalize): Use declared variable math-normalize-a.
13680
13681 * calc/calc-poly.el (math-expand-form): Use declared variable
13682 math-mt-many.
13683
13684 * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
13685 Use declared variable math-mt-many.
13686 (math-rewrite): Use declared variable math-mt-func.
13687
13688 * calc/calc-vec.el (math-read-brackets, math-read-vector)
13689 (math-read-matrix): Use declared variable math-expr-data.
13690
13691 * calc/calc-lang.el (math-parse-fortran-vector)
13692 (math-parse-fortran-vector-end, math-parse-tex-sum)
13693 (math-parse-eqn-matrix, math-parse-eqn-prime)
13694 (math-read-math-subscr): Use declared variable math-expr-data.
13695
13696 * calc/calc-aent.el (math-read-exprs, math-read-expr-list)
13697 (math-read-expr-level, math-read-token, calc-check-user-syntax)
13698 (calc-match-user-syntax, math-read-if, math-factor-after)
13699 (math-read-factor): Use declared variable math-expr-data.
13700
13701 2004-11-09 Glenn Morris <gmorris@ast.cam.ac.uk>
13702
13703 * calendar/diary-lib.el (diary-from-outlook)
13704 (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use
13705 interactive-p; but rather new optional argument NOCONFIRM.
13706
13707 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13708
13709 * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing.
13710 (easy-menu-name-match): Revert correspondingly.
13711
13712 2004-11-09 Richard M. Stallman <rms@gnu.org>
13713
13714 * emacs-lisp/bytecomp.el (byte-compile-defalias):
13715 Turn off warnings for the new function even if definition not constant.
13716 If the definition isn't a quoted symbol, record (FUNCTION . t).
13717 (byte-compile-function-environment): Now allow (FUNCTION . t) as elt.
13718 (byte-compile-callargs-warn): Handle (FUNCTION . t).
13719 (display-call-tree, byte-compile-arglist-warn):
13720 Handle t returned by byte-compile-fdefinition.
13721
13722 2004-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13723
13724 * Makefile.in (maintainer-clean): Depend on distclean.
13725
13726 * help-fns.el (help-C-file-name): File name must be in build-files
13727 to be returned.
13728
13729 2004-11-09 Jay Belanger <belanger@truman.edu>
13730
13731 * calc/calc.el (calc-mode-hook, calc-trail-mode-hook)
13732 (calc-start-hook, calc-end-hook, calc-load-hook): New variables.
13733
13734 * calc/calc.el (calc, calc-trail-display, calc-mode):
13735 Remove obsolete sections.
13736
13737 * calc/calc.el (calc-x-paste-text): Remove.
13738
13739 * calc/calc-ext.el (calc-init-extensions): Bind calc-yank to
13740 mouse-2.
13741
13742 2004-11-09 Nick Roberts <nickrob@snap.net.nz>
13743
13744 * progmodes/gdb-ui.el (gdb-current-stack-level): New variable.
13745 (gdb-info-frames-custom, gdb-frame-handler): Use it to find
13746 current frame (in case of recursive calls).
13747 (gdb-show-changed-values): Add :version keyword.
13748
13749 2004-11-09 Kenichi Handa <handa@m17n.org>
13750
13751 * international/mule-cmds.el: Change coding: tag back to
13752 iso-2022-7bit.
13753
13754 2004-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13755
13756 * international/mule-cmds.el: Change coding-system to utf-8.
13757 (select-safe-coding-system-interactively):
13758 New function extracted from select-safe-coding-system.
13759 (select-safe-coding-system): Use it.
13760
13761 2004-11-08 Richard M. Stallman <rms@gnu.org>
13762
13763 * subr.el (syntax-after): Doc fix.
13764
13765 * paren.el (show-paren-function): Change calls to syntax-after
13766 for new way of returning the value.
13767
13768 * menu-bar.el (menu-bar-file-menu): Make this the real name
13769 and menu-bar-files-menu the alias. Use the former.
13770 (global-map): Use `file', not `files', as the symbol.
13771
13772 * info.el (Info-revert-find-node): Don't use beginning-of-buffer.
13773
13774 * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd):
13775 Don't use beginning-of-buffer.
13776 (filesets-cmd-show-result): Use with-no-warnings.
13777
13778 2004-11-08 Juri Linkov <juri@jurta.org>
13779
13780 * progmodes/compile.el (compile): Don't overwrite last command in
13781 minibuffer history with default command if they are not equal.
13782
13783 2004-11-08 Jay Belanger <belanger@truman.edu>
13784
13785 * calc/calcalg2.el (math-do-integral-methods): Try linear then
13786 non-linear substitutions.
13787
13788 2004-11-08 Jay Belanger <belanger@truman.edu>
13789
13790 * calc/calcalg2.el (math-linear-subst-tried): New variable.
13791 (math-do-integral): Set `math-linear-subst-tried' to nil.
13792 (math-do-integral-methods): Use `math-linear-subst-tried' to
13793 determine what type of substitution to try.
13794 (math-integ-try-linear-substituion):
13795 Set `math-linear-subst-tried' to t.
13796
13797 2004-11-08 Kim F. Storm <storm@cua.dk>
13798
13799 * Makefile.in (bootstrap-clean): New target for 'make bootstrap'.
13800
13801 2004-11-07 Juri Linkov <juri@jurta.org>
13802
13803 * info-look.el (info-lookup): Allow reusing in the current buffer
13804 not only *info* buffer, but all (even renamed) Info buffers
13805 by checking for major-mode instead of *info* buffer name.
13806 (c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode)
13807 (octave-mode, maxima-mode) <doc-spec>:
13808 Allow long dashes generated by Texinfo 4.7 before definitions.
13809 (texinfo-mode) <doc-spec>: Add space to suffix to find command
13810 definitions with argument separated by space.
13811
13812 2004-11-06 Richard M. Stallman <rms@gnu.org>
13813
13814 * simple.el (next-error group, face): Move before first use.
13815 (next-error-highlight, next-error-highlight-no-select): Likewise.
13816
13817 * simple.el (line-move-invisible-p): Rename from line-move-invisible.
13818 (line-move): New args NOERROR and TO-END.
13819 Return t if succeed in moving specified number of lines.
13820 (move-end-of-line): New function.
13821
13822 * simple.el (beginning-of-buffer-other-window): Use with-no-warnings.
13823 (end-of-buffer-other-window): Likewise.
13824
13825 * simple.el (line-move-ignore-invisible): Default to t.
13826
13827 * subr.el (syntax-after): Return the syntax letter, not the raw code.
13828
13829 * emacs-lisp/elp.el (elp-results): Delete wasteful beginning-of-buffer.
13830
13831 * international/iso-cvt.el (iso-cvt-define-menu):
13832 Rename menu-bar-files-menu to menu-bar-file-menu.
13833
13834 * net/browse-url.el (browse-url-gnome-moz-program)
13835 (browse-url-gnome-moz-arguments): Move up before first use.
13836
13837 * net/tramp.el (tramp group): Add :version.
13838
13839 * progmodes/ada-xref.el (ada-gdb-application):
13840 Use goto-char instead of beginning-of-buffer.
13841
13842 * progmodes/cperl-mode.el (cperl-info-on-command):
13843 Use goto-char instead of beginning-of-buffer.
13844
13845 * progmodes/idlw-shell.el (idlwave-shell-examine-map):
13846 Move up before first use.
13847 (idlwave-shell-temp-pro-file): Likewise.
13848 (idlwave-shell-temp-rinfo-save-file): Likewise.
13849 (idlwave-shell-temp-file): Minor doc fix.
13850
13851 * textmodes/flyspell.el (flyspell-external-point-words):
13852 Use goto-char instead of beginning-of-buffer.
13853
13854 2004-11-06 Kai Grossjohann <kai.grossjohann@gmx.net>
13855
13856 * net/tramp.el (tramp-coding-commands): Additionally try "uudecode -o
13857 /dev/stdout" before trying "uudecode -o -". Suggested by Han Boetes.
13858 (tramp-uudecode): Mention `uudecode -o /dev/stdout'.
13859
13860 2004-11-06 David Ponce <david@dponce.com>
13861
13862 * recentf.el (recentf-menu-path): Use menu item name.
13863
13864 2004-11-06 Eli Zaretskii <eliz@gnu.org>
13865
13866 * progmodes/gdb-ui.el: Don't call define-fringe-bitmap if the
13867 display doesn't support images.
13868
13869 2004-11-06 Andreas Schwab <schwab@suse.de>
13870
13871 * tempo.el (tempo-match-finder): Doc fix.
13872
13873 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix last change.
13874
13875 2004-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
13876
13877 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): Remove.
13878 (easy-menu-lookup-name): New fun to replace it.
13879 (easy-menu-get-map): Use it to obey menu item names (rather than just
13880 keys) when looking up `path'.
13881 (easy-menu-always-true-p): Rename from easy-menu-always-true.
13882 (easy-menu-convert-item-1): Adjust to new name.
13883
13884 2004-11-06 Peter Heslin <pj@heslin.eclipse.co.uk> (tiny change)
13885
13886 * outline.el (hide-body): Don't hide lines at the top of the file
13887 that precede the first header line.
13888
13889 2004-11-06 Paul Pogonyshev <pogonyshev@gmx.net>
13890
13891 * align.el (align-areas): Delete whitespace before reindenting, so
13892 that tabs are never placed after spaces.
13893
13894 2004-11-06 Alan Shutko <ats@acm.org>
13895
13896 * macros.el (insert-kbd-macro): Do completions based on macros,
13897 rather than all commands.
13898
13899 2004-11-06 David Hansen <david.hansen@gmx.net> (tiny change)
13900
13901 * tempo.el (tempo-match-finder): Use [:word:] instead of "^\\b",
13902 to solve a bug whereby tags with 'b' don't match.
13903
13904 2004-11-05 Juri Linkov <juri@jurta.org>
13905
13906 * info.el (Info-search): Don't search in node header lines
13907 and file headers.
13908
13909 * emacs-lisp/edebug.el (edebug-next-token-class): Allow all
13910 symbol-constituent characters after dot, not only digits.
13911
13912 2004-11-04 Daniel Pfeiffer <occitan@esperanto.org>
13913
13914 * files.el (set-auto-mode): Don't get error after setting -*-mode-*-.
13915
13916 2004-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13917
13918 * dired.el (dired-read-dir-and-switches): Call read-directory-name
13919 if a dialog will be used, read-file-name otherwise.
13920
13921 2004-11-04 Richard M. Stallman <rms@gnu.org>
13922
13923 * textmodes/table.el (table group): Add :version.
13924
13925 * textmodes/ispell.el (ispell-word):
13926 Don't alter args; set them only thru `interactive' spec.
13927
13928 * textmodes/flyspell.el (flyspell-word):
13929 Don't alter FOLLOWING; set it only thru `interactive' spec.
13930
13931 * progmodes/f90.el (f90-end-of-block): Don't use interactive-p.
13932
13933 * net/browse-url.el (browse-url-maybe-new-window):
13934 Use called-interactively-p.
13935
13936 * mail/supercite.el (sc-cite-region):
13937 Don't use interactive-p. Add arg INTERACTIVE.
13938 (sc-version): Don't use interactive-p. Rename arg to MESSAGE.
13939
13940 * international/mule-cmds.el (set-input-method, toggle-input-method):
13941 Don't use interactive-p. Add arg INTERACTIVE.
13942
13943 * eshell/esh-mode.el (eshell-show-maximum-output):
13944 Don't use interactive-p.
13945 (eshell-truncate-buffer): Just message, no error, if buffer is short.
13946
13947 * mouse.el (mouse-show-mark): Get positions to delete from mark
13948 and point, not from mouse-drag-overlay.
13949
13950 * imenu.el (imenu-eager-completion-buffer): Add :version.
13951
13952 * filesets.el (filesets group): Add :version.
13953
13954 2004-11-03 Daniel Pfeiffer <occitan@esperanto.org>
13955
13956 * files.el (xml-based-modes): Delete var.
13957 (magic-mode-alist): New more general var.
13958 (set-auto-mode): Use it.
13959
13960 * buff-menu.el (Buffer-menu-make-sort-button): Preserve point even
13961 when clicking from another window.
13962
13963 2004-11-03 Thien-Thi Nguyen <ttn@gnu.org>
13964
13965 * vc-cvs.el (vc-cvs-local-month-numbers): Delete var.
13966 (vc-cvs-annotate-time): Incorporate value of deleted var.
13967 Remove special-case handling of beginning-of-buffer cruft.
13968 Cache ending position (point) and return value in text property
13969 `vc-cvs-annotate-time', and consult it on subsequent invocations.
13970
13971 * vc-cvs.el (vc-cvs-annotate-command):
13972 Delete extraneous lines from beginning of buffer.
13973 * vc-mcvs.el (vc-mcvs-annotate-command): Likewise.
13974
13975 * progmodes/grep.el (grep-default-command): Take empty string
13976 for tag if all other methods yield nil. Shell-quote the tag.
13977
13978 * vc.el (vc-annotate-display-autoscale): Add prefix-arg
13979 spec in `interactive' form, and mention it in the docstring.
13980 Also, make sure point is at bol after calling `annotate-time'.
13981
13982 2004-11-02 Richard M. Stallman <rms@gnu.org>
13983
13984 * cus-edit.el (customize-group-other-window):
13985 Select the window that displays the custom buffer.
13986 (custom-buffer-create-other-window): Likewise.
13987
13988 * comint.el (comint-insert-input): Fix previous change.
13989
13990 * emacs-lisp/elp.el (elp-instrument-function):
13991 Use called-interactively-p.
13992
13993 * emacs-lisp/easymenu.el (easy-menu-intern):
13994 Don't downcase; rather, case-flip the first letter of each word.
13995
13996 * emacs-lisp/easy-mmode.el (define-minor-mode):
13997 Use called-interactively-p.
13998
13999 * emacs-lisp/bytecomp.el (byte-compile-warning-types):
14000 Add interactive-only.
14001 (byte-compile-warnings): Add interactive-only as option.
14002 (byte-compile-interactive-only-functions): New variable.
14003 (byte-compile-form): Warn about calls to functions
14004 in byte-compile-interactive-only-functions.
14005
14006 * emacs-lisp/autoload.el (update-file-autoloads):
14007 Don't use interactive-p; take new arg SAVE-AFTER.
14008
14009 * emacs-lisp/advice.el (ad-make-advised-definition):
14010 Use called-interactively-p.
14011
14012 2004-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14013
14014 * files.el (find-file-existing): New function.
14015
14016 * menu-bar.el (menu-bar-files-menu): Make "Open File..." call
14017 find-file-existing. Add "New File..." that calls find-file.
14018
14019 * diropen.pbm, diropen.xpm: New files.
14020
14021 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
14022 icon diropen. New tool bar item find-file-existing uses icon open.
14023
14024 * dired.el (dired-read-dir-and-switches): Call read-directory-name
14025 instead of read-file-name.
14026
14027 2004-11-02 Ulf Jasper <ulf.jasper@web.de>
14028
14029 * calendar/icalendar.el (icalendar-version): Increase to 0.08.
14030 (icalendar--split-value): Change name of work buffer.
14031 (icalendar--get-weekday-abbrev): Return nil on error.
14032 (icalendar--date-to-isodate): New function.
14033 (icalendar-convert-diary-to-ical)
14034 (icalendar-extract-ical-from-buffer): Use only two args for
14035 make-obsolete (XEmacs compatibility).
14036 (icalendar-export-file, icalendar-import-file): Blank at end of prompt.
14037 (icalendar-export-region): Doc fix.
14038 If error, return non-nil and write errors to a buffer.
14039 Use correct weekday for weekly recurring events.
14040 Check whether date has been parsed for ordinary events.
14041 Make weekly events start in the year 2000.
14042 DTEND is non-inclusive, shift end date by one day if
14043 necessary (not for entries that have date and time).
14044 Rename local let variables: oops -> found-error, datestring ->
14045 startdatestring.
14046
14047 2004-11-02 Kim F. Storm <storm@cua.dk>
14048
14049 * files.el (set-auto-mode-0): Don't rely on dynamic binding of
14050 keep-mode-if-same variable. Add it as optional arg instead.
14051 (set-auto-mode): Call set-auto-mode-0 with keep-mode-if-same.
14052
14053 * ehelp.el (electric-help-map): Reorder Q/q and R/r entries so
14054 substitute-command-keys will select lower-case bindings like those
14055 used in the static help texts.
14056
14057 * descr-text.el (describe-text-properties): Don't err if called in
14058 the *Help* buffer; output to *Help-2* buffer instead.
14059
14060 * kmacro.el (group kmacro): Add :version.
14061 (kmacro-keyboard-quit): New function to cleanup on C-g.
14062 (kmacro-start-macro): Set defining-kbd-macro to append when
14063 appending to last macro.
14064
14065 * simple.el (keyboard-quit): Call kmacro-keyboard-quit.
14066
14067 2004-11-02 Nick Roberts <nickrob@snap.net.nz>
14068
14069 * progmodes/gdb-ui.el (gdb-enable-debug-log)
14070 (gdb-use-inferior-io-buffer, gdb-use-colon-colon-notation)
14071 (gud-gdba-command-name, gdb-show-main, gdb-many-windows):
14072 Add :version keyword.
14073
14074 2004-11-02 Pavel Kobiakov <pk_at_work@yahoo.com>
14075
14076 * progmodes/flymake.el (flymake-err-line-patterns):
14077 Use `flymake-reformat-err-line-patterns-from-compile-el' to convert
14078 `compilation-error-regexp-alist-alist' to internal Flymake format.
14079
14080 * progmodes/flymake.el: Eliminate byte-compiler warnings.
14081
14082 2004-11-01 Jay Belanger <belanger@truman.edu>
14083
14084 * calc/calc-frac.el (calc-over-notation): Replace `completing-read'
14085 with `interactive "s"'.
14086
14087 2004-11-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14088
14089 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
14090 Revert change from 2004-10-16. '*' checks the current buffer, but the
14091 mouse click may be in another buffer.
14092
14093 2004-11-01 John Paul Wallington <jpw@gnu.org>
14094
14095 * files.el (large-file-warning-threshold): Add :version keyword.
14096 (kill-some-buffers): Doc fix.
14097
14098 * thumbs.el (group thumbs): Add :version keyword.
14099
14100 * textmodes/bibtex.el (bibtex-make-field): Fix typo.
14101
14102 2004-11-01 Richard M. Stallman <rms@gnu.org>
14103
14104 * textmodes/ispell.el (ispell-word): Don't use interactive-p.
14105
14106 * textmodes/flyspell.el (flyspell-word): Don't use interactive-p.
14107
14108 * allout.el (allout group): Add :version.
14109 (allout-init): Don't use interactive-p.
14110 (allout-ascend-to-depth, allout-ascend, allout-end-of-level)
14111 (allout-forward-current-level, allout-backward-current-level):
14112 Don't use interactive-p.
14113
14114 * textmodes/bibtex.el (bibtex-make-field): Don't use interactive-p.
14115 (bibtex-find-text): Likewise.
14116
14117 * progmodes/vhdl-mode.el (vhdl-fill-region)
14118 (vhdl-beginning-of-statement): Don't use interactive-p.
14119
14120 * progmodes/idlwave.el (idlwave-update-routine-info):
14121 Don't use interactive-p.
14122
14123 * progmodes/idlw-shell.el (idlwave-shell-send-char):
14124 Don't use interactive-p.
14125
14126 * progmodes/cperl-mode.el (cperl-switch-to-doc-buffer):
14127 Don't use interactive-p.
14128
14129 * progmodes/ada-xref.el (ada-make-body-gnatstub):
14130 Don't use interactive-p.
14131
14132 * play/fortune.el (fortune-to-signature): Don't use interactive-p.
14133 (fortune-in-buffer): Doc fix.
14134
14135 * play/5x5.el (5x5-new-game): Set up the buffer even if not
14136 interactive.
14137
14138 * net/eudc.el (eudc-display-records): Use with-output-to-temp-buffer;
14139 don't select the temporary buffer.
14140 (eudc-get-email): New optional arg ERROR; don't use interactive-p.
14141 (eudc-get-phone): Likewise.
14142
14143 2004-11-01 Kim F. Storm <storm@cua.dk>
14144
14145 * man.el (Man-xref-normal-file): Fix help-echo.
14146
14147 2004-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
14148
14149 * reveal.el (reveal-last-tick): New var.
14150 (reveal-post-command): Use it to avoid closing overlays when we're
14151 appending text to them.
14152
14153 2004-10-31 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14154
14155 * textmodes/bibtex.el: Require button.
14156 (bibtex-autokey-transcriptions): Translate TeX `\ ' to space.
14157 (bibtex-reference-keys): Distinguish between header keys and
14158 crossref keys.
14159 (bibtex-beginning-of-field): New function.
14160 (bibtex-url-map): Remove.
14161 (bibtex-font-lock-keywords): Use bibtex-font-lock-crossref.
14162 (bibtex-font-lock-url-regexp): Assume that field names begin at
14163 the beginning of a line.
14164 (bibtex-font-lock-url): Simplify. Do not use bibtex-enclosing-field.
14165 Remove field delimiters. Use bibtex-beginning-of-field.
14166 Bugfix, point can be inside a field with a url.
14167 (bibtex-font-lock-crossref, bibtex-button-action, bibtex-button):
14168 New functions.
14169 (bibtex-mark-active, bibtex-run-with-idle-timer): Remove.
14170 (bibtex-key-in-head): Simplify.
14171 (bibtex-current-line): Use bolp.
14172 (bibtex-parse-keys): Remove unused arg `add'.
14173 Use bibtex-type-in-head and bibtex-key-in-head.
14174 (bibtex-parse-entry, bibtex-autofill-entry):
14175 Use bibtex-type-in-head and bibtex-key-in-head.
14176 (bibtex-autokey-get-field): Do not alter case of replacement text.
14177 (bibtex-autokey-get-names): Do all processing of name list.
14178 (bibtex-autokey-get-year): New function.
14179 (bibtex-autokey-get-title): Do all processing of title words.
14180 (bibtex-generate-autokey): Simplify.
14181 (bibtex-string-files-init): Use default-directory.
14182 Allow for absolute file names in bibtex-string-files.
14183 (bibtex-files, bibtex-file-path): New variables.
14184 (bibtex-files-expand): New function.
14185 (bibtex-find-entry-globally): New command.
14186 (bibtex-summary-function): New variable.
14187 (bibtex-summary): Default value of bibtex-summary-function.
14188 (bibtex-find-crossref): New optional args pnt and split.
14189 (bibtex-complete-key-cleanup): Call bibtex-summary-function.
14190 (bibtex-copy-summary-as-kill): New command bound to C-cC-t.
14191 (bibtex-validate): Fix docstring. Check only abbreviated month fields.
14192 Fix handling of required and alternative fields.
14193 Identify duplicate keys even if bibtex-maintain-sorted-entries is nil.
14194 Use cons and display-buffer.
14195 (bibtex-validate-globally): New command.
14196 (bibtex-clean-entry): Use bibtex-files-expand. Do not call
14197 bibtex-parse-keys and bibtex-parse-strings for updating
14198 bibtex-reference-keys and bibtex-strings.
14199 (bibtex-realign): Remove blank lines past the last entry.
14200 (bibtex-reformat): Use bibtex-entry-format as default.
14201 (bibtex-choose-completion-string): Remove.
14202 (bibtex-complete): Do not use bibtex-choose-completion-string.
14203 (bibtex-url): Simplify.
14204
14205 2004-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14206
14207 * x-dnd.el (x-dnd-test-function, x-dnd-protocol-alist)
14208 (x-dnd-types-alist, x-dnd-open-file-other-window)
14209 (x-dnd-known-types): Add :version.
14210
14211 2004-10-31 John Paul Wallington <jpw@gnu.org>
14212
14213 * ibuffer.el (group ibuffer): Add :version keyword.
14214
14215 2004-10-31 Kim F. Storm <storm@cua.dk>
14216
14217 * ido.el (group ido): Add :version keyword.
14218 (ido-mode): Remove :version keyword.
14219
14220 * emulation/cua-base.el (group cua): Add :version keyword.
14221 (cua-mode): Remove :version keyword.
14222
14223 2004-10-30 Luc Teirlinck <teirllm@auburn.edu>
14224
14225 * autorevert.el (auto-revert-tail-mode-text): Add :version keyword.
14226
14227 * help-at-pt.el (help-at-pt-timer): Move defvar up to avoid
14228 compiler warning.
14229 (help-at-pt-timer-delay): Add :initialize keyword. Simplify :set
14230 function.
14231 (help-at-pt-display-when-idle): Remove autoload.
14232
14233 2004-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
14234
14235 * makefile.w32-in (custom-deps, autoloads): Fix *-hooks -> *-hook.
14236
14237 2004-10-30 Juri Linkov <juri@jurta.org>
14238
14239 * help.el (function-called-at-point):
14240 * help-fns.el (variable-at-point): Read -> intern.
14241
14242 2004-10-30 Simon Josefsson <jas@extundo.com>
14243
14244 * progmodes/autoconf.el (autoconf-font-lock-keywords):
14245 Recognize AS_* too.
14246
14247 2004-10-29 Simon Josefsson <jas@extundo.com>
14248
14249 * subr.el (read-passwd): Move back from password.el.
14250
14251 * password.el: Remove, not ready yet.
14252
14253 2004-10-29 Andreas Schwab <schwab@suse.de>
14254
14255 * speedbar.el (speedbar-frame-parameters): Improve customize type.
14256
14257 2004-10-29 Sam Steingold <sds@gnu.org>
14258
14259 * mouse.el (mouse-show-mark): Replace the last occurrence of
14260 x-lost-selection-hooks with x-lost-selection-functions.
14261
14262 2004-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14263
14264 * mouse.el (mouse-show-mark): Adjust to new name and don't assume
14265 x-lost-selection-functions is bound.
14266
14267 * mouse-sel.el (mouse-sel-mode):
14268 * emacs-lisp/lselect.el: Adjust to new names for
14269 x-(lost|sent)-selection-functions.
14270
14271 * subr.el (x-lost-selection-hooks, x-sent-selection-hooks):
14272 New obsolete aliases of x-lost-selection-functions and
14273 x-sent-selection-functions.
14274
14275 2004-10-28 Kim F. Storm <storm@cua.dk>
14276
14277 * imenu.el (imenu-scanning-message): Remove.
14278 (imenu-progress-message): Make it a no-op.
14279
14280 2004-10-28 John Paul Wallington <jpw@gnu.org>
14281
14282 * files.el (set-auto-mode): Call `throw' correctly.
14283
14284 2004-10-28 Juri Linkov <juri@jurta.org>
14285
14286 * info.el (Info-file-list-for-emacs): Add ("Info" . "info")
14287 to search `Info-...' commands in `info' manual.
14288 (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
14289 Add 'info-file "emacs" property.
14290 (Info-find-emacs-command-nodes): Fix index line number regexp.
14291 Set real line number (instead of fake 0) in first element of the
14292 returned list.
14293 (Info-goto-emacs-command-node): Use line number of first element
14294 to set point in the first found Info node.
14295
14296 * progmodes/grep.el (grep-regexp-alist): Move match highlighting
14297 code to `grep-mode-font-lock-keywords'.
14298 (grep-mode-font-lock-keywords): Delete grep markers instead
14299 of making them invisible.
14300
14301 2004-10-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14302
14303 * mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor
14304 and x-server-version in bug report.
14305
14306 2004-10-28 Daniel Pfeiffer <occitan@esperanto.org>
14307
14308 * files.el (set-auto-mode-0): New function.
14309 (set-auto-mode): Use it to handle aliased modes and to
14310 be consistent between C-x C-f and C-x C-w.
14311
14312 2004-10-28 Kenichi Handa <handa@m17n.org>
14313
14314 * international/utf-8.el (utf-translate-cjk-charsets):
14315 Add katakana-jisx0201.
14316
14317 * international/subst-jis.el: Add data for JISX0201.
14318
14319 2004-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
14320
14321 * obsolete/hilit19.el (hilit-mode): New function.
14322 Move all the toplevel side-effecting stuff into it, so that loading
14323 hilit19 doesn't mess everything up any more.
14324
14325 2004-10-27 Richard M. Stallman <rms@gnu.org>
14326
14327 * add-log.el (add-change-log-entry): Set up mailing address
14328 and full name later, and don't alter add-log-mailing-address
14329 or add-log-full-name.
14330
14331 * elide-head.el (elide-head): Change error to message.
14332 (elide-head-show): Likewise.
14333
14334 * apropos.el (apropos-macrop): Doc fix.
14335
14336 * mouse.el (mouse-show-mark): Do most processing the same
14337 regardless of transient-mark-mode.
14338
14339 * shadowfile.el (shadow-copy-files): Use interactive-p
14340 only to control whether to print a message.
14341
14342 * tar-mode.el (tar-mode): Use write-contents-functions,
14343 not write-contents-hooks.
14344
14345 * eshell/em-unix.el (eshell-du-sum-directory): Don't use
14346 directory-sep-char.
14347
14348 2004-10-27 Richard M. Stallman <rms@gnu.org>
14349
14350 * strokes.el (strokes-unload-hook): Fix previous change.
14351
14352 * type-break.el (type-break-run-at-time): Always use run-at-time;
14353 forget the alternatives.
14354 (type-break-cancel-function-timers): Always use cancel-function-timers;
14355 forget the alternatives.
14356
14357 * pcomplete.el (pcomplete-entries): Don't use directory-sep-char.
14358
14359 2004-10-27 Kenichi Handa <handa@m17n.org>
14360
14361 * international/subst-jis.el: Use utf-translate-cjk-substitutable-p.
14362
14363 * international/subst-gb2312.el: Likewise.
14364
14365 * international/subst-big5.el: Likewise.
14366
14367 * international/subst-ksc.el: Likewise.
14368
14369 * international/utf-8.el (utf-translate-cjk-unicode-range-string):
14370 New variable.
14371 (utf-translate-cjk-set-unicode-range): New function.
14372 (utf-translate-cjk-unicode-range): Make it customizable.
14373 (utf-8-post-read-conversion):
14374 Use utf-translate-cjk-unicode-range-string.
14375 (ccl-decode-mule-utf-8): Check utf-subst-table-for-decode for more
14376 Unicode ranges.
14377
14378 2004-10-26 Daniel Pfeiffer <occitan@esperanto.org>
14379
14380 * files.el (auto-mode-alist): Add pod, js, xbm and xpm and group
14381 trivial variants to shorten the list.
14382 (xml-based-modes): New var.
14383 (set-auto-mode): Give interpreter-mode-alist or <?xml or <!DOCTYPE
14384 declaration higher priority than auto-mode-alist.
14385
14386 * find-file.el (cc-other-file-alist): Bring it in line with
14387 cc-mode's auto-mode-alist entries and use \' instead of $.
14388
14389 * textmodes/sgml-mode.el (sgml-mode): Fix imenu-generic-expression
14390 and add "Id" and "Name" submenus to it.
14391
14392 * imenu.el (imenu--generic-function): Skip matches in comments.
14393
14394 2004-10-26 Jay Belanger <belanger@truman.edu>
14395
14396 * calc/calc.el (calc,full-calc, calc-quit, calc-keypad)
14397 (full-calc-keypad, calc-trail-display): Use an extra argument
14398 instead of `interactive-p'.
14399
14400 * calc/calc-misc.el (calc-other-window): Use an extra argument
14401 instead of `interactive-p'.
14402
14403 * calc/calc-rewr.el (calc-match): Use an extra argument instead of
14404 `interactive-p'.
14405
14406 2004-10-26 Kim F. Storm <storm@cua.dk>
14407
14408 * help.el (describe-key): Describe both down-event and up-event
14409 for a mouse click.
14410
14411 2004-10-26 Richard M. Stallman <rms@gnu.org>
14412
14413 * woman.el (woman): Don't call interactive-p.
14414
14415 * pcomplete.el (pcomplete): Instead of interactive-p,
14416 use an arg set non-nil by the interactive spec.
14417
14418 * menu-bar.el (menu-bar-make-toggle): Instead of interactive-p,
14419 use an arg set non-nil by the interactive spec.
14420
14421 * man.el (Man-cleanup-manpage): Instead of interactive-p,
14422 use an arg set non-nil by the interactive spec.
14423
14424 2004-10-26 Pavel Kobiakov <pk_at_work@yahoo.com>
14425
14426 * progmodes/flymake.el (flymake-split-string):
14427 Use `flymake-split-string-remove-empty-edges' in any case.
14428
14429 2004-10-26 Masatake YAMATO <jet@gyve.org>
14430
14431 * progmodes/flymake.el (flymake-err-line-patterns):
14432 Use `compilation-error-regexp-alist-alist' instead of
14433 `compilation-error-regexp-alist'.
14434
14435 2004-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14436
14437 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Fix up the spurious
14438 verbatim face on the \ of \end{verbatim}.
14439
14440 2004-10-25 Jay Belanger <belanger@truman.edu>
14441
14442 * calc/calc-incom.el (calc-digit-dots): Inhibit read-only before
14443 erasing minibuffer.
14444
14445 2004-10-25 Simon Josefsson <jas@extundo.com>
14446
14447 * subr.el (read-passwd): Move to net/password.el.
14448
14449 * net/password.el (read-passwd): Add. Autoload it.
14450
14451 2004-10-25 Kai Grossjohann <kai.grossjohann@gmx.net>
14452
14453 * mouse-sel.el (mouse-sel-mode): Specify custom group.
14454
14455 * simple.el (process-file): Fix logic.
14456
14457 2004-10-24 Luc Teirlinck <teirllm@auburn.edu>
14458
14459 * indent.el (set-left-margin, set-right-margin): Delete redundant code.
14460 (increase-right-margin): Remove erroneous call to `interactive-p'.
14461
14462 2004-10-24 Kim F. Storm <storm@cua.dk>
14463
14464 * help.el (describe-mode): Fix 2004-10-13 change.
14465 Copy pure "Auto Fill" string so it can be propertized later
14466 without causing a read-only error.
14467
14468 2004-10-24 Luc Teirlinck <teirllm@auburn.edu>
14469
14470 * info.el (Info-find-emacs-command-nodes): Adapt to Texinfo-4.7
14471 style indexes.
14472
14473 2004-10-24 Kai Grossjohann <kai.grossjohann@gmx.net>
14474
14475 * simple.el (process-file): Accept nil for INFILE. Reported by
14476 Luc Teirlinck.
14477
14478 2004-10-24 Masatake YAMATO <jet@gyve.org>
14479
14480 * progmodes/gdb-ui.el (gdb-assembler-font-lock-keywords):
14481 Handle periods and underscores in a function name.
14482 Remove the address fontification.
14483
14484 2004-10-24 Masatake YAMATO <jet@gyve.org>
14485
14486 * progmodes/asm-mode.el (asm-font-lock-keywords):
14487 Use font-lock-variable-name-face for registers.
14488
14489 2004-10-24 Nick Roberts <nickrob@snap.net.nz>
14490
14491 * progmodes/gdb-ui.el (gdb-get-create-buffer): Allow modes to run
14492 kill-all-local-variables.
14493 (gdb-breakpoints-mode, gdb-frames-mode, gdb-threads-mode)
14494 (gdb-registers-mode, gdb-locals-mode, gdb-assembler-mode):
14495 Use kill-all-local-variables and provide mode-hooks.
14496 (gdb-assembler-font-lock-keywords): New font lock keywords definition.
14497 (gdb-assembler-mode): Use 'gdb-assembler-font-lock-keywords'.
14498 Suggested by Masatake YAMATO <jet@gyve.org>.
14499
14500 2004-10-23 Kai Grossjohann <kai.grossjohann@gmx.net>
14501
14502 * simple.el (process-file): New function, similar to call-process
14503 but supports file handlers.
14504 * vc.el (vc-do-command): Use it, instead of call-process.
14505 * net/tramp-vc.el (vc-do-command): Do not advise it if
14506 process-file is fboundp.
14507 * net/tramp.el (tramp-file-name-handler-alist): Add entry for
14508 process-file.
14509 (tramp-handle-process-file): New function.
14510 (tramp-file-name-for-operation): Support process-file.
14511
14512 2004-10-23 Ulf Jasper <ulf.jasper@web.de>
14513
14514 * calendar/icalendar.el (icalendar--weekday-array): New constant.
14515 (icalendar-weekdayabbrev-table)
14516 (icalendar-monthnumber-table): Delete.
14517 (icalendar--get-month-number): Use calendar-month-name-array.
14518 (icalendar--get-weekday-number): New function.
14519 (icalendar--get-weekday-abbrev) Use calendar-day-name-array.
14520 (icalendar-export-region): Handle multi-line entries.
14521 (icalendar--convert-ical-to-diary): Use calendar-day-name-array.
14522
14523 2004-10-23 John Paul Wallington <jpw@gnu.org>
14524
14525 * ibuffer.el (ibuffer-find-file): Remove `interactive-p' call;
14526 `wildcards' set to t in interactive spec.
14527
14528 * ibuf-ext.el (ibuffer-jump-to-buffer): Read buffer name in
14529 interactive spec rather than use `interactive-p'.
14530 (ibuffer-kill-line): Set arg `interactive-p' in interactive spec
14531 rather than use function `interactive-p'.
14532
14533 2004-10-22 Kenichi Handa <handa@m17n.org>
14534
14535 * international/mule.el (translate-region): Implement it in Lisp
14536 as a front end of translate-region-internal.
14537
14538 2004-10-21 Jay Belanger <belanger@truman.edu>
14539
14540 * calc/calc-aent.el (calc-alg-ent-map, calc-alg-ent-esc-map):
14541 Declare these variables with defvar.
14542
14543 * calc/calc-aent.el (calc-do-alg-entry): Since `calc-alg-ent-map'
14544 is bound, only check to see if it is bound.
14545
14546 2004-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
14547
14548 * textmodes/tex-mode.el (tex-compilation-parse-errors):
14549 Don't output messages.
14550
14551 * calc/calc-help.el (calc-describe-bindings): Fix last change.
14552
14553 2004-10-21 John Paul Wallington <jpw@gnu.org>
14554
14555 * calc/calc-graph.el (calc-graph-init):
14556 Use `set-process-query-on-exit-flag'.
14557
14558 2004-10-21 Daniel Pfeiffer <occitan@esperanto.org>
14559
14560 * progmodes/compile.el (compilation-start): Rely on `cd' to get
14561 dir right and also allow argumentless cd.
14562
14563 2004-10-19 Richard M. Stallman <rms@gnu.org>
14564
14565 * textmodes/flyspell.el (flyspell-mode): Doc fix.
14566
14567 * eshell/em-unix.el (eshell-grep):
14568 Don't bind compilation-process-setup-function.
14569
14570 * comint.el (comint-insert-input): Use @ in `interactive'.
14571 (comint-input-filter-functions): Doc fix.
14572 (comint-kill-whole-line, comint-get-source): Doc fix.
14573
14574 * progmodes/compile.el (compilation-setup):
14575 Don't set buffer-read-only if MINOR is non-nil.
14576
14577 2004-10-19 Jay Belanger <belanger@truman.edu>
14578
14579 * calc/calc.el (calc-emacs-type-19, calc-emacs-type-epoch)
14580 (calc-emacs-type-gnu19): Remove.
14581 (calc-digit-map, calc-read-key-sequence, calc-read-key):
14582 Remove check for old emacs versions.
14583
14584 * calc/calc-ext.el (calc-fancy-prefix): Remove emacs version check.
14585 (calc-init-extensions): Define `calc-alg-map' and `calc-alg-esc-map'
14586 for current Emacs.
14587
14588 * calc/calc-aent.el (calcAlg-previous): Check to see if looking at
14589 the end of the minibuffer.
14590 (calc-do-alg-entry): Remove Emacs version check. Use `copy-keymap' to
14591 copy `esc-map'.
14592
14593 * calc/calc-graph.el (calc-graph-plot): Remove emacs version check.
14594
14595 * calc/calc-mode.el (calc-total-algebraic-mode): Remove error
14596 call that would be given when the current emacs was used.
14597
14598 2004-10-19 Ulf Jasper <ulf.jasper@web.de>
14599
14600 * calendar/icalendar.el: Set coding to utf-8.
14601 (icalendar-version): Increase to 0.07.
14602 (icalendar-monthnumber-table): Change March pattern.
14603 (icalendar-get-all-event-properties)
14604 (icalendar-set-event-property): Delete.
14605 (icalendar-all-events): No longer interactive.
14606 (icalendar-convert-diary-to-ical)
14607 (icalendar-extract-ical-from-buffer): Make obsolete, and alias to
14608 their replacements.
14609 (icalendar-export-file, icalendar-export-region): New functions;
14610 essentially old `icalendar-convert-diary-to-ical' but appending to
14611 target rather than overwriting.
14612 (icalendar-import-file): Append to target file rather than
14613 overwriting. Fourth arg deleted.
14614 (icalendar-import-buffer): New name for old
14615 `icalendar-extract-ical-from-buffer'.
14616 (icalendar--convert-string-for-import): New name for
14617 old `icalendar-convert-for-import'.
14618 (include-icalendar-files): Delete.
14619 Prefix for all internal functions changed from `icalendar-'
14620 to `icalendar--'.
14621
14622 2004-10-19 Richard M. Stallman <rms@gnu.org>
14623
14624 * paths.el (news-path): Fix previous change.
14625
14626 2004-10-18 Jay Belanger <belanger@truman.edu>
14627
14628 * calc/calc-help.el (calc-describe-bindings):
14629 Set `buffer-read-only' to nil while working in the keybindings buffer;
14630 remove some extra information from the keybindings buffer.
14631
14632 2004-10-18 David Ponce <david@dponce.com>
14633
14634 * mouse.el (mouse-drag-move-window-top): New function.
14635 (mouse-drag-mode-line-1): Use it.
14636
14637 2004-10-18 Thien-Thi Nguyen <ttn@gnu.org>
14638
14639 * info.el (Info-fontify-node): For multiline refs,
14640 arrange to unfontify newline and surrounding whitespace.
14641
14642 2004-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
14643
14644 * vc-arch.el (vc-arch-workfile-version): Don't burp if the patch-log
14645 directory is missing.
14646
14647 2004-10-17 John Paul Wallington <jpw@gnu.org>
14648
14649 * ibuffer.el (ibuffer-default-display-maybe-show-predicates):
14650 New customizable variable; whether to display buffers that match
14651 `ibuffer-maybe-show-predicates' by default.
14652 (ibuffer-maybe-show-predicates): Mention it in docstring.
14653 (ibuffer-display-maybe-show-predicates): New variable.
14654 (ibuffer-update): Prefix arg now toggles whether buffers that
14655 match `ibuffer-maybe-show-predicates' should be displayed.
14656 (ibuffer-mode): Set `ibuffer-display-maybe-show-predicates'
14657 locally to heed `ibuffer-default-display-maybe-show-predicates'.
14658 (ibuffer-redisplay-engine): Rename optional second arg to `ignore'.
14659
14660 2004-10-17 Michael Albinus <michael.albinus@gmx.de>
14661
14662 * net/tramp.el: Redo sync with Tramp 2.0.45. Last commit did not
14663 work correctly.
14664
14665 2004-10-17 Daniel Pfeiffer <occitan@esperanto.org>
14666
14667 * buff-menu.el (Buffer-menu-revert-function): Emulate save-excursion.
14668 (Buffer-menu-beginning): New helper function.
14669 (Buffer-menu-execute): Use it.
14670 (Buffer-menu-select): Use it.
14671 (Buffer-menu-sort): Use it and also keep markers.
14672
14673 2004-10-17 Richard M. Stallman <rms@gnu.org>
14674
14675 * paths.el (news-directory): Rename from news-path. Old name alias.
14676 (rmail-spool-directory): Use defvar.
14677 (sendmail-program): Use defcustom.
14678 (remote-shell-program): Use defcustom.
14679 (term-file-prefix): Use defvar.
14680 (abbrev-file-name): Use defvar.
14681
14682 * term.el: Add maintainer.
14683
14684 * subr.el (with-local-quit): Return nil if there's a quit.
14685 (read-passwd): Use with-local-quit. Doc fix.
14686
14687 * strokes.el (strokes-list-strokes): Don't try to delete char at eob.
14688 (strokes-unload-hook): Set as a variable with add-hook.
14689
14690 * startup.el (fancy-splash-tail, normal-splash-screen):
14691 Update copyright year.
14692
14693 * shadowfile.el (shadowfile-unload-hook): Set as variable w/ add-hook.
14694
14695 * server.el (server-unload-hook): Set as a variable with add-hook.
14696
14697 * help-at-pt.el (help-at-pt-unload-hook): Use add-hook; no defvar.
14698
14699 * frame.el (special-display-popup-frame):
14700 Make the buffer current as its frame is created.
14701
14702 * delsel.el (delsel-unload-hook): Set as a variable.
14703
14704 * comint.el (comint-output-filter-functions):
14705 Add comint-watch-for-password-prompt.
14706 (comint-read-noecho): Function deleted.
14707 (send-invisible): Use read-passwd.
14708
14709 * fringe.el (fringe-mode-initialize): New function.
14710 (fringe-mode): Use fringe-mode-initialize as :initialize.
14711
14712 2004-10-17 Kim F. Storm <storm@cua.dk>
14713
14714 * language/indian.el (indian-script-language-alist): Swap value
14715 and doc.
14716 (indian-font-char-index-table): Doc fix.
14717
14718 2004-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
14719
14720 * vc-hooks.el (vc-find-file-hook): Call vc-backend with absolute name.
14721
14722 2004-10-16 Juri Linkov <juri@jurta.org>
14723
14724 * progmodes/compile.el (compilation-start): Move let-binding of
14725 `process-environment' into `with-current-buffer' body.
14726 Reported by Matt Hodges <MPHodges@member.fsf.org>.
14727
14728 2004-10-16 Richard M. Stallman <rms@gnu.org>
14729
14730 * pcvs-util.el (cvs-bury-buffer):
14731 Don't call get-buffer-window for effect.
14732
14733 * outline.el (hide-other): Call outline-up-heading with INVISIBLE-OK=t.
14734
14735 * newcomment.el (comment-auto-fill-only-comments): Add autoload.
14736
14737 * msb.el (msb-unload-hook): Set the variable.
14738
14739 * mouse.el (mouse-yank-at-click, mouse-yank-secondary):
14740 Use * to err if buffer is readonly.
14741
14742 * subr.el (looking-back): Return only t or nil.
14743
14744 * whitespace.el (whitespace-unload-hook): Set the variable.
14745
14746 * view.el (view-mode-enable): Set view-page-size and
14747 view-half-page-size to nil.
14748 (view-set-half-page-size-default): view-half-page-size = nil
14749 means the default.
14750 (View-scroll-page-forward): Use view-page-size-default.
14751 (View-scroll-page-backward): Likewise.
14752 (view-page-size, view-half-page-size): Doc fixes.
14753
14754 * emacs-lisp/elp.el (elp-unload-hook): Set the variable.
14755
14756 * emacs-lisp/cl.el (cl-unload-hook): Don't defvar it, just set it.
14757
14758 * emacs-lisp/bytecomp.el (byte-compile-eval): Don't process
14759 "cl" like other files. Instead, call byte-compile-find-cl-functions.
14760 (byte-compile-log-1): Bind inhibit-read-only.
14761 (byte-compile-warning-prefix, byte-compile-log-file): Likewise.
14762 (byte-compile-log-warning): Likewise.
14763 (byte-compile-file-form-require): Detect "cl" from the arg value.
14764
14765 * progmodes/compile.el (compilation-start): Assume compilation-mode
14766 will make the buffer read-only.
14767 (compilation-mode): Take arg name-of-mode.
14768 (compilation-setup): Make buffer read-only.
14769 (compilation-handle-exit): Bind inhibit-read-only.
14770
14771 * textmodes/ispell.el (ispell-command-loop): Use with-no-warnings.
14772 (ispell-message): Likewise.
14773 (ispell-show-choices): Don't call get-buffer-window uselessly.
14774 (ispell-init-process): Use set-process-query-on-exit-flag.
14775
14776 2004-10-16 Kim F. Storm <storm@cua.dk>
14777
14778 * fringe.el (fringe-bitmaps): Only initialize when defined.
14779
14780 * pcvs.el (cvs-mode-view-file, cvs-mode-view-file-other-window): Add.
14781 (cvs-mode-find-file): Add optional `view' arg to enter view mode.
14782
14783 * pcvs-defs.el (cvs-mode-map): Bind v to cvs-mode-view-file.
14784
14785 2004-10-15 Simon Josefsson <jas@extundo.com>
14786
14787 * net/password.el: Add.
14788
14789 2004-10-14 Masatake YAMATO <jet@gyve.org>
14790
14791 * progmodes/gud.el (gdb-script-beginning-of-defun): New function.
14792 (gdb-script-end-of-defun): New function.
14793 (gdb-script-mode): Use `gdb-script-beginning-of-defun' and
14794 `gdb-script-end-of-defun' as *-of-defun-function.
14795
14796 2004-10-13 Daniel Pfeiffer <occitan@esperanto.org>
14797
14798 * button.el (button-activate): Allow a marker to display as an action.
14799
14800 * help-fns.el (describe-variable): Use it to make "below" a hyperlink.
14801
14802 * help.el (describe-mode): Use it to make minor mode list into
14803 hyperlinks.
14804
14805 2004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
14806
14807 * vc.el (vc-annotate-display-select): Fix typo.
14808
14809 * subr.el (substitute-key-definition-key): New function.
14810 (substitute-key-definition): Use it with map-keymap.
14811 (event-modifiers): Use push.
14812 (mouse-movement-p, with-temp-buffer): Simplify.
14813
14814 2004-10-12 Jay Belanger <belanger@truman.edu>
14815
14816 * calc/calc-help.el (calc-help-function-list, calc-help-variable-list):
14817 New variables.
14818 (calc-help-index-entries): New function.
14819 (calc-describe-function): Use `calc-help-function-list' instead of
14820 obarray for completion.
14821 (calc-describe-variable): Use `calc-help-variable-list' instead
14822 of obarray for completion.
14823
14824 2004-10-12 Richard M. Stallman <rms@gnu.org>
14825
14826 * info-look.el (info-lookup-file): Add info-file property.
14827 (info-lookup-symbol): Likewise.
14828
14829 * info.el (info-xref): Add underlining.
14830 (info): Add info-file property.
14831 (Info-find-emacs-command-nodes): Specify case-sensitive search.
14832
14833 2004-10-12 Michael Albinus <michael.albinus@gmx.de>
14834
14835 Sync with Tramp 2.0.45.
14836
14837 * net/tramp.el (top): Apply `def-edebug-spec' only if function is
14838 defined. This is not the case for XEmacs without package "edebug".
14839 (tramp-set-auto-save-file-modes): Set permissions of autosaved
14840 remote files to the permissions of the original file. This is not
14841 the case for Emacs < 21.3.50 and XEmacs < 21.5. Add function to
14842 `auto-save-hook'. Reported by Thomas Prokosch <thomas@nadev.net>.
14843 (tramp-perl-decode): Fix an error in Perl implementation.
14844 $pending must be cleared every loop. Reported by Benjamin Place
14845 <benjaminplace@sprintmail.com>
14846
14847 * net/tramp-smb.el (tramp-smb-advice-PC-do-completion):
14848 Don't activate advice during definition. This is done later on,
14849 depending on test result of `substitute-in-file-name'.
14850 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
14851
14852 2004-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
14853
14854 * pcvs-parse.el (cvs-parse-commit): Fix parsing for new commit message.
14855
14856 * emacs-lisp/lisp.el (mark-sexp): Preserve direction when repeating.
14857
14858 2004-10-12 David Ponce <david@dponce.com>
14859
14860 * recentf.el (recentf-edit-list): Update the menu when the recentf
14861 list has been modified.
14862
14863 2004-10-12 Simon Josefsson <jas@extundo.com>
14864
14865 * net/tls.el (tls-certtool-program): New variable.
14866 (tls-certificate-information): New function, based on
14867 ssl-certificate-information.
14868
14869 2004-10-12 Kenichi Handa <handa@m17n.org>
14870
14871 * international/mule.el (coding-system-equal): Move from mule-util.el.
14872
14873 * international/mule-util.el (coding-system-equal): Move to mule.el.
14874
14875 2004-10-12 Kim F. Storm <storm@cua.dk>
14876
14877 * kmacro.el (kmacro-insert-counter, kmacro-add-counter): Use and
14878 reset kmacro-initial-counter-value if set.
14879 (kmacro-set-counter): Only set kmacro-counter if defining or executing
14880 macro. Set kmacro-initial-counter-value otherwise. Never set both.
14881 (kmacro-display): Show macro counter if non-zero.
14882
14883 * subr.el (substitute-key-definition): Mention command remapping
14884 in doc string.
14885
14886 2004-10-11 Jay Belanger <belanger@truman.edu>
14887
14888 * calc/calc-misc.el (calc-info-goto-node): New function.
14889 (calc-tutorial, calc-info-summary): Go to appropriate Calc info
14890 node in one step.
14891 (calc-describe-copying, calc-describe-distribution)
14892 (calc-describe-thing, calc-describe-no-warranty, calc-describe-key):
14893 Go to appropriate info node in one step.
14894
14895 2004-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14896
14897 * pcvs-defs.el (pcl-cvs-load-hook): Remove unused var.
14898
14899 * font-lock.el (font-lock-apply-highlight): Fix last change.
14900
14901 2004-10-11 Simon Josefsson <jas@extundo.com>
14902
14903 * mail/smtpmail.el (smtpmail-open-stream): Look for
14904 starttls-gnutls-program instead of starttls-program iff
14905 starttls-use-gnutls is non-nil.
14906 (smtpmail-open-stream): Don't overwrite user settings of
14907 starttls-extra-arguments and starttls-extra-args.
14908
14909 2004-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
14910
14911 * comint.el (comint-mouse-insert-input): Remove.
14912 (comint-insert-input): Make it work for mouse bindings.
14913 (comint-mode-map): Move defs into the declaration.
14914 (comint-output-filter): Typo.
14915
14916 * diff-mode.el (diff-current-defun): Fix 2004-06-13's change.
14917
14918 2004-10-10 Kai Grossjohann <kai.grossjohann@gmx.net>
14919
14920 * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable.
14921 (ange-ftp-call-chmod): Reference remote-shell-program instead of
14922 ange-ftp-remote-shell.
14923
14924 2004-10-10 Andreas Schwab <schwab@suse.de>
14925
14926 * emacs-lisp/byte-opt.el (byte-optimize-backward-word): Optimize
14927 `(backward-word)' to `(forward-word -1)', not `(forward-char -1)'.
14928 Reported by <sri@asu.edu>.
14929
14930 2004-10-10 Benjamin Rutt <brutt@bloomington.in.us>
14931
14932 * vc.el (vc-annotate-mode): Remove variable.
14933 (vc-annotate-display-select): Only call vc-annotate-mode
14934 if we're not in that mode already.
14935
14936 2004-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
14937
14938 * imenu.el (imenu--completion-buffer): Don't return t for rescan.
14939 (imenu-choose-buffer-index): Check here for rescan instead.
14940
14941 * font-lock.el (font-lock-apply-highlight): Explicitly check the case
14942 where the face expression evals to nil.
14943
14944 * textmodes/tex-mode.el (tex-font-lock-append-prop): New fun.
14945 (tex-font-lock-keywords-2): Use it.
14946 (tex-font-lock-syntactic-keywords): Fix the `verbatim' treatment.
14947
14948 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Fix backslashes.
14949
14950 2004-10-09 Kim F. Storm <storm@cua.dk>
14951
14952 * subr.el (progress-reporter-update): Define before first usage.
14953 (make-progress-reporter): Doc fix.
14954
14955 2004-10-09 Luc Teirlinck <teirllm@auburn.edu>
14956
14957 * textmodes/paragraphs.el (sentence-end-double-space)
14958 (sentence-end-without-period, sentence-end-without-space)
14959 (sentence-end): Doc fixes.
14960
14961 2004-10-08 Peter Seibel <peter@javamonkey.com> (tiny change)
14962
14963 * emacs-lisp/lisp-mode.el (lisp-fill-paragraph):
14964 Change paragraph-start regexp so we don't fill code starting with #'(.
14965
14966 2004-10-08 Sebastien Kirche <seki@seki.fr> (tiny change)
14967
14968 * mail/mail-extr.el (mail-extr-ignore-realname-equals-mailbox-name):
14969 New defcustom.
14970 (extract-address-components): Use it.
14971
14972 2004-10-08 Paul Pogonyshev <pogonyshev@gmx.net>
14973
14974 * subr.el (make-progress-reporter, progress-reporter-update)
14975 (progress-reporter-force-update, progress-reporter-do-update)
14976 (progress-reporter-done): New functions.
14977
14978 * tar-mode.el (tar-summarize-buffer): Use progress reporter.
14979
14980 * progmodes/etags.el (etags-tags-completion-table): Use progress
14981 reporter.
14982 (etags-tags-apropos): Likewise.
14983
14984 2004-10-08 Alan Mackenzie <acm@muc.de>
14985
14986 * isearch.el (isearch-yank-line): C-y yanks to next EOL, not end
14987 of current line.
14988
14989 2004-10-08 Masatake YAMATO <jet@gyve.org>
14990
14991 * server.el (server-process-filter): Wrap `process-send-region'
14992 by `condition-case' to guard the case when the pipe to PROC is closed.
14993
14994 2004-10-07 Mark A. Hershberger <mah@everybody.org>
14995
14996 * xml.el (xml-substitute-special): Limit handling of external entities.
14997
14998 2004-10-06 Nick Roberts <nickrob@snap.net.nz>
14999
15000 * progmodes/gdb-ui.el (gdb-ann3): (Re-)initialize gdb-input-queue.
15001
15002 2004-10-06 John Paul Wallington <jpw@gnu.org>
15003
15004 * xml.el (xml-parse-dtd): Fix `error' call.
15005
15006 2004-10-05 Mark A. Hershberger <mah@everybody.org>
15007
15008 * xml.el (xml-substitute-special): Return a single string instead
15009 of a list of strings if an entity substitution is made.
15010
15011 2004-10-05 Ulf Jasper <ulf.jasper@web.de>
15012
15013 * calendar/icalendar.el: New file.
15014
15015 2004-10-05 Juri Linkov <juri@jurta.org>
15016
15017 * isearch.el (isearch-done): Set mark after running hook.
15018 Reported by Drew Adams <drew.adams@oracle.com>.
15019
15020 * info.el (Info-history, Info-toc): Fix Info headers.
15021 (Info-toc): Narrow buffer before Info-fontify-node.
15022 (Info-build-toc): Don't check for special Info file names.
15023 Set main-file to nil if Info-find-file returns a symbol.
15024
15025 2004-10-05 Emilio C. Lopes <eclig@gmx.net>
15026
15027 * calendar/calendar.el (calendar-goto-iso-week): Add autoload.
15028 (calendar-mode-map): Add binding for `calendar-goto-iso-week'.
15029 * calendar/cal-menu.el (calendar-mode-map): Ditto.
15030
15031 2004-10-05 Glenn Morris <gmorris@ast.cam.ac.uk>
15032
15033 * calendar/cal-iso.el (calendar-iso-read-args): New function,
15034 for old interactive spec from calendar-goto-iso-date.
15035 (calendar-goto-iso-date): Use it.
15036 (calendar-goto-iso-week): New function. Suggested by Emilio
15037 C. Lopes <eclig@gmx.net>.
15038
15039 2004-10-04 Luc Teirlinck <teirllm@auburn.edu>
15040
15041 * textmodes/enriched.el (enriched-mode-map): Give `set-left-margin' and
15042 `set-right-margin' bindings that follow the minor mode conventions.
15043
15044 2004-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15045
15046 * textmodes/tex-mode.el (tex-dvi-view-command): Use `yap' on w32.
15047 (tex-font-lock-keywords-1): Add url and nolinkurl for args with `_'.
15048 (latex-block-args-alist): Add minipage and picture.
15049 (latex-block-body-alist): Use reftex-label if enabled.
15050 (latex-insert-block): Don't insert a \n if not necessary.
15051 (tex-compile-commands): Make sure dvips doesn't send to printer.
15052 (tex-compile-default): Handle the case where no executable is found.
15053 (latex-noindent-environments): New var.
15054 (latex-find-indent): Use it. Take an empty line as an arg-breaker.
15055 If tex-indent-allhanging is non-nil, make sure we only align for macros
15056 at beginning of line.
15057
15058 2004-10-03 Daniel Pfeiffer <occitan@esperanto.org>
15059
15060 * newcomment.el (comment-beginning): Doc fix and don't choke on
15061 unset `comment-end-skip' when at beginning of comment.
15062
15063 2004-10-02 Dan Nicolaescu <dann@ics.uci.edu>
15064
15065 * term.el (term-adjust-current-row-cache): Don't allow the current
15066 row to become negative.
15067 (term-emulate-terminal): Fix insert mode. Handle tab insertion at
15068 the end of the line. Fix scroll down. Add comments.
15069 (term-handle-ansi-escape): Don't exceed terminal width when moving
15070 right.
15071 (term-scroll-region): Move the cursor after setting the scroll region.
15072
15073 2004-10-01 Luc Teirlinck <teirllm@auburn.edu>
15074
15075 * indent.el (set-left-margin, set-right-margin): Rename `lm' arg
15076 to `width' for consistency with docstring. Doc fix.
15077
15078 2004-10-01 Martin Stjernholm <bug-cc-mode@gnu.org>
15079
15080 * progmodes/cc-langs.el: Load cl here since cc-defs doesn't do it.
15081 This is necessary for derived modes.
15082
15083 2004-09-30 Kim F. Storm <storm@cua.dk>
15084
15085 * kmacro.el (kmacro-lambda-form, kmacro-extract-lambda): Add.
15086 (kmacro-bind-to-key, kmacro-name-last-macro): Use kmacro-lambda-form.
15087
15088 * edmacro.el: Require kmacro to use the new kmacro-lambda-form and
15089 kmacro-extract-lambda functions.
15090 (edit-kbd-macro): Handle kmacro lambda forms.
15091 Include counter and counter format in edit buffer.
15092 (edmacro-finish-edit): Get counter and format from edit buffer and
15093 update kmacro bindings when found.
15094
15095 2004-09-29 Luc Teirlinck <teirllm@auburn.edu>
15096
15097 * textmodes/paragraphs.el (forward-paragraph):
15098 Avoid args-out-of-range error when point winds up at the beginning of
15099 the buffer and hard newlines are enabled.
15100
15101 * newcomment.el (comment-multi-line): Doc fix.
15102
15103 2004-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
15104
15105 * diff-mode.el (diff-file-header-re): Tighten up regexp a tiny bit.
15106 (diff-fixup-modifs): Catch unified-diff file-headers.
15107
15108 2004-09-29 Kim F. Storm <storm@cua.dk>
15109
15110 * progmodes/gdb-ui.el (breakpoint): Define as fringe bitmap.
15111 (gdb-mouse-toggle-breakpoint): Fix fringe-bitmaps-at-pos usage.
15112 (gdb-put-breakpoint-icon): Use breakpoint bitmap.
15113
15114 * fringe.el (fringe-bitmap-p): New macro.
15115 (fringe-bitmaps): Add standard fringe bitmaps on load.
15116
15117 2004-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
15118
15119 * dired.el (dired-view-command-alist): Use more efficient regexps.
15120 Remove dubious arguments.
15121 (dired-align-file): New function.
15122 (dired-insert-directory): Use it.
15123 (dired-move-to-end-of-filename): Make the " -> " search more specific.
15124 (dired-buffers-for-dir): Remove unused var `pattern'.
15125
15126 2004-09-28 Matthew Mundell <matt@mundell.ukfsn.org>
15127
15128 * calendar/diary-lib.el (list-diary-entries): Save diary buffer
15129 from diary display excursion. Store diary buffer's point for
15130 `simple-diary-display'.
15131 (simple-diary-display): Set window point and start when
15132 displaying buffer, to preserve point.
15133
15134 2004-09-27 Luc Teirlinck <teirllm@auburn.edu>
15135
15136 * textmodes/enriched.el (enriched-translations): Replace defconst
15137 with defvar.
15138
15139 2004-09-26 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15140
15141 * printing.el: Doc fix.
15142 (pr-version): New version number (6.8.1).
15143 (pr-ps-file-using-ghostscript): Use make-temp-file instead of
15144 make-temp-name.
15145 (pr-delete-file): Check if file exists before deleting it.
15146 Reported by Lennart Borgman <lennart.borgman.073@student.lu.se>.
15147
15148 2004-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
15149
15150 * term.el (term-display-table): New variable.
15151 (term-mode): Use it.
15152 (term-exec-1): Set the coding system to binary.
15153 (term-emulate-terminal): Decode the string before inserting it.
15154
15155 2004-09-26 Dan Nicolaescu <dann@ics.uci.edu>
15156
15157 * term.el (term-ansi-at-eval-string, term-ansi-default-fg)
15158 (term-ansi-default-bg, term-ansi-current-temp): Delete unused vars.
15159 (map): Bind S-prior, S-next and S-insert.
15160 (term-mode): Set `indent-tabs-mode' to nil.
15161 (term-paste): New function to be bound to S-insert.
15162 (term-send-del, term-send-backspace): Change the strings sent.
15163 (term-termcap-format): Synchronize with etc/e/eterm.ti.
15164 (term-handle-colors-array): Fix handling of underline and reverse.
15165 (term-handle-ansi-escape): Do not handle smcup/rmcup. Add comments.
15166 (term-erase-in-line): Fix comparison.
15167 (term-emulate-terminal): Fix line wrap handling.
15168 (term-start-output-log): Rename from `term-set-output-log'.
15169 (term-stop-output-log): Rename from `term-stop-photo'.
15170 (term-switch-to-alternate-sub-buffer): Comment out, unused.
15171
15172 2004-09-25 Stefan Monnier <monnier@iro.umontreal.ca>
15173
15174 * dired.el (dired-move-to-filename): Don't output a message if
15175 raise-error is non-nil. Fix return position and value.
15176
15177 * files.el (insert-directory): Obey --dired even with symlinks.
15178
15179 2004-09-25 Lars Hansen <larsh@math.ku.dk>
15180
15181 * ls-lisp.el (ls-lisp-format): Mark file names with property
15182 dired-filename.
15183
15184 2004-09-25 Kim F. Storm <storm@cua.dk>
15185
15186 * ido.el (ido-max-directory-size): New defcustom.
15187 (ido-decorations): Add "too big" element.
15188 (ido-directory-too-big): New dynamic var.
15189 (ido-may-cache-directory): Don't cache big directories.
15190 (ido-directory-too-big-p): New defun.
15191 (ido-set-current-directory): Update ido-directory-too-big.
15192 (ido-read-internal): Make empty ido-cur-item if too-big.
15193 (ido-buffer-internal): Use ido-read-internal directly instead of
15194 ido-read-buffer.
15195 (ido-file-internal): Init ido-directory-too-big.
15196 (ido-complete): <TAB> If ido-directory-too-big is set, clear it,
15197 and redo completion with full list.
15198 (ido-toggle-ignore): <C-a> If ido-directory-too-big is set, clear
15199 it, and show completions.
15200 (ido-all-completions): Let bind ido-directory-too-big to nil.
15201 (ido-exhibit): Handle ido-directory-too-big.
15202 (ido-read-buffer): Handle fallback to read-buffer.
15203 Init ido-directory-too-big.
15204 (ido-read-file-name, ido-read-directory-name, ido-completing-read):
15205 Init ido-directory-too-big.
15206
15207 2004-09-24 Luc Teirlinck <teirllm@auburn.edu>
15208
15209 * subr.el (delay-mode-hooks): Doc fix.
15210
15211 2004-09-23 Luc Teirlinck <teirllm@auburn.edu>
15212
15213 * textmodes/enriched.el
15214 (enriched-default-text-properties-local-flag): New variable.
15215 (enriched-mode): Make sure that enabling and disabling the mode is
15216 a no-op. Doc fix.
15217
15218 2004-09-23 H\e,Ae\e(Bkon Malmedal <hmalmedal@yahoo.no> (tiny change)
15219
15220 * calendar/holidays.el (holiday-advent): Report on a specified day
15221 offset from advent, not just advent.
15222 (holiday-easter-etc): Report on one specified day offset from
15223 easter, not all easter holidays. Various Easter holidays moved to
15224 `christian-holidays' variable in calendar.el.
15225 * calendar/calendar.el (christian-holidays): Adapt for new
15226 behavior of `holiday-advent' and `holiday-easter-etc' functions.
15227
15228 2004-09-23 Kim F. Storm <storm@cua.dk>
15229
15230 * image.el (insert-sliced-image): Add doc string.
15231
15232 * ido.el (ido-choice-list): New dynamic var for `list' context.
15233 (ido-context-switch-command): New dynamic var.
15234 (ido-define-mode-map): Generalize switch between file/buffer contexts.
15235 (ido-read-internal): Handle new `list' context.
15236 Handle insert-buffer and insert-file ido-exit values.
15237 (ido-buffer-internal): New arg switch-cmd. Use it to setup
15238 ido-context-switch-command. Handle insert-file ido-exit value.
15239 (ido-read-buffer): Set ido-context-switch-command to 'ignore
15240 unless it is already bound by caller.
15241 (ido-file-internal): New arg switch-cmd. Use it to setup
15242 ido-context-switch-command. Handle insert-buffer ido-exit value.
15243 (ido-enter-insert-buffer, ido-enter-insert-file): New commands
15244 used for context switching.
15245 (ido-all-completions): Handle new `list' context.
15246 (ido-make-choice-list): Return choices for `list' context.
15247 (ido-find-file-in-dir, ido-display-file, ido-write-file)
15248 (ido-display-buffer, ido-kill-buffer): Disable context switching.
15249 (ido-insert-buffer, ido-insert-file): Setup context switching.
15250 (ido-exhibit): Handle `list' context.
15251 (ido-read-file-name): Disable context switching. Handle fallback.
15252 (ido-read-directory-name): Disable context switching.
15253 (ido-completing-read): New defun like completing-read. Setup and
15254 use new `list' context.
15255
15256 2004-09-20 Jesper Harder <harder@ifa.au.dk>
15257
15258 * progmodes/tcl.el (inferior-tcl): Use pop-to-buffer.
15259
15260 2004-09-21 Jay Belanger <belanger@truman.edu>
15261
15262 * calc/calc-graph.el (calc-graph-add-curve): Move the call to
15263 `calc-graph-set-styles' so the gnuplot buffer will appear in a
15264 separate window.
15265
15266 2004-09-21 Luc Teirlinck <teirllm@auburn.edu>
15267
15268 * subr.el (after-change-major-mode-hook): Doc fix.
15269
15270 2004-09-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15271
15272 * printing.el: Doc fix. Add a new tip about the use of gsprint instead
15273 of ghostscript for monochrome PostScript file in Windows.
15274
15275 2004-09-21 Kenichi Handa <handa@m17n.org>
15276
15277 * descr-text.el (describe-char): Checking of quail activation fixed.
15278
15279 2004-09-21 Jay Belanger <belanger@truman.edu>
15280
15281 * calc/calc.el (calc-mode-var-list): Remove unnecessary quotes.
15282
15283 2004-09-20 Luc Teirlinck <teirllm@auburn.edu>
15284
15285 * subr.el (run-mode-hooks): Run `after-change-major-mode-hook'
15286 after the mode hooks instead of before. Doc fix.
15287
15288 2004-09-20 Jason Rumney <jasonr@gnu.org>
15289
15290 * startup.el (command-line) [windows-nt]: Try .emacs first, then
15291 _emacs, but revert to .emacs if neither exists in home directory.
15292
15293 2004-09-20 John Paul Wallington <jpw@gnu.org>
15294
15295 * bindings.el (completion-ignored-extensions): Add .dfsl.
15296
15297 2004-09-20 Richard M. Stallman <rms@gnu.org>
15298
15299 * bindings.el (scroll-left): Make it disabled.
15300
15301 * files.el (enable-local-eval): Doc fix.
15302
15303 * indent.el (move-to-left-margin): Special case for minibuffer.
15304
15305 * term.el (term-emulate-terminal): Turn off undo for output.
15306 Use with-current-buffer and save-selected-window.
15307
15308 * eshell/esh-ext.el (eshell-explicit-command-char): Doc fix.
15309
15310 * progmodes/make-mode.el (makefile-fill-paragraph):
15311 Don't insist on spaces when looking for comments. # is enough.
15312
15313 * files.el (hack-local-variables): Copy the variables list
15314 to another buffer, strip prefixes and suffixes there, then read.
15315 (enable-local-eval): Doc fix.
15316 (ignored-local-variables): Initialize to nil.
15317 (risky-local-variable-p): Don't check ignored-local-variables here.
15318 (hack-one-local-variable): Ignore var if in ignored-local-variables.
15319
15320 2004-09-20 Dan Nicolaescu <dann@ics.uci.edu>
15321
15322 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set syntax
15323 of = to "." (punctuation).
15324
15325 2004-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
15326
15327 * subr.el (event-basic-type): Fix mask (extend to 22bits).
15328
15329 2004-09-18 Luc Teirlinck <teirllm@auburn.edu>
15330
15331 * textmodes/enriched.el (enriched-rerun-flag): New variable.
15332 (enriched-before-change-major-mode): New function.
15333 Add it to `change-major-mode-hook'.
15334 (enriched-after-change-major-mode): New function.
15335 Add it to `after-change-major-mode-hook'.
15336 (enriched-mode): Make it work correctly if called from
15337 `after-change-major-mode-hook'.
15338 No longer set `indent-line-function'.
15339
15340 * simple.el (fundamental-mode): Run `after-change-major-mode-hook'.
15341
15342 * subr.el (after-change-major-mode-hook): New variable.
15343 (run-mode-hooks): Implement it.
15344
15345 2004-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
15346
15347 * battery.el (battery-linux-proc-apm): Use string-to-number.
15348 (battery-linux-proc-acpi): Ignore all hidden files in the battery dir.
15349 Use dolist (and less indentation). Use erase-buffer.
15350 Pre-initialize `design-capacity', `warn', and `low'.
15351 (battery-format): Use replace-regexp-in-string.
15352
15353 2004-09-18 Ralph Schleicher <rs@nunatak.allgaeu.org>
15354
15355 * battery.el: Delete superfluous empty lines.
15356 (battery-linux-proc-acpi): Attempt to gather information from all
15357 battery subdirectories regardless of their file name.
15358 (battery-linux-proc-apm): Replace all occurrences of
15359 battery-hex-to-int-2 with string-to-int (base 16).
15360 (battery-hex-to-int-2, battery-hex-to-int): Delete functions.
15361 (battery-hex-map): Delete variable.
15362
15363 2004-09-18 John Paul Wallington <jpw@gnu.org>
15364
15365 * calc/calc-units.el (calc-quick-units): Fix overzealous
15366 s/or/unless/.
15367
15368 2004-09-17 Jay Belanger <belanger@truman.edu>
15369
15370 * calc/calc.el (calc-mode-var-list): Fix the value of
15371 `calc-matrix-brackets'.
15372
15373 2004-09-17 Romain Francoise <romain@orebokech.com>
15374
15375 * ibuf-ext.el (define-ibuffer-filter filename):
15376 Expand dired-directory since buffer-file-name is absolute.
15377
15378 2004-09-17 Dan Nicolaescu <dann@ics.uci.edu>
15379
15380 * ediff-init.el (ediff-current-diff-face-A)
15381 (ediff-current-diff-face-B, ediff-current-diff-face-C)
15382 (ediff-current-diff-face-Ancestor)
15383 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
15384 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
15385 (ediff-even-diff-face-A, ediff-even-diff-face-B)
15386 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
15387 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
15388 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
15389 Use min-colors.
15390
15391 * term.el (term-down): Perform vertical motion if DOWN is negative.
15392 (term-exec-1): Set both TERMCAP and TERMINFO unconditionally.
15393 (term-termcap-format): Synchronize with the eterm terminfo entry
15394 in etc/e/eterm.ti.
15395 (term-handle-colors-array): If the current foreground or
15396 background are zero (i.e. unspecified), use the foreground and
15397 background of the default face for reverse video.
15398 (term-ansi-at-eval-string, term-ansi-default-fg)
15399 (term-ansi-default-bg, term-ansi-current-temp): Delete unused variable.
15400 (term-mem): Delete unused function.
15401 (term-protocol-version): Increment.
15402 (term-current-face): Set to default.
15403
15404 2004-09-15 Jay Belanger <belanger@truman.edu>
15405
15406 * calc/calc.el (calc-mode-var-list): Define this variable.
15407 (calc-always-load-extensions, calc-line-numbering)
15408 (calc-line-breaking, calc-display-just, calc-display-origin)
15409 (calc-number-radix, calc-leading-zeros, calc-group-digits)
15410 (calc-group-char, calc-point-char, calc-frac-format)
15411 (calc-prefer-frac, calc-hms-format, calc-date-format)
15412 (calc-float-format, calc-full-float-format, calc-complex-format)
15413 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
15414 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
15415 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
15416 (calc-matrix-brackets, calc-language, calc-language-option)
15417 (calc-left-label, calc-right-label, calc-word-size)
15418 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
15419 (calc-display-raw, calc-internal-prec, calc-angle-mode)
15420 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
15421 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
15422 (calc-window-height, calc-display-trail, calc-show-selections)
15423 (calc-use-selections, calc-assoc-selections)
15424 (calc-display-working-message, calc-auto-why, calc-timing)
15425 (calc-mode-save-mode, calc-standard-date-formats)
15426 (calc-autorange-units, calc-was-keypad-mode, calc-full-mode)
15427 (calc-user-parse-tables, calc-gnuplot-default-device)
15428 (calc-gnuplot-default-output, calc-gnuplot-print-device)
15429 (calc-gnuplot-print-output, calc-gnuplot-geometry)
15430 (calc-graph-default-resolution, calc-graph-default-resolution-3d)
15431 (calc-invocation-macro, calc-show-banner): Give these values as
15432 part of `calc-mode-var-list's initialization after the variables
15433 are declared with defvar.
15434 (calc-bug-address): Change email address to send bug reports to.
15435 Change the maintainer address at the top.
15436 (calc-mode): Compare `calc-settings-file' to `user-init-file' rather
15437 than "\\.emacs" to determine if it is the user-init-file.
15438
15439 * calc/calc-embed.el (calc-embedded-set-modes): Use
15440 `calc-mode-var-list' correctly.
15441
15442 2004-09-15 Thien-Thi Nguyen <ttn@gnu.org>
15443
15444 * vc.el (annotate-time): Document point handling.
15445 (vc-annotate-display-autoscale): Doc fix.
15446
15447 2004-09-15 Miles Bader <miles@gnu.org>
15448
15449 * generic.el (generic-make-keywords-list): Use symbol rather than
15450 word anchors in regexp.
15451
15452 2004-09-14 Sean O'Rourke <sorourke@cs.ucsd.edu>
15453
15454 * ibuf-ext.el (define-ibuffer-filter filename): If buffer has
15455 no file name consider `dired-directory'.
15456
15457 2004-09-14 Kim F. Storm <storm@cua.dk>
15458
15459 * faces.el (cursor): Add face-no-inherit property. Doc fix.
15460
15461 2004-09-14 Simon Josefsson <jas@extundo.com>
15462
15463 * files.el (auto-mode-alist): Map .soa and .zone to dns-mode.
15464
15465 * textmodes/dns-mode.el: Add.
15466
15467 2004-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
15468
15469 * novice.el (disabled-command-hook): Use shorthand for obsolescence.
15470 (disabled-command-function): Make the ?\ char more obvious.
15471
15472 * vc-arch.el (vc-arch-root, vc-arch-registered):
15473 * vc-mcvs.el (vc-mcvs-root, vc-mcvs-registered): Use vc-find-root.
15474
15475 2004-09-13 Hovav Shacham <hovav@sha1.stanford.edu>
15476
15477 * windmove.el (windmove-frame-edges): Report coordinates of
15478 outside edges of frame, not inside edges.
15479 (windmove-coordinates-of-position): Convert into wrapper to new
15480 function `windmove-coordinates-of-window-position';
15481 `compute-motion' always applies to selected window.
15482 (windmove-coordinates-of-position): Update documentation to refer
15483 to Emacs 21 Lisp Reference Manual.
15484 (windmove-find-other-window): Fix off-by-one errors for max x,y.
15485
15486 2004-09-13 Kim F. Storm <storm@cua.dk>
15487
15488 * isearch.el (isearch-resume-in-command-history): Rename from
15489 isearch-resume-enabled and change default to nil.
15490
15491 2004-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15492
15493 * vc-hooks.el (vc-ignore-dir-regexp): New var.
15494 (vc-registered): Use it.
15495 (vc-find-root): New fun.
15496
15497 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
15498 Don't tell to use \\{...} when it's already done.
15499
15500 * textmodes/bibtex.el (bibtex-generate-url-list): Change format.
15501 Provide a sample complex default.
15502 (bibtex-url, bibtex-font-lock-url): Adapt to new format.
15503 (bibtex-entry): Use mapc.
15504
15505 2004-09-12 Kim F. Storm <storm@cua.dk>
15506
15507 * kmacro.el (kmacro-step-edit-prompt): Add "%s" format to message.
15508
15509 * emulation/cua-rect.el (cua--rectangle-operation): Let bind
15510 inhibit-field-text-motion to t so rectangles work in comint buffers.
15511
15512 * simple.el (choose-completion-string): Set buffer before running
15513 choose-completion-string-functions hook so it can be buffer-local.
15514
15515 2004-09-12 Daniel Pfeiffer <occitan@esperanto.org>
15516
15517 * progmodes/compile.el (compilation-start): Parse command to see
15518 if it starts with a cd, and if so perform it for the *compilation*
15519 buffer. Change the header to reflect this.
15520
15521 2004-09-11 Kim F. Storm <storm@cua.dk>
15522
15523 * ido.el (ido-enable-dot-prefix): Doc fix.
15524 (ido-enable-dot-prefix): New defcustom.
15525 (ido-set-matches1): Use it.
15526
15527 2004-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
15528
15529 * textmodes/bibtex.el (bibtex-mark-active)
15530 (bibtex-run-with-idle-timer): Move the `if' inside the defun.
15531
15532 2004-09-10 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15533
15534 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore): Regexp is
15535 used in a case insensitive environment.
15536 (bibtex-mode-map): Rearrange order of menus.
15537 (bibtex-quoted-string-re): Obsolete.
15538 (bibtex-complete-key-cleanup): Variable replaced by new function.
15539 (bibtex-font-lock-keywords): Use backquotes.
15540 (bibtex-font-lock-url-regexp): New internal variable.
15541 (bibtex-name-in-field): New optional arg remove-opt-alt to remove
15542 "OPT" and "ALT".
15543 (bibtex-insert-current-kill, bibtex-make-field)
15544 (bibtex-prepare-new-entry, bibtex-yank-pop, bibtex-String): Use unless.
15545 (bibtex-parse-field-text): Simplify.
15546 (bibtex-string=): New helper function.
15547 (bibtex-member-of-regexp): Merge with bibtex-autokey-get-title.
15548 (bibtex-map-entries): Use bibtex-string=.
15549 (bibtex-search-entry): Use not.
15550 (bibtex-enclosing-field): Fix docstring.
15551 (bibtex-assoc-regexp): Obsolete.
15552 (bibtex-format-entry): Use assoc-string and bibtex-string=.
15553 (bibtex-autokey-get-names): Handle empty name field.
15554 (bibtex-parse-strings): Use assoc-string and unless.
15555 (bibtex-complete-string-cleanup): Expansion list is passed as an arg.
15556 Use assoc-string.
15557 (bibtex-pop): Simplify.
15558 (bibtex-mode): Set font-lock-extra-managed-props.
15559 (bibtex-entry-update): Use assoc-string.
15560 (bibtex-parse-entry): Remove "OPT" and "ALT" from FIELD.
15561 (bibtex-autofill-entry): Use bibtex-string=.
15562 (bibtex-print-help-message): Simplify.
15563 (bibtex-find-entry): New optional arg START.
15564 (bibtex-validate): Use bibtex-string= and assoc-string.
15565 Do not call obsolete function compilation-parse-errors.
15566 (bibtex-remove-delimiters): Only remove delimiters if present.
15567 (bibtex-copy-entry-as-kill): Add docstring.
15568 (bibtex-clean-entry): Use bibtex-string=. Handle empty keys.
15569 Detect duplicate keys if bibtex-maintain-sorted-entries is nil.
15570 (bibtex-complete): Use bibtex-predefined-month-strings,
15571 bibtex-string=, and new function bibtex-complete-key-cleanup.
15572 (bibtex-generate-url-list): New variable.
15573 (bibtex-url): New command bound to C-c C-l and mouse-2.
15574 (bibtex-url-map): New local keymap for bibtex-url-mouse.
15575 (bibtex-font-lock-url): New function.
15576
15577 2004-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
15578
15579 * progmodes/grep.el (grep-mode): Remove unnecessary autoload.
15580
15581 2004-09-09 Kim F. Storm <storm@cua.dk>
15582
15583 * kmacro.el (kmacro-bind-to-key): Associate dedicated macro
15584 counter and format with binding.
15585 (kmacro-name-last-macro): New defun. Like name-last-kbd-macro, but
15586 the declared macro uses own macro counter and format. Give symbol
15587 kmacro property.
15588 (kmacro-keymap): Bind kmacro-name-last-macro to n.
15589 (kmacro-start-macro, kmacro-end-macro, kmacro-call-macro)
15590 (kmacro-end-and-call-macro): Doc fix.
15591
15592 2004-09-09 Lars Hansen <larsh@math.ku.dk>
15593
15594 * desktop.el (desktop-clear-preserve-buffers):
15595 Remove make-obsolete-variable.
15596
15597 2004-09-08 Richard M. Stallman <rms@gnu.org>
15598
15599 * buff-menu.el (list-buffers-noselect): Call format-mode-line
15600 with the buffer as argument.
15601
15602 2004-09-08 Stefan Monnier <monnier@iro.umontreal.ca>
15603
15604 * vc-arch.el (vc-arch-state): Fix parsing for `names' method.
15605
15606 2004-09-08 Juri Linkov <juri@jurta.org>
15607
15608 * replace.el (perform-replace): Use `query-replace-descr'.
15609
15610 * cus-start.el (history-delete-duplicates): Specify customization.
15611
15612 * diff-mode.el (diff-mode-map):
15613 * progmodes/compile.el (compilation-mode-map):
15614 * progmodes/grep.el (grep-mode-map):
15615 * replace.el (occur-mode-map): Rename `next-error-follow-mode'
15616 to `next-error-follow-minor-mode'.
15617
15618 2004-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15619
15620 * isearch.el (isearch-lazy-highlight-update): Take into account
15621 the case of zero-length match at the search bound.
15622
15623 2004-09-08 Kim F. Storm <storm@cua.dk>
15624
15625 * emulation/cua-rect.el (cua--highlight-rectangle): Fix last
15626 change. Use zero width overlays when necessary.
15627
15628 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
15629
15630 * subr.el (split-string): Docfix.
15631
15632 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
15633
15634 * emacs-lisp/bytecomp.el (byte-compile-generate-call-tree): Doc fix.
15635 (display-call-tree): Ensure newline after caller/calls blocks.
15636
15637 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
15638
15639 * startup.el (command-line-1): Make option
15640 --directory/-L modify `load-path' straight away.
15641
15642 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
15643
15644 * progmodes/grep.el (grep-mode): Use normal autoload cookie.
15645
15646 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
15647
15648 * emacs-lisp/autoload.el (make-autoload):
15649 Handle `define-compilation-mode'.
15650
15651 * emacs-lisp/lisp-mode.el (define-compilation-mode):
15652 Specify `doc-string-elt' property.
15653
15654 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
15655
15656 * bs.el (bs-mode): Doc fix.
15657
15658 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
15659
15660 * info.el (Info-insert-dir): Fix temp buffer leak bug.
15661
15662 2004-09-08 Thien-Thi Nguyen <ttn@gnu.org>
15663
15664 * play/blackbox.el (bb-trace-ray): Avoid double tracing.
15665
15666 2004-09-08 Kenichi Handa <handa@m17n.org>
15667
15668 * ps-mule.el: Fix old function calls (ps-mule-chars-in-string ->
15669 length, ps-mule-string-char -> aref, ps-mule-next-index -> 1+,
15670 ps-mule-next-point -> 1+).
15671
15672 * composite.el (encode-composition-rule): Add autoload cookie.
15673
15674 2004-09-07 Luc Teirlinck <teirllm@auburn.edu>
15675
15676 * format.el (buffer-auto-save-file-format): Make it permanent local.
15677
15678 2004-09-07 Kim F. Storm <storm@cua.dk>
15679
15680 * emacs-lisp/authors.el (authors-aliases): Add more aliases.
15681 (authors-fixed-entries): Fix typo.
15682 (authors-canonical-author-name): Compact multiple spaces.
15683 Ignore trivial names (e.g. only first name).
15684
15685 * term.el (term-window-width): Only use full window width on
15686 window system if overflow-newline-into-fringe is enabled.
15687 (term-mode): Don't disable overflow-newline-into-fringe.
15688
15689 2004-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15690
15691 * term/xterm.el (function-key-map): Add bindings for C- and S- cursor
15692 motion as seen on my Mac OS X xterms.
15693
15694 * newcomment.el (uncomment-region-default, comment-region-default):
15695 New functions extracted from uncomment-region and comment-region.
15696 (comment-region, comment-region-function, uncomment-region)
15697 (uncomment-region-function): Use them.
15698
15699 * pcvs-util.el (cvs-string-prefix-p): Use compare-strings.
15700
15701 * pcvs-info.el (cvs-states): Allow `ignore' on NEED-UPDATE.
15702 It's not crucial but can make sense at times.
15703
15704 * vc-arch.el (vc-arch-workfile-version): Handle the special case before
15705 the first commit.
15706
15707 * vc.el (vc-buffer-context, vc-restore-buffer-context):
15708 Disable obsolete code.
15709
15710 2004-09-07 Juri Linkov <juri@jurta.org>
15711
15712 * progmodes/grep.el (grep-highlight-matches): Change default from
15713 `t' to `auto-detect', and type from `boolean' to `choice'. Doc fix.
15714 (grep-compute-defaults): Set `grep-highlight-matches' to `t'
15715 if grep option `--color' is available, or to `nil' otherwise.
15716 (grep-process-setup): Call `grep-compute-defaults' if
15717 `grep-highlight-matches' is not computed. Set env-vars only
15718 if `grep-highlight-matches' is `t'.
15719 (grep-use-null-device): Remove redundant type `boolean' (`choice'
15720 is already defined).
15721
15722 * progmodes/compile.el (compilation-start): Use copy of
15723 `process-environment' created by `copy-sequence' to not
15724 modify env-vars in the global `process-environment'.
15725
15726 2004-09-06 Eli Zaretskii <eliz@gnu.org>
15727
15728 * simple.el (next-error-follow-minor-mode): Fix last change.
15729
15730 2004-09-05 Luc Teirlinck <teirllm@auburn.edu>
15731
15732 * textmodes/paragraphs.el (use-hard-newlines): Make it into a
15733 permanent local.
15734
15735 2004-09-04 Richard M. Stallman <rms@gnu.org>
15736
15737 * isearch.el (isearch-lazy-highlight-new-loop): Don't invoke
15738 highlighting if the search string is empty.
15739
15740 2004-09-04 Luc Teirlinck <teirllm@auburn.edu>
15741
15742 * facemenu.el (facemenu-active-faces): Change condition of inner
15743 `while' loop to also check the first two elements of `face-atts'
15744 and `mask-atts'.
15745
15746 2004-09-04 John Paul Wallington <jpw@gnu.org>
15747
15748 * thumbs.el (thumbs-view-image-mode-map): Fix command name typo.
15749 (thumbs-view-image-mode): Make buffer read-only.
15750
15751 2004-09-04 Christopher J. Madsen <cjm@pobox.com>
15752
15753 * textmodes/ispell.el (ispell-really-aspell): New defvar.
15754 (ispell-check-version): Set it.
15755 (ispell-send-replacement): New function.
15756 (ispell-process-line): Call ispell-send-replacement.
15757
15758 2004-09-04 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
15759
15760 * eshell/em-pred.el (eshell-predicate-help-string): Doc fix.
15761 Support choosing seconds with "s".
15762
15763 2004-09-04 Jari Aalto <jari.aalto@poboxes.com>
15764
15765 * terminal.el (te-escape): Show `?' in prompt for help key.
15766
15767 2004-09-04 Emilio C. Lopes <eclig@gmx.net>
15768
15769 * emacs-lisp/lisp.el (kill-backward-up-list): New function.
15770
15771 2004-09-04 Dan Nicolaescu <dann@ics.uci.edu>
15772
15773 * simple.el (next-error-follow-minor-mode)
15774 (next-error-follow-mode-post-command-hook): New functions.
15775 (next-error-follow-last-line): New defvar.
15776
15777 * diff-mode.el (diff-mode-map): Bind next-error-follow-mode.
15778 * progmodes/compile.el (compilation-mode-map): Likewise.
15779 * progmodes/grep.el (grep-mode-map): Likewise.
15780 * replace.el (occur-mode-map): Likewise.
15781
15782 * newcomment.el (uncomment-region): Bind comment-use-global-state
15783 to nil.
15784
15785 2004-09-03 Luc Teirlinck <teirllm@auburn.edu>
15786
15787 * autorevert.el (auto-revert-handler): Bind `buffer-read-only'
15788 locally around the call to `revert-buffer'.
15789
15790 2004-09-03 Juri Linkov <juri@jurta.org>
15791
15792 * isearch.el (isearch-toggle-regexp): Set `isearch-success' and
15793 `isearch-adjusted' to `t'.
15794 (isearch-toggle-case-fold): Set `isearch-success' to `t'.
15795 (isearch-message-prefix): Add "pending" for isearch-adjusted.
15796 (isearch-other-meta-char): Restore isearch-point unconditionally.
15797 (isearch-query-replace): Add new arg `regexp-flag' and use it.
15798 Set point to start of match if region is not active in transient
15799 mark mode (to include the current match to region boundaries).
15800 Push the search string to `query-replace-from-history-variable'.
15801 Add prompt "Query replace regexp" for isearch-regexp.
15802 Add region beginning/end as last arguments of `perform-replace.'
15803 (isearch-query-replace-regexp): Replace code by the call to
15804 `isearch-query-replace' with arg `t'.
15805
15806 2004-09-03 Richard M. Stallman <rms@gnu.org>
15807
15808 * startup.el (normal-top-level): Undo previous TERM change.
15809
15810 2004-09-03 Kim F. Storm <storm@cua.dk>
15811
15812 * emulation/cua-rect.el (cua--overlay-keymap): New keymap for
15813 highlight overlays; allow using RET when cursor is over a button.
15814 (cua--highlight-rectangle): Use it.
15815 (cua--rectangle-set-corners): Don't move backwards at eol.
15816 (cua--forward-line): Don't move into void after eob.
15817
15818 * emulation/cua-rect.el (cua--rectangle-set-corners): Ensure that
15819 point is set (and displayed) inside rectangle.
15820 (cua--rectangle-operation): Fix for highlight of empty lines.
15821 (cua--highlight-rectangle): Fix highlight for tabs.
15822 Position cursor at left/right edge of rectangle using new `cursor'
15823 property on overlay strings.
15824 (cua--indent-rectangle): Don't tabify.
15825 (cua-rotate-rectangle): Ignore that point has moved.
15826
15827 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15828
15829 * term/mac-win.el: Add ASCII equivalents for some function keys.
15830 (mode-line-frame-identification): Sync with x-win.el.
15831
15832 2004-09-02 Juri Linkov <juri@jurta.org>
15833
15834 * progmodes/compile.el (compilation-buffer-name): Compare major
15835 mode with second element of compilation-arguments instead of third
15836 to reflect latest changes in compilation-arguments structure.
15837 (recompile): Use global variable `compilation-directory' to get
15838 recent compilation directory only when `recompile' is invoked NOT
15839 in the compilation buffer. Otherwise, use `default-directory' of
15840 the compilation buffer.
15841 (compilation-error-properties): Allow to funcall col and end-col.
15842 (compilation-mode-font-lock-keywords): Check col and end-col by
15843 `integerp'.
15844 (compilation-goto-locus): If end-mk is non-nil in transient mark
15845 mode don't activate the mark (and don't display message in
15846 push-mark), but highlight overlay between mk and end-mk.
15847
15848 * progmodes/grep.el (grep-highlight-matches): New defcustom.
15849 (grep-regexp-alist): Add rule to highlight grep matches.
15850 (grep-process-setup): Set env-vars GREP_OPTIONS and GREP_COLOR.
15851
15852 * info.el (Info-fontify-node): Don't compute other-tag
15853 if Info-hide-note-references=hide.
15854
15855 * help.el (function-called-at-point):
15856 * help-fns.el (variable-at-point):
15857 Try `find-tag-default' when other methods failed.
15858
15859 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
15860 Do not push mark if inhibit-mark-movement is non-nil.
15861
15862 * textmodes/ispell.el (ispell-html-skip-alists):
15863 Fix backslashes in docstring.
15864
15865 2004-09-01 Juri Linkov <juri@jurta.org>
15866
15867 * isearch.el (isearch-wrap-function)
15868 (isearch-push-state-function): New defvars.
15869 (isearch-pop-fun-state): New defsubst.
15870 (isearch-top-state): Call function saved in `isearch-pop-fun-state'.
15871 (isearch-push-state): Set the result of calling
15872 `isearch-push-state-function' to the `isearch-pop-fun-state' field.
15873 (isearch-cancel): Call function saved in `isearch-pop-fun-state' to
15874 restore the mode-specific starting point of terminated search.
15875 (isearch-abort): Call `isearch-cancel' instead of its duplicated code.
15876 (isearch-repeat): Call `isearch-wrap-function' if defined.
15877 (isearch-message-prefix): Don't add prefix "over" to the message
15878 for wrapped search if `isearch-wrap-function' is defined.
15879 (isearch-search): Call function saved in `isearch-pop-fun-state' to
15880 restore the mode-specific starting point of failed search.
15881
15882 * info.el (Info-search-whitespace-regexp): Fix backslashes.
15883 (Info-search): Add new optional arguments for the sake of isearch.
15884 Replace whitespace in Info-search-whitespace-regexp literally.
15885 Add backward search. Don't call `Info-select-node' if regexp is
15886 found in the same Info node. Don't add node to Info-history for
15887 wrapped isearch.
15888 (Info-search-backward, Info-isearch-search, Info-isearch-wrap)
15889 (Info-isearch-push-state, Info-isearch-pop-state): New funs.
15890 (Info-mode): Set local variables `isearch-search-fun-function',
15891 `isearch-wrap-function', `isearch-push-state-function',
15892 `search-whitespace-regexp'.
15893
15894 * isearch.el: Remove ancient Change Log section.
15895 (isearch-string, isearch-message-string, isearch-point)
15896 (isearch-success, isearch-forward-flag, isearch-other-end)
15897 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
15898 (isearch-barrier, isearch-within-brackets)
15899 (isearch-case-fold-search): Add suffix `-state' to state-related
15900 defsubsts to avoid name clashes with other function names.
15901
15902 * simple.el (next-error): New defgroup and defface.
15903 (next-error-highlight, next-error-highlight-no-select):
15904 New defcustoms.
15905 (next-error-no-select): Let-bind next-error-highlight to the value
15906 of next-error-highlight-no-select before calling `next-error'.
15907
15908 * progmodes/compile.el (compilation-goto-locus):
15909 Use `next-error' face instead of `region'. Set 4-th argument of
15910 `move-overlay' to `current-buffer' to move overlay to different
15911 source buffers. Use new variable `next-error-highlight'.
15912
15913 * simple.el (next-error-find-buffer): Move the rule
15914 "if current buffer is a next-error capable buffer" after the
15915 rule "if next-error-last-buffer is set to a live buffer".
15916 Simplify to test all rules in one `or'.
15917 (next-error): Doc fix.
15918 (next-error, previous-error, first-error)
15919 (next-error-no-select, previous-error-no-select):
15920 Make arguments optional.
15921
15922 2004-08-31 Luc Teirlinck <teirllm@auburn.edu>
15923
15924 * macros.el (apply-macro-to-region-lines): Make it operate on all
15925 lines that begin in the region, rather than on all complete lines
15926 in the region.
15927
15928 2004-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15929
15930 * x-dnd.el (x-dnd-protocol-alist): Document update.
15931 (x-dnd-known-types): Defcustom it.
15932 (x-dnd-handle-motif): Print message-atom in error message.
15933
15934 2004-08-30 John Paul Wallington <jpw@gnu.org>
15935
15936 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
15937 strings rather than programatically constructing message.
15938
15939 2004-08-30 Richard M. Stallman <rms@gnu.org>
15940
15941 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
15942 Don't return a string that would read as the wrong character code.
15943
15944 2004-08-29 Kim F. Storm <storm@cua.dk>
15945
15946 * emulation/cua-base.el (cua-auto-expand-rectangles):
15947 Remove automatic rectangle padding feature; replace by non-destructive
15948 virtual rectangle edges feature.
15949 (cua-virtual-rectangle-edges): New defcustom.
15950 (cua-auto-tabify-rectangles): New defcustom.
15951 (cua-paste): If paste into a marked rectangle, insert rectangle at
15952 current column, even if virtual; also paste exactly as many lines
15953 as has been marked (ignore additional lines or add empty lines),
15954 but paste whole source if only one line is marked.
15955 (cua--update-indications): No longer use overwrite-cursor to
15956 indicate rectangle padding
15957
15958 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
15959 (cua--rectangle-virtual-edges): New defun.
15960 (cua--rectangle-get-corners): Remove optional PAD arg.
15961 (cua--rectangle-set-corners): Never do padding.
15962 (cua--forward-line): Remove optional PAD arg. Simplify.
15963 (cua-resize-rectangle-right, cua-resize-rectangle-left)
15964 (cua-resize-rectangle-down, cua-resize-rectangle-up):
15965 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
15966 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
15967 (cua--rectangle-move): Never do padding. Simplify.
15968 (cua--tabify-start): New defun.
15969 (cua--rectangle-operation): Add tabify arg. All callers changed.
15970 (cua--pad-rectangle): Remove.
15971 (cua--delete-rectangle): Handle delete with virtual edges.
15972 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
15973 (cua--insert-rectangle): Handle insert at virtual column.
15974 Perform auto-tabify if necessary.
15975 (cua--activate-rectangle): Remove optional FORCE arg.
15976 Never do padding. Simplify.
15977 (cua--highlight-rectangle): Enhance for virtual edges.
15978 (cua-toggle-rectangle-padding): Remove command.
15979 (cua-toggle-rectangle-virtual-edges): New command.
15980 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
15981 (cua--rectangle-post-command): Don't force rectangle padding.
15982 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
15983
15984 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
15985
15986 * indent.el (edit-tab-stops-buffer): Doc fix.
15987
15988 2004-08-28 Richard M. Stallman <rms@gnu.org>
15989
15990 * progmodes/grep.el (grep-default-command): Use find-tag-default.
15991 (grep-tag-default): Function deleted.
15992
15993 * subr.el (find-tag-default): Move from etags.el.
15994
15995 * progmodes/etags.el (find-tag-default): Move to subr.el.
15996
15997 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
15998 into the basic character if it has an uppercase form.
15999
16000 2004-08-27 Kenichi Handa <handa@m17n.org>
16001
16002 * international/utf-8.el (utf-8-post-read-conversion): If the
16003 buffer is unibyte, temporarily make it multibyte.
16004
16005 2004-08-27 Masatake YAMATO <jet@gyve.org>
16006
16007 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
16008
16009 2004-08-25 John Paul Wallington <jpw@gnu.org>
16010
16011 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
16012 0, 1, and many mismatches in message.
16013 (tex-start-shell): Use `set-process-query-on-exit-flag'.
16014
16015 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
16016 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
16017
16018 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
16019
16020 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
16021 vc-diff-switches differently.
16022
16023 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
16024
16025 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
16026 before and a real defvar after
16027 `speedbar-supported-extension-expressions'. This is to silence
16028 the compiler without breaking bootstrapping.
16029
16030 2004-08-22 Richard M. Stallman <rms@gnu.org>
16031
16032 * textmodes/flyspell.el (flyspell-word):
16033 Use set-process-query-on-exit-flag.
16034 (flyspell-highlight-duplicate-region): Take POSS as arg.
16035 (flyspell-word): Pass POSS as arg.
16036
16037 * progmodes/ada-xref.el: Many doc and style fixes.
16038 (ada-find-any-references): Use compilation-start.
16039 (ada-get-ali-file-name): Improve error msg.
16040 (ada-get-ada-file-name): Likewise.
16041
16042 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-nslookup-host)
16043 (ange-ftp-start-process): Use set-process-query-on-exit-flag.
16044
16045 * mail/mail-extr.el (mail-extr-all-top-level-domains):
16046 Add forward defvar.
16047
16048 * whitespace.el (global-whitespace-mode): New alias
16049 for whitespace-global-mode.
16050
16051 * speedbar.el (speedbar-file-regexp): Move definition up.
16052 (speedbar-mode, speedbar-set-mode-line-format):
16053 Use with-no-warnings.
16054 (speedbar-emacs-popup-kludge): Delete Emacs 19 alternative.
16055
16056 * simple.el (shell-command-on-region): New arg DISPLAY-ERROR-BUFFER
16057 controls whether to display the error buffer.
16058
16059 * ps-mule.el: Delete compatibility code for old Emacsen.
16060 (ps-mule-find-wrappoint): Don't use chars-in-region.
16061
16062 * frame.el (display-mouse-p, display-selections-p):
16063 Use with-no-warnings.
16064
16065 * font-lock.el (font-lock-set-defaults): Use with-no-warnings.
16066
16067 2004-08-22 David Kastrup <dak@gnu.org>
16068
16069 * textmodes/reftex-auc.el, progmodes/meta-mode.el: Update AUCTeX
16070 information.
16071
16072 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
16073
16074 2004-08-22 Andreas Schwab <schwab@suse.de>
16075
16076 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
16077
16078 2004-08-22 Masatake YAMATO <jet@gyve.org>
16079
16080 * cvs-status.el (cvs-status-checkout): New function.
16081 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.
16082
16083 2004-08-21 David Kastrup <dak@gnu.org>
16084
16085 * net/ange-ftp.el (ange-ftp-hash-entry-exists-p)
16086 (ange-ftp-file-entry-p, ange-ftp-file-symlink-p): Since the code
16087 has been converted to use hashtables, the relation `nil=none' is
16088 no longer valid, as `nil' is not a hashtable. This patch tries to
16089 reduce the number of resulting errors.
16090
16091 2004-08-21 John Paul Wallington <jpw@gnu.org>
16092
16093 * subr.el (process-kill-without-query): Made obsolete in
16094 version 21.4, not 21.5.
16095
16096 * log-edit.el (vc-comment-ring, vc-comment-ring-index)
16097 (vc-previous-comment, vc-next-comment)
16098 (vc-comment-search-reverse, vc-comment-search-forward)
16099 (vc-comment-to-change-log): Likewise.
16100
16101 * international/latin1-disp.el (latin1-char-displayable-p): Likewise.
16102
16103 2004-08-21 Peter Seibel <peter@javamonkey.com> (tiny patch)
16104
16105 * emacs-lisp/cl-indent.el (lisp-indent-defmethod):
16106 Correct indentation of DEFMETHODS with non-standard method
16107 combinations (e.g., PROGN, MIN, MAX).
16108
16109 2004-08-20 Stefan Monnier <monnier@iro.umontreal.ca>
16110
16111 * startup.el (normal-top-level-add-subdirs-to-load-path):
16112 Avoid unnecessarily checking system-type.
16113 (normal-top-level): Set TERM to "dumb". Simplify.
16114
16115 * avoid.el (mouse-avoidance-ignore-p): New fun.
16116 Also ignore switch-frame, select-window, double, and triple clicks.
16117 (mouse-avoidance-banish-hook, mouse-avoidance-exile-hook)
16118 (mouse-avoidance-fancy-hook): Use it.
16119
16120 2004-08-20 Zoran Milojevic <zoran@sipquest.com> (tiny change)
16121
16122 * avoid.el (mouse-avoidance-nudge-mouse)
16123 (mouse-avoidance-banish-destination): Stay within the current window
16124 to avoid problems with mouse-autoselect-window.
16125
16126 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
16127
16128 * pcvs-parse.el (cvs-parse-table, cvs-parse-commit): Try to adapt to
16129 the newer format of some messages in cvs-1.12.1.
16130
16131 2004-08-19 Masatake YAMATO <jet@gyve.org>
16132
16133 * emacs-lisp/elp.el (elp-results-symname-map): New keymap.
16134 (elp-results-jump-to-definition-by-mouse)
16135 (elp-results-jump-to-definition, elp-output-insert-symname): New funs.
16136 (elp-output-result): Use elp-output-insert-symname.
16137
16138 2004-08-18 Kenichi Handa <handa@m17n.org>
16139
16140 * language/cyrillic.el: Register koi8-r in
16141 ctext-non-standard-encodings-alist.
16142 ("Cyrillic-KOI8"): Add ctext-non-standard-encoding.
16143
16144 2004-08-17 Luc Teirlinck <teirllm@auburn.edu>
16145
16146 * emacs-lisp/copyright.el (copyright-update-year): Delete code
16147 that replaces 20xy with xy.
16148
16149 2004-08-17 John Paul Wallington <jpw@gnu.org>
16150
16151 * emacs-lisp/re-builder.el (reb-mode-map): Define within defvar.
16152 (reb-force-update): Doc fix.
16153
16154 2004-08-16 Richard M. Stallman <rms@gnu.org>
16155
16156 * progmodes/which-func.el (which-func-update-1): Doc fix.
16157
16158 * progmodes/sh-script.el (sh-set-shell): Use sh-mode-abbrev-table.
16159 (sh-mode-abbrev-table): New variable.
16160
16161 * progmodes/compile.el (compilation-mode): Doc fix.
16162
16163 * emacs-lisp/lisp-mode.el (eval-last-sexp):
16164 Don't cons a new symbol each time.
16165 (eval-last-sexp-fake-value): New variable.
16166
16167 * emacs-lisp/copyright.el (copyright-years-regexp): New variable.
16168 (copyright-update-year): Detect continuation of list of years.
16169
16170 * term.el (term-default-fg-color, term-default-bg-color)
16171 (ansi-term-color-vector): Use `unspecified', not nil, as default.
16172
16173 * imenu.el: Several doc fixes: don't say variables are buffer-local.
16174
16175 2004-08-16 Davis Herring <herring@lanl.gov>
16176
16177 * isearch.el (isearch-string, isearch-message-string, isearch-point)
16178 (isearch-success, isearch-forward-flag, isearch-other-end)
16179 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
16180 (isearch-barrier, isearch-within-brackets)
16181 (isearch-case-fold-search): Fix broken `nth'-like calls to `aref'.
16182
16183 2004-08-16 Kenichi Handa <handa@m17n.org>
16184
16185 * ps-mule.el (ps-mule-font-info-database): Fix docstring.
16186
16187 2004-08-15 Kenichi Handa <handa@m17n.org>
16188
16189 * term/x-win.el (x-selection-value): If utf8 was successful but
16190 ctext was not, use utf8 string.
16191
16192 2004-08-14 Davis Herring <herring@lanl.gov>
16193
16194 * isearch.el: Remove accidental changes of March 4. Fix backing
16195 up when a regexp isearch is made more general. Use symbolic
16196 accessor functions for isearch stack frames to make usage clearer.
16197 (search-whitespace-regexp): Made groups in documentation shy (as
16198 is the group in the default value).
16199 (isearch-fallback): New function, addresses problems with regexps
16200 liberalized by `\|', adds support for liberalization by `\}' (the
16201 general repetition construct), and incorporates behavior for
16202 `*'/`?'.
16203 (isearch-}-char): New command, calls `isearch-fallback' with
16204 arguments appropriate to a typed `}'.
16205 (isearch-*-char, isearch-|-char): Now just call `isearch-fallback'
16206 appropriately.
16207 (isearch-mode-map): Bind `}' to `isearch-}-char'.
16208 (isearch-string, isearch-message,string, isearch-point)
16209 (isearch-success, isearch-forward-flag, isearch-other-end)
16210 (isearch-word, isearch-invalid-regexp, isearch-wrapped)
16211 (isearch-barrier, isearch-within-brackets, isearch-case-fold-search):
16212 New inline functions to read fields of a stack frame.
16213
16214 2004-08-14 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> (tiny change)
16215
16216 * battery.el (battery-linux-proc-acpi): Look into battery
16217 directories matching the literal string "CMB", too (required for
16218 Linux kernel version 2.6.7).
16219
16220 2004-08-14 John Paul Wallington <jpw@gnu.org>
16221
16222 * cus-start.el (read-file-name-completion-ignore-case): Add.
16223 (blink-cursor-alist): Change version to "21.4".
16224
16225 * emacs-lisp/bytecomp.el (forward-word): Allow 0 args.
16226
16227 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org>
16228
16229 * speedbar.el (speedbar-scan-subdirs): New option.
16230 (speedbar-file-lists): Don't ignore file-name case on Unix and use
16231 dolist.
16232 (speedbar-insert-files-at-point): Take an extra argument and use
16233 it to optionally find out if a subdir is empty. Also unreadable
16234 files don't get expand buttons.
16235 (speedbar-directory): New image (unused pixmap already existed).
16236 (speedbar-expand-image-button-alist): Use it.
16237
16238 2004-08-11 Martin Stjernholm <bug-cc-mode@gnu.org>
16239
16240 CC Mode update to 5.30.9:
16241
16242 * progmodes/cc-defs.el, progmodes/cc-vars.el (c-emacs-features):
16243 Move from cc-vars to cc-defs for dependency reasons. Fix the
16244 POSIX char class test to check that it works in
16245 `skip-chars-(forward|backward)' too.
16246
16247 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
16248 first argument starts with a special brace list.
16249
16250 * progmodes/cc-engine.el (c-forward-type): Fix promotion bug
16251 when `c-opt-type-concat-key' is used (i.e. in Pike).
16252
16253 * progmodes/cc-engine.el (c-looking-at-special-brace-list):
16254 Fix bug when the inner char pair doesn't have paren syntax,
16255 i.e. "(<>)".
16256
16257 * progmodes/cc-align.el (c-lineup-multi-inher): Made it syntactic
16258 whitespace safe.
16259
16260 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix anchor
16261 position for `arglist-intro', `arglist-cont-nonempty' and
16262 `arglist-close' when there are two arglist open parens on the same
16263 line and there's nothing in front of the first.
16264
16265 * progmodes/cc-fonts.el (c-basic-matchers-before): Fix font
16266 locking of qualified names in Java, which previously could fontify
16267 common indexing expressions in many cases. The standard Java
16268 naming conventions are used to tell them apart.
16269
16270 * progmodes/cc-align.el (c-lineup-whitesmith-in-block):
16271 Fix inconsistency wrt opening parens on the first line inside a paren
16272 block.
16273
16274 * progmodes/cc-defs.el (c-langs-are-parametric): Must be known at
16275 compile time for the sake of `c-major-mode-is'.
16276
16277 (c-mode-is-new-awk-p): Made it a macro to delay expansion of
16278 `c-major-mode-is' in the event that this is used inside a
16279 `c-lang-defconst'.
16280
16281 * progmodes/cc-defs.el (c-major-mode-is): Fix expansion inside
16282 `c-lang-defconst' so that it works better with fallback languages.
16283
16284 * progmodes/cc-defs.el (c-add-language): Fix a typo that caused
16285 it to fail to record the base mode.
16286
16287 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
16288 Fix bug so that it doesn't go past the closing paren when PAREN-LEVEL
16289 is used. Reorder the syntax checks to get more efficient
16290 skipping in some situations.
16291
16292 * progmodes/cc-cmds.el (c-electric-brace): Don't trip up on a line
16293 continuation which might precede the newly inserted '{'.
16294
16295 * progmodes/cc-engine.el (c-syntactic-re-search-forward):
16296 Fix cases where it could loop indefinitely.
16297
16298 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle array
16299 size specs correctly. Only fontify identifiers in front of '('
16300 with as functions - don't accept any paren char. Tighten up
16301 initializer skipping to stop before function and class blocks.
16302
16303 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
16304 the point could be left directly after an open paren when finding
16305 the beginning of the first decl in the block.
16306
16307 * progmodes/cc-engine.el (c-parse-state): Don't use the syntax
16308 table when filtering out legitimate open parens to be recorded.
16309 This could cause cache inconsistencies when e.g.
16310 `c++-template-syntax-table' was temporarily in use.
16311
16312 * progmodes/cc-engine.el (c-on-identifier)
16313 (c-simple-skip-symbol-backward): Small fix for handling "-"
16314 correctly in `skip-chars-backward'. Affected the operator lfun
16315 syntax in Pike.
16316
16317 * progmodes/cc-engine.el (c-invalidate-sws-region-after):
16318 Fix bug that could cause an error from `after-change-functions' when
16319 the changed region is at bob.
16320
16321 2004-08-11 Alan Mackenzie <bug-cc-mode@gnu.org>
16322
16323 CC Mode update to 5.30.9:
16324
16325 * progmodes/cc-cmds.el, progmodes/cc-vars.el: Amend doc(-strings)
16326 to say that <TAB> doesn't insert WS into a CPP line.
16327 (c-indent-command, c-tab-always-indent): Amend doc strings.
16328
16329 * progmodes/cc-styles.el, progmodes/cc-engine.el: Add in two
16330 checks for user errors, thus eliminating cryptic and unhelpful
16331 Emacs error messages. (1) Check the arg to `c-set-style' is a
16332 string. (2) Check that settings to `c-offsets-alist' are not
16333 spuriously quoted.
16334
16335 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
16336 which precedes the newly inserted `{'.
16337
16338 2004-08-10 Michael Albinus <michael.albinus@gmx.de>
16339
16340 Sync with Tramp 2.0.44.
16341
16342 * net/tramp.el (tramp-post-connection): Quote $1 and $2 of shell
16343 function "tramp_file_attributes". Otherwise, file names
16344 containing spaces are misinterpreted. Reported by Magnus Henoch
16345 <mange@freemail.hu>.
16346 (tramp-handle-file-truename): FILENAME must be expanded first.
16347 Otherwise, parameters like "/ssh:deego@gnufans.net:~" will return
16348 obscure results. Reported by D. Goel <deego@gnufans.org>.
16349 (tramp-handle-verify-visited-file-modtime): If file does not
16350 exist, say it is not modified if and only if that agrees with the
16351 buffer's record. Check whether a file is visiting the buffer, or
16352 the buffer has no recorded last modification time. Return t in
16353 case the visiting file doesn't exist. Suggested by Luc Teirlinck
16354 <teirllm@auburn.edu>.
16355 (tramp-handle-write-region): Pass modtime explicitly to
16356 `set-visited-file-modtime', because filename can be different
16357 from (buffer-file-name) if `file-precious-flag' is set.
16358 `set-visited-file-modtime' must be called always when `visit' is t
16359 or a string. Suggested by Luc Teirlinck <teirllm@auburn.edu>.
16360 (tramp-handle-set-visited-file-modtime): If `time-list' is not
16361 nil, don't apply the whole body. If the file doesn't exists, set
16362 modtime to '(-1 65535). Suggested by Luc Teirlinck
16363 <teirllm@auburn.edu>.
16364
16365 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
16366
16367 * help.el (describe-bindings): Doc fix.
16368
16369 * subr.el (kbd): Doc fix.
16370
16371 2004-08-08 John Paul Wallington <jpw@gnu.org>
16372
16373 * ibuffer.el (define-ibuffer-column size): Use `string-to-number'
16374 instead of `string-to-int'.
16375 (define-ibuffer-column mode): Fix indentation.
16376
16377 2004-08-08 Lars Hansen <larsh@math.ku.dk>
16378
16379 * wid-edit.el (widget-sexp-validate): Allow whitespace after
16380 expression.
16381
16382 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
16383
16384 * subr.el (global-unset-key, local-unset-key): Doc fixes.
16385
16386 * novice.el (disabled-command-function): New variable renamed from
16387 `disabled-command-hook'.
16388 (disabled-command-hook): Keep the _variable_ as alias for
16389 `disabled-command-function' and make obsolete.
16390 (disabled-command-function): Function renamed from
16391 `disabled-command-hook'. Adapt code to name change of the variable.
16392
16393 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
16394
16395 * simple.el (completion-root-regexp): New defvar.
16396 (completion-setup-function): Use it instead of a literal string.
16397
16398 2004-08-07 John Paul Wallington <jpw@gnu.org>
16399
16400 * emacs-lisp/re-builder.el (reb-re-syntax): Add `rx' syntax.
16401 (reb-lisp-mode): Require `rx' feature when `re-reb-syntax' is `rx'.
16402 (reb-lisp-syntax-p, reb-change-syntax): `rx' is a Lisp syntax.
16403 (reb-cook-regexp): Call `rx-to-string' when `re-reb-syntax' is `rx'.
16404
16405 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
16406
16407 * mail/mail-extr.el (mail-extr-disable-voodoo): New variable.
16408 (mail-extr-voodoo): Check mail-extr-disable-voodoo.
16409
16410 2004-08-04 Kenichi Handa <handa@m17n.org>
16411
16412 * international/encoded-kb.el (encoded-kbd-setup-keymap):
16413 Fix previous change.
16414
16415 2004-08-03 Kenichi Handa <handa@m17n.org>
16416
16417 * international/encoded-kb.el: The following changes are to
16418 utilize key-translation-map instead of minor mode map.
16419 (encoded-kbd-iso2022-non-ascii-map): Delete it.
16420 (encoded-kbd-coding, encoded-kbd-handle-8bit): Delete them.
16421 (encoded-kbd-last-key): New function.
16422 (encoded-kbd-iso2022-single-shift): New function.
16423 (encoded-kbd-iso2022-designation)
16424 (encoded-kbd-self-insert-iso2022-7bit)
16425 (encoded-kbd-self-insert-iso2022-8bit)
16426 (encoded-kbd-self-insert-sjis, encoded-kbd-self-insert-big5)
16427 (encoded-kbd-self-insert-ccl): Make them suitable for bindings in
16428 key-translation-map.
16429 (encoded-kbd-setup-keymap): Setup key-translation-map.
16430 (saved-key-translation-map): New variable.
16431 (encoded-kbd-mode): Save/restore key-translation-map.
16432 Adjust for the change of encoded-kbd-setup-keymap.
16433
16434 2004-08-02 Kim F. Storm <storm@cua.dk>
16435
16436 * avoid.el (mouse-avoidance-point-position): Use window-inside-edges
16437 and call compute-motion with nil for topos and width to get proper
16438 usable width and height for both window and non-window systems.
16439
16440 * windmove.el (windmove-coordinates-of-position): Let compute-motion
16441 calculate usable window width and height.
16442
16443 * window.el (window-buffer-height): Call compute-motion with nil width.
16444
16445 2004-08-01 David Kastrup <dak@gnu.org>
16446
16447 * replace.el (query-replace-read-from):
16448 Use `query-replace-compile-replacement'.
16449 (query-replace-compile-replacement): New function.
16450 (query-replace-read-to): Use `query-replace-compile-replacement'
16451 for repeating the last command.
16452
16453 2004-08-01 John Paul Wallington <jpw@gnu.org>
16454
16455 * printing.el (toplevel, pr-ps-fast-fire, pr-ps-set-utility)
16456 (pr-ps-set-printer, pr-txt-set-printer, pr-eval-setting-alist)
16457 (pr-switches): Remove period from end of error messages.
16458
16459 * help-mode.el (help-go-back): Likewise.
16460
16461 * abbrev.el (only-global-abbrevs): Doc fix.
16462 (edit-abbrevs-map): Define within defvar.
16463 (quietly-read-abbrev-file): Doc fix.
16464
16465 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
16466
16467 * novice.el (enable-command, disable-command): Doc fixes.
16468
16469 * subr.el (event-modifiers, event-basic-type): Doc fixes.
16470
16471 2004-07-30 Richard M. Stallman <rms@gnu.org>
16472
16473 * subr.el (with-local-quit): Doc fix.
16474
16475 2004-07-30 Luc Teirlinck <teirllm@auburn.edu>
16476
16477 * international/utf-8.el (utf-translate-cjk-mode): Doc fix.
16478
16479 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
16480
16481 * custom.el (defcustom): Doc fix.
16482
16483 2004-07-28 Masatake YAMATO <jet@gyve.org>
16484
16485 * progmodes/etags.el (etags-tags-apropos): Show building progress.
16486
16487 2004-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
16488
16489 * imenu.el (imenu-prev-index-position-function)
16490 (imenu-extract-index-name-function, imenu-name-lookup-function)
16491 (imenu--index-alist): Docstring redundancy fix.
16492
16493 2004-07-25 Lars Hansen <larsh@math.ku.dk>
16494
16495 * wdired.el (wdired-finish-edit): Require dired-aux before locally
16496 binding dired-backup-overwrite.
16497
16498 2004-07-25 John Paul Wallington <jpw@gnu.org>
16499
16500 * subr.el (butlast, event-modifiers, event-basic-type): Doc fixes.
16501
16502 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
16503
16504 * term/tty-colors.el (tty-color-approximate): Doc fix.
16505
16506 * select.el (x-get-selection, x-set-selection): Doc fixes.
16507
16508 * frame.el (make-frame): Doc fix.
16509
16510 2004-07-24 Richard M. Stallman <rms@gnu.org>
16511
16512 * mail/rmail.el (rmail-mime-charset-pattern):
16513 Don't include semicolon in the charset value.
16514
16515 * replace.el (occur-next-error): Call set-window-point.
16516 (occur-engine): Handle negative NLINES.
16517
16518 2004-07-23 Luc Teirlinck <teirllm@auburn.edu>
16519
16520 * frame.el (modify-all-frames-parameters): Minor doc fix.
16521 (set-frame-configuration): Doc fix.
16522
16523 2004-07-23 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
16524
16525 * simple.el (completion-setup-function): Compute the common parts
16526 and the first difference place correctly when
16527 partial-completion-mode is on.
16528
16529 2004-07-22 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16530
16531 * ps-print.el: Doc fix.
16532 (ps-print-version): New version 6.6.5.
16533 (ps-printing-region): Doc fix.
16534 (ps-generate-string-list): Comment fix.
16535 (ps-message-log-max): Code fix.
16536
16537 2004-07-22 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
16538
16539 * ps-print.el (ps-begin-file): Improve the DSC compliance of the
16540 generated PostScript.
16541
16542 2004-08-17 Reiner Steib <Reiner.Steib@gmx.de>
16543
16544 * net/tls.el (tls-process-connection-type): Fix docstring. (Sync
16545 with Gnus v5_10 branch.)
16546
16547 2004-08-16 Reiner Steib <Reiner.Steib@gmx.de>
16548
16549 * calendar/time-date.el (time-to-number-of-days): New function.
16550 Imported from Gnus.
16551
16552 2004-07-22 Kim F. Storm <storm@cua.dk>
16553
16554 * progmodes/make-mode.el: Fix comments.
16555
16556 2004-07-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16557
16558 * printing.el: Doc fix.
16559
16560 2004-07-20 Luc Teirlinck <teirllm@auburn.edu>
16561
16562 * frame.el (modify-all-frames-parameters): Minor doc fix.
16563
16564 2004-07-20 Richard M. Stallman <rms@gnu.org>
16565
16566 * textmodes/fill.el (fill-nobreak-p): If this break point is
16567 at the end of the line, don't consider the newline which follows
16568 as a reason to return t.
16569
16570 2004-07-19 John Paul Wallington <jpw@gnu.org>
16571
16572 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
16573
16574 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
16575
16576 * dired-aux.el (dired-do-kill-lines): Expand docstring.
16577 Delete irrelevant code.
16578
16579 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
16580
16581 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
16582 New docstring. From Luc Teirlinck.
16583
16584 2004-07-17 Luc Teirlinck <teirllm@auburn.edu>
16585
16586 * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary'
16587 section.
16588 (auto-revert-handler): Do not check `auto-revert-tail-mode' for
16589 non-file buffers. We know it is nil.
16590
16591 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net>
16592
16593 Sync with Tramp 2.0.43.
16594
16595 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
16596 Remove outdated comment.
16597 (tramp-locked, tramp-locker): New variables for implementing a
16598 global lock.
16599 (tramp-sh-file-name-handler): Use them to implement the global lock.
16600
16601 2004-07-13 Michael Albinus <michael.albinus@gmx.de>
16602
16603 * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx'
16604 calls to respective `xxx` calls.
16605 (tramp-process-alive-regexp): Precise doc string.
16606 (tramp-multi-action-process-alive): New defun.
16607 (tramp-multi-actions): Use it.
16608 (tramp-handle-find-backup-file-name): `copy-tree' is available
16609 since Emacs 22.1 only (XEmacs has it). Implementation rewritten
16610 in order to avoid this function.
16611 (tramp-handle-write-region): Set current buffer. If connection
16612 wasn't open, `file-modes' has changed it accidentally. Reported by
16613 David Kastrup <dak@gnu.org>.
16614 (tramp-enter-password, tramp-read-passwd): New arguments USER and
16615 HOST.
16616 (tramp-action-password, tramp-multi-action-password): Apply it.
16617 (tramp-open-connection-rsh): If a port is given, the Tramp buffer
16618 name must still contain the port number. Otherwise, we have two
16619 Tramp buffers, with all the confusion. Reported by Myron Selby
16620 <myron@xytech.com> and Rolf Dubitzky
16621 <Dubitzky@physi.uni-heidelberg.de>.
16622
16623 * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and
16624 HOST to `tramp-enter-passwd'.
16625
16626 * net/tramp-vc.el (all): Code cleanup. Change all
16627 `tramp-handle-xxx' calls to respective `xxx` calls.
16628
16629 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org>
16630
16631 * emacs-lisp/testcover.el: New category "potentially-1valued" for
16632 functions that are not erroneous if either 1-valued or
16633 multi-valued. Detect functions in this class.
16634 (testcover-1value-functions, testcover-compose-functions)
16635 (testcover-progn-functions) Add some additional functions to lists.
16636 (testcover-mark): Bugfix when marking up the definition for an
16637 empty function.
16638
16639 2004-07-17 Richard M. Stallman <rms@gnu.org>
16640
16641 * replace.el (occur-read-primary-args): Pass default to
16642 read-from-minibuffer.
16643
16644 * mail/footnote.el (footnote-section-tag): Use defcustom.
16645
16646 * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords):
16647 Compile font-lock-keywords, not KEYWORDS.
16648 (lisp-font-lock-keywords-2): Add multiple-value-prog1, go.
16649 Add warn, check-type. Handle cerror like error.
16650
16651 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
16652
16653 * progmodes/which-func.el (which-func-keymap): New var.
16654 (which-func-face): New face.
16655 (which-func-format): Use them.
16656
16657 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change)
16658
16659 * buff-menu.el (list-buffers-noselect): Append the buffer's
16660 process status to its mode name.
16661
16662 2004-07-16 Kim F. Storm <storm@cua.dk>
16663
16664 * simple.el (inhibit-mark-movement): New defvar.
16665 (beginning-of-buffer, end-of-buffer): Do not push mark if
16666 inhibit-mark-movement is non-nil or C-u prefix is given.
16667
16668 * emulation/cua-base.el (cua--preserve-mark-commands): New defvar.
16669 Init to beginning-of-buffer and end-of-buffer.
16670 (cua--undo-push-mark): New defvar.
16671 (cua--pre-command-handler): Set inhibit-mark-movement if mark is
16672 already active and command is in cua--preserve-mark-commands.
16673 Also fix check for shift modifier on non-window systems.
16674 (cua--post-command-handler): Clear inhibit-mark-movement if set.
16675
16676 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
16677
16678 * calendar/cal-dst.el (calendar-time-from-absolute): Return a list
16679 of two integers, instead of a cons.
16680
16681 * net/tramp.el (tramp-handle-verify-visited-file-modtime):
16682 `visited-file-modtime' now returns a list of two integers, instead
16683 of a cons.
16684
16685 * dired.el (dired-directory-changed-p): Ditto.
16686
16687 * progmodes/grep.el (grep): Doc fix.
16688
16689 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org>
16690
16691 * autorevert.el (auto-revert-tail-mode)
16692 (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars.
16693 (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not
16694 in both at the same time.
16695 (auto-revert-tail-mode): New command.
16696 (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs.
16697 (auto-revert-handler): Revert only either tail or whole file.
16698
16699 * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and
16700 add auto-revert-tail-mode.
16701
16702 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16703
16704 * printing.el: Doc fix. Change name of some funs.
16705 (pr-dosify-file-name): New fun. Replace ps-dosify-path.
16706 (pr-unixify-file-name): New fun. Replace ps-unixify-path.
16707 (pr-standard-file-name): New fun. Replace pr-standard-path.
16708 (pr-call-process): Code fix.
16709
16710 2004-07-12 Luc Teirlinck <teirllm@auburn.edu>
16711
16712 * subr.el (with-selected-window): Doc fix.
16713
16714 2004-07-11 Luc Teirlinck <teirllm@auburn.edu>
16715
16716 * subr.el (get-buffer-window-list): Doc fix.
16717
16718 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
16719
16720 * files.el (switch-to-buffer-other-window): Doc fix.
16721
16722 * window.el (save-selected-window, one-window-p)
16723 (split-window-keep-point, split-window-vertically)
16724 (split-window-horizontally): Doc fixes.
16725
16726 2004-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16727
16728 * printing.el: Doc fix. Now it uses call-process instead of
16729 shell-command for low command execution.
16730 (pr-version): New version number (6.8).
16731 (pr-shell-file-name): Option removed.
16732 (pr-shell-command): Fun removed.
16733 (pr-call-process): New fun. Replace pr-shell-command.
16734 (pr-standard-path, pr-remove-nil-from-list): New funs.
16735 (zmacs-region-stays, current-mouse-event, current-menubar): New var.
16736 (pr-ps-file-preview, pr-ps-file-using-ghostscript, pr-ps-file-print)
16737 (pr-setup, pr-ps-set-printer, pr-txt-set-printer)
16738 (pr-ps-utility-process, pr-txt-print): Code fix.
16739
16740 2004-07-10 Stephan Stahl <stahl@eos.franken.de> (tiny change)
16741
16742 * ediff-mult.el (ediff-meta-truncate-filenames): Change type to
16743 boolean.
16744
16745 2004-07-09 Lars Hansen <larsh@math.ku.dk>
16746
16747 * wid-edit.el (widget-field-buffer): Doc fix.
16748
16749 2004-07-09 John Paul Wallington <jpw@gnu.org>
16750
16751 * emacs-lisp/re-builder.el (reb-update-overlays):
16752 Distinguish between one and several matches in message.
16753
16754 2004-07-09 Richard M. Stallman <rms@gnu.org>
16755
16756 * mouse.el (mouse-set-region-1): If transient-mark-mode
16757 is `identity', change it to `only'.
16758
16759 * simple.el (current-word): Doc fix.
16760
16761 2004-07-09 Mark A. Hershberger <mah@everybody.org>
16762
16763 * progmodes/cperl-mode.el (cperl-mode): Adapt defun-prompt-regexp
16764 so that it is more understanding of whitespace.
16765
16766 * xml.el (xml-maybe-do-ns, xml-parse-tag): Produce elements in the form
16767 (("ns" . "element") (attr-list) children) instead of
16768 ((:ns . "element") (attr-list) children) in order to reduce the
16769 number of symbols used.
16770 (xml-skip-dtd): Change to use xml-parse-dtd but set
16771 xml-validating-parsing to nil.
16772 (xml-parse-dtd): Parse entity declarations in DOCTYPEs.
16773 (xml-substitute-entity): Remove in favor of new entity substitution.
16774 (xml-substitute-special): Rewrite in to substitute complex
16775 entities from DOCTYPE declarations.
16776 (xml-parse-fragment): Parse fragments from entity declarations.
16777 (xml-parse-region, xml-parse-tag, xml-parse-attlist)
16778 (xml-parse-dtd, xml-substitute-special): Make validity checks
16779 conditioned on xml-validating-parser. Add "Not Well Formed" to
16780 error messages about well-formedness.
16781
16782 2004-07-08 Steven Tamm <steventamm@mac.com>
16783
16784 * term/mac-win.el (mac-scroll-ignore-events, mac-scroll-down)
16785 (mac-scroll-down-line, mac-scroll-up, mac-scroll-up-line):
16786 Do not treat double clicks and triple clicks specially in the
16787 scroll bar (preventing strange repositioning problems)
16788
16789 2004-07-06 Stefan Monnier <monnier@iro.umontreal.ca>
16790
16791 * replace.el (query-replace-regexp-eval): Fix last change.
16792
16793 2004-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16794
16795 * replace.el (query-replace-descr): New fun.
16796 (query-replace-read-from, query-replace-read-args): Default to the
16797 previous from&to.
16798 (query-replace-read-to): Quote the `from' string when displaying it.
16799 (query-replace-regexp-eval): Immediately check read-only status.
16800 Use query-replace-read-from to get the \n checking.
16801 Quote the `from' string when displaying it.
16802 (map-query-replace-regexp, occur-read-primary-args):
16803 Quote the `from' string when displaying it.
16804
16805 * isearch.el (isearch-query-replace): Pass the regexp-ness and
16806 delimited-ness of the search to query-replace.
16807
16808 * replace.el (query-replace-read-from, query-replace-read-to):
16809 New funs extracted from query-replace-read-args.
16810 (query-replace-read-args): Use them.
16811
16812 * replace.el (query-replace-interactive, query-replace-read-args):
16813 Remove the `initial' special value.
16814 (query-replace-regexp-eval, map-query-replace-regexp): Simplify.
16815 (occur-engine): Remove unused var `matchend'.
16816
16817 * isearch.el (isearch-query-replace, isearch-query-replace-regexp):
16818 Use the search string without prompting.
16819
16820 2004-07-05 Kenichi Handa <handa@m17n.org>
16821
16822 * international/mule.el (decode-coding-inserted-region):
16823 Set last-coding-system-used only when coding is nil.
16824
16825 2004-07-03 Eli Zaretskii <eliz@gnu.org>
16826
16827 * progmodes/grep.el (grep-compute-defaults, grep-command)
16828 (grep-program, find-program, grep-find-use-xargs, grep-history)
16829 (grep-find-history, grep-tag-default, grep-find-command)
16830 (grep-regexp-alist, grep-process-setup, grep-compute-defaults):
16831 Add autoload cookies, for unbundled packages that load `compile'
16832 and expect all grep-related symbols to become defined.
16833
16834 2004-07-03 KOSEKI Yoshinori <kose@meadowy.org>
16835
16836 * iimage.el (turn-on-iimage-mode, iimage-mode): Add autoload cookies.
16837 (iimage-mode-image-search-path): New user option to search the
16838 image file.
16839 (iimage-locate-file): New function. Emacs21.3 or earlier does not
16840 have locate-file.
16841 (iimage-mode-buffer): Use it.
16842
16843 2004-07-03 Nick Roberts <nickrob@gnu.org>
16844
16845 * progmodes/gdb-ui.el (gdb-goto-breakpoint): String match more
16846 carefully.
16847 (gdb-delete-breakpoint, gdb-toggle-breakpoint): Handle gdbmi.
16848
16849 2004-07-03 Juri Linkov <juri@jurta.org>
16850
16851 * replace.el (query-replace-read-args): Swallow space after 'foo,
16852 not after (quote foo). Match space only immediately after symbol,
16853 not anywhere in the whole string.
16854
16855 2004-07-02 Richard M. Stallman <rms@gnu.org>
16856
16857 * replace.el (query-replace-read-args): Swallow space after
16858 symbols, not after closeparens. But avoid error if string ends there.
16859
16860 * progmodes/python.el (python-beginning-of-statement):
16861 Exit the loop if backward-up-list gets error.
16862
16863 * textmodes/enriched.el (enriched-encode): Bind inhibit-read-only.
16864
16865 2004-07-02 Andre Spiegel <spiegel@gnu.org>
16866
16867 * vc-rcs.el (vc-rcs-checkout-model): Look at the version headers
16868 only if vc-consult-headers is non-nil.
16869
16870 2004-07-02 Juri Linkov <juri@jurta.org>
16871
16872 * pcvs.el (cvs-mode-diff-repository): New command.
16873
16874 * pcvs-defs.el (cvs-mode-diff-map): Bind r to cvs-mode-diff-repository.
16875
16876 2004-07-01 Juri Linkov <juri@jurta.org>
16877
16878 * isearch.el (isearch-mode-map): Bind C-M-w to isearch-del-char,
16879 C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
16880 C-M-% to isearch-query-replace-regexp.
16881 (minibuffer-local-isearch-map): Add arrow key bindings.
16882 Bind C-f to isearch-yank-char-in-minibuffer.
16883 (isearch-forward): Doc fix.
16884 (isearch-edit-string): Doc fix.
16885 (isearch-query-replace, isearch-query-replace-regexp): New funs.
16886 (isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
16887 (isearch-yank-char): Add optional arg.
16888 (isearch-yank-char-in-minibuffer): New fun.
16889
16890 * replace.el (query-replace-interactive): Change type from boolean
16891 to choice. Add value `initial'.
16892 (query-replace-read-args): Handle value `initial' of
16893 query-replace-interactive.
16894
16895 2004-06-29 Kim F. Storm <storm@cua.dk>
16896
16897 * progmodes/gdb-ui.el (breakpoint-enabled-bitmap-face)
16898 (breakpoint-disabled-bitmap-face): Add :group 'gud.
16899
16900 * progmodes/ada-xref.el (ada-tight-gvd-integration):
16901 Add :group 'ada.
16902
16903 * vc-arch.el (vc-arch-mode-line-rewrite): Add :group 'vc.
16904
16905 2004-06-29 Juri Linkov <juri@jurta.org>
16906
16907 * replace.el (query-replace-read-args): Swallow a space after
16908 everything except )]" which in most cases means after a symbol.
16909
16910 * emacs-lisp/pp.el (pp-buffer): Add autoload.
16911
16912 2004-06-28 Richard M. Stallman <rms@gnu.org>
16913
16914 * font-lock.el (font-lock-fontify-syntactic-keywords-region):
16915 More changes to go with previous change in font-lock.el.
16916
16917 2004-06-26 David Kastrup <dak@gnu.org>
16918
16919 * replace.el (perform-replace): Highlight the match even in
16920 non-query mode if there is potential replace string editing.
16921
16922 2004-06-26 Kai Grossjohann <kai.grossjohann@gmx.net>
16923
16924 * net/tramp.el (tramp-handle-file-remote-p): New implementation to
16925 agree with new return value of `file-remote-p'.
16926 This syncs with Tramp 2.0.42.
16927
16928 * net/ange-ftp.el (ange-ftp-file-remote-p): New return value,
16929 according to new documentation of `file-remote-p'.
16930
16931 * files.el (file-remote-p): Fix doc to say that return value is
16932 identification of remote system, if not nil.
16933 (file-relative-name): Use new return value of `file-remote-p'.
16934
16935 2004-06-26 Nick Roberts <nickrob@gnu.org>
16936
16937 * progmodes/gdb-ui.el (gdb-toggle-breakpoint)
16938 (gdb-goto-breakpoint): Fix breakage.
16939
16940 2004-06-26 Eli Zaretskii <eliz@gnu.org>
16941
16942 * man.el (Man-getpage-in-background): Add windows-nt to the list
16943 of systems where shell-file-name should be used instead of
16944 literal "sh".
16945
16946 2004-06-25 Sam Steingold <sds@gnu.org>
16947
16948 * add-log.el (change-log-font-lock-keywords): Support Common Lisp
16949 function names `(setf symbol)'.
16950
16951 2004-06-24 Richard M. Stallman <rms@gnu.org>
16952
16953 * replace.el (query-replace-read-args): Swallow space after \,SYMBOL.
16954
16955 * font-lock.el (font-lock-keywords): Change format of compiled values.
16956 Document it.
16957 (font-lock-add-keywords): If font-lock-keywords is compiled,
16958 extract the uncompiled version, modify, then recompile.
16959 (font-lock-remove-keywords): Likewise.
16960 (font-lock-fontify-keywords-region): Handle changed format.
16961 (font-lock-compile-keywords): Handle changed format.
16962 (font-lock-set-defaults): Compile the keywords explicitly here.
16963
16964 2004-06-24 David Kastrup <dak@gnu.org>
16965
16966 * replace.el (query-replace-read-args): Implement `\,' and `\#'
16967 replacements here.
16968 (query-replace-regexp): Doc string explaining this and the new
16969 `\?' replacement. Remove `\,' and `\#' implementation here, as it
16970 is better placed in `query-replace-read-args'.
16971 (replace-regexp): Explain `\,', `\#' and `\?'.
16972 (replace-match-data): New function for thorough reuse/destruction
16973 of old match-data.
16974 (replace-match-maybe-edit): Function for implementing `\?' editing.
16975 (perform-replace): Fix maintaining of the match stack including
16976 already matched regions, implement `\?', fix various problems
16977 with regions while editing and other stuff.
16978 (replace-highlight): Simplify.
16979
16980 2004-06-24 Daniel Pfeiffer <occitan@esperanto.org>
16981
16982 * progmodes/grep.el (grep-error-screen-columns): New variable.
16983 (grep-regexp-alist): Give it the full functionality of gnu style
16984 compilation messages with line and column ranges. Ask me for the
16985 perl script I'm working on, that uses these.
16986
16987 2004-06-23 Nick Roberts <nickrob@gnu.org>
16988
16989 * comint.el (comint-insert-clicked-input, comint-copy-old-input):
16990 Remove.
16991 (comint-insert-input, comint-mouse-insert-input): New functions
16992 based on comint-insert-clicked-input for two bindings but just
16993 one functionality.
16994
16995 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
16996
16997 * net/goto-addr.el (goto-address-fontify): Fix help-echo text.
16998
16999 2004-06-23 Lars Hansen <larsh@math.ku.dk>
17000
17001 * files.el (write-contents-functions): Doc fix.
17002
17003 2004-06-21 Juanma Barranquero <lektu@terra.es>
17004
17005 * image.el (image-library-alist): Rewrite docstring in active voice.
17006
17007 2004-06-20 Richard M. Stallman <rms@gnu.org>
17008
17009 * mouse.el (mouse-set-region-1): Set transient-mark-mode to `only'.
17010
17011 * isearch.el (isearch-repeat): Avoid testing old match data.
17012 (isearch-message): Display trailing space in special font
17013 when search is failing.
17014 (isearch-search-fun-function): Doc fix.
17015
17016 * autorevert.el (global-auto-revert-non-file-buffers): Doc fix.
17017
17018 2004-06-19 Luc Teirlinck <teirllm@auburn.edu>
17019
17020 * frame.el (show-trailing-whitespace): Doc fix.
17021
17022 * cus-edit.el (custom-variable-documentation): New function.
17023 (custom-variable): Use it.
17024
17025 2004-06-19 Nick Roberts <nickrob@gnu.org>
17026
17027 * man.el (Man-getpage-in-background): Revert previous change but
17028 make cygwin a special case.
17029
17030 2004-06-18 Luc Teirlinck <teirllm@auburn.edu>
17031
17032 * autorevert.el (global-auto-revert-non-file-buffers):
17033 Update docstring.
17034
17035 2004-06-19 Daniel Pfeiffer <occitan@esperanto.org>
17036
17037 * progmodes/compile.el (compilation-error-properties): Store one
17038 more than end-col, if present, so that transient-mark-mode will
17039 highlight last char too.
17040 * progmodes/grep.el (grep-regexp-alist): Match columns and column
17041 ranges, if present.
17042
17043 2004-06-18 Jason Rumney <jasonr@gnu.org>
17044
17045 * makefile.w32-in: Double percent signs in for loops.
17046
17047 2004-06-17 David Kastrup <dak@gnu.org>
17048
17049 * replace.el (query-replace-read-args): Only warn about use of \n
17050 and \t when we are doing a regexp replacement and the actual
17051 escaped character is n or t.
17052 (query-replace-regexp): Add \, and \# interpretation to
17053 interactive call and document it.
17054 (query-replace-regexp-eval, replace-match-string-symbols): Add \#
17055 as shortkey for replace-count.
17056 (replace-quote): New function for doubling backslashes.
17057
17058 2004-06-17 Juanma Barranquero <lektu@terra.es>
17059
17060 * files.el (parse-colon-path, cd): Mention in docstring that the
17061 path separator is colon in GNU-like systems.
17062
17063 * newcomment.el (comment-region-internal): Fix docstring.
17064
17065 * emacs-lisp/ewoc.el (ewoc-create, ewoc-map, ewoc-locate)
17066 (ewoc-invalidate, ewoc-collect): Doc fixes.
17067 (ewoc--create-node, ewoc--delete-node-internal):
17068 Fix typos in docstring.
17069
17070 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
17071
17072 * files.el (buffer-stale-function): Add hyperlink to emacs-xtra
17073 manual to docstring.
17074
17075 2004-06-15 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17076
17077 * ps-print.el (ps-time-stamp-iso8601): Comment doc string of defalias.
17078
17079 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
17080
17081 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
17082 Add hyperlink to emacs-xtra manual to docstring.
17083
17084 * autorevert.el (global-auto-revert-non-file-buffers):
17085 Add hyperlink to emacs-xtra manual to docstring, as well as an
17086 info-link.
17087
17088 2004-06-14 Juanma Barranquero <lektu@terra.es>
17089
17090 * image.el (image-library-alist): New variable to map image types
17091 to external libraries. Initialized to nil, unless system-specific
17092 configs change it.
17093 (image-type-available-p): Determine whether an image type is
17094 available by calling `init-image-library'.
17095
17096 * term/w32-win.el (image-library-alist): Initialize to a known set
17097 of probable library names.
17098
17099 2004-06-14 Kenichi Handa <handa@m17n.org>
17100
17101 * international/code-pages.el (windows-1256, cp1125): Fix tables
17102 for several characters.
17103
17104 * international/utf-8.el (ccl-encode-mule-utf-8): Fix previous change.
17105
17106 2004-06-13 Richard M. Stallman <rms@gnu.org>
17107
17108 * textmodes/paragraphs.el (sentence-end): Add 0x5397d as close brace.
17109
17110 * emulation/pc-select.el: Doc fixes: say "PC Selection mode",
17111 not "`pc-selection-mode'".
17112
17113 * emacs-lisp/bytecomp.el: Put `...' around symbols in warning messages.
17114
17115 * simple.el (previous-matching-history-element): Specify a default.
17116
17117 * hexl.el (hexl-mode): Catch errors in hexl-goto-address.
17118
17119 * cus-face.el (custom-declare-face): Simplify code.
17120
17121 * abbrev.el (abbrev-mode, edit-abbrevs-map): Doc fixes.
17122
17123 2004-06-13 Luc Teirlinck <teirllm@auburn.edu>
17124
17125 * files.el (before-save-hook): Add `time-stamp' to the options.
17126
17127 * time-stamp.el (time-stamp): Recommend adding it to
17128 `before-save-hook', rather than `write-file-functions'.
17129 Make a similar change in `Commentary' section.
17130
17131 2004-06-13 Kai Grossjohann <kai.grossjohann@gmx.net>
17132
17133 * diff-mode.el (diff-current-defun): If at start of hunk, use
17134 position of first change.
17135
17136 2004-06-13 Lars Hansen <larsh@math.ku.dk>
17137
17138 * dired-x.el (dired-mark-omitted): Bind to "*O".
17139
17140 2004-06-12 Karl Fogel <kfogel@red-bean.com>
17141
17142 * bookmark.el (bookmark-bmenu-relocate): New function, as
17143 suggested by David J. Biesack <David.Biesack@sas.com>.
17144 (bookmark-bmenu-mode-map): Bind `bookmark-bmenu-relocate' to "R".
17145 (bookmark-bmenu-mode): Describe binding in doc string.
17146 (bookmark-set-filename): Save the bookmark list if it's time.
17147
17148 2004-06-13 Kenichi Handa <handa@m17n.org>
17149
17150 * international/utf-8.el (ccl-decode-mule-utf-8): Fix previous change.
17151 (ccl-untranslated-to-ucs): Fix typo.
17152
17153 2004-06-12 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
17154
17155 * progmodes/python.el (python-open-block-statement-p):
17156 Fix indentation after a block opening that contains a comment.
17157
17158 2004-06-12 J\e,Ai\e(Br\e,At\e(Bme Marant <jerome@marant.org> (tiny change)
17159
17160 * bindings.el (completion-ignored-extensions): Add file extensions
17161 of Python byte-compiled files.
17162
17163 2004-06-12 Juri Linkov <juri@jurta.org>
17164
17165 * info.el (Info-goto-node): Add autoload.
17166 (Info-toc): Add substring-no-properties on Info file name.
17167 (Info-mode, info, Info-toc, Info-mode-menu): Doc fix.
17168 (Info-mode-map): Bind L to Info-history, T to Info-toc.
17169
17170 2004-06-12 Kenichi Handa <handa@m17n.org>
17171
17172 * international/mule-cmds.el (set-language-environment):
17173 Load subst tables if necessary.
17174
17175 * international/mule.el (decode-char): Load subst tables if necessary.
17176 (encode-char): Likewise.
17177
17178 * international/utf-16.el (utf-16-decode-ucs): Handle a surrogate
17179 pair correctly. Call ccl-mule-utf-untrans for untranslable chars.
17180 (utf-16le-decode-loop): Set r5 to -1 before loop.
17181 (utf-16be-decode-loop): Likewise.
17182 (ccl-decode-mule-utf-16le): Add EOF processing block.
17183 (ccl-decode-mule-utf-16be): Likewise.
17184 (ccl-decode-mule-utf-16le-with-signature): Likewise.
17185 (ccl-decode-mule-utf-16be-with-signature): Likewise.
17186 (ccl-decode-mule-utf-16): Likewise. Set r5 to -1 initially.
17187 (ccl-mule-utf-16-encode-untrans): New CCL.
17188 (utf-16-decode-to-ucs): Handle pre-read character.
17189 (utf-16le-encode-loop): Handle surrogate pair.
17190 (utf-16be-encode-loop): Likewise.
17191 (ccl-encode-mule-utf-16le-with-signature): Adjust for the change
17192 of utf-16le-encode-loop.
17193 (ccl-encode-mule-utf-16be-with-signature): Adjust for the change
17194 of utf-16be-encode-loop.
17195 (mule-utf-16-post-read-conversion):
17196 Call utf-8-post-read-conversion at first.
17197 (mule-utf-16[{le|be}], mule-utf-16{le|be}-with-signature):
17198 Include CJK charsets in safe-charsets if utf-translate-cjk-mode is on.
17199 Add post-read-conversion and pre-write-conversion.
17200
17201 * international/utf-8.el (utf-translate-cjk-charsets): New variable.
17202 (utf-translate-cjk-unicode-range): New variable.
17203 (utf-translate-cjk-load-tables): New function.
17204 (utf-lookup-subst-table-for-decode): New function.
17205 (utf-lookup-subst-table-for-encode): New function.
17206 (utf-translate-cjk-mode): Init-value changed to t. Don't load
17207 tables here. Update safe-charsets of utf-* coding systems.
17208 (ccl-mule-utf-untrans): New CCL.
17209 (ccl-decode-mule-utf-8): Call ccl-mule-utf-untrans. Use `repeat'
17210 at end of each branch.
17211 (ccl-mule-utf-8-encode-untrans): New CCL.
17212 (ccl-encode-mule-utf-8): Call ccl-mule-utf-8-encode-untrans.
17213 (ccl-untranslated-to-ucs): Handle 2-byte encoding. Set r1 to the
17214 length of encoding. Don't return r0.
17215 (utf-8-compose): New arg hash-table. Handle 2-byte encoding.
17216 (utf-8-post-read-conversion): Narrow to region properly.
17217 If utf-translate-cjk-mode is on, load tables if necessary.
17218 Call utf-8-compose with hash-table arg if necessary.
17219 Call XXX-compose-region instead of XXX-post-read-conversion.
17220 (utf-8-pre-write-conversion): New function.
17221 (mule-utf-8): Include CJK charsets in safe-charsets if
17222 utf-translate-cjk-mode is on. Add pre-write-conversion.
17223
17224 * international/characters.el: Temporarily set
17225 utf-translate-cjk-mode to nil.
17226
17227 * language/devan-util.el (devanagari-compose-region):
17228 Add autoload cookie.
17229
17230 * international/ccl.el (ccl-dump-call): Fix printing the
17231 subroutine name.
17232
17233 2004-06-11 Luc Teirlinck <teirllm@auburn.edu>
17234
17235 * dired.el (dired-revert): If buffer is marked unmodified before
17236 reverting, keep it marked unmodified. Adapt to new conventions
17237 for commenting out code.
17238 (dired-make-relative): Adapt to new conventions for commenting out
17239 code.
17240
17241 2004-06-10 Miles Bader <miles@gnu.ai.mit.edu>
17242
17243 * eshell/esh-module.el (eshell-load-defgroups):
17244 Bind `vc-handled-backends' to nil when opening files.
17245
17246 2004-06-11 Juanma Barranquero <lektu@terra.es>
17247
17248 * files.el (parse-colon-path, cd): Doc fixes (refer to
17249 `path-separator', not colon).
17250
17251 2004-06-10 Juanma Barranquero <lektu@terra.es>
17252
17253 * newcomment.el (comment-search-forward)
17254 (comment-search-backward): Fix typos in docstring.
17255 (comment-region): Doc fix.
17256
17257 2004-06-10 Luc Teirlinck <teirllm@auburn.edu>
17258
17259 * dired.el (dired-insert-old-subdirs): Adapt to fact that the R
17260 switch is no longer stored in `dired-switches-alist'.
17261
17262 * dired-aux.el (dired-insert-subdir): Do not store R switch in
17263 `dired-switches-alist'.
17264
17265 2004-06-10 Kim F. Storm <storm@cua.dk>
17266
17267 * pcvs.el (cvs-mode-diff-yesterday): New command.
17268
17269 * pcvs-defs.el (cvs-mode-diff-map): Bind y to cvs-mode-diff-yesterday.
17270
17271 2004-06-10 Juri Linkov <juri@jurta.org>
17272
17273 * emacs-lisp/edebug.el (edebug-eval-defun):
17274 * emacs-lisp/lisp-mode.el (eval-defun-1): Add `defface'.
17275 Fix docstring.
17276
17277 * simple.el (eval-expression-print-format): Don't print additional
17278 information on the first call to `eval-print-last-sexp'.
17279 (next-error-find-buffer): Fix punctuation.
17280 (killing) <defgroup>: Fix punctuation.
17281 (yank-excluded-properties): Change group from editing to killing.
17282
17283 * replace.el (perform-replace): Use `limit' to terminate the
17284 while-loop explicitly.
17285
17286 2004-06-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17287
17288 * toolbar/tool-bar.el (tool-bar-add-item, tool-bar-local-item):
17289 Use lc-*.xpm as prefix instead of *-locol.xpm.
17290
17291 * toolbar/lc-copy.xpm, toolbar/lc-cut.xpm
17292 * toolbar/lc-help.xpm, toolbar/lc-home.xpm
17293 * toolbar/lc-index.xpm, toolbar/lc-jump_to.xpm
17294 * toolbar/lc-left_arrow.xpm, toolbar/lc-new.xpm
17295 * toolbar/lc-open.xpm, toolbar/lc-paste.xpm
17296 * toolbar/lc-preferences.xpm, toolbar/lc-print.xpm
17297 * toolbar/lc-right_arrow.xpm, toolbar/lc-save.xpm
17298 * toolbar/lc-saveas.xpm, toolbar/lc-search.xpm
17299 * toolbar/lc-spell.xpm, toolbar/lc-undo.xpm
17300 * toolbar/lc-up_arrow.xpm:
17301 Rename from *-locol.xpm.
17302
17303 2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
17304
17305 * ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
17306 include forms like &<str>; as valid url patterns.
17307
17308 2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
17309
17310 * dired.el (dired-diff, dired-backup-diff)
17311 (dired-clean-directory, dired-do-chmod, dired-do-chgrp)
17312 (dired-do-chown, dired-do-touch, dired-do-print)
17313 (dired-do-shell-command, dired-do-kill-lines, dired-do-compress)
17314 (dired-do-byte-compile, dired-do-load, dired-do-redisplay)
17315 (dired-create-directory, dired-do-copy, dired-do-symlink)
17316 (dired-do-hardlink, dired-do-rename, dired-do-rename-regexp)
17317 (dired-do-copy-regexp, dired-do-hardlink-regexp)
17318 (dired-do-symlink-regexp, dired-upcase, dired-downcase)
17319 (dired-maybe-insert-subdir, dired-next-subdir)
17320 (dired-prev-subdir, dired-goto-subdir, dired-mark-subdir-files)
17321 (dired-kill-subdir, dired-tree-up, dired-tree-down)
17322 (dired-hide-subdir, dired-hide-all, dired-show-file-type)
17323 (dired-run-shell-command, dired-query): Remove redundant,
17324 or incorrect, autoloads.
17325
17326 * dired-aux.el (dired-kill-tree): Do not kill DIRNAME, even if it
17327 does not end in a slash. Add optional argument KILL-ROOT.
17328 Update docstring.
17329 (dired-do-touch, dired-clean-directory, dired-run-shell-command)
17330 (dired-query): Add autoloads.
17331
17332 2004-06-08 Daniel Pfeiffer <occitan@esperanto.org>
17333
17334 * progmodes/compile.el (compilation-set-window-height): Rearrange
17335 the save-* functions because a buffer can have several current
17336 point in different windows.
17337 (compilation-error-regexp-alist-alist): Recognize {standard input}
17338 GNU messages (for gcc --pipe) and more kinds of Oracle messages.
17339
17340 2004-06-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17341
17342 * toolbar/copy-locol.xpm, toolbar/cut-locol.xpm
17343 * toolbar/help-locol.xpm, toolbar/home-locol.xpm
17344 * toolbar/index-locol.xpm, toolbar/jump_to-locol.xpm
17345 * toolbar/left_arrow-locol.xpm, toolbar/new-locol.xpm
17346 * toolbar/open-locol.xpm, toolbar/paste-locol.xpm
17347 * toolbar/preferences-locol.xpm, toolbar/print-locol.xpm
17348 * toolbar/right_arrow-locol.xpm, toolbar/save-locol.xpm
17349 * toolbar/saveas-locol.xpm, toolbar/search-locol.xpm
17350 * toolbar/spell-locol.xpm, toolbar/undo-locol.xpm
17351 * toolbar/up_arrow-locol.xpm:
17352 New versions of icons that uses fewer colors.
17353
17354 * toolbar/tool-bar.el (tool-bar-local-item)
17355 (tool-bar-local-item-from-menu): Try to use icons with fewer colors
17356 if display-color-cells is 256 or less.
17357
17358 2004-06-08 Kim F. Storm <storm@cua.dk>
17359
17360 * wid-edit.el (widget-specify-button): Use hand pointer rather
17361 than mouse-face as visible mouse-over effect.
17362
17363 2004-06-07 Karl Fogel <kfogel@red-bean.com>
17364
17365 * saveplace.el (save-place-alist-to-file): Bind `print-length'
17366 and `print-level' to nil when writing out `save-place-alist'.
17367 Thanks to Kai Grossjohann <kai@emptydomain.de> for enlightenment.
17368
17369 2004-06-07 Juanma Barranquero <lektu@terra.es>
17370
17371 * completion.el (completion-kill-region): Doc fix.
17372
17373 * format.el (format-insert-annotations)
17374 (format-annotate-location): Doc fixes.
17375 (format-subtract-regions): Make arguments match their use in docstring.
17376
17377 * simple.el (kill-region): Doc fix.
17378
17379 * subr.el (insert-buffer-substring-no-properties)
17380 (insert-buffer-substring-as-yank): Doc fixes.
17381
17382 2004-06-07 Luc Teirlinck <teirllm@auburn.edu>
17383
17384 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
17385 Update docstring.
17386 (dired-reset-subdir-switches): New function.
17387
17388 * dired.el (dired-undo): Call `dired-build-subdir-alist'.
17389 Limit scope of `buffer-read-only' binding.
17390
17391 2004-06-06 Emilio C. Lopes <eclig@gmx.net>
17392
17393 * eshell/esh-cmd.el (eshell/which): Respect commands quoted with
17394 eshell-explicit-command-char.
17395
17396 2004-06-06 Juanma Barranquero <lektu@terra.es>
17397
17398 * help-fns.el (help-argument-name): Inherit from italic face only
17399 if the frame supports it.
17400
17401 2004-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17402
17403 * toolbar/alias.pbm, toolbar/close.pbm, toolbar/copy.pbm
17404 * toolbar/cut.pbm, toolbar/help.pbm, toolbar/home.pbm
17405 * toolbar/index.pbm, toolbar/jump_to.pbm, toolbar/left_arrow.pbm
17406 * toolbar/new.pbm, toolbar/open.pbm, toolbar/paste.pbm
17407 * toolbar/preferences.pbm, toolbar/print.pbm, toolbar/right_arrow.pbm
17408 * toolbar/save.pbm, toolbar/saveas.pbm, toolbar/search.pbm
17409 * toolbar/spell.pbm, toolbar/undo.pbm, toolbar/up_arrow.pbm:
17410 New conversions from xpm files.
17411
17412 * toolbar/README: New file.
17413
17414 2004-06-06 Richard M. Stallman <rms@gnu.org>
17415
17416 * isearch.el (isearch-mode-map): Undo previous change.
17417
17418 2004-06-05 Juri Linkov <juri@jurta.org>
17419
17420 * bindings.el (debug-ignored-errors): Add regexps for history
17421 related messages. Remove $ from "No further undo information".
17422 Move Ediff's messages to ediff.el.
17423
17424 * ediff.el: Move Ediff's debug-ignored-errors from bindings.el.
17425
17426 * cus-edit.el (custom-display): Add `min-colors'.
17427
17428 * custom.el (defface): Add `supports' to docstring.
17429
17430 * help-fns.el (help-argument-name): Add :group 'help.
17431
17432 2004-06-05 Luc Teirlinck <teirllm@auburn.edu>
17433
17434 * find-dired.el (find-ls-subdir-switches): New user option.
17435 (find-dired): No longer call `abbreviate-file-name' on DIR.
17436 Set `dired-subdir-switches' buffer-locally.
17437
17438 * locate.el: Merge the two `Commentary' sections.
17439 (locate-ls-subdir-switches): New user option.
17440 (locate): Update for other changes.
17441 (locate-mode-map): Restore Dired binding for mouse-2.
17442 Bind `locate-mouse-view-file' to M-mouse-2.
17443 Bind `l' to `locate-do-redisplay'.
17444 (locate-main-listing-line-p, locate-do-redisplay): New functions.
17445 (locate-mouse-view-file, locate-tags, locate-find-directory):
17446 Print message if used outside main listing.
17447 (locate-mode): Update docstring. Make `*Locate*' buffer read-only.
17448 Various changes to support inserted subdirectories.
17449 (locate-insert-header): Change header of *Locate* buffer.
17450
17451 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
17452 Change interactive default switches.
17453 (dired-rename-subdir-2): Update `dired-switches-alist'.
17454 (dired-insert-subdir, dired-kill-subdir):
17455 Handle `dired-switches-alist'. Do not mark buffer modified.
17456 (dired-insert-subdir-validate): Handle `dired-subdir-switches'.
17457 (dired-insert-subdir-doinsert): Omit messages.
17458 Handle `dired-subdir-switches'.
17459 (dired-hide-subdir, dired-hide-all): Do not mark buffer modified.
17460
17461 * dired.el (dired-subdir-switches, dired-switches-alist): New vars.
17462 (dired-insert-old-subdirs): Do not repeatedly delete and reinsert
17463 subdirs if -R switch is used for a subdir.
17464 (dired-mode): Set `dired-switches-alist'.
17465 (dired-build-subdir-alist): Only print number of directories in
17466 echo area when invoked interactively.
17467
17468 2004-06-05 Lars Hansen <larsh@math.ku.dk>
17469
17470 * dired-x.el (dired-omit-mode): Rename from
17471 dired-omit-files-p. Use define-minor-mode to define it.
17472 (dired-omit-files-p): Add as alias for dired-omit-mode.
17473 (dired-omit-toggle): Delete. Replaced by dired-omit-mode and
17474 dired-mark-omitted.
17475 (dired-mark-omitted): Add. Bind to M-O.
17476
17477 2004-06-05 Kenichi Handa <handa@m17n.org>
17478
17479 * ps-print.el: Fix typos (kein'ichi -> ken'ichi)
17480
17481 2004-06-05 Juanma Barranquero <lektu@terra.es>
17482
17483 * help-fns.el (help-argument-name): Reintroduce face.
17484 (help-default-arg-highlight): Use it, now that
17485 `face-differs-from-default-p' can be trusted.
17486
17487 2004-06-05 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
17488
17489 * textmodes/table.el: Sentence commands added to Point Motion
17490 group; kill and backward-kill commands added to Extraction group.
17491
17492 2004-06-04 Mario Lang <mlang@delysid.org>
17493
17494 * battery.el (battery-linux-proc-acpi): `mA' was hardcoded, but some
17495 systems appear to use mW, make the code handle this. Fix a
17496 division-by-zero bug while at it, and handle kernels with
17497 a slightly different layout in /proc/acpi.
17498
17499 2004-06-04 Karl Fogel <kfogel@red-bean.com>
17500
17501 * vc-svn.el (vc-svn-checkin): Use `nconc' instead of `list*',
17502 because the latter is a CL-ism. This fixes the bug reported by
17503 Shawn Boyette <mdxi@collapsar.net> in
17504 http://lists.gnu.org/archive/html/emacs-devel/2004-05/msg00442.html.
17505
17506 2004-06-04 Miles Bader <miles@gnu.org>
17507
17508 * faces.el (display-supports-face-attributes-p): Function moved to
17509 C code. Previously only the tty-related portion of this function
17510 was done in C; however the previous attempt to do a halfway-proper
17511 job for non-tty displays in lisp didn't work properly because of
17512 funny conditions during Emacs startup.
17513 (face-differs-from-default-p): Simplify, now that
17514 display-supports-face-attributes-p works properly on all display
17515 types. Remove :stipple from comparison; it doesn't really work
17516 in emacs anyway.
17517
17518 2004-06-04 Miles Bader <miles@gnu.org>
17519
17520 * faces.el (face-differs-from-default-p): Use a different
17521 implementation, so we can really check whether FACE displays
17522 differently or not.
17523
17524 2004-06-04 Miles Bader <miles@gnu.org>
17525
17526 * faces.el (display-supports-face-attributes-p): Implement a
17527 `different from default' check for non-tty displays.
17528
17529 2004-06-03 David Kastrup <dak@gnu.org>
17530
17531 * woman.el (woman-mapcan): More concise code.
17532 (woman-topic-all-completions, woman-topic-all-completions-1)
17533 (woman-topic-all-completions-merge): Replace by a simpler and
17534 much faster implementation based on O(n log n) sort/merge instead
17535 of the old O(n^2) behavior.
17536
17537 2004-06-03 Miles Bader <miles@gnu.org>
17538
17539 * subr.el (read-number): Use canonical format for default in prompt.
17540
17541 * minibuf-eldef.el (minibuffer-default-in-prompt-regexps):
17542 Add regexp for " [...]" style defaults.
17543
17544 2004-06-02 Romain Francoise <romain@orebokech.com>
17545
17546 * ibuf-ext.el (ibuffer-jump-to-buffer): Add support for filter
17547 groups: if the user asks for a hidden buffer, open the
17548 corresponding filter group to expose it.
17549
17550 * ibuffer.el (ibuffer-mode-map): Add key binding `M-g' to
17551 `ibuffer-jump-to-buffer'.
17552 (ibuffer-jump-offer-only-visible-buffers): New user option.
17553
17554 2004-06-02 Juanma Barranquero <lektu@terra.es>
17555
17556 * faces.el (frame-update-faces): Add empty docstring so the one
17557 for `ignore' doesn't show through.
17558
17559 * subr.el (process-kill-without-query): Remove spurious "\n" on
17560 obsolescence string.
17561 (focus-frame, unfocus-frame): Add obsolescence declaration and
17562 empty docstring.
17563
17564 * international/mule.el (register-char-codings): Make alias for
17565 `ignore'. Move docstring to obsolescence info and remove redundancy.
17566
17567 2004-06-02 Kim F. Storm <storm@cua.dk>
17568
17569 * frame.el (blink-cursor-start): Turn cursor off initially so blink
17570 starts after blink-cursor-delay rather than 2*blink-cursor-delay.
17571
17572 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
17573
17574 * comint.el (comint-replace-by-expanded-history-before-point):
17575 Obey `start' as the docstring says.
17576 (comint-send-input, comint-snapshot-last-prompt, comint-output-filter)
17577 (comint-update-fence): Prevent font-lock from running unnecessarily.
17578 (comint-dynamic-list-completions): Use with-current-buffer.
17579
17580 2004-06-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
17581
17582 * textmodes/bibtex.el (bibtex-format-entry): Fix regexps.
17583 (bibtex-parse-strings): Bugfix, use assoc instead of assoc-string.
17584 (bibtex-entry-update): Handle alternatives and optional fields.
17585 (bibtex-parse-entry): Bugfix, handle empty key.
17586
17587 2004-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
17588
17589 * vc-arch.el (vc-arch-state): Don't assume the file exists.
17590
17591 2004-05-31 Lars Hansen <larsh@math.ku.dk>
17592
17593 * desktop.el (desktop-save): Don't save minor modes without a
17594 known mode initialization function.
17595
17596 2004-05-30 Luc Teirlinck <teirllm@auburn.edu>
17597
17598 * replace.el (query-replace-interactive): Convert defvar -> defcustom.
17599
17600 * autorevert.el: Update `Commentary' section.
17601
17602 2004-05-30 Juanma Barranquero <lektu@terra.es>
17603
17604 * dos-fns.el (convert-standard-filename):
17605 * files.el (convert-standard-filename):
17606 * w32-fns.el (convert-standard-filename):
17607 Rework docstring (wording by Eli Zaretskii and Kai Grossjohann).
17608
17609 2004-05-30 Kai Grossjohann <kai.grossjohann@gmx.net>
17610
17611 Sync with Tramp.
17612
17613 * net/tramp.el (tramp-let-maybe): Reverse args of `get'.
17614 (tramp-let-maybe): Move to an earlier spot in the file.
17615 Patch by Andreas Schwab.
17616
17617 2004-05-30 Andreas Schwab <schwab@suse.de>
17618
17619 * dired.el (dired-get-filename): Don't use dired-re-dot.
17620
17621 2004-05-30 Richard M. Stallman <rms@gnu.org>
17622
17623 * files.el (find-file): Doc fix.
17624
17625 * font-lock.el (lisp-font-lock-keywords-2): Add multiple-value-bind.
17626
17627 2004-05-30 Nick Roberts <nickrob@gnu.org>
17628
17629 * progmodes/gdb-ui.el (gdb-current-frame, gud-watch)
17630 (gdb-locals-mode, gdb-frame-handler): Display current frame in the
17631 modeline of the locals buffer.
17632 (gdb-goto-breakpoint): Handle gdbmi.
17633 (gdb-get-frame-number): Change for gdbmi.
17634
17635 2004-05-30 Michael Albinus <michael.albinus@gmx.de>
17636
17637 * files.el (file-remote-p): Apply file name handler for operation
17638 `file-remote-p'. It isn't a property any longer.
17639 (file-relative-name): `fh' and `fd' get the required value via
17640 `find-file-name-handler' already.
17641
17642 * ange-ftp.el (ange-ftp-file-remote-p): New defun.
17643 (top): Remove setting of `file-remote-p' property for
17644 `ange-ftp-hook-function'. Add `ange-ftp' property to `file-remote-p'.
17645
17646 2004-05-29 Michael Albinus <michael.albinus@gmx.de>
17647
17648 Version 2.0.41 of Tramp released.
17649
17650 * tramp.el (tramp-wait-for-regexp, tramp-wait-for-output):
17651 Throw away if process has died.
17652 Reported by Luc Teirlinck <teirllm@dms.auburn.edu>.
17653 (tramp-out-of-band-prompt-regexp): Rename to
17654 `tramp-process-alive-regexp', because its usage is widen.
17655 (tramp-actions-copy-out-of-band): Apply it.
17656 (tramp-actions-before-shell, tramp-multi-actions):
17657 Add `tramp-action-process-alive' action.
17658 (tramp-action-process-alive): New defun.
17659 (tramp-file-name-handler-alist, tramp-file-name-for-operation):
17660 Add entry for `file-remote-p'.
17661 (tramp-handle-file-remote-p): New defun.
17662 (top): Remove setting of `file-remote-p'. Don't set
17663 `inhibit-file-name-handlers' and `inhibit-file-name-operation'.
17664
17665 * tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
17666 `file-remote-p'.
17667
17668 * tramp-uu.el (tramp-uuencode-region): Padding characters aren't
17669 counted for (last) line. [They should or they shouldn't? --Stef]
17670 Reported by Aaron Ucko <ucko@ncbi.nlm.nih.gov>.
17671
17672 2004-05-29 Kai Grossjohann <kai.grossjohann@gmx.net>
17673
17674 * tramp.el (tramp-initial-commands): Add "unset HISTFILE"; this is
17675 not really necessary but seems to keep the shell history smaller
17676 in some cases. It is no substitute for setting HISTFILE and
17677 HISTSIZE from tramp-open-connection-setup-interactive-shell,
17678 though. Suggested by Luc Teirlinck.
17679 (tramp-open-connection-setup-interactive-shell): Export variables
17680 HISTFILE and HISTSIZE, do not just set them. From Luc Teirlinck.
17681 (tramp-set-process-query-on-exit-flag): New compat function.
17682 (tramp-open-connection-multi, tramp-open-connection-su)
17683 (tramp-open-connection-rsh, tramp-open-connection-telnet)
17684 (tramp-do-copy-or-rename-file-out-of-band): Use it.
17685 (tramp-let-maybe): New macro, let-binds a variable only if it
17686 isn't obsolete.
17687 (tramp-check-ls-commands, tramp-handle-expand-file-name)
17688 (tramp-handle-file-truename): Use it.
17689 (tramp-completion-file-name-regexp-unified): Avoid matching
17690 filenames starting with "/:" -- those are reserved for
17691 file-name-non-special.
17692
17693 * tramp-smb.el (tramp-smb-open-connection):
17694 Use tramp-set-process-query-on-exit-flag compat function.
17695
17696 2004-05-29 Richard M. Stallman <rms@gnu.org>
17697
17698 * net/browse-url.el (browse-url-interactive-arg): Doc fix.
17699
17700 * emacs-lisp/lisp-mode.el (prin1-char): Catch errors from `string'.
17701 (eval-last-sexp-print-value): Print char equivalent regardless
17702 of standard-output value.
17703
17704 * thumbs.el (thumbs-subst-char-in-string): Delete.
17705 (thumbs-thumbname): Use subst-char-in-string.
17706 (thumbs-resize-image): Use condition-case, not ignore-errors.
17707 (thumbs-kill-buffer): Likewise.
17708
17709 * thumbs.el: Don't include cl. Don't bother with old Emacs versions.
17710 (thumbs-mode): Make buffer read-only.
17711 (thumbs-make-thumb): Unconditionally accept an existing file.
17712 (thumbs-insert-thumb): Add thumb-image-file property to the image.
17713 (thumbs-do-thumbs-insertion): Be smarter about where to put newlines.
17714 (thumbs-show-thumbs-list): Error if images not supported.
17715 (thumbs-save-current-image): Improve prompt string.
17716 (thumbs-mode-map): Define u, R, x.
17717 (thumbs-unmark): New command.
17718 (thumbs-emboss-image): Minor cleanup.
17719 (thumbs-forward-char, thumbs-backward-char): Skip chars with no image.
17720 (thumbs-rename-images): New command.
17721 (thumbs-show-image-num): Rewrite. Don't rename the buffer.
17722
17723 * thumbs.el (thumbs-current-image): New function.
17724 (thumbs-file-list, thumbs-file-alist): New functions.
17725 (thumbs-find-image): Delete arg L.
17726 Don't set up thumbs-fileL as buffer-local global var.
17727 (thumbs-find-image-at-point): Use thumbs-current-image.
17728 (thumbs-set-image-at-point-to-root-window): Likewise.
17729 (thumbs-delete-images): Use thumbs-current-image, thumbs-file-alist.
17730 Record and warn about errors. Update thumbs-markedL for deletions.
17731 (thumbs-next-image, thumbs-previous-image): Use thumbs-file-alist.
17732 (thumbs-redraw-buffer): Use thumbs-file-list.
17733 (thumbs-mark): Use thumbs-current-image.
17734 (thumbs-show-name): Use thumbs-current-image.
17735
17736 * imenu.el (imenu--menubar-select): Set imenu-menubar-modified-tick
17737 and imenu--last-menubar-index-alist.
17738
17739 * subr.el (with-selected-window): Undo previous change.
17740
17741 2004-05-29 John Paul Wallington <jpw@gnu.org>
17742
17743 * thumbs.el (thumbs-show-name): Do nothing if no image at point.
17744 (thumbs-mouse-find-image): New command.
17745 (thumbs-mode-map): Bind it to mouse-2.
17746 (thumbs-mode): Make mode-class special.
17747 (thumbs-view-image-mode): Likewise.
17748
17749 2004-05-29 Pavel Kobiakov <pk_at_work@yahoo.com>
17750
17751 * flymake.el: New file.
17752
17753 2004-05-28 Luc Teirlinck <teirllm@auburn.edu>
17754
17755 * files.el (find-file-noselect-1): Do not bind
17756 `inhibit-read-only' to t during execution of
17757 `find-file-not-found-functions'.
17758
17759 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
17760
17761 * vc-mcvs.el (vc-mcvs-print-log, vc-mcvs-diff):
17762 * vc-arch.el (vc-arch-diff): Add optional `buffer' arg.
17763
17764 2004-05-28 Juri Linkov <juri@jurta.org>
17765
17766 * simple.el (eval-expression-print-format): New fun.
17767
17768 * simple.el (eval-expression):
17769 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
17770 * emacs-lisp/edebug.el (edebug-compute-previous-result)
17771 (edebug-eval-expression): Print additionally the value returned by
17772 `eval-expression-print-format'.
17773
17774 * emacs-lisp/lisp.el (insert-pair-alist): New var.
17775 (insert-pair): Make arguments optional. Find character pair
17776 from `insert-pair-alist' according to the last input event.
17777 (insert-parentheses): Make arguments optional.
17778 (raise-sexp, delete-pair): New funs.
17779
17780 * emacs-lisp/lisp-mode.el (indent-pp-sexp): New fun.
17781 (emacs-lisp-mode-map, lisp-interaction-mode-map):
17782 Bind C-M-q to `indent-pp-sexp'.
17783
17784 * emacs-lisp/pp.el (pp-buffer): New fun created from the code in
17785 `pp-to-string' modified to be able to format text with newlines.
17786 (pp-to-string): Move the buffer-formatting part of the code to
17787 `pp-buffer'. Call `pp-buffer'.
17788
17789 * info.el (Info-desktop-buffer-misc-data): Don't save information
17790 about virtual files.
17791 (Info-restore-desktop-buffer): Restore Info buffers in prepared
17792 buffers with names obtained from the desktop file instead of the
17793 default *info* buffer.
17794
17795 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
17796
17797 * subr.el (with-selected-window): Only save/restore the selected
17798 window.
17799
17800 * progmodes/compile.el (compilation-error-regexp-alist):
17801 Use expand-file-name and data-directory.
17802
17803 * progmodes/grep.el (grep-tree): Rework previous fix.
17804
17805 * mouse.el (mouse-set-region-1): Use temporary transient-mark-mode
17806 after the user marked text with the mouse.
17807
17808 * startup.el (command-line): Keep the first regexp of
17809 auto-save-file-name-transforms intact.
17810
17811 2004-05-28 Juanma Barranquero <lektu@terra.es>
17812
17813 * cus-edit.el (customize-face, customize-face-other-window)
17814 (custom-face-edit-delete): Make arguments match their use in
17815 docstring.
17816 (custom-unloaded-symbol-p, custom-unloaded-widget-p): Fix typo in
17817 docstring.
17818
17819 * cvs-status.el (cvs-tree-merge, cvs-tags->tree): Use `butlast',
17820 not `cvs-butlast'.
17821
17822 * pcvs-util.el (cvs-butlast, cvs-nbutlast): Remove (`butlast' and
17823 `nbutlast' are in subr.el).
17824
17825 * w32-fns.el (w32-using-nt, w32-shell-dos-semantics)
17826 (set-w32-system-coding-system): Doc fixes.
17827
17828 * textmodes/artist.el (artist-last, artist-remove-nulls): Simplify.
17829 (artist-draw-ellipse-general, artist-draw-ellipse-with-0-height):
17830 Make arguments match their use in docstring.
17831 (artist-draw-region-trim-line-endings)
17832 (artist-mouse-choose-operation): Fix typo in docstring.
17833 (artist-key-set-point-common): Doc fix.
17834
17835 2004-05-28 Simon Josefsson <jas@extundo.com>
17836
17837 * mail/smtpmail.el (smtpmail-open-stream):
17838 Bind starttls-extra-arguments too, if starttls.el uses GNUTLS.
17839
17840 2004-05-26 Simon Josefsson <jas@extundo.com>
17841
17842 * starttls.el: Merge with my GNUTLS based starttls.el.
17843 (starttls-gnutls-program, starttls-use-gnutls)
17844 (starttls-extra-arguments, starttls-process-connection-type)
17845 (starttls-connect, starttls-failure, starttls-success): New variables.
17846 (starttls-program, starttls-extra-args): Doc fix.
17847 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New funs.
17848 (starttls-negotiate, starttls-open-stream): Check `starttls-use-gnutls'
17849 and pass on to corresponding *-gnutls function if it is set.
17850
17851 2004-05-27 Luc Teirlinck <teirllm@auburn.edu>
17852
17853 * autorevert.el (auto-revert-handler): Disable auto-reverting of
17854 remote files.
17855
17856 2004-05-27 Michael Albinus <michael.albinus@gmx.de>
17857
17858 * files.el (file-name-non-special): There are more operations
17859 which need handling: `find-backup-file-name',
17860 `insert-file-contents', `verify-visited-file-modtime',
17861 `write-region'. Rename t value of method to `add'. Add new
17862 methods `quote' and `unquote-then-quote' to file-arg-indices.
17863
17864 2004-05-25 Juri Linkov <juri@jurta.org>
17865
17866 * info.el (Info-toc): Call Info-mode on intermediate buffer.
17867 (Info-index-nodes): Enclose code in condition-case to catch errors.
17868 (Info-index-node): Don't search all index nodes if request is only
17869 for the current node and file is not in the cache of index nodes.
17870 (Info-mode-map): Bind Info-copy-current-node-name to `w'
17871 for consistency with dired-copy-filename-as-kill.
17872 Bind `S' to Info-search-case-sensitively.
17873 (Info-copy-current-node-name): New arg. With zero prefix arg put
17874 the name inside a function call to `info'. Display copied text in
17875 the echo area.
17876
17877 2004-05-25 Sam Steingold <sds@gnu.org>
17878
17879 * emacs-lisp/lisp-mode.el (lisp-find-tag-default): New function:
17880 strip the package prefix from the symbol name, if any.
17881 Make it the `find-tag-default-function' for `lisp-mode'.
17882
17883 2004-05-25 John Paul Wallington <jpw@gnu.org>
17884
17885 * gs.el (gs-load-image): Use `set-process-query-on-exit-flag'
17886 instead of obsolete `process-kill-without-query'.
17887
17888 * textmodes/texinfmt.el (texinfo-indexvar-alist):
17889 Declare as variable, not constant.
17890
17891 2004-05-25 Luc Teirlinck <teirllm@auburn.edu>
17892
17893 * files.el (find-file-noselect-1): Fix bug introduced by
17894 Revision 1.694. As a side effect, `inhibit-read-only'
17895 is again, by default, t during execution of
17896 `find-file-not-found-functions'.
17897 (insert-directory): Check that lines were really inserted by
17898 the --dired switch, before erasing them.
17899
17900 2004-05-24 Nick Roberts <nickrob@gnu.org>
17901
17902 * progmodes/gdb-ui.el (gdb-breakpoints-mode, gdb-frames-mode)
17903 (gdb-locals-mode): Check gud-minor-mode in gud-comint-buffer.
17904 (gdb-var-update, gdb-var-update-handler, gdb-var-delete)
17905 (gdb-edit-value, gdb-speedbar-expand-node): Handle new value for
17906 gud-minor-mode (gdbmi).
17907
17908 2004-05-24 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
17909
17910 * net/browse-url.el (browse-url-interactive-arg): Enable user to
17911 explicitly select the text to be taken as URL.
17912
17913 2004-05-23 Juri Linkov <juri@jurta.org>
17914
17915 * info.el (Info-index-nodes): New var and fun.
17916 (Info-goto-index, Info-index, info-apropos)
17917 (Info-find-emacs-command-nodes): Rewrite to use Info-index-nodes.
17918 (Info-index): Fix docstring. Store and restore Info-history-list.
17919 (Info-complete-nodes): New var.
17920 (Info-complete-menu-item): Use it.
17921 (Info-index-node): New fun.
17922 (Info-final-node, Info-forward-node, Info-backward-node)
17923 (Info-build-toc, Info-try-follow-nearest-node, Info-fontify-node):
17924 Use Info-index-node.
17925 (Info-extract-menu-item, Info-extract-menu-counting): Set second
17926 arg of `Info-extract-menu-node-name' to non-nil for index nodes.
17927 (Info-find-node-2): If a node with period in its name not found,
17928 try to find a node without the name part after period.
17929 (Info-select-node): Call Info-fontify-node only if
17930 Info-fontify-maximum-menu-size is not nil.
17931 (info-apropos): Set Info-fontify-maximum-menu-size to nil.
17932 (Info-find-emacs-command-nodes, Info-goto-emacs-command-node):
17933 Preserve Info-history-list.
17934 (Info-toc): Set Info-current-file.
17935 (Info-build-toc): Move point to the beginning of the buffer.
17936 Add main-file variable.
17937 (Info-dir-remove-duplicates, Info-history, Info-toc, info-apropos):
17938 Use backslashed representation of the control character ^_.
17939
17940 * textmodes/texinfmt.el (texinfo-print-index): Print index line
17941 numbers in the new Texinfo 4.7 format.
17942
17943 * add-log.el (change-log-font-lock-keywords): Remove `:' from
17944 regexps for function and variable names.
17945
17946 * descr-text.el (describe-property-list): Add [show] button for
17947 `syntax-table' property with action to pp to a separate buffer.
17948 (describe-char): Replace search-forward by re-search-forward with
17949 whitespace regexp after "character:" to not fail in too narrow windows.
17950
17951 * simple.el (next-error-find-buffer): Add a rule to return
17952 next-error capable buffer if one window on the selected frame
17953 displays such buffer.
17954
17955 2004-05-23 Nick Roberts <nickrob@gnu.org>
17956
17957 * progmodes/gdb-ui.el (gdb-server-prefix): New variable.
17958 (gud-watch, gdb-send-item, gdb-breakpoints-mode, gdb-frames-mode)
17959 (gdb-locals-mode, gdb-send-item, gdb-toggle-breakpoint)
17960 (gdb-delete-breakpoint, gdb-frames-select, gdb-threads-buffer)
17961 (gdb-registers-buffer, gdb-reset, gdb-assembler-buffer):
17962 Handle new value for gud-minor-mode (gdbmi).
17963 (gdb-buffer-type, gdb-input-queue, gdb-prompting)
17964 (gdb-output-sink, gdb-current-item, gdb-pending-triggers):
17965 Change from local to global gdb variable set.
17966 (gdb-ann3): Initialize above gdb variable set.
17967 (gdb-var-update, gdb-var-update-handler, gdb-enqueue-input)
17968 (gdb-dequeue-input, gdb-source, gdb-pre-prompt, gdb-prompt)
17969 (gdb-subprompt, gdb-starting, gdb-stopping, gdb-frame-begin)
17970 (gdb-stopped, gdb-post-prompt, gdb-concat-output)
17971 (def-gdb-auto-update-trigger, def-gdb-auto-update-handler)
17972 (gdb-info-locals-handler, gdb-invalidate-assembler)
17973 (gdb-get-current-frame, gdb-frame-handler): Handle gdb variable
17974 set as global variables.
17975 (gdb-get-create-buffer): Don't make gud-comint buffer-local.
17976 Handle gdbmi.
17977 (gdb-info-breakpoints-custom): Fix regexp.
17978 (def-gdb-var): Delete.
17979
17980 * progmodes/gud.el (gud-menu-map, gud-speedbar-menu-items)
17981 (gud-speedbar-buttons, gud-sentinel, gud-display-line)
17982 (gud-basic-call): Handle new value for gud-minor-mode (gdbmi) for
17983 a new mode. The file (gdb-mi.el) for this mode will be included
17984 with the GDB distribution (6.2 onwards) and will use GDB/MI as its
17985 primary interface.
17986
17987 2004-05-23 Jesper Harder <harder@ifa.au.dk>
17988
17989 * progmodes/grep.el (grep-tree): Ensure that DIR argument is
17990 interpreted as a directory.
17991
17992 2004-05-22 Richard M. Stallman <rms@gnu.org>
17993
17994 * textmodes/paragraphs.el (sentence-end): Match unicode curly quotes
17995 as a close quote.
17996
17997 * textmodes/bibtex.el: Use assoc-string, not assoc-ignore-case.
17998
17999 * progmodes/idlw-shell.el (idlwave-shell-get-object-class):
18000 Use assoc-string, not assoc-ignore-case.
18001
18002 * progmodes/ada-mode.el: Use assoc-string, not assoc-ignore-case.
18003
18004 * emacs-lisp/lisp.el (mark-defun, narrow-to-defun):
18005 If moving back then fwd gets a defun that ends before point,
18006 try again moving fwd then back.
18007
18008 * files.el (file-name-non-special): Allow t in file-arg-indices
18009 to mean requote the return value. Use `identity' as an element
18010 rather than as the whole value.
18011
18012 * gs.el (gs-options): Add -dSAFER. Mark it risky.
18013
18014 2004-05-22 Juanma Barranquero <lektu@terra.es>
18015
18016 * help-fns.el (help-add-fundoc-usage): Use %S only for output of
18017 `help-make-usage'.
18018 (help-highlight-arguments): Skip function name before searching
18019 for arguments.
18020
18021 2004-05-21 Juanma Barranquero <lektu@terra.es>
18022
18023 * allout.el (allout-chart-subtree, allout-rebullet-topic-grunt):
18024 Don't mention in the docstring these arguments meant for
18025 internal (recursive) use only.
18026 (allout-char-spec): Comment out (it's not implemented).
18027 (allout-old-expose-topic, allout-exposure): Fix docstring and add
18028 obsolescence declaration.
18029 (allout-flatten-exposed-to-buffer)
18030 (allout-indented-exposed-to-buffer): Fix typos in docstring.
18031 (my-mark-marker): Doc fix.
18032 (produce-allout-mode-map, allout-sibling-index)
18033 (allout-isearch-expose, allout-distinctive-bullet)
18034 (allout-open-topic, allout-reindent-body)
18035 (allout-rebullet-heading, allout-process-exposed)
18036 (allout-insert-listified, allout-latex-verb-quote)
18037 (allout-insert-latex-header, allout-insert-latex-trailer):
18038 Make arguments match their use in docstring.
18039 (allout-primary-bullet, allout-old-style-prefixes)
18040 (allout-inhibit-protection, allout-init, allout-mode)
18041 (allout-before-change-protect, allout-flag-region):
18042 Use "Emacs" instead of "emacs" in docstrings.
18043
18044 2004-05-21 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
18045
18046 * international/characters.el: Modify syntax of more characters.
18047
18048 2004-05-21 Masatake YAMATO <jet@gyve.org>
18049
18050 * progmodes/etags.el (tags-apropos, list-tags): Require apropos.
18051 (etags-tags-completion-table): Show parsing progress.
18052
18053 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
18054
18055 * locate.el (locate-prompt-for-command): Shorten first line of
18056 docstring.
18057 (locate-mode): Expand docstring and include keymap summary.
18058
18059 * files.el (find-file-noselect-1): Limit the scope of the
18060 `inhibit-read-only' binding. Make sure that `inhibit-read-only'
18061 is, by default, nil during the execution of
18062 `find-file-not-found-functions' and `find-file-hook'.
18063
18064 2004-05-20 Michael Mauger <mmaug@yahoo.com>
18065
18066 * facemenu.el (facemenu-color-name-equal): New function.
18067 (list-colors-display): Use it to compare colors instead of
18068 facemenu-color-equal.
18069
18070 2004-05-20 Dan Nicolaescu <dann@ics.uci.edu>
18071
18072 * compare-w.el (compare-windows-face): Use min-colors instead of
18073 checking for tty or pc types.
18074
18075 2004-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
18076
18077 * simple.el (do-auto-fill): Remove unused vars `bol' and `opoint'.
18078 (completion-setup-function): Use with-current-buffer.
18079 Properly save excursion. Simplify.
18080 Don't assume there is necessarily a `mouse-face' property somewhere.
18081
18082 * progmodes/gud.el (gud-reset): Use unless & with-current-buffer.
18083
18084 * progmodes/gdb-ui.el (gdb-reset): Use unless. Fix regexp.
18085
18086 * emacs-lisp/bytecomp.el (byte-compile-log): Use backquotes.
18087 (byte-compile-log-1): Don't call (byte-goto-log-buffer).
18088 Use with-current-buffer.
18089 (byte-goto-log-buffer): Delete.
18090 (byte-compile-log-file): Call compilation-forget-errors.
18091
18092 2004-05-19 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
18093
18094 * net/ldap.el (ldap-search-internal): Avoid mixing standard error
18095 output messages into the search result.
18096
18097 2004-05-19 Masatake YAMATO <jet@gyve.org>
18098
18099 * wid-edit.el (widget-radio-button-notify): Revert my last
18100 change. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
18101
18102 2004-05-19 Kenichi Handa <handa@m17n.org>
18103
18104 * international/characters.el: Fix syntax (open/close) of CJK chars.
18105
18106 2004-05-18 Karl Chen <quarl@hkn.eecs.berkeley.edu> (tiny change)
18107
18108 * help-mode.el (help-go-back): Don't depend on position of back button.
18109
18110 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
18111
18112 * files.el (auto-save-file-name-transforms): Make sure ange-ftp temp
18113 files don't contain an accidental additional /.
18114
18115 * textmodes/tex-mode.el (tex-compilation-parse-errors): Save excursion
18116 in source buffer.
18117
18118 2004-05-18 Masatake YAMATO <jet@gyve.org>
18119
18120 * wid-edit.el (widget-radio-button-notify): Don't pass `widget'
18121 to widget-apply. :action method assumes 2 arguments, not 3.
18122
18123 2004-05-17 Glenn Morris <gmorris@ast.cam.ac.uk>
18124
18125 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
18126 New constants.
18127 (hs-special-modes-alist): Add an f90-mode entry.
18128
18129 2004-05-17 Sam Steingold <sds@gnu.org>
18130
18131 * emacs-lisp/cl-indent.el (common-lisp-indent-function-1):
18132 Indent "without-" forms just like "with-" and "do-". Use regexp-opt.
18133
18134 2004-05-16 Kim F. Storm <storm@cua.dk>
18135
18136 * emacs-lisp/timer.el (timer-event-handler): Fix last change.
18137
18138 2004-05-15 John Wiegley <johnw@newartisans.com>
18139
18140 * eshell/esh-io.el (eshell-get-target): Whitespace changes.
18141 (eshell-output-object-to-target): Improve output speed 20% by not
18142 calling `eshell-stringify' if something is already known to be a
18143 string.
18144
18145 2004-05-15 Alex Ott <ott@jet.msk.su>
18146
18147 * textmodes/ispell.el (ispell-local-dictionary-alist):
18148 Add windows-1251 to the choice of coding systems.
18149 (ispell-dictionary-alist-6): Add support for "russianw.aff",
18150 encoded in cp1251.
18151
18152 2004-05-15 Dan Nicolaescu <dann@ics.uci.edu>
18153
18154 * progmodes/compile.el (compilation-warning-face)
18155 (compilation-info-face): Use min-colors.
18156
18157 2004-05-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18158
18159 * toolbar/close.pbm, toolbar/close.xpm, toolbar/copy.pbm
18160 * toolbar/copy.xpm, toolbar/cut.pbm, toolbar/cut.xpm
18161 * toolbar/help.pbm, toolbar/help.xpm, toolbar/home.pbm
18162 * toolbar/home.xpm, toolbar/index.pbm, toolbar/index.xpm
18163 * toolbar/jump_to.pbm, toolbar/jump_to.xpm, toolbar/left_arrow.pbm
18164 * toolbar/left_arrow.xpm, toolbar/new.pbm, toolbar/new.xpm
18165 * toolbar/open.pbm, toolbar/open.xpm, toolbar/paste.pbm
18166 * toolbar/paste.xpm, toolbar/preferences.pbm, toolbar/preferences.xpm
18167 * toolbar/print.pbm, toolbar/print.xpm, toolbar/right_arrow.pbm
18168 * toolbar/right_arrow.xpm, toolbar/save.pbm, toolbar/save.xpm
18169 * toolbar/saveas.pbm, toolbar/saveas.xpm, toolbar/search.pbm
18170 * toolbar/search.xpm, toolbar/spell.pbm, toolbar/spell.xpm
18171 * toolbar/undo.pbm, toolbar/undo.xpm, toolbar/up_arrow.pbm
18172 * toolbar/up_arrow.xpm: New icons from GTK+ version 2.
18173
18174 2004-05-15 Kim F. Storm <storm@cua.dk>
18175
18176 * emacs-lisp/timer.el (timer-activate): Add optional arg triggered-p.
18177 Use it to set triggered-p element of timer.
18178 (timer-event-handler): Set triggered-p element non-nil while running
18179 the timer function.
18180
18181 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
18182
18183 * descr-text.el (describe-char-unicode-data)
18184 (describe-char-unicodedata-file): Re-enable the unicode code now that
18185 the licensing issues have been cleared in the unicode-4 license.
18186 (describe-text-properties-1): Remove unused `overlay' var.
18187 (describe-char): Remove unused var `buffer'.
18188
18189 2004-05-14 David Ponce <david@dponce.com>
18190
18191 * tree-widget.el: New file.
18192
18193 2004-05-13 Marcelo Toledo <marcelo@gnu.org>
18194
18195 * language/european.el ("Brazilian Portuguese"): Add support for
18196 Brazilian Portuguese.
18197
18198 2004-05-13 John Wiegley <johnw@newartisans.com>
18199
18200 * iswitchb.el (iswitchb-use-virtual-buffers): Only turn on
18201 `recentf-mode' if this variable has been customized to t.
18202
18203 * eshell/esh-test.el (eshell-test): Call the function
18204 `emacs-version' rather than trying to build a custom version string.
18205
18206 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
18207
18208 * net/telnet.el (telnet-mode): Use define-derived-mode.
18209 Don't modify the global value of comint-prompt-regexp.
18210
18211 2004-05-13 John Paul Wallington <jpw@gnu.org>
18212
18213 * version.el (emacs-version): Check for `gtk' feature before
18214 `x-toolkit' feature.
18215
18216 2004-05-13 Juanma Barranquero <lektu@terra.es>
18217
18218 * files.el (file-truename): Don't mention COUNTER and PREV-DIRS
18219 arguments in the docstring, they're used only in recursive calls.
18220
18221 * help-fns.el (help-arg-highlighting-function)
18222 (help-argument-name): Delete.
18223 (help-default-arg-highlight): New function.
18224 (help-do-arg-highlighting): Use it.
18225
18226 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
18227
18228 * calendar/appt.el (appt-disp-window):
18229 Use `calendar-set-mode-line' for a centered mode-line.
18230
18231 2004-05-13 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
18232
18233 * calendar/appt.el (appt-disp-window): Do not split window
18234 excessively when `split-height-threshold' is low.
18235
18236 2004-05-12 Nick Roberts <nickrob@gnu.org>
18237
18238 * progmodes/gud.el (gud-mode): Add gud-kill-buffer-hook to
18239 kill-buffer-hook here and make it local.
18240 (gud-kill-buffer-hook): Use kill-process for a sure kill.
18241
18242 2004-05-12 Daniel Pfeiffer <occitan@esperanto.org>
18243
18244 * progmodes/compile.el (compilation-set-window-height):
18245 Use save-excursion to protect against misplaced marker.
18246
18247 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18248
18249 * custom.el (defface): Document that type can have value gtk.
18250
18251 * faces.el (face-spec-set-match-display): Handle type gtk in display.
18252
18253 2004-05-12 Kenichi Handa <handa@m17n.org>
18254
18255 * descr-text.el: Require quail at compile time.
18256 (describe-char): If an input method is on and it supports the
18257 character, show how to input it.
18258
18259 * international/quail.el (quail-install-decode-map): Accept a
18260 char-table whose subtype is `quail-decode-map'.
18261 (quail-store-decode-map-key, quail-gen-decode-map1)
18262 (quail-gen-decode-map, quail-find-key1, quail-find-key)
18263 (quail-show-key): New functions.
18264
18265 2004-05-12 Juanma Barranquero <lektu@terra.es>
18266
18267 * generic.el (define-generic-mode): Remove redundant arglist info.
18268
18269 * help-fns.el (help-split-fundoc, help-add-fundoc-usage):
18270 Make arguments match their use in docstring.
18271 (help-arg-highlighting-function): New variable.
18272 (help-argument-name): Mention it in the docstring.
18273 (help-do-arg-highlight): Use it. Expand regexp to accept also
18274 ARG-xxx and xxx-ARG references.
18275
18276 2004-05-11 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny change)
18277
18278 * mail/rfc2368.el (rfc2368-parse-mailto-url): Make the results of
18279 parsing "mailto:addr1%2C%20addr2", "mailto:?to=addr1%2C%20addr2",
18280 and "mailto:addr1?to=addr2" equal.
18281
18282 2004-05-11 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
18283
18284 * man.el (Man-getpage-in-background): Use shell-file-name
18285 and shell-command-switch variables instead of hard-coded values.
18286
18287 2004-05-11 Eli Zaretskii <eliz@gnu.org>
18288
18289 * iimage.el: New file.
18290
18291 2004-05-11 Juanma Barranquero <lektu@terra.es>
18292
18293 * custom.el (custom-initialize-default, defcustom):
18294 Fix typo in docstring.
18295
18296 * files.el (set-visited-file-name, file-expand-wildcards):
18297 Fix docstring.
18298
18299 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
18300
18301 * emacs-lisp/lisp-mode.el (prin1-char): Use eventp.
18302
18303 * subr.el (eventp): Be more discriminating with integers.
18304
18305 2004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
18306
18307 * progmodes/compile.el (compile): Add universal prefix arg.
18308 (compilation-error-regexp-alist-alist): Add edg patterns.
18309
18310 2004-05-10 Sam Steingold <sds@gnu.org>
18311
18312 * textmodes/ispell.el (ispell-message):
18313 Use `message-cite-prefix-regexp' instead of `message-yank-prefix'.
18314
18315 2004-05-10 Dave Love <fx@gnu.org>
18316
18317 * progmodes/python.el (help-buffer): Autoload when compiling.
18318 (python-after-info-look): Don't assume Info-goto-node returns non-nil.
18319 (run-python): Prepend to any existing PYTHONPATH.
18320
18321 2004-05-10 Nick Roberts <nick@nick.uklinux.net>
18322
18323 * progmodes/gdb-ui.el (gdb-annotation-rules): Add nquery annotation
18324 for pending breakpoints.
18325
18326 2004-05-10 Richard M. Stallman <rms@gnu.org>
18327
18328 * mail/unrmail.el (unrmail): Mostly rewritten. Parses the file
18329 directly without calling any functions in Rmail.
18330 (unrmail-unprune): Function deleted.
18331
18332 2004-05-10 Stefan Monnier <monnier@iro.umontreal.ca>
18333
18334 * progmodes/python.el (inferior-python-mode-map): Remove erroneous
18335 C-c C-z binding.
18336
18337 2004-05-10 Kenichi Handa <handa@m17n.org>
18338
18339 * descr-text.el (describe-char): Fix previous change. Don't make
18340 a unibyte character to multibyte in the *Help* buffer.
18341
18342 2004-05-10 Miles Bader <miles@gnu.org>
18343
18344 * lisp/progmodes/gud.el (gud-common-init): Only consider an existing
18345 buffer an error if the debugger process is actually running.
18346
18347 2004-05-10 Juanma Barranquero <lektu@terra.es>
18348
18349 * help-fns.el (help-argument-name): Default to italic.
18350 (help-highlight-arguments): Return always (usage . doc), even when
18351 usage is nil.
18352
18353 * ibuf-macs.el (define-ibuffer-column, define-ibuffer-sorter)
18354 (define-ibuffer-filter): Add usage info.
18355 (define-ibuffer-op): Add usage info (but CL-style defaults for
18356 keyword args are not shown).
18357
18358 * subr.el (remove-overlays, read-passwd): Fix docstring.
18359 (start-process-shell-command): Fix docstring. Put usage info in a
18360 format usable by `describe-function'.
18361 (open-network-stream, open-network-stream-nowait)
18362 (open-network-stream-server): Fix docstring.
18363
18364 2004-05-09 Jason Rumney <jasonr@gnu.org>
18365
18366 * international/code-pages (cp932, cp936, cp949, c950): Remove.
18367 Only define cp125* if windows-125* is already defined.
18368
18369 * language/korean.el (cp949): Add alias.
18370
18371 * language/chinese.el (cp936, cp950): Add aliases.
18372
18373 * language/japanese.el (cp932): Add alias.
18374
18375 * term/w32-win.el: Require code-pages.
18376
18377 * international/mule-cmds.el (set-locale-environment):
18378 On MS-Windows use ansi code-page for default coding-systems.
18379 Set up paper sizes for Windows 3 letter languages.
18380
18381 * international/code-pages.el (cp932, cp936, cp949, cp950):
18382 Add aliases. Also add cp125* if not already defined.
18383
18384 2004-05-09 Juanma Barranquero <lektu@terra.es>
18385
18386 * help-fns.el (help-highlight-arguments): Don't try to highlight
18387 missing or autoloaded arglists. Accept structured arguments, like
18388 the first ones of `do' and `flet'.
18389
18390 * pcvs.el (cvs-mode-run, cvs-is-within-p): Fix typo in docstring.
18391 (cvs-get-marked): Remove redundant arglist info.
18392
18393 * net/quickurl.el (quickurl, quickurl-browse-url, quickurl-read):
18394 Don't use CL-style default args.
18395
18396 2004-05-08 Andreas Schwab <schwab@suse.de>
18397
18398 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fix.
18399
18400 * international/subst-ksc.el: Fix references to utf-translate-cjk
18401 into utf-translate-cjk-mode.
18402 * international/subst-big5.el: Likewise.
18403 * international/subst-gb2312.el: Likewise.
18404 * international/subst-jis.el: Likewise.
18405 * international/utf-16.el: Likewise.
18406 * international/utf-8.el: Likewise.
18407
18408 2004-05-08 John Wiegley <johnw@newartisans.com>
18409
18410 * iswitchb.el (iswitchb-use-virtual-buffers): Add support for
18411 "virtual buffers" (off by default), which makes it possible to
18412 switch to the "virtual" buffers of recently visited files. When a
18413 buffer name search fails, and this option is on, iswitchb will
18414 look at the list of recently visited files, and permit matching
18415 against those names. When the user hits RET on a match, it will
18416 revisit that file.
18417 (iswitchb-read-buffer): Add two optional arguments, which makes
18418 isearchb.el possible.
18419 (iswitchb-completions, iswitchb-set-matches, iswitchb-prev-match)
18420 (iswitchb-next-match): Add support for virtual buffers.
18421
18422 * isearchb.el: This module extends iswitchb to provide "as you
18423 type" buffer selection.
18424
18425 * textmodes/flyspell.el (flyspell-highlight-incorrect-region):
18426 Ignore the read-only property when flyspell highlighting is on.
18427 Not ignoring it leads to a series of confusing errors.
18428 (flyspell-highlight-duplicate-region): Ignore read-only, as above,
18429 but also make sure to call flyspell-incorrect-hook.
18430 (flyspell-maybe-correct-transposition): Perform transposition test
18431 by bit twiddling a string, rather than using a temp buffer.
18432 (flyspell-maybe-correct-doubling): Use a string rather than a temp
18433 buffer. This is also the original version of the code, which
18434 could not be checked in before due to a previous lack of
18435 assignment papers. This version has seen heavy usage on my system
18436 for several years now.
18437
18438 * calendar/cal-bahai.el: New file, which adds support for the
18439 Baha'i calendar to Emacs. This calendar is based on a solar year
18440 of 19 months of 19 days, with 4 intercalary days. Each year
18441 begins on March 21, with the calendar starting in 1844.
18442
18443 * calendar/cal-menu.el, calendar/calendar.el
18444 * calendar/diary-lib.el, calendar/holidays.el:
18445 Added support for using cal-bahai.el.
18446
18447 * eshell/em-glob.el (eshell-glob-initialize): Move initialization
18448 of `eshell-glob-chars-regexp' into `eshell-glob-regexp', so that
18449 function can be used outside of eshell buffers.
18450 (eshell-glob-regexp): Initialize `eshell-glob-chars-regexp' here.
18451
18452 2004-05-08 Juanma Barranquero <lektu@terra.es>
18453
18454 * help-fns.el (help-do-arg-highlight): Temporarily set ?\- to be a
18455 word constituent so FOO-ARG is not recognized as an arg.
18456 (help-highlight-arguments): Don't skip lists in mandatory arguments.
18457
18458 * simple.el (next-error): Fix typo in docstring.
18459 (open-line): Make argument names match their use in docstring.
18460 (split-line): Fix docstring.
18461
18462 * emacs-lisp/cl-macs.el (do, do*): Put usage info in a format
18463 usable by `describe-function'.
18464 (gensym, gentemp, typep, ignore-errors): Make argument names match
18465 their use in docstring.
18466
18467 * progmodes/python.el (python-describe-symbol): Pass INTERACTIVE-P
18468 argument to `help-setup-xref'.
18469
18470 2004-05-07 Kai Grossjohann <kai@emptydomain.de>
18471
18472 Version 2.0.40 of Tramp released.
18473
18474 * net/tramp.el (tramp-completion-mode, tramp-md5-function):
18475 Use symbol-function to invoke functions only known on some Emacs
18476 flavors. This avoids byte-compiler warnings. Reported by Kevin
18477 Scaldeferri <kevin@scaldeferri.com>.
18478 (tramp-do-copy-or-rename-file-via-buffer): Rename from
18479 tramp-do-copy-or-rename-via-buffer (without `file'), to make it
18480 consistent with the other tramp-do-* functions.
18481 (tramp-do-copy-or-rename-file): Calls adjusted.
18482 (tramp-process-initial-commands): Avoid liveness check on shell --
18483 we know that it must be alive since we're opening a connection at
18484 this moment.
18485 (tramp-last-cmd): New internal variable.
18486 (tramp-process-echoes): New tunable.
18487 (tramp-send-command): Set tramp-last-cmd.
18488 (tramp-wait-for-output): Delete echo, if applicable.
18489 (tramp-read-passwd): Construct the key for the password cache in a
18490 way that works for multi methods, too.
18491 (tramp-bug): Add backup-directory-alist and
18492 bkup-backup-directory-info to bug reports, with Tramp counterparts.
18493
18494 2004-05-07 Michael Albinus <michael.albinus@gmx.de>
18495
18496 * net/tramp*.el: Suppress byte-compiler warnings where possible.
18497
18498 * net/tramp.el (tramp-out-of-band-prompt-regexp)
18499 (tramp-actions-copy-out-of-band): New defcustoms.
18500 (tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
18501 used instead of a synchronous one. Allows password entering.
18502 (tramp-action-out-of-band): New defun.
18503 (tramp-open-connection-rsh, tramp-method-out-of-band-p):
18504 Remove restriction with password from doc string.
18505 (tramp-bug): Add variables `tramp-terminal-prompt-regexp',
18506 `tramp-out-of-band-prompt-regexp',
18507 `tramp-actions-copy-out-of-band', `password-cache' and
18508 `password-cache-expiry'.
18509 (toplevel): Remove todo item wrt ssh-agent. Obsolete due to
18510 password caching.
18511 (tramp-touch): FILE can be a local file, too.
18512 (TODO): Remove items done.
18513 (tramp-handle-insert-directory): Properly quote file name also if
18514 not full-directory-p. Handle wildcard case. Reported by Andreas
18515 Schwab <schwab@suse.de>.
18516 (tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
18517 new file.
18518 (tramp-handle-file-local-copy, tramp-handle-write-region):
18519 The permissions of the temporary file are set if filename exists.
18520 Reported by Ted Stern <stern@cray.com>.
18521 (tramp-backup-directory-alist)
18522 (tramp-bkup-backup-directory-info): New defcustoms.
18523 (tramp-file-name-handler-alist): Add entry for `find-backup-file-name'.
18524 (tramp-handle-find-backup-file-name): New function.
18525 Implements Tramp's find-backup-file-name.
18526
18527 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
18528 for `find-backup-file-name'.
18529
18530 * net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
18531 ("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
18532
18533 2004-05-07 Lars Hansen <larsh@math.ku.dk>
18534
18535 * desktop.el (desktop-buffer-mode-handlers): Fix docstring.
18536
18537 2004-05-07 Juanma Barranquero <lektu@terra.es>
18538
18539 * subr.el (lambda): Add arglist description to docstring.
18540 (declare): Fix typo in docstring.
18541 (open-network-stream): Fix docstring.
18542 (process-kill-without-query): Fix docstring and add obsolescence info.
18543 (last, butlast, nbutlast): Make arguments match their use in docstring.
18544 (insert-buffer-substring-no-properties): Likewise.
18545 (insert-buffer-substring-as-yank): Likewise.
18546 (split-string): Fix docstring.
18547
18548 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18549 Make argument names match their use in docstring.
18550
18551 * emacs-lisp/re-builder.el (reb-auto-update): Fix typo in docstring.
18552
18553 2004-05-06 Nick Roberts <nickrob@gnu.org>
18554
18555 * progmodes/gdb-ui.el: Improve/extend documentation strings.
18556 Fit first sentence on one line for apropos-command.
18557
18558 2004-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
18559
18560 Changes largely merged in from Dave Love's code.
18561 * progmodes/python.el: Doc fixes.
18562 (python-mode-map): Add python-complete-symbol.
18563 (python-comment-line-p, python-beginning-of-string): Use syntax-ppss.
18564 (python-comment-indent, python-complete-symbol)
18565 (python-symbol-completions, python-partial-symbol)
18566 (python-try-complete): New.
18567 (python-indent-line): Remove optional arg. Use python-block-end-p.
18568 (python-check): Bind compilation-error-regexp-alist.
18569 (inferior-python-mode): Use rx. Move keybindings to top level.
18570 Set comint-input-filter.
18571 (python-preoutput-filter): Use rx.
18572 (python-input-filter): Re-introduce.
18573 (python-proc): Start new process if necessary.
18574 Check python-buffer non-nil.
18575 (view-return-to-alist): Defvar.
18576 (python-send-receive): New.
18577 (python-eldoc-function): Use it.
18578 (python-mode-running): Don't defvar.
18579 (python-mode): Set comment-indent-function.
18580 Maybe update hippie-expand-try-functions-list.
18581 (python-indentation-levels): Initialize differently.
18582 (python-block-end-p): New.
18583 (python-indent-line): Use it.
18584 (python-compilation-regexp-alist): Augment.
18585 (run-python): Import `emacs' module to Python rather than loading
18586 code directly. Set python-buffer differently.
18587 (python-send-region): Use emacs.eexecfile. Fix orig-start calculation.
18588 Use python-proc.
18589 (python-send-command): Go to end of comint buffer.
18590 (python-load-file): Use python-proc, emacs.eimport.
18591 (python-describe-symbol): Simplify interactive form.
18592 Use emacs.help. Do use temp-buffer-show-hook.
18593 Call print-help-return-message.
18594 (hippie-exp): Require when compiling.
18595 (python-preoutput-continuation): Use rx.
18596
18597 * diff-mode.el (diff-make-unified): Fix regexp.
18598
18599 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
18600
18601 * ibuffer.el (ibuffer-redisplay-engine): Do not remove folded
18602 filter groups from the buffer when rebuilding the Ibuffer buffer
18603 and `ibuffer-show-empty-filter-groups' is nil.
18604
18605 2004-05-06 Vinicius Jose Latorre <viniciusjl@ig.com.br>
18606
18607 * ps-print.el (ps-print-quote): Call ps-value-string.
18608 (ps-setup): Call ps-comment-string.
18609 (ps-value-string, ps-comment-string): New funs.
18610
18611 2004-05-06 Juanma Barranquero <lektu@terra.es>
18612
18613 * ehelp.el (electric-help-command-loop): Check whether the last
18614 character is visible, not (point-max).
18615
18616 * help-fns.el (help-argument-name): Default to bold; don't inherit
18617 from font-lock-variable-name-face.
18618 (help-do-arg-highlight): Grok also ARGth occurrences in the docstring.
18619
18620 2004-05-05 Kenichi Handa <handa@m17n.org>
18621
18622 * descr-text.el (describe-char): Copy the character with text
18623 properties and overlays into the first line, and call
18624 describe-text-properties on it.
18625
18626 2004-05-05 Stephen Eglen <stephen@anc.ed.ac.uk>
18627
18628 * iswitchb.el (iswitchb-global-map): Fix typo.
18629 Remove unwanted ###autoloads from source file.
18630
18631 2004-05-05 Lars Hansen <larsh@math.ku.dk>
18632
18633 * wdired.el (wdired-change-to-wdired-mode): Quote wdired-mode-hook
18634 in run-hooks. Use substitute-command-keys in message.
18635 (wdired-abort-changes): Add message.
18636
18637 2004-05-03 Michael Mauger <mmaug@yahoo.com>
18638
18639 * emacs/lisp/progmodes/sql.el (sql-xemacs-p, sql-emacs19-p)
18640 (sql-emacs20-p): Remove.
18641 (sql-mode-syntax-table): Use shared GNU Emacs/XEmacs syntax.
18642 (sql-builtin-face, sql-doc-face): Remove.
18643 (sql-mode-ansi-font-lock-keywords)
18644 (sql-mode-oracle-font-lock-keywords)
18645 (sql-mode-postgres-font-lock-keywords)
18646 (sql-mode-linter-font-lock-keywords)
18647 (sql-mode-ms-font-lock-keywords)
18648 (sql-mode-mysql-font-lock-keywords): Use standard fonts.
18649 (sql-product-font-lock): Fix font-lock reset when font rules change.
18650 (sql-highlight-product): Remove incorrect font-lock reset logic.
18651
18652 2004-05-04 Jonathan Yavner <jyavner@member.fsf.org>
18653
18654 * ses.el (ses-set-parameter): Fix typo.
18655
18656 2004-05-04 Kim F. Storm <storm@cua.dk>
18657
18658 * ido.el (ido-read-internal): Fix call to read-file-name for edit.
18659 Must expand directory for completion to work; and don't mess with
18660 process-environment.
18661 (ido-read-file-name): If command has ido property, don't use ido
18662 if value is ignore, or read as directory if value is dir.
18663 Set ido ignore property for dired-do-rename command.
18664
18665 2004-05-04 Juanma Barranquero <lektu@terra.es>
18666
18667 * ehelp.el (electric-help-command-loop, electric-help-undefined)
18668 (electric-help-help): Check against unmapped commands.
18669
18670 * help-fns.el (help-argument-name): New face, inheriting from
18671 font-lock-variable-name-face, to highlight function arguments in
18672 `describe-function' and `describe-key'.
18673 (help-do-arg-highlight): Auxiliary function to highlight a given
18674 list of arguments in a string.
18675 (help-highlight-arguments): Highlight the function arguments and
18676 all uses of them in the docstring.
18677 (describe-function-1): Use it. Do docstring output via `insert',
18678 not 'princ', so text attributes are preserved.
18679
18680 * winner.el (winner-mode-map): Move `winner-undo' and
18681 `winner-redo' to C-c <left> and C-c <right>, respectively (the
18682 previous bindings conflict with `prev-buffer', `next-buffer').
18683
18684 2004-05-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
18685
18686 * textmodes/bibtex.el (bibtex-progress-message): Fix docstring.
18687 (bibtex-entry-update): New command bound to C-c C-u.
18688 (bibtex-text-in-string): Fix regexp.
18689 (bibtex-assoc-of-regexp): Remove.
18690 (bibtex-progress-message): Fix docstring.
18691 (bibtex-inside-field): Use if.
18692 (bibtex-assoc-regexp): New function.
18693 (bibtex-format-entry): Make code more robust so that it formats
18694 also old entries.
18695 (bibtex-autokey-demangle-title): Merge with obsolete function
18696 bibtex-assoc-of-regexp.
18697 (bibtex-field-list): New function.
18698 (bibtex-entry): Use bibtex-field-list.
18699 (bibtex-parse-entry): Fix docstring.
18700 (bibtex-print-help-message): Use bibtex-field-list.
18701 (bibtex-make-field): Use bibtex-field-list.
18702 (bibtex-entry-index): Bugfix. Return crossref key if required.
18703 (bibtex-lessp): Fix docstring.
18704
18705 2004-05-03 Luc Teirlinck <teirllm@auburn.edu>
18706
18707 * select.el (xselect-convert-to-string): Move comment to intended line.
18708
18709 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18710
18711 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
18712 cut/copy/paste in case menu-bar-enable-clipboard is in effect.
18713
18714 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18715
18716 * term/x-win.el (x-clipboard-yank): Don't exit on error from
18717 x-get-selection.
18718
18719 2004-05-03 Jason Rumney <jasonr@gnu.org>
18720
18721 * makefile.nt: Remove.
18722
18723 2004-05-03 Kim F. Storm <storm@cua.dk>
18724
18725 * emulation/cua-base.el (cua--update-indications): Fix last change.
18726 (cua-mode): Deactivate mark when cua-mode is enabled.
18727
18728 2004-05-02 Luc Teirlinck <teirllm@auburn.edu>
18729
18730 * select.el (xselect-convert-to-string): Bind `inhibit-read-only' to t.
18731
18732 2004-05-03 Nick Roberts <nickrob@gnu.org>
18733
18734 * progmodes/gdb-ui.el (gud-watch, gdb-display-buffer)
18735 (gdb-display-source-buffer, gdb-put-breakpoint-icon)
18736 (gdb-remove-breakpoint-icons, gdb-assembler-custom): Look for
18737 window over visible frames.
18738 (gdb-goto-breakpoint): Make buffer display file at breakpoint.
18739
18740 2004-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
18741
18742 * progmodes/compile.el (compilation-gcpro): New var.
18743 (compilation-fake-loc): Use it.
18744 (compilation-forget-errors): Reset it.
18745
18746 2004-05-02 Dan Nicolaescu <dann@ics.uci.edu>
18747
18748 * diff-mode.el (diff-header-face, diff-file-header-face):
18749 Use min-colors.
18750
18751 2004-05-02 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
18752
18753 * textmodes/bibtex.el (bibtex-sort-buffer): Remove error message.
18754 (bibtex-clean-entry): Disentangle code.
18755 (bibtex-realign): New function.
18756 (bibtex-reformat): Use mapcar and bibtex-realign. Do not use
18757 bibtex-beginning-of-first-entry and bibtex-skip-to-valid-entry.
18758 Remove undocumented optional arg called-by-convert-alien.
18759 (bibtex-convert-alien): Use bibtex-realign. Use bibtex-reformat
18760 for sorting instead of bibtex-sort-buffer.
18761
18762 2004-05-02 Eli Zaretskii <eliz@gnu.org>
18763
18764 * progmodes/compile.el (compilation-start): In the
18765 no-async-subprocesses branch, call sit-for to give redisplay a
18766 chance to show the updated process status in the mode line, and
18767 fontify the buffer explicitly after the process exits.
18768
18769 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
18770
18771 * progmodes/python.el (python-compilation-line-number): Remove.
18772 (python-compilation-regexp-alist): Don't use it any more.
18773 (python-orig-start, python-input-filter): Remove.
18774 (inferior-python-mode): Don't set up comint-input-filter-functions.
18775 (python-send-region): Use compilation-fake-loc.
18776
18777 * progmodes/compile.el (compilation-messages-start): New var.
18778 (compilation-mode): Don't setup next-error-function here.
18779 (compilation-setup): Set it up here instead (for minor modes as well).
18780 Make compilation-messages-start buffer local.
18781 (compilation-next-error-function): Use it.
18782 (compilation-forget-errors): Set compilation-messages-start.
18783
18784 2004-05-01 Luc Teirlinck <teirllm@auburn.edu>
18785
18786 * ielm.el (ielm-prompt-read-only): Update docstring.
18787
18788 * comint.el (comint-prompt-read-only): Update docstring.
18789 (comint-update-fence, comint-kill-whole-line)
18790 (comint-kill-region): New functions.
18791
18792 * simple.el (kill-whole-line): Use "p" instead of "P" in
18793 interactive form.
18794
18795 2004-05-01 Juanma Barranquero <lektu@terra.es>
18796
18797 * help-fns.el (help-add-fundoc-usage): Use %S instead of %s to
18798 format arglist so default values in CL-style argument lists are
18799 correctly shown.
18800
18801 2004-05-01 Jason Rumney <jasonr@gnu.org>
18802
18803 * term/w32-win.el (w32-drag-n-drop): Use x-dnd.el functions.
18804
18805 2004-05-01 Kenichi Handa <handa@m17n.org>
18806
18807 * international/titdic-cnv.el (miscdic-convert): Don't generate a
18808 quail file if it is up to date.
18809
18810 2004-04-30 Juri Linkov <juri@jurta.org>
18811
18812 * cus-edit.el (custom-mode-map):
18813 Add key binding `C-x C-s' to `Custom-save'.
18814
18815 * outline.el (outline-blank-line): New var.
18816 (outline-next-preface, outline-show-heading)
18817 (outline-end-of-subtree): Use it.
18818
18819 * dired-aux.el (dired-touch-initial): New fun.
18820 (dired-do-chxxx): Call it for op-symbol `touch'.
18821 (dired-diff): Use `dired-dwim-target-directory'
18822 if current dired buffer has no buffer mark.
18823
18824 * bindings.el (propertized-buffer-identification):
18825 Replace `(:weight bold)' by `Buffer-menu-buffer-face'.
18826 Add C-M-arrow keys for consistency.
18827
18828 * files.el (confirm-kill-emacs):
18829 Change group from top-level `emacs' to `convenience'.
18830
18831 * emacs-lisp/lisp.el (beginning-of-defun, end-of-defun):
18832 Push mark on the first call of successive command calls.
18833 (insert-pair): New fun created from `insert-parentheses' with
18834 `open' and `close' arguments added. Enclose active regions
18835 in paired characters. Compare adjacent characters syntax with
18836 inserted characters syntax before inserting a space.
18837 (insert-parentheses): Call `insert-pair' with ?\( ?\).
18838
18839 * delsel.el: Don't put `delete-selection' property
18840 on `insert-parentheses' symbol to take advantage of
18841 region handling in `insert-pair' function.
18842 Suggested by Stephan Stahl <stahl@eos.franken.de>.
18843
18844 2004-04-30 Kim F. Storm <storm@cua.dk>
18845
18846 * emulation/cua-base.el: Add support for changing cursor types;
18847 based on patch from Michael Mauger.
18848 (cua-normal-cursor-color, cua-read-only-cursor-color)
18849 (cua-overwrite-cursor-color, cua-global-mark-cursor-color):
18850 Customization cursor type and/or cursor color.
18851 (cua--update-indications): Handle cursor type changes.
18852 (cua-mode): Update cursor indications if enabled.
18853
18854 * menu-bar.el (menu-bar-options-menu): Change menu text for CUA.
18855
18856 * mouse.el (mouse-drag-copy-region): New defcustom.
18857 (mouse-set-region, mouse-drag-region-1): Use it.
18858
18859 * simple.el (kill-ring-save): If region face background color is
18860 unspecified (if no highlighting), show extent of fully visible
18861 region even if transient-mark-mode is enabled.
18862
18863 * emulation/cua-base.el (cua--standard-movement-commands):
18864 Add cua-scroll-up and cua-scroll-down.
18865 (cua-scroll-up, cua-scroll-down): New commands.
18866 (cua--init-keymaps): Remap scroll-up and scroll-down.
18867
18868 * emulation/cua-rect.el (cua--convert-rectangle-as):
18869 New defmacro.
18870 (cua-upcase-rectangle, cua-downcase-rectangle): Use it.
18871 (cua-upcase-initials-rectangle, cua-capitalize-rectangle):
18872 New commands (suggested by Jordan Breeding).
18873
18874 2004-04-30 Juanma Barranquero <lektu@terra.es>
18875
18876 * smerge-mode.el (smerge-diff-switches): Fix typo in docstring.
18877
18878 2004-04-30 Mario Lang <mlang@delysid.org>
18879
18880 * diff.el (diff-switches): Fix typo in docstring.
18881
18882 2004-04-30 Alex Schroeder <alex@gnu.org>
18883
18884 * xml.el (xml-debug-print-internal): Don't add newline and
18885 indentation to text nodes and write empty elements as empty tags
18886 instead of opening and closing tags.
18887 (xml-debug-print): Take optional indent-string argument.
18888 (xml-print): Alias for xml-debug-print.
18889
18890 2004-04-30 Glenn Morris <gmorris@ast.cam.ac.uk>
18891
18892 * progmodes/fortran.el (fortran-fill): Use local var `bol' rather
18893 than duplicate call to `line-beginning-position'.
18894
18895 * progmodes/f90.el (f90-get-present-comment-type):
18896 Return whitespace, as well as comment chars, for consistent filling
18897 of comment blocks. Use `match-string-no-properties'.
18898 (f90-break-line): Trim trailing whitespace when filling comments.
18899
18900 2004-04-30 Dave Love <fx@gnu.org>
18901
18902 * calendar/diary-lib.el (diary-outlook-formats): New variable.
18903 (diary-from-outlook-internal, diary-from-outlook)
18904 (diary-from-outlook-gnus, diary-from-outlook-rmail):
18905 New functions to import diary entries from Outlook-format
18906 appointments in mail messages.
18907
18908 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
18909
18910 * progmodes/python.el (python-send-command): New fun.
18911 (python-send-region, python-load-file): Use it.
18912
18913 * progmodes/compile.el (compilation-last-buffer): Add var alias.
18914
18915 * help-fns.el (help-C-file-name): Use new subr-name.
18916 Prepend `src/' to the file name.
18917 (help-C-source-directory, help-subr-name, help-find-C-source): Remove.
18918 (describe-function-1, describe-variable): Only find a C source file
18919 name if DOC is already loaded.
18920
18921 * help-mode.el (help-function-def, help-variable-def):
18922 Use the new find-function-search-for-symbol functionality.
18923 Allow FILE to be `C-source'.
18924
18925 * emacs-lisp/find-func.el (find-function-C-source-directory): New var.
18926 (find-function-C-source): New fun.
18927 (find-function-search-for-symbol): Use it.
18928
18929 2004-03-29 Michael Mauger <mmaug@yahoo.com>
18930
18931 * progmodes/sql.el (sql-product-alist): Rename variable
18932 `sql-product-support'. Add Postgres login parameters.
18933 (sql-set-product, sql-product-feature): Update with renamed variable.
18934 (sql-connect-postgres): Add username prompt.
18935 (sql-imenu-generic-expression, sql-mode-font-lock-object-name):
18936 Make patterns less product specific.
18937 (sql-xemacs-p, sql-emacs19-p): Add flags for Emacs variants.
18938 (sql-mode-abbrev-table): Modify initialization.
18939 (sql-builtin-face): Add variable.
18940 (sql-keywords-re): Add macro.
18941 (sql-mode-ansi-font-lock-keywords): Update for ANSI-92.
18942 (sql-mode-oracle-font-lock-keywords): Update for Oracle 9i.
18943 (sql-mode-postgres-font-lock-keywords): Update for Postgres 7.3.
18944 (sql-mode-mysql-font-lock-keywords): Update for MySql 4.0.
18945 (sql-mode-linter-font-lock-keywords)
18946 (sql-mode-ms-font-lock-keywords): Use `sql-keywords-re' macro.
18947 (sql-mode-sybase-font-lock-keywords)
18948 (sql-mode-informix-font-lock-keywords)
18949 (sql-mode-interbase-font-lock-keywords)
18950 (sql-mode-ingres-font-lock-keywords)
18951 (sql-mode-solid-font-lock-keywords)
18952 (sql-mode-sqlite-font-lock-keywords)
18953 (sql-mode-db2-font-lock-keywords): Default to nil.
18954 (sql-product-font-lock): Always highlight ANSI keywords.
18955 (sql-add-product-keywords): Made similar to `font-lock-add-keywords'.
18956 (sql-send-string): Add function.
18957
18958 2004-04-29 Dave Love <fx@gnu.org>
18959
18960 * progmodes/cfengine.el (cfengine-beginning-of-defun)
18961 (cfengine-end-of-defun): Ensure progress through buffer.
18962
18963 * info-look.el (cfengine-mode): Accept a terminal ().
18964
18965 2004-04-29 Juri Linkov <juri@jurta.org>
18966
18967 * isearch.el (isearch-mode-map): Bind \C-w to isearch-yank-word
18968 instead of isearch-yank-word-or-char. Add new key bindings for
18969 isearch-yank-char to \C-f, and isearch-del-char to \C-b.
18970 (isearch-del-char): New fun.
18971 (isearch-forward, isearch-edit-string): Update docstring.
18972 (isearch-yank-char): Doc fix.
18973 (isearch-other-meta-char): Restore point after scrolling.
18974
18975 * progmodes/compile.el (compilation-context-lines): Add nil option
18976 to disable compilation output window scrolling.
18977 (compilation-set-window): Use it.
18978
18979 * outline.el (outline-next-preface, outline-show-heading):
18980 Don't leave unhidden blank line before heading.
18981 (outline-end-of-subtree): Include last newline into subtree.
18982 (hide-entry): Leave point at beginning of heading instead of end.
18983 (outline-up-heading): Push mark for the first call of successive
18984 command calls.
18985
18986 2004-04-28 Luc Teirlinck <teirllm@auburn.edu>
18987
18988 * comint.el (comint-prompt-read-only): New variable.
18989 (comint-output-filter): Implement it.
18990
18991 * ielm.el (ielm-prompt-read-only, ielm-prompt): Update docstring.
18992 (ielm-prompt-internal): New variable.
18993 (ielm-font-lock-keywords): Remove irrelevant ielm-prompt keyword.
18994 (ielm-send-input): Delete unused variable `buf'.
18995 (ielm-eval-input): Use `ielm-prompt-internal'.
18996 (inferior-emacs-lisp-mode): Use new variables
18997 `comint-prompt-read-only' and `ielm-prompt-internal'.
18998 Get rid of obsolete variable `directory-sep-char'.
18999 (ielm): Use `zerop'.
19000
19001 2004-04-29 John Paul Wallington <jpw@gnu.org>
19002
19003 * thumbs.el (toplevel): Require cl at compile time.
19004 Remove conditional definitions of `ignore-errors' and `caddar'
19005 because they occur at run time.
19006
19007 2004-04-28 Nick Roberts <nickrob@gnu.org>
19008
19009 * progmodes/gdb-ui.el (gdb-frame-breakpoints-buffer)
19010 (gdb-frame-assembler-buffer, gdb-frame-threads-buffer)
19011 (gdb-frame-registers-buffer, gdb-frame-locals-buffer)
19012 (gdb-frame-gdb-buffer, gdb-frame-stack-buffer): Use selected-window.
19013
19014 * progmodes/gud.el (gud-common-init): Throw an error if program is
19015 already running under gdb.
19016
19017 2004-04-28 John Paul Wallington <jpw@gnu.org>
19018
19019 * thumbs.el (thumbs-delete-images): Fix formatting of prompt.
19020 (thumbs-show-image-num): Move assignment of
19021 `thumbs-current-image-filename' within scope of `i'.
19022 (thumbs-emboss-image): Don't use `evenp'.
19023
19024 2004-04-28 Richard M. Stallman <rms@gnu.org>
19025
19026 * progmodes/compile.el (compilation-context-lines): Default now 0.
19027
19028 2004-04-28 Juanma Barranquero <lektu@terra.es>
19029
19030 Use `time-less-p' from calendar/time-date.el instead of defining
19031 custom versions of it.
19032
19033 * pcomplete.el (pcomplete-time-less-p): Remove.
19034
19035 * thumbs.el (time-less-p): Remove.
19036
19037 * calendar/timeclock.el (timeclock-time-less-p): Remove.
19038 (timeclock-generate-report): Use `time-less-p'.
19039
19040 * emacs-lisp/autoload.el (autoload-before-p): Remove.
19041 (update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
19042
19043 2004-04-28 Masatake YAMATO <jet@gyve.org>
19044
19045 * subr.el (remove-overlays): Make arguments optional.
19046
19047 * wid-edit.el (widget-specify-button): Put evaporate to the
19048 overlay for sample.
19049 (widget-specify-sample): Put evaporate to the overlay for sample.
19050 (widget-specify-doc): Put evaporate to the overlay for documentation.
19051
19052 2004-04-27 Jesper Harder <harder@ifa.au.dk>
19053
19054 * info.el (info-apropos): Make it an index node. Align node names
19055 like makeinfo.
19056
19057 2004-04-27 Eli Zaretskii <eliz@gnu.org>
19058
19059 * net/browse-url.el (browse-url-netscape-sentinel)
19060 (browse-url-mozilla-sentinel, browse-url-galeon-sentinel)
19061 (browse-url-epiphany-sentinel, browse-url-mosaic):
19062 Use browse-url-*-program instead of a literal program name.
19063
19064 2004-04-27 Kevin Ryde <user42@zip.com.au>
19065
19066 * eshell/em-alias.el:
19067 * eshell/em-dirs.el:
19068 * eshell/em-hist.el:
19069 * eshell/em-unix.el: Add "(require 'eshell)", to get necessary
19070 features when M-x customize-group loads modules before the main
19071 eshell.el.
19072
19073 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
19074
19075 * subr.el (momentary-string-display): Support EXIT-CHAR that is
19076 either a character representation of an event or an event
19077 description list.
19078
19079 * type-break.el: Capitalize Emacs and Lisp.
19080 (type-break-good-break-interval, type-break-demo-boring-stats)
19081 (type-break-terse-messages, type-break-file-name): New defcustoms.
19082 (type-break-post-command-hook)
19083 (type-break-warning-countdown-string): Quote variable names in doc.
19084 (type-break-interval-start, type-break-auto-save-file-name): New vars.
19085 (type-break-mode): Document type-break-good-break-interval and the
19086 "session" file. Schedule break according to the session file.
19087 Kill session file buffer on exit. Organize for save-some-buffers
19088 to always save the session file.
19089 (type-break-mode-line-message-mode, type-break-query-mode):
19090 Uppercase arguments.
19091 (type-break-file-time, type-break-file-keystroke-count, timep)
19092 (type-break-choose-file, type-break-get-previous-time)
19093 (type-break-get-previous-count): New defuns.
19094 (type-break): Avoid break querying after a completed break in the
19095 case where the query was initiated during user invocation of the
19096 break. Optional terse messages.
19097 Use type-break-good-break-interval if type-break-good-rest-interval is
19098 nil. File the break time.
19099 (type-break-schedule): New optional args for overriding the use of
19100 the current time.
19101 (type-break-cancel-time-warning-schedule): Avoid leftover warnings
19102 after a break.
19103 (type-break-check): File the keystroke count.
19104 (type-break-do-query): Prevent a second query when the break is
19105 interrupted. Optional terse message.
19106 (type-break-keystroke-reset): Record the start of a typing interval.
19107 (type-break-demo-boring): Optional terse messages. Display word
19108 per minute and keystroke counts according to
19109 type-break-demo-boring-stats.
19110
19111 2004-04-27 Daniel M Coffman <coffmand@us.ibm.com> (tiny change)
19112
19113 * arc-mode.el (archive-maybe-copy): If ARCHIVE includes leading
19114 directories, make sure they exist under archive-tmpdir.
19115
19116 2004-04-27 Juri Linkov <juri@jurta.org>
19117
19118 * help.el (view-emacs-news): With argument, display info for the
19119 selected version by finding it among different NEWS files, and
19120 narrowing the buffer to the selected version.
19121
19122 * info.el: Add *info*<[0-9]+> to same-window-regexps instead of
19123 same-window-buffer-names.
19124 (info): New arg `buffer'. Use it. Doc fix. Read file name for
19125 non-numeric prefix argument, append the number to the buffer name
19126 for numeric prefix argument.
19127 (info-other-window): Bind same-window-regexps to nil.
19128 (Info-reference-name): Rename to Info-point-loc.
19129 (Info-find-node-2): Call forward-line for numeric Info-point-loc,
19130 and Info-find-index-name for stringy Info-point-loc.
19131 (Info-extract-menu-node-name): New arg `index-node'. Use regexp
19132 without middle `.', but with final `.' and optional line number
19133 for it. Set Info-point-loc for index nodes.
19134 (Info-index): Remove middle `.' from index entry regexp.
19135 Modify line number regexp.
19136 (Info-index-next): Decrement line number.
19137 (info-apropos): Remove middle `.' from index entry regexp.
19138 Add optional line number regexp at the end. Add matched value
19139 for line number to the result list and insert it to the buffer.
19140 Replace match-string by match-string-no-properties.
19141 Reorder result list.
19142 (Info-fontify-node): Hide index line numbers.
19143 (Info-goto-node): Replace "\\s *\\'" by "\\s +\\'" to not trim
19144 empty matches.
19145 (Info-follow-reference): Use `str' instead of
19146 Info-following-node-name-re.
19147 (Info-toc): Use full file names. Set Info-current-node to "Top".
19148 (Info-fontify-node): Compare file names without directory name.
19149 (Info-try-follow-nearest-node): Don't set Info-reference-name.
19150 Set second arg of Info-extract-menu-node-name for index nodes.
19151 (info-xref-visited): Use magenta3 instead of magenta4.
19152 (Info-mode): Add info-apropos to docstring.
19153
19154 * log-view.el (log-view-diff): Replace interactive code "r"
19155 by a list to allow to call it even if region is not active.
19156
19157 * paren.el (show-paren-highlight-openparen): New var.
19158 (show-paren-function): Turn on openparen highlighting when
19159 matching forward if show-paren-highlight-openparen is non-nil.
19160
19161 * simple.el (kill-ring-save): Use blink-matching-delay instead of
19162 the constant value 1.
19163 (completions-common-part): Expand docstring.
19164
19165 * textmodes/picture.el (picture-mode-map): Add arrow keys.
19166
19167 2004-04-27 Kim F. Storm <storm@cua.dk>
19168
19169 * image.el (insert-sliced-image): Use line-height instead of
19170 line-spacing property on newline.
19171
19172 2004-04-26 Lars Hansen <larsh@math.ku.dk>
19173
19174 * desktop.el (desktop-buffer-misc-data-function): Rename to
19175 desktop-save-buffer and change docstring.
19176 (desktop-buffer-modes-to-save): Delete.
19177 (desktop-save-buffer-p): Use desktop-save-buffer instead of
19178 desktop-buffer-modes-to-save.
19179 (desktop-save): Rename desktop-buffer-misc-data-function to
19180 desktop-save-buffer and allow non-function value.
19181 (desktop-missing-file-warning): Correct docstring.
19182
19183 * dired.el (dired-mode): Rename desktop-buffer-misc-data-function
19184 to desktop-save-buffer.
19185
19186 * info.el (Info-mode): Rename desktop-buffer-misc-data-function to
19187 desktop-save-buffer.
19188
19189 * mail/rmail.el (rmail-variables): Bind desktop-save-buffer to t.
19190
19191 * mh-e/mh-e.el (mh-folder-mode): Bind desktop-save-buffer to t.
19192
19193 2004-04-26 Eli Zaretskii <eliz@gnu.org>
19194
19195 * progmodes/gud.el (gud-pdb-command-name): Change default to "pydb".
19196
19197 2004-04-25 Luc Teirlinck <teirllm@auburn.edu>
19198
19199 * ielm.el (ielm-prompt-read-only, ielm-prompt): Expand docstring.
19200 (ielm): Only go to the end of the buffer when starting a new process.
19201
19202 2004-04-25 Juanma Barranquero <lektu@terra.es>
19203
19204 * ielm.el (inferior-emacs-lisp-mode): Display working buffer on the
19205 mode line. Bind `inhibit-read-only' to t before modifying
19206 properties of text in the buffer.
19207 (ielm): Force point to the end of buffer, even when running ielm
19208 from inside itself.
19209
19210 2004-04-25 Jesper Harder <harder@ifa.au.dk>
19211
19212 * info.el (info-apropos): Reset Info-complete-cache.
19213
19214 2004-04-25 Daniel Pfeiffer <occitan@esperanto.org>
19215
19216 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19217 Also recognize severe Irix et al. messages.
19218 (compilation-normalize-filename, compile-abbreviate-directory):
19219 Delete functions.
19220 (compilation-get-file-structure): New function inherits
19221 functionality of the two preceding ones.
19222 (compilation-internal-error-properties, compilation-fake-loc):
19223 Use it so that different paths to the same file share the same
19224 markers. Also optimize finding adjacent marker slightly.
19225
19226 2004-04-25 Kim F. Storm <storm@cua.dk>
19227
19228 * image.el (insert-sliced-image): Add line-spacing t property
19229 to newlines separating image lines.
19230
19231 2004-04-24 Luc Teirlinck <teirllm@auburn.edu>
19232
19233 * comint.el (comint-delete-output): Bind inhibit-read-only to t.
19234
19235 * ielm.el (ielm-prompt-read-only): New user option.
19236 (ielm-prompt): Expand docstring to describe new behavior.
19237 (inferior-emacs-lisp-mode): Implement ielm-prompt-read-only and
19238 mention it in the docstring.
19239
19240 2004-04-24 Andreas Schwab <schwab@suse.de>
19241
19242 * progmodes/sh-script.el (sh-leading-keywords) <sh>: Add "!".
19243
19244 * diff.el (diff): Set default-directory in diff buffer.
19245
19246 2004-04-24 Eli Zaretskii <eliz@gnu.org>
19247
19248 * mail/sendmail.el (mail-bury): Don't delete the frame where the
19249 mail was being composed if the terminal cannot display more than
19250 one frame; instead, switch to previous frame.
19251
19252 * mail/rmail.el (rmail-mail-new-frame): Doc fix.
19253 (rmail-start-mail): Support rmail-mail-new-frame even on
19254 terminals that can display only one frame at a time.
19255
19256 2004-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
19257
19258 * emacs-lisp/checkdoc.el (checkdoc-output-error-regex-alist): New var.
19259 (checkdoc-output-font-lock-keywords): Remove error regexp.
19260 (checkdoc-output-mode-map): Remove.
19261 (checkdoc-output-mode): Derive from compilation-mode.
19262 (checkdoc-find-error-mouse, checkdoc-find-error): Remove.
19263
19264 * dired.el (dired-mode-map): Add a menu entry for wdired.
19265
19266 * emacs-lisp/rx.el (rx-syntax): Move sregex style syntax to code.
19267 (rx-bracket, rx-check-any, rx-any): Clean up name space.
19268
19269 * wdired.el (wdired-mode-map): Move init into declaration.
19270 Fix `return' binding.
19271 (wdired-change-to-wdired-mode, wdired-change-to-dired-mode):
19272 Use force-mode-line-update.
19273 (wdired-get-filename): Use `unless'.
19274 (wdired-preprocess-files): Don't assume names have no \n and use / for
19275 dir separator.
19276 (wdired-normalize-filename): Use replace-regexp-in-string.
19277 (wdired-load-hooks): Remove.
19278 (wdired-mode-hooks): Rename to wdired-mode-hook.
19279
19280 * info-look.el: Add support for cfengine-mode.
19281 (info-lookup-setup-mode): Use dolist.
19282
19283 2004-04-23 Juan Le\e,As\e(Bn Lahoz Garc\e,Am\e(Ba <juan-leon.lahoz@tecsidel.es>
19284
19285 * wdired.el: New file.
19286
19287 2004-04-23 Juanma Barranquero <lektu@terra.es>
19288
19289 * ielm.el (inferior-emacs-lisp-mode): Fix docstring.
19290
19291 * pcomplete.el (pcomplete-opt, pcomplete-actual-arg)
19292 (pcomplete-match-string, pcomplete-comint-setup, pcomplete-here)
19293 (pcomplete--help, pcomplete--here): Doc fixes.
19294
19295 2004-04-23 Andre Spiegel <spiegel@gnu.org>
19296
19297 * vc-hooks.el (vc-default-workfile-unchanged-p): Fix code that
19298 handles wrong-number-of-arguments in backend call.
19299
19300 * vc.el (vc-print-log): Likewise.
19301
19302 2004-04-20 Dave Love <fx@gnu.org>
19303
19304 * emacs-lisp/rx.el: Doc fixes.
19305 (rx-constituents): Add/extend many forms.
19306 (rx-check): Check form is a list.
19307 (bracket): Defvar.
19308 (rx-check-any, rx-any, rx-check-not): Modify.
19309 (rx-not): Simplify.
19310 (rx-trans-forms, rx-=, rx->=, rx-**, rx-not-char, rx-not-syntax): New.
19311 (rx-kleene): Use rx-trans-forms.
19312 (rx-quote-for-set): Delete.
19313 (rx): Allow multiple args.
19314
19315 2004-04-23 Kenichi Handa <handa@m17n.org>
19316
19317 * international/mule-util.el (char-displayable-p): Simplify by
19318 using internal-char-font.
19319
19320 2004-04-23 Juanma Barranquero <lektu@terra.es>
19321
19322 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
19323
19324 2004-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
19325
19326 * diff-mode.el (diff-next-error): New fun.
19327 (diff-mode): Use it.
19328
19329 * simple.el (next-error): Change arg name.
19330 Add support for the documented C-u C-x ` usage.
19331
19332 * frame.el (special-display-popup-frame, next-multiframe-window)
19333 (previous-multiframe-window): Only consider frames on same display.
19334
19335 2004-04-22 Lars Hansen <larsh@math.ku.dk>
19336
19337 * info.el (Info-restore-desktop-buffer): Delete with-no-warnings.
19338 * mh-e/mh-e.el (mh-restore-desktop-buffer): Delete with-no-warnings.
19339
19340 2004-04-22 Kim F. Storm <storm@cua.dk>
19341
19342 * net/telnet.el (telnet): Add optional port arg.
19343
19344 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
19345
19346 * progmodes/compile.el (compilation-mode-font-lock-keywords):
19347 Minor sanity check on the `hyperlink' slot.
19348
19349 * Makefile.in (recompile): Compile new files.
19350
19351 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
19352 Add byte-recompile-directory's optional `arg'.
19353
19354 * cvs-status.el (cvs-tree-use-charset): New var.
19355 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
19356 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
19357 (cvs-status-cvstrees): Use it.
19358
19359 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
19360 Make it a normal major mode.
19361 (checkdoc-buffer-label): Make sure the file name is meaningful.
19362 (checkdoc-output-to-error-buffer): Remove.
19363 (checkdoc-error, checkdoc-start-section): Rewrite.
19364
19365 * info.el (info-node, info-menu-5, info-xref, info-header-node)
19366 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
19367 (Info-title-4-face): Use new syntax.
19368 (info-xref-visited): Inherit from info-xref.
19369
19370 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
19371
19372 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
19373
19374 * simple.el (next-error-last-buffer, next-error-function):
19375 New variables for the next-error framework.
19376 (next-error-buffer-p): New function.
19377 (next-error-find-buffer): Generalize compilation-find-buffer.
19378 (next-error, previous-error, first-error, next-error-no-select)
19379 (previous-error-no-select): Move from compile.el.
19380
19381 * replace.el (occur-next-error, occur-1): Hook into the next-error
19382 framework.
19383
19384 * progmodes/compile.el (compilation-start):
19385 Set next-error-last-buffer so next-error knows where to jump.
19386 (compilation-setup): Set the buffer-local variable
19387 next-error-function to 'compilation-next-error-function.
19388 (compilation-buffer-p, compilation-buffer-internal-p): Use an
19389 alternate way to find if a buffer is a compilation buffer, for
19390 next-error convenience.
19391 (next-error-no-select, previous-error-no-select, next-error)
19392 (previous-error, first-error): Move to simple.el.
19393 (compilation-find-buffer): Move to next-error-find-buffer in simple.el.
19394 (compilation-last-buffer): Remove.
19395 (compilation-start, compilation-next-error, compilation-setup)
19396 (compilation-next-error-function, compilation-find-buffer):
19397 Remove compilation-last-buffer use.
19398
19399 2004-04-21 Juanma Barranquero <lektu@terra.es>
19400
19401 * font-lock.el (font-lock-preprocessor-face): Remove spurious quote.
19402 (font-lock-warning-face): Fix spacing.
19403
19404 * makefile.w32-in (WINS): Add url/ directory.
19405
19406 2004-04-21 Lars Hansen <larsh@math.ku.dk>
19407
19408 * desktop.el (desktop-buffer-mode-handlers): New variable.
19409 Alist of major mode specific functions to restore a desktop buffer.
19410 (desktop-buffer-handlers): Make variable obsolete.
19411 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
19412 Catch errors signaled in handlers. Update buffer count.
19413 Evaluate desktop-buffer-point.
19414 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
19415 move to dired.el.
19416 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
19417 move to info.el.
19418 (desktop-buffer-rmail): Rename to rmail-restore-desktop-buffer and
19419 move to mail/rmail.el.
19420 (desktop-buffer-mh): Rename to mh-restore-desktop-buffer and move
19421 to mh-e/mh-e.el.
19422 (desktop-buffer-file): Rename to desktop-restore-file-buffer.
19423 On fail, print message (to message buffer) even if
19424 desktop-missing-file-warning is nil.
19425 (desktop-buffer-misc-data-function): New buffer local variable.
19426 Function returning major mode specific data.
19427 (desktop-buffer-misc-functions): Make variable obsolete.
19428 (desktop-save): Use desktop-buffer-misc-data-function.
19429 (desktop-buffer-dired-misc-data): Rename to
19430 dired-desktop-buffer-misc-data and move to dired.el.
19431 (desktop-buffer-info-misc-data): Rename to
19432 Info-desktop-buffer-misc-data and move to info.el.
19433 (desktop-read): Add message about number of buffers restored/failed.
19434
19435 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
19436 Add parameters. Pause to display error only when
19437 desktop-missing-file-warning is non-nil.
19438 (dired-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
19439 (dired-mode): Bind desktop-buffer-misc-data-function.
19440
19441 * info.el (Info-restore-desktop-buffer): Move from desktop.el.
19442 Add Parameters.
19443 (Info-desktop-buffer-misc-data): Move from desktop.el. Add parameter.
19444 (Info-mode): Bind desktop-buffer-misc-data-function.
19445
19446 * mail/rmail.el (rmail-restore-desktop-buffer): Move from desktop.el.
19447 Add Parameters.
19448
19449 * mh-e/mh-e.el (mh-restore-desktop-buffer): Move from desktop.el.
19450 Add Parameters.
19451
19452 2003-04-21 Paul Pogonyshev <pogonyshev@gmx.net>
19453
19454 * dabbrev.el (dabbrev--substitute-expansion): Don't lose
19455 the case of letters in case-insensitive expansions when the
19456 abbrev is preceded by characters with letter syntax.
19457
19458 2004-04-21 Richard M. Stallman <rms@gnu.org>
19459
19460 * progmodes/cperl-mode.el (cperl-putback-char):
19461 Delete Emacs 18 definition.
19462
19463 * international/mule.el (ctext-post-read-conversion):
19464 Use assoc-string, not assoc-ignore-case.
19465
19466 * international/mule-cmds.el: Use assoc-string, not assoc-ignore-case.
19467
19468 * emacs-lisp/easymenu.el (easy-menu-add):
19469 Do call x-popup-menu, but only if it's defined.
19470
19471 * emacs-lisp/disass.el (disassemble): Handle lambda-exp as arg.
19472
19473 * emacs-lisp/bytecomp.el (byte-compile-no-warnings):
19474 Handle multiple args: compile like progn.
19475
19476 * emacs-lisp/byte-run.el (with-no-warnings): Simplify:
19477 take all args as &rest arg.
19478
19479 * autoinsert.el (auto-insert-alist): Insert the user's name in
19480 copyright notice, rather than Free Software Foundation.
19481
19482 2004-04-21 Kenichi Handa <handa@m17n.org>
19483
19484 * descr-text.el (describe-char): Make it work on *Help* buffer.
19485
19486 2004-04-21 Kim F. Storm <storm@cua.dk>
19487
19488 * image.el (insert-image): Add optional SLICE arg.
19489 (insert-sliced-image): New defun.
19490
19491 2004-04-20 Lawrence Mitchell <wence@gmx.li> (tiny change)
19492
19493 * subr.el (read-number): Check whether `default' is nil.
19494
19495 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19496
19497 * progmodes/compile.el (compilation-error-properties): Split into
19498 two.
19499 (compilation-internal-error-properties): New one.
19500 (compilation-compat-error-properties): Use it. Fix the non-marker
19501 case.
19502
19503 2004-04-20 Richard M. Stallman <rms@gnu.org>
19504
19505 * window.el (split-window-save-restore-data):
19506 Don't update the data if OLD-INFO is nil.
19507
19508 * view.el (view-return-to-alist): Mark it permanent local.
19509
19510 * subr.el (event-modifiers): Fix the criterion for ASCII control chars.
19511
19512 * recentf.el (recentf-save-list): Catch and warn about errors.
19513
19514 * menu-bar.el (menu-bar-update-buffers): Call copy-sequence
19515 so "Buffers" won't be pure.
19516
19517 * help-mode.el (help-mode-finish): Set help-return-alist first
19518 thing, setting only the entry for the selected window.
19519
19520 * help-fns.el (describe-function-1): If many non-control non-meta
19521 keys run the command, don't list all of them.
19522
19523 2004-04-20 Juanma Barranquero <lektu@terra.es>
19524
19525 * vc-svn.el (vc-svn-print-log, vc-svn-diff): Add optional BUFFER
19526 arg. Copied from Andre Spiegel's patch of 2004-03-21.
19527
19528 * calendar/time-date.el (time-to-day-in-year): Fix docstring.
19529
19530 2004-04-20 Kenichi Handa <handa@m17n.org>
19531
19532 * international/quail.el (quail-lookup-key): New optional arg
19533 NOT-RESET-INDICES.
19534 (quail-get-translations): Call quail-lookup-key with
19535 NOT-RESET-INDICES t.
19536 (quail-completion): Likewise.
19537 (quail-lookup-map-and-concat): Likewise.
19538
19539 2004-04-20 Kenichi Handa <handa@m17n.org>
19540
19541 * international/quail.el (quail-update-translation): Don't insert
19542 such an unsupported multibyte char in a unibyte buffer.
19543
19544 2004-04-20 Nick Roberts <nick@nick.uklinux.net>
19545
19546 * progmodes/gdb-ui.el (gdb-frame-parameters): New constant.
19547 (gdb-frame-breakpoints-buffer, gdb-frame-stack-buffer)
19548 (gdb-frame-threads-buffer, gdb-frame-registers-buffer)
19549 (gdb-frame-locals-buffer, gdb-frame-gdb-buffer)
19550 (gdb-frame-assembler-buffer): Improve behavior with
19551 multiple frames.
19552 (gdb-display-buffer): Extend search to all visible frames.
19553
19554 2004-04-19 Eli Zaretskii <eliz@gnu.org>
19555
19556 * mail/rmail.el (rmail-convert-to-babyl-format): Don't remove ^M
19557 characters left after base64 decoding.
19558 (rmail-decode-region): Use -dos variety of `coding', to remove any
19559 ^M characters left after qp or base64 decoding.
19560
19561 2004-04-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
19562
19563 * x-dnd.el (x-dnd-open-local-file, x-dnd-open-file): Improve error
19564 messages.
19565
19566 2004-04-19 Stephen Eglen <stephen@gnu.org>
19567
19568 * add-log.el (add-change-log-entry): Update doc string to mention
19569 add-log-full-name and add-log-mailing-address.
19570
19571 2004-04-18 Juri Linkov <juri@jurta.org>
19572
19573 * info.el (Info-find-file, Info-find-node-2): Add history and toc.
19574 (Info-find-node-2): Simplify error message.
19575 (Info-insert-dir): Use Info-following-node-name.
19576 (Info-goto-node): Remove *info-history* and *info-toc*.
19577 (Info-history): Create a node of the virtual history file.
19578 (Info-toc): Create a node of the virtual toc file.
19579 (Info-insert-toc): New arg `curr-file' for reference file names.
19580 (info-apropos): Remove redundant var binding for temp-file.
19581 (Info-index, Info-index-next, Info-mode): Doc fix.
19582 (Info-goto-emacs-command-node): Don't jump to *info* from
19583 non-*info* Info buffers.
19584 (Info-fontify-node): Don't show the file name of external
19585 references if `Info-hide-note-references' is `hide'. Don't hide
19586 newlines at the end of paragraphs.
19587
19588 * international/mule-diag.el (list-input-methods):
19589 Fix args to help-xref-button.
19590
19591 * help-fns.el (help-with-tutorial): Call `hack-local-variables'
19592 to put into effect local variables from TUTORIAL files.
19593
19594 * textmodes/paragraphs.el (sentence-end) <function>: New fun
19595 with default value taken from the variable `sentence-end'.
19596 (sentence-end) <defcustom>: Set default to nil. Doc fix.
19597 Add nil const to :type.
19598 (sentence-end-without-period, sentence-end-double-space)
19599 (sentence-end-without-space): Doc fix.
19600
19601 * textmodes/paragraphs.el (forward-sentence):
19602 * textmodes/fill.el (canonically-space-region, fill-nobreak-p)
19603 (fill-delete-newlines):
19604 * progmodes/cc-cmds.el (c-beginning-of-statement):
19605 Use function `sentence-end' instead of variable `sentence-end'.
19606
19607 2004-04-18 Andreas Schwab <schwab@suse.de>
19608
19609 * progmodes/compile.el (compilation-start): Set window start to
19610 point-min if compilation-scroll-output is nil.
19611
19612 2004-04-18 John Wiegley <johnw@newartisans.com>
19613
19614 * iswitchb.el (iswitchb-completions): Remove dependency on cl.
19615
19616 2004-04-18 Nick Roberts <nick@nick.uklinux.net>
19617
19618 * progmodes/gdb-ui.el (gdb-goto-info): Require 'info.
19619 (gdb-info-breakpoints-custom): Revert previous change.
19620 (gdb-view-assembler): Update assembler if necessary.
19621 (gdb-frame-handler): Parse correctly for gdb-current-frame.
19622 (gdb-display-source-buffer): Update properly when both source and
19623 assembler are visible.
19624
19625 2004-04-17 John Wiegley <johnw@newartisans.com>
19626
19627 * iswitchb.el (iswitchb-max-to-show): Add a new config variable
19628 which limits the number of names shown in the minibuffer. Off by
19629 default.
19630 (iswitchb-completions): Use `iswitchb-max-to-show'. This speeds
19631 up iswitchb for users with a multitude of open buffers by showing
19632 only the first and last N/2 buffers in the completion list (which
19633 is enough to aid C-s/C-r, and to know that more characters are
19634 needed to refine the completion list).
19635
19636 2004-04-17 Richard M. Stallman <rms@gnu.org>
19637
19638 * files.el (locate-file-completion): Handle nil in path-and-suffixes.
19639 (file-truename): Expand all ~ constructs directly.
19640 (insert-directory): Delete any error msg output by the
19641 `insert-directory-program'.
19642
19643 * allout.el (allout-mode-exposure-menu, allout-mode-editing-menu):
19644 (allout-mode-navigation-menu, allout-mode-misc-menu): New defvars.
19645 (allout-prior-bindings, allout-added-bindings): Defvars deleted.
19646 (allout-init): Use find-file-hook, not find-file-hooks.
19647 (allout-mode): Eliminate Emacs 18 support.
19648 Use write-contents-functions, not local-write-file-hooks.
19649
19650 2004-04-17 Daniel Pfeiffer <occitan@esperanto.org>
19651
19652 * progmodes/compile.el (compilation-error-properties): Fix for
19653 adding messages when there are already markers for their file.
19654 (compilation-fake-loc): New function.
19655
19656 2004-04-16 Dave Love <fx@gnu.org>
19657
19658 * progmodes/python.el (python-compilation-line-number): Fix
19659 braindamage.
19660 (python-load-file): Fix python-orig-start setting.
19661
19662 * progmodes/compile.el: Doc fixes.
19663 (compilation-error-regexp-alist-alist)
19664 (compilation-mode-font-lock-keywords): Allow non-ASCII where possible.
19665 (compilation-assq): Wrap in eval-when-compile.
19666 (compilation-mode-font-lock-keywords): Don't use list*.
19667 (compilation-start): Avoid warning.
19668 (compilation-compat-error-properties)
19669 (compilation-directory-properties): Add keymap property.
19670 (compilation-parsing-end): Make it a marker for better compatibility.
19671
19672 * progmodes/python.el (python-after-info-look): Use with-no-warnings.
19673
19674 2004-04-16 Mark A. Hershberger <mah@everybody.org>
19675
19676 * xml.el: Doc fixes.
19677 (xml-get-children): Only looks at sub-tags and ignore strings.
19678
19679 * xml.el (xml-parse-tag): Avoid overwriting node-name.
19680
19681 2004-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
19682
19683 * diff-mode.el (diff-end-of-hunk): Be more careful with unified hunks.
19684
19685 2004-04-16 Andre Spiegel <spiegel@gnu.org>
19686
19687 * vc-hooks.el (vc-default-workfile-unchanged-p): Quote signal.
19688
19689 * vc.el (vc-print-log): Likewise.
19690
19691 2004-04-16 Masatake YAMATO <jet@gyve.org>
19692
19693 * simple.el (completion-setup-function): Set an initial value to
19694 `element-common-end' before entering loop. Set a value to
19695 `element-common-end' at the end of loop. The bug is reported by
19696 Juri Linkov <juri@jurta.org> in emacs-devel list.
19697 (completions-common-part): Rename from completion-de-emphasis.
19698 (completions-first-difference): Rename from completion-emphasis.
19699 Suggested by RMS.
19700
19701 2004-04-16 Juanma Barranquero <lektu@terra.es>
19702
19703 * bookmark.el (bookmark-send-edited-annotation): Fix docstring.
19704 (bookmark-edit-annotation-mode): Add mode name.
19705
19706 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
19707
19708 * smerge-mode.el (smerge-match-conflict): Try to do something sensible
19709 for nested conflict markers.
19710 (smerge-find-conflict): Better handle errors in smerge-match-conflict.
19711
19712 2004-04-15 Nick Roberts <nick@nick.uklinux.net>
19713
19714 * progmodes/gdb-ui.el (gdb-goto-info): New function.
19715
19716 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Add help button.
19717
19718 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
19719
19720 * emacs-lisp/bytecomp.el (batch-byte-compile-file):
19721 Give a backtrace if requested.
19722
19723 * progmodes/ada-mode.el (ada-create-menu): Remove redundant call.
19724
19725 * progmodes/python.el (python-mouse-2-command, python-RET-command):
19726 Remove unused functions.
19727 (python-orig-start-line, python-orig-file): Remove.
19728 (python-orig-start): New var.
19729 (python-input-filter, python-compilation-line-number)
19730 (python-send-region, python-load-file): Use it.
19731
19732 * info.el (info): Always jump to *info*.
19733
19734 * subr.el (posn-set-point): New function.
19735
19736 * mouse.el (mouse-set-point): Use it.
19737
19738 * progmodes/compile.el (compile-goto-error): Use it.
19739 (compilation-button-map): New keymap.
19740 (compilation-error-properties): Use it.
19741 (compilation-shell-minor-mode-map): Don't bind mouse-2.
19742
19743 * smerge-mode.el (smerge-popup-context-menu): Use it.
19744
19745 * emacs-lisp/checkdoc.el (checkdoc-output-mode-map)
19746 (checkdoc-find-error-mouse, checkdoc-find-error): Use it to merge the
19747 mouse and non-mouse case.
19748
19749 * diff-mode.el (diff-goto-source): Make it work for mouse bindings.
19750 (diff-mouse-goto-source): Make it an alias of diff-goto-source.
19751
19752 * pcvs.el (cvs-mode-toggle-mark): Rename from cvs-mouse-toggle-mark.
19753 Make it work for non-mouse events.
19754
19755 * pcvs-info.el (cvs-status-map): Update binding name.
19756
19757 2004-04-14 Mark A. Hershberger <mah@everybody.org>
19758
19759 * xml.el (xml-maybe-do-ns): New function to handle namespace
19760 parsing of both attribute and element names.
19761 (xml-ns-parse-ns-attrs, xml-ns-expand-el, xml-ns-expand-attr)
19762 (xml-intern-attrlist): Remove in favor of xml-maybe-do-ns.
19763 (xml-parse-tag): Update assumed namespaces. Clean up namespace
19764 parsing.
19765 (xml-parse-attlist): Make it do its own namespace parsing.
19766
19767 2004-04-14 Dave Love <fx@gnu.org>
19768
19769 * progmodes/python.el (run-python): Fix use of \n.
19770 (python-load-file): Remove `try' from Python fragment.
19771 (python-describe-symbol): Fix message.
19772
19773 * comint.el: Doc fixes.
19774 (comint-last-input-start, comint-last-input-end)
19775 (comint-last-output-start): Give them values.
19776 (comint-arguments): Avoid warning.
19777 (comint-skip-prompt): Use line-end-position.
19778 (comint-backward-matching-input): Rename arg to agree with doc.
19779 (comint-extract-string): Use syntax-ppss.
19780 (comint-dynamic-simple-complete): Delete useless list construction.
19781 (comint-redirect-subvert-readonly): New.
19782 (comint-redirect-preoutput-filter): Use it.
19783
19784 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
19785 Correctly handle negative arguments when calling hook functions.
19786
19787 2004-04-14 Jesper Harder <harder@ifa.au.dk>
19788
19789 * info.el (info-apropos): Don't clobber Info-history-list.
19790
19791 2004-04-14 Daniel Pfeiffer <occitan@esperanto.org>
19792
19793 * progmodes/compile.el (compilation-setup):
19794 Localize overlay-arrow-position.
19795 (compilation-sentinel): Restructure code equivalently.
19796 (compilation-next-error): Find message on same line after point if
19797 not found before point.
19798 (compile-mouse-goto-error): Restore function so that compilation
19799 buffer need not be current and use compile-goto-error.
19800 (compile-goto-error): Restore function.
19801 (next-error): Set overlay-arrow-position.
19802 (compilation-forget-errors): Don't localize already local
19803 compilation-locs and remove FIXME about refontifying.
19804
19805 2004-04-14 Kim F. Storm <storm@cua.dk>
19806
19807 * startup.el (emacs-quick-startup): New defvar (set by -Q).
19808 (command-line): New option -Q. Like -q --no-site-file, but in
19809 addition it also disables menu-bar, tool-bar, scroll-bars,
19810 tool-tips, and the blinking cursor.
19811 (command-line-1): Skip startup screen if -Q.
19812 (fancy-splash-head): Use ":align-to center" prop to center splash
19813 image.
19814
19815 * emulation/cua-base.el (cua-read-only-cursor-color)
19816 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
19817
19818 2004-04-13 Dave Love <fx@gnu.org>
19819
19820 * progmodes/python.el: Doc fixes. Changes for compiler warnings.
19821 (syntax): Don't require.
19822 (python) <defgroup>: Add :version.
19823 (python-quote-syntax): Re-written.
19824 (inferior-python-mode): Move stuff here from run-python and add
19825 some more.
19826 (python-preoutput-continuation, python-preoutput-result)
19827 (python-dotty-syntax-table): New.
19828 (python-describe-symbol): Use them.
19829 (run-python): Move stuff to inferior-python-mode. Modify code
19830 loaded into Python.
19831 (python-send-region): Use python-proc, python-send-string.
19832 (python-send-string): Send newlines too. Callers changed.
19833 (python-load-file): Re-written.
19834 (python-eldoc-function): New.
19835 (info-look): Don't require.
19836 (python-after-info-look): New. A modified version of former
19837 top-level code for use with eval-after-load.
19838 (python-maybe-jython, python-guess-indent): Use widened buffer.
19839 (python-fill-paragraph): Re-written.
19840 (python-mode): Fix outline-regexp. Set outline-heading-end-regexp,
19841 eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook.
19842
19843 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
19844
19845 * progmodes/python.el (run-python): Use compilation-shell-minor-mode.
19846 Set compilation-error-regexp-alist earlier.
19847
19848 * progmodes/compile.el (compilation-minor-mode-map)
19849 (compilation-shell-minor-mode-map, compile-mouse-goto-error)
19850 (compile-goto-error): Re-merge the mouse and non-mouse commands.
19851
19852 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
19853
19854 * progmodes/compile.el (compile-goto-error): Select the buffer/window
19855 corresponding to the event.
19856
19857 2004-04-12 Joe Buehler <jbuehler@hekiman.com>
19858
19859 * loadup.el: Add cygwin to system-type list, for unexec() support.
19860
19861 2004-04-12 John Paul Wallington <jpw@gnu.org>
19862
19863 * ibuffer.el (ibuffer-delete-window-on-quit): Remove.
19864 (ibuffer-restore-window-config-on-quit): New variable to replace
19865 `ibuffer-delete-window-on-quit'. Update all references.
19866 (ibuffer-prev-window-config): New variable.
19867 (ibuffer-quit): Restore previous window configuration instead of
19868 deleting window.
19869 (ibuffer): Save window configuration before showing Ibuffer buffer.
19870
19871 * help.el (describe-mode): Doc fix.
19872
19873 2004-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
19874
19875 * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test
19876 not to treat nil as a function.
19877
19878 * vc-arch.el (vc-arch-root): Be a bit more careful.
19879 (vc-arch-register): Save the buffer if we modified it.
19880 (vc-arch-delete-rej-if-obsolete): Save excursion.
19881 (vc-arch-find-file-hook): Use the simpler after-save-hook.
19882 (vc-arch-responsible-p, vc-arch-init-version): New functions.
19883
19884 * net/ldap.el (ldap-search): Use list*.
19885
19886 2004-04-12 Juri Linkov <juri@jurta.org>
19887
19888 * info.el (Info-follow-reference): Allow multiline reference name.
19889
19890 2004-04-11 Dave Love <fx@gnu.org>
19891
19892 * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change.
19893
19894 * progmodes/python.el: New file.
19895
19896 2004-04-11 Andre Spiegel <spiegel@gnu.org>
19897
19898 * vc-hooks.el (vc-arg-list): Function removed.
19899 (vc-default-workfile-unchanged-p): Use condition-case to check for
19900 backward compatibility.
19901
19902 * vc.el (vc-print-log): Use condition-case to check for backward
19903 compatibility.
19904
19905 2004-04-11 Juri Linkov <juri@jurta.org>
19906
19907 * dired.el (dired-faces): New defgroup.
19908 (dired-header, dired-mark, dired-marked, dired-flagged)
19909 (dired-warning, dired-directory, dired-symlink, dired-ignored):
19910 New faces.
19911 (dired-header-face, dired-mark-face, dired-marked-face)
19912 (dired-flagged-face, dired-warning-face, dired-directory-face)
19913 (dired-symlink-face, dired-ignored-face): New face variables.
19914 (dired-font-lock-keywords): Use them instead of font-lock faces.
19915 Split the rule for dired marks into 3 separate rules: for marks,
19916 marked file names and flagged file names.
19917
19918 * help-mode.el (help-make-xrefs): Add a final newline to the
19919 *Help* buffer.
19920
19921 2004-04-11 John Paul Wallington <jpw@gnu.org>
19922
19923 * replace.el (occur-engine): Distinguish between one and several
19924 matches in the matches per buffer heading.
19925
19926 2004-04-11 Kim F. Storm <storm@cua.dk>
19927
19928 * ido.el (ido-confirm-unique-completion): New defcustom.
19929 (ido-complete): Use it.
19930 (ido-write-file): Set it to t unconditionally.
19931
19932 2004-04-10 Miles Bader <miles@gnu.org>
19933
19934 RCS keyword removal (only non-comment changes are enumerated here):
19935
19936 * emacs-lisp/bytecomp.el (byte-compile-version): Variable removed.
19937 (byte-compile-insert-header): Don't use `byte-compile-version'.
19938 * forms.el (forms-version): Variable removed.
19939 (forms-mode): Don't use `forms-version'.
19940 * recentf.el (recentf-version): Variable removed.
19941 * progmodes/delphi.el (delphi-version): Variable removed.
19942 * progmodes/ada-mode.el (ada-mode): RCS keyword removed from docstring.
19943
19944 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
19945
19946 * emacs-lisp/easymenu.el (easy-menu-add): Make it work in non-X Emacs.
19947
19948 2004-04-09 Jesper Harder <harder@ifa.au.dk>
19949
19950 * info.el (info-apropos): Improve menu item regexp.
19951
19952 2004-04-09 Simon Josefsson <jas@extundo.com>
19953
19954 * mail/smtpmail.el: Add comment, based on report by
19955 kdc@rcn.com (Kevin D. Clark).
19956
19957 2004-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
19958
19959 * progmodes/compile.el (compilation-mode-font-lock-keywords):
19960 Redo one more thing that I didn't notice Daniel had undone.
19961
19962 2004-04-08 Nick Roberts <nick@nick.uklinux.net>
19963
19964 * progmodes/gdb-ui.el (gdb-source-window): Remove variable.
19965 (gdb-goto-breakpoint, gdb-display-buffer)
19966 (gdb-display-source-buffer, gdb-view-source-function)
19967 (gdb-view-assembler, gdb-setup-windows, gdb-restore-windows)
19968 (gdb-source-info, gdb-frame-handler): Don't specify a window
19969 for display.
19970 (gdb-info-breakpoints-custom): Remove superfluous update of
19971 assembler buffer.
19972 (gdb-many-windows): Make settable outside gdb.
19973
19974 2004-04-08 Glenn Morris <gmorris@ast.cam.ac.uk>
19975
19976 * calendar/diary-lib.el (diary-mode, fancy-diary-display-mode):
19977 Derive from fundamental-mode rather than text-mode.
19978
19979 2004-04-08 Juri Linkov <juri@jurta.org>
19980
19981 * info.el (Info-history): Doc fix.
19982 (Info-history-list): New var.
19983 (info-xref): Change magenta4 to blue, remove bold for dark and
19984 light backgrounds, change bold to underline for non-color classes.
19985 (info-xref-visited): New face.
19986 (Info-fontify-visited-nodes): New custom.
19987 (Info-hide-note-references): Add new value `hide'. Doc fix.
19988 (Info-reference-name): New var.
19989 (Info-selection-hook): New custom.
19990 (Info-edit-mode-hook): New var.
19991 (Info-find-file): New fun.
19992 (Info-find-node): Move part of code to Info-find-file.
19993 (Info-find-node-2): Add anchors to Info-history-list. Move point
19994 to the place with the reference name if name is defined.
19995 (Info-select-node): Add current node to Info-history-list.
19996 (Info-goto-node): Switch to *info* from *info-history* *info-toc*.
19997 (Info-search-whitespace-regexp): New custom.
19998 (Info-search-case-fold): New var.
19999 (Info-search): Add "case-sensitively" to the prompt.
20000 Use Info-search-whitespace-regexp. Set Info-search-case-fold.
20001 (Info-search-case-sensitively, Info-search-next): New fun.
20002 (Info-up): Move point to the menu item of the current node.
20003 (Info-history): New fun. Add *info-history* to
20004 same-window-buffer-names.
20005 (Info-toc): New fun. Add *info-toc* to same-window-buffer-names.
20006 (Info-insert-toc): New fun.
20007 (Info-build-toc): New fun.
20008 (Info-follow-reference): Add new arg `fork'. Doc fix.
20009 Replace [ \n\t]* by [ \n\t]+ in the *Note regexp. For references
20010 with the same name prefer the reference closest to point.
20011 (Info-next-reference): Replace * by + in the *Note regexp.
20012 Add regexp for http:// and ftp://. Skip the *Note prefix.
20013 (Info-prev-reference): Replace * by + in the *Note regexp.
20014 Add regexp for http:// and ftp://. Skip the *Note prefix.
20015 (Info-follow-nearest-node): Add new arg `fork'.
20016 (Info-try-follow-nearest-node): Add new arg `fork'.
20017 Call browse-url for http:// and ftp:// references.
20018 Set Info-reference-name for index entries.
20019 (Info-mode-menu): Add menu items for Info-search-case-sensitively,
20020 Info-search-next, Info-history, Info-toc, clone-buffer.
20021 (Info-menu-update): Replace * by + in the *Note regexp.
20022 (Info-mode): Add documentation for Info-history, Info-toc,
20023 Info-search-case-sensitively, Info-search-next, clone-buffer.
20024 (Info-fontify-menu-headers): Remove fun. Move code to
20025 Info-fontify-node.
20026 (Info-fontify-node): Add docstring. Add local vars
20027 fontify-visited-p and not-fontified-p. If not-fontified-p is t
20028 then fontify header line, titles, menu headers, http and ftp
20029 references, refill paragraphs. If not-fontified-p is t or
20030 fontify-visited-p is t then fontify cross references, menu items.
20031 Fontify menu headers. Fontify http and ftp references.
20032 Change regexp for cross references to require whitespace after *Note,
20033 add matching groups for file and node names. Remove hack for quote.
20034 Use display property for Info-hide-note-references=t. Use fifth
20035 or fourth match for help-echo. Display visited nodes in a
20036 different face. Unhide file names of external references.
20037 Unhide newlines. Display visited menu items in a different face.
20038
20039 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
20040
20041 * progmodes/compile.el: Require CL.
20042 (compilation-mode-font-lock-keywords): Re-install the "line as
20043 function" patch.
20044
20045 * help-fns.el (help-C-source-directory): New var.
20046 (help-subr-name, help-C-file-name, help-find-C-source): New funs.
20047 (describe-function-1, describe-variable): Use them.
20048
20049 * help-mode.el (help-function-def, help-variable-def): Handle hyperrefs
20050 to C source files specially.
20051
20052 2004-04-07 Jan Nieuwenhuizen <janneke@gnu.org>
20053
20054 * info.el (Info-hide-cookies-node): New function.
20055 (Info-select-node): Use it.
20056 (Info-display-images-node): Remove message with image file name.
20057
20058 2004-04-07 Daniel Pfeiffer <occitan@esperanto.org>
20059
20060 * progmodes/compile.el (compilation-warning-face)
20061 (compilation-info-face, compilation-skip-threshold)
20062 (compilation-skip-visited, compilation-context-lines):
20063 Declare :version when added to Emacs.
20064 (compilation-error-regexp-alist-alist): Extend caml and irix.
20065 (compilation-setup): Fix if font-locked w/o font-lock-defaults.
20066 (compilation-mode-font-lock-keywords): Temporarily undo line as
20067 function patch, which wasn't ready.
20068
20069 2004-04-07 Kenichi Handa <handa@m17n.org>
20070
20071 * international/latin1-disp.el (latin1-display-setup): Check each
20072 character is displayable or not instead of calling
20073 latin1-display-check-font.
20074
20075 2004-04-06 Kenichi Handa <handa@m17n.org>
20076
20077 * language/ethio-util.el (ethio-sera-being-called-by-w3):
20078 New variable.
20079 (ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
20080 instead of sera-being-called-by-w3.
20081 (ethio-fidel-to-sera-buffer): Likewise.
20082 (ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
20083 instead of sera-being-called-by-w3.
20084 (ethio-write-file): Likewise.
20085
20086 2004-04-05 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20087
20088 * printing.el: Doc fix.
20089
20090 2004-04-05 Nick Roberts <nick@nick.uklinux.net>
20091
20092 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New option.
20093 (gdb-ann3, gdb-send, gdb-starting, gdb-stopping)
20094 (gdb-setup-windows): Only use separate IO buffer if required.
20095
20096 2004-04-06 Kim F. Storm <storm@cua.dk>
20097
20098 * term.el (term-is-xemacs): Remove.
20099 (term-if-xemacs, term-ifnot-xemacs): Test (featurep 'xemacs).
20100 (term-window-width): New function.
20101 (term-mode, term-check-size): Use it.
20102 (term-mode): Disable overflow-newline-into-fringe in term buffer.
20103
20104 2004-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
20105
20106 * cus-edit.el (custom-add-parent-links): Change unbound variable
20107 `symbol' to `name'.
20108
20109 2004-04-05 Jesper Harder <harder@ifa.au.dk>
20110 * info.el (info-apropos): New function.
20111 (Info-mode-menu): Add it.
20112 (Info-find-node, Info-find-node-2): Grok apropos virtual file.
20113
20114 * help-mode.el (help-make-xrefs): Recognize aliased variable with
20115 inherited docstring.
20116
20117 * play/gamegrid.el (gamegrid-add-score-insecure): Use sort-fields.
20118
20119 2004-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
20120
20121 * textmodes/fill.el (fill-comment-paragraph): Obey indent-tabs-mode.
20122
20123 * progmodes/compile.el (font-lock): Don't require any more.
20124 (compilation-error-properties, compilation-start, compilation-sentinel)
20125 (compilation-filter, next-error): Use with-current-buffer.
20126 (compilation-skip-to-next-location, compilation-skip-threshold)
20127 (compilation-skip-visited): Move to silence the byte-compiler.
20128 (compilation-setup): Simplify.
20129 (compilation-next-error): Use line-(beginning|end)-position.
20130 Make sure `pt' is non-nil before using compilation-loop.
20131 (compile-goto-error): Add optional event arg. Use it.
20132 (compile-mouse-goto-error): Make it an alias of compile-goto-error.
20133 (compilation-minor-mode-map, compilation-shell-minor-mode-map):
20134 Update the binding for mouse-2.
20135 (first-error): Set compilation-current-error to nil rather than bob.
20136 (compilation-parsing-end, compilation-parse-errors-function)
20137 (compilation-error-list, compilation-old-error-list):
20138 "New" compatibility variables.
20139 (compile-buffer-substring, compilation-compat-error-properties)
20140 (compilation-compat-parse-errors, compilation-forget-errors):
20141 New compatibility functions.
20142 (compilation-mode-font-lock-keywords): Use them.
20143
20144 2004-04-04 Luc Teirlinck <teirllm@auburn.edu>
20145
20146 * autorevert.el (auto-revert-handler): If point (or a window
20147 point) is at the end of the buffer, keep it there after
20148 reverting. This allows to tail a file.
20149 Mention this in the `Commentary'.
20150
20151 * format.el (format-write-file): Add optional argument CONFIRM
20152 and make it behave like the analogous argument to `write-file'.
20153
20154 2004-04-04 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20155
20156 * progmodes/ebnf2ps.el: Doc fix.
20157 (ebnf-version): New version number (4.2).
20158 (ebnf-syntax): Customization and docstring fix.
20159 (ebnf-eliminate-empty-rules, ebnf-optimize, ebnf-otz-initialize):
20160 Put autoloaded funs before first use.
20161 (ebnf-style-database): Add dtd entry.
20162 (ebnf-syntax-alist): Add dtd initialization.
20163 (ebnf-token-sequence): New fun.
20164 (ebnf-comment-table): Add new comment action character.
20165 (ebnf-dtd-parser, ebnf-dtd-initialize): Autoload funs from ebnf-dtd.
20166
20167 * progmodes/ebnf-dtd.el: New file, implement a parser for DTD (Data
20168 Type Definition for XML).
20169
20170 * progmodes/ebnf-abn.el (ebnf-abn-concatenation):
20171 * progmodes/ebnf-bnf.el (ebnf-sequence):
20172 * progmodes/ebnf-ebx.el (ebnf-ebx-concatenation):
20173 * progmodes/ebnf-iso.el (ebnf-iso-single-definition):
20174 * progmodes/ebnf-yac.el (ebnf-yac-sequence):
20175 Code simplification: call ebnf-token-sequence.
20176
20177 2004-04-04 Eli Zaretskii <eliz@gnu.org>
20178
20179 * calendar/timeclock.el (timeclock-relative)
20180 (timeclock-get-project-function, timeclock-get-workday-function)
20181 (timeclock-query-out, timeclock-when-to-leave)
20182 (timeclock-when-to-leave-string, timeclock-log-data)
20183 (timeclock-generate-report, timeclock-in): Doc fixes.
20184
20185 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
20186
20187 * url/: New dir. Import the URL package from its repository.
20188
20189 2004-04-03 Andreas Schwab <schwab@suse.de>
20190
20191 * diff-mode.el (diff-mode): Fix missing quote.
20192
20193 2004-04-03 Juri Linkov <juri@jurta.org>
20194
20195 * descr-text.el (describe-property-list): Add `font-lock-face'.
20196
20197 * dired.el (dired-font-lock-keywords): Fix permission regexps.
20198
20199 2004-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20200
20201 * x-dnd.el (x-dnd-handle-moz-url, x-dnd-insert-utf16-text):
20202 Use utf-16le on little endian machines and utf-16be otherwise.
20203
20204 2004-04-02 David Kastrup <dak@gnu.org>
20205
20206 * net/browse-url.el (browse-url-generic): Use call-process
20207 instead of start-process to allow browsers that fork and detach.
20208
20209 2004-04-01 Daniel Pfeiffer <occitan@esperanto.org>
20210
20211 * compile.el (compilation-current-error): New var.
20212 (compilation-setup, compile-mouse-goto-error)
20213 (compile-goto-error, next-error): Use it.
20214 (compilation-skip-to-next-location): Default to t, which gives
20215 contiguous skipping like old compile (where this was redundant).
20216 (compilation-next-error): Prevent previous-* commands from moving
20217 back to message at or just before point.
20218
20219 2004-04-01 Nick Roberts <nick@nick.uklinux.net>
20220
20221 * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler)
20222 (gdb-source-info): Don't display source at startup, if required.
20223 (gdb-show-main): New option.
20224 (gdba): Update documentation.
20225 (gdb-source): Cover case of auto-display output.
20226
20227 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
20228
20229 * autorevert.el: Delete obsolete autoloads and defvars.
20230 (auto-revert-check-vc-info): New user option.
20231 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
20232 (auto-revert-handler-vc): Delete.
20233 (auto-revert-handler): Treat return value `fast' of
20234 buffer-stale-function specially. Check `auto-revert-check-vc-info'.
20235
20236 * buff-menu.el (Buffer-menu-mode): Make the buffer-stale-function
20237 return `fast'.
20238
20239 * files.el (buffer-stale-function): Doc change.
20240
20241 2004-03-31 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20242
20243 * printing.el: New tip on Tips section.
20244 (pr-version): New version number (6.7.4).
20245 (pr-shell-file-name): Initialization fix.
20246
20247 2004-03-31 Juri Linkov <juri@jurta.org>
20248
20249 * dired.el: Add autoload for `dired-do-touch'.
20250 (dired-touch-program): New var.
20251 (dired-mode-map): Bind `dired-do-touch' to T and add menu-item.
20252 (dired-no-confirm): Add `touch' to docstring.
20253
20254 * dired-aux.el (dired-do-touch): New fun.
20255 (dired-do-chxxx): Add argument -t for touch operation.
20256
20257 * dired-x.el (dired-mark-sexp): Replace hard-coded month names by
20258 `dired-move-to-filename-regexp'.
20259
20260 2004-03-31 H\e,Ae\e(Bkan Granath <hakan.granath@kau.se> (tiny change)
20261
20262 * dired.el (dired-move-to-filename-regexp): Add `.' to HH:MM.
20263
20264 2004-03-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20265
20266 * progmodes/ebnf2ps.el (ebnf-eps-finish-and-write): Write a buffer if
20267 and only if the buffer was modified.
20268
20269 2004-03-30 Kenichi Handa <handa@m17n.org>
20270
20271 * international/characters.el: Delete pairs for U+2308..U+230B.
20272
20273 2004-03-29 Nick Roberts <nick@nick.uklinux.net>
20274
20275 * progmodes/gud.el (gud-gdb-marker-filter): Include "\n" in regexp
20276 to detect the beginning of a level 2 or 3 annotation.
20277
20278 2004-03-29 Kenichi Handa <handa@m17n.org>
20279
20280 * international/ucs-tables.el (ucs-insert): Fix the error message.
20281
20282 2004-03-29 Kenichi Handa <handa@m17n.org>
20283
20284 * international/mule-util.el (char-displayable-p): Fix generation
20285 of XLFD file name.
20286
20287 * Makefile.in (setwins, setwins_almost): Change directory to $wd
20288 before finding directories by `find'.
20289
20290 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
20291
20292 * subr.el (interactive-form): Delete. Now implemented in C.
20293
20294 * pcvs.el (cvs-parse-process): Workaround for Darwin.
20295
20296 * vc.el (vc-version-diff, vc-default-diff-tree): Change `rel' -> `rev'.
20297 (vc-diff-label): New fun.
20298 (vc-diff-internal): Use it.
20299
20300 * progmodes/gdb-ui.el (gdb-post-prompt): Fix test.
20301
20302 2004-03-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20303
20304 * progmodes/ebnf-abn.el (ebnf-abn-parser): Handle initial comments.
20305
20306 * progmodes/ebnf-ebx.el: New file, implement a parser for EBNF used to
20307 specify XML (EBNFX).
20308
20309 * progmodes/ebnf2ps.el: Doc fix.
20310 (ebnf-version): New version number (4.1).
20311 (ebnf-syntax): Adjust customization.
20312 (ebnf-style-database): Add ebnfx entry.
20313 (ebnf-syntax-alist): Add ebnfx initialization.
20314 (ebnf-ebx-parser, ebnf-ebx-initialize): Autoload funs from ebnf-ebx.
20315
20316 * printing.el: Doc fix.
20317 (pr-version): New version number (6.7.3).
20318 (pr-menu-position): Adjust X and Y positions when mouse-pixel-position
20319 returns nil for mouse position. Reported by Drew Adams
20320 <drew.adams@oracle.com>.
20321 (pr-update-menus): Modify interactive declaration. Reported by Drew
20322 Adams <drew.adams@oracle.com>.
20323
20324 2004-03-28 Nick Roberts <nick@nick.uklinux.net>
20325
20326 * progmodes/gdb-ui.el (gdb-ann3, gdb-send-item)
20327 (gud-gdba-marker-filter): Log the process input and output, if
20328 required. From Stefan Monnier.
20329 (gdb-debug-log, gdb-enable-debug-log): New variables.
20330 (gdb-post-prompt): Don't do gdb-var-update on Mac OS X.
20331
20332 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
20333
20334 * vc-hooks.el (vc-file-not-found-hook): Fix typo.
20335 From lorentey@elte.hu (L\e$,1 q\e(Brentey K\e,Aa\e(Broly).
20336
20337 2004-03-27 Luc Teirlinck <teirllm@auburn.edu>
20338
20339 * autorevert.el (auto-revert-handler): Handle auto-revert-mode.
20340 Call vc-find-file-hook here instead of in auto-revert-buffers.
20341 (auto-revert-buffers): Delete call to vc-find-file-hook.
20342 (auto-revert-verbose, global-auto-revert-non-file-buffers)
20343 (global-auto-revert-mode, auto-revert-set-timer)
20344 (auto-revert-handler, auto-revert-buffers): Doc fixes.
20345
20346 2004-03-27 Francis J. Wright <F.J.Wright@qmul.ac.uk>
20347
20348 * woman.el (woman-change-fonts): Rename local variable
20349 woman-font-alist to font-alist to avoid a compiler warning.
20350
20351 2004-03-27 Dave Love <fx@gnu.org>
20352
20353 * emacs-lisp/rx.el (rx): Doc fix.
20354 Fix copyright years.
20355
20356 * strokes.el (strokes-global-set-stroke-string): New function.
20357 (strokes-list-strokes): Cope with strings, not just commands.
20358 Set foreground color of image.
20359 (strokes-global-set-stroke): Doc fix.
20360
20361 2004-03-26 Luc Teirlinck <teirllm@auburn.edu>
20362
20363 * buff-menu.el (Buffer-menu-revert-function): Make it suitable for
20364 Auto Revert mode.
20365 (Buffer-menu-files-only): New variable.
20366 (Buffer-menu-toggle-files-only): New function.
20367 (Buffer-menu-mode-map): Bind it to `T'.
20368 (Buffer-menu-mode): Mention `T' in docstring.
20369 Set buffer-stale-function.
20370 (list-buffers-noselect): Mark buffer non-modified and set
20371 Buffer-menu-files-only.
20372
20373 * dired.el (buffer-stale-function): Remove no longer needed defvar.
20374
20375 * autorevert.el (auto-revert-handler): Print revert message
20376 before, rather than after, reverting.
20377 (buffer-stale-function): Move to files.el.
20378
20379 * files.el (buffer-stale-function): Move here from autorevert.el.
20380
20381 2004-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
20382
20383 * vc.el (vc-maybe-resolve-conflicts): Don't prompt the user.
20384
20385 * calc/calc.el (calc-mode-map): Use mapc.
20386
20387 * apropos.el (apropos-mode): Don't autoload.
20388 (apropos-symbols-internal): New fun. Extracted from `apropos'.
20389 (apropos): Use it.
20390 (apropos-print): Add optional `text' argument.
20391 (apropos-describe-plist): Use help-buffer and hexlp-setup-xref.
20392 Don't assume point-min == 1.
20393
20394 * bs.el (bs-buffer-list): Use buffer-local-value.
20395 (bs--set-toggle-to-show): Use with-current-buffer.
20396
20397 * buff-menu.el (Buffer-menu-sort, Buffer-menu-make-sort-button):
20398 New funs.
20399 (list-buffers-noselect): Use them. Adjust :align-to to new style.
20400
20401 * cvs-status.el (cvs-tree-use-jisx0208): Use char-displayable-p.
20402
20403 * dabbrev.el (dabbrev-expand): Fix regexp construction.
20404 (dabbrev--find-expansion): Use pop.
20405 (dabbrev--search): Use match-string-no-properties.
20406
20407 * dired.el (dired-mode): Use run-mode-hooks.
20408 (dired-move-to-end-of-filename): Use match-string.
20409
20410 * ediff-init.el (ediff-hide-face): Check that facemenu-unlisted-faces
20411 is bound before using it.
20412 (ediff-verbose-p): Make it into a var since it's not constant.
20413
20414 * electric.el (Electric-pop-up-window): Avoid popping up a new frame.
20415
20416 * faces.el (read-face-font): Don't cons up unnecessarily.
20417 (header-line, tool-bar): Share common parts.
20418
20419 * files.el (file-relative-name): Use compare-strings.
20420
20421 * finder.el (finder-mode): Follow coding convention.
20422
20423 * subr.el (read-number): New function.
20424
20425 * ses.el (ses-read-number): Move to subr.el.
20426 (ses-set-header-row): Use read-number.
20427
20428 2004-03-26 Andre Spiegel <spiegel@gnu.org>
20429
20430 * vc-hooks.el (vc-arg-list): New function, which handles both
20431 compiled and uncompiled code.
20432 (vc-default-workfile-unchanged-p): Use it.
20433
20434 * vc.el (vc-print-log): Undo prev change, use new function
20435 vc-arg-list from vc-hooks.el.
20436
20437 2004-03-26 Masatake YAMATO <jet@gyve.org>
20438
20439 * simple.el (completion-setup-function): Emphasize the
20440 first uncommon characters in the completions; and de-emphasize
20441 the common prefix substrings.
20442 (completion-emphasis): New face.
20443 (completion-de-emphasis): New face.
20444
20445 2004-03-25 Juanma Barranquero <lektu@terra.es>
20446
20447 * progmodes/cperl-mode.el (cperl-indent-alist, cperl-where-am-i):
20448 Comment out (it's unused and unfinished code).
20449
20450 2004-03-25 Sam Steingold <sds@gnu.org>
20451
20452 * vc.el (vc-print-log): Fix a bug in the last patch:
20453 backend-function may be a byte-compiled object, not a lambda.
20454
20455 2004-03-25 Juri Linkov <juri@jurta.org>
20456
20457 * descr-text.el (describe-property-list): Add a button
20458 for `face' property that calls `describe-face'.
20459 Suggested by Luis Fernandes <elf@ee.ryerson.ca>
20460
20461 * international/mule.el (keyboard-coding-system):
20462 * kmacro.el (kmacro-call-macro): Fix docstring.
20463
20464 * dired.el: Fix comments.
20465
20466 * textmodes/fill.el (fill): Fix Info link.
20467
20468 * font-lock.el (fast-lock, lazy-lock):
20469 * jit-lock.el (jit-lock): Remove links to removed Support Modes
20470 Info node.
20471
20472 * eshell/eshell.el (eshell): Fix broken info-link.
20473
20474 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance):
20475 * eshell/em-banner.el (eshell-banner):
20476 * eshell/em-smart.el (eshell-smart):
20477 * eshell/esh-cmd.el (eshell-cmd):
20478 Comment out broken info-links to incomplete Info manual.
20479
20480 * info-xref.el: Fix commentary.
20481
20482 2004-03-25 Kevin Ryde <user42@zip.com.au>
20483
20484 * info-xref.el (info-xref-check-buffer): Report empty filename parts.
20485 Remove spurious node duplicate suppression, doesn't work, not wanted.
20486 (info-xref-output): Take format style args, add "sit-for 0" to let
20487 user see the results as they progress.
20488 (info-xref-check-all-custom): New function.
20489
20490 2004-03-25 Nick Roberts <nick@nick.uklinux.net>
20491
20492 * gdb-ui.el: Moved to progmodes.
20493
20494 2004-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
20495
20496 * diff-mode.el (diff-font-lock-keywords): Disable yank-handler.
20497
20498 2004-03-24 Glenn Morris <gmorris@ast.cam.ac.uk>
20499
20500 * calendar/appt.el (appt-check): Remove superfluous progn.
20501 When finished with diary buffer: if it was not being displayed
20502 before, kill it; otherwise restore its original state.
20503 Suggested by Matthew Mundell <matt@mundell.ukfsn.org>.
20504
20505 * calendar/calendar.el (calendar-set-mode-line): Use total
20506 available mode-line width, rather than frame-width.
20507
20508 * calendar/diary-lib.el (fancy-diary-display): Set mode-line
20509 after mode change so effect not lost.
20510
20511 2004-03-23 Dave Love <fx@gnu.org>
20512
20513 * dired.el (dired) <defgroup>: Add link to manual.
20514 (dired-font-lock-keywords): Add highlighting on unusual permissions.
20515 (dired-revert): Use dolist.
20516 (dired-mode-map): Add U binding.
20517 (dired-mode): Add font-lock-beginning-of-syntax-function.
20518 (dired-garbage-files-regexp): Make it a defcustom.
20519
20520 2004-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
20521
20522 * vc-arch.el (vc-arch-diff): Handle the special case where `newvers'
20523 is equivalent to nil.
20524 (vc-arch-diff3-rej-p): Be a bit more flexible in what we accept.
20525 (vc-arch-mode-line-string): Accept `added' state.
20526 (vc-arch-state): Use inode-sigs if available.
20527 (vc-arch-add-tagline): Rename from vc-arch-add-tag.
20528 Copy&delete existing id file if any. Fallback if uuidgen is absent.
20529 (vc-arch-tagline-re): New var.
20530 (vc-arch-file-source-p, vc-arch-file-id, vc-arch-tagging-method):
20531 New functions.
20532 (vc-arch-find-file-not-found-hook, vc-arch-register): New backend ops.
20533 (vc-arch-registered): Try our best guess using vc-arch-file-source-p.
20534
20535 * vc-hooks.el (vc-default-find-file-not-found-hook): New fun.
20536 (vc-file-not-found-hook): Use it.
20537
20538 * diff-mode.el (diff-default-read-only): Change default.
20539 (diff-mode-hook): Make it a defcustom. Add some options.
20540 (diff-mode-map): Bind diff-refine-hook.
20541 (diff-yank-handler): New var.
20542 (diff-yank-function): New fun.
20543 (diff-font-lock-keywords): Use them.
20544 (diff-end-of-file): Handle case where file-header looks like diff text.
20545 (diff-hunk-kill): Adjust to "new" hunk-next behavior.
20546 (diff-file-kill): Delete a subsequent empty line, if applicable.
20547 (diff-hunk-file-names): New fun, extracted from diff-tell-file-name.
20548 (diff-find-file-name): Use it.
20549 (diff-tell-file-name): New command.
20550 (diff-mode): Be careful with view-mode.
20551 (diff-delete-if-empty, diff-delete-empty-files, diff-make-unified):
20552 New functions, for use in diff-mode-hook.
20553 (diff-find-source-location): Catch "regex too large" errors.
20554 (diff-apply-hunk, diff-test-hunk): Go to old or new file.
20555 (diff-refine-hunk): New command.
20556
20557 * smerge-mode.el (smerge-mode-menu): Fix activate pred for resolve.
20558 (smerge-context-menu-map): Remove unused var.
20559 (smerge-keep-all): Preserve markers.
20560 (smerge-keep-n): New fun.
20561 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
20562 (smerge-keep-current, smerge-ediff): Use it.
20563 (smerge-kill-current): Use it. Make it work on some 3-part conflicts.
20564 (smerge-popup-context-menu): Also use context-menu on 3-part conflicts.
20565 (smerge-resolve): Resolve trivial 3-part conflicts.
20566
20567 2004-03-23 Juri Linkov <juri@jurta.org>
20568
20569 * man.el (Man-width): New var.
20570 (Man-getpage-in-background): Use it.
20571 (Man-support-local-filenames): New var and fun.
20572 (Man-build-man-command): Don't add a second %s.
20573 (Man-fontify-manpage): Clean up message.
20574 (Man-mode): Set outline-regexp, outline-level,
20575 imenu-generic-expression.
20576
20577 * woman.el (woman-fill-frame): Doc fix.
20578 (woman-decode-region): Use window-width instead of frame-width.
20579
20580 * abbrevlist.el (list-one-abbrev-table):
20581 * descr-text.el (describe-char):
20582 * international/mule-diag.el (describe-current-coding-system):
20583 * international/quail.el (quail-insert-decode-map):
20584 Use window-width instead of frame-width.
20585
20586 * jka-compr.el (jka-compr-compression-info-list): Add tbz and dz.
20587 (jka-compr-mode-alist-additions): Add tbz.
20588 (jka-compr-write-region, jka-compr-insert-file-contents):
20589 Add message for undefined compress-program.
20590 (jka-compr-write-region): Remove redundant var bindings.
20591
20592 * dired-x.el (dired-guess-shell-alist-default): Add choices for
20593 extracting files into subdirectory. Add tbz and dz. Fix regexps.
20594 Add extensions .[0-9] for man and nroff, and .pod for perldoc.
20595 (dired-man): Use dired-guess-shell-command.
20596 (dired-guess-shell-case-fold-search): Change defvar to defcustom.
20597 Change default nil to t.
20598
20599 * dired-aux.el (dired-compress-file-suffixes): Add dz and tbz.
20600 (dired-compare-directories): Add default value for empty input.
20601
20602 * help-at-pt.el: Move suggestions for key bindings to Commentary.
20603
20604 * time.el (display-time-string-forms): Fix help-echo date format.
20605
20606 2004-03-22 Luc Teirlinck <teirllm@auburn.edu>
20607
20608 * autorevert.el (global-auto-revert-non-file-buffers): Expand
20609 docstring.
20610 (buffer-stale-function): New variable.
20611 (auto-revert-list-diff, auto-revert-dired-file-list)
20612 (auto-revert-dired-changed-p, auto-revert-buffer-p): Delete.
20613 (auto-revert-handler): Take over some functionality of deleted
20614 functions.
20615 (auto-revert-buffers): Delete call to auto-revert-buffer-p.
20616
20617 * dired.el (dired-directory-changed-p): New fun, extracted from
20618 dired-internal-noselect.
20619 (dired-buffer-stale-p): New fun.
20620 (dired-internal-noselect): Use dired-directory-changed-p.
20621 Eliminate revert messages.
20622 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
20623
20624 2004-03-23 Kenichi Handa <handa@m17n.org>
20625
20626 * international/characters.el: Setup syntaxes for more parentheses
20627 Unicode characters.
20628
20629 * international/mule-cmds.el (select-safe-coding-system):
20630 Merge coding-system and auto-cs before comparing them.
20631
20632 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
20633
20634 * emacs-lisp/pp.el (pp-eval-expression): Simplify.
20635
20636 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
20637 normal-auto-fill-function and comment-indent-function.
20638 The default values now work just as well.
20639 Don't set font-lock-beginning-of-syntax-function since we already set
20640 syntax-begin-function.
20641 (lisp-outline-level): Put ;;;###autoload at same level as (.
20642 (prin1-char): Quote special chars.
20643
20644 * emacs-lisp/lisp-mnt.el (lm-keywords-finder-p): Use defvar rather
20645 than with-no-warnings.
20646
20647 * emacs-lisp/edebug.el (edebug-display): Bring up a debug trace
20648 if the source location can't be found.
20649 (edebug-compute-previous-result): Use prin1-char.
20650
20651 * emacs-lisp/checkdoc.el (checkdoc-error): Don't assume point-min == 1.
20652 (debug-ignored-errors): Add an entry.
20653
20654 * emacs-lisp/bytecomp.el (byte-recompile-directory): Ignore hidden dir.
20655 (byte-compile-file): Output warning when deleting a file.
20656
20657 * emacs-lisp/byte-run.el (defsubst): Add edebug spec and use backquote.
20658 (dont-compile, eval-when-compile, eval-and-compile): Add edebug spec.
20659
20660 * emacs-lisp/byte-opt.el (byte-compile-log-lap)
20661 (byte-compile-inline-expand): Use backquote.
20662 (byte-optimize-pure-func): Rename from byte-optimize-concat.
20663 (symbol-name, regexp-opt, regexp-quote): Mark as pure.
20664
20665 * emacs-lisp/backquote.el (backquote-list*-macro): Use nreverse.
20666
20667 * emacs-lisp/advice.el (ad-subr-arglist): Simplify.
20668
20669 2004-03-22 Juri Linkov <juri@jurta.org>
20670
20671 * finder.el (finder-known-keywords): Fix data, tex, unix.
20672
20673 * play/landmark.el: Fix keywords.
20674
20675 * language/ethio-util.el (ethio-find-file): Doc fix.
20676
20677 * emacs-lisp/warnings.el: Doc fix.
20678
20679 * textmodes/ispell.el (ispell-help): Doc fix.
20680
20681 2004-03-21 Luc Teirlinck <teirllm@auburn.edu>
20682
20683 * format.el (format-insert-file): Always return a list of two
20684 elements, like insert-file-contents does.
20685
20686 2004-03-21 Andre Spiegel <spiegel@gnu.org>
20687
20688 * vc.el: Add new optional BUFFER argument to vc-BACKEND-print-log
20689 and vc-BACKEND-diff.
20690 (vc-print-log): If the print-log implementation supports it, use
20691 the new BUFFER argument to direct output to *vc-change-log*, not *vc*.
20692 (vc-version-diff, vc-diff-internal): Doc fixes.
20693
20694 * vc-hooks.el (vc-default-workfile-unchanged-p): If the
20695 implementation supports it, let diff output go to *vc*,
20696 not *vc-diff*, since this is an internal call.
20697
20698 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Add optional BUFFER arg.
20699
20700 * vc-rcs.el (vc-rcs-print-log, vc-rcs-diff): Likewise.
20701
20702 * vc-sccs.el (vc-sccs-print-log, vc-sccs-diff): Likewise.
20703
20704 2004-03-21 Dave Love <fx@gnu.org>
20705
20706 * progmodes/cfengine.el (cfengine-mode):
20707 Set parse-sexp-ignore-comments.
20708
20709 * emacs-lisp/rx.el (rx): Work at compile time, not run time.
20710
20711 2004-03-21 Juanma Barranquero <lektu@terra.es>
20712
20713 * allout.el (allout-mode): Fix docstring.
20714
20715 2004-03-20 Luc Teirlinck <teirllm@auburn.edu>
20716
20717 * files.el (insert-directory): Fix bug if SWITCHES is a list.
20718
20719 * autorevert.el (auto-revert-interval): Make new value take
20720 effect immediately when set through Custom.
20721 (auto-revert-set-timer): Add interactive declaration.
20722
20723 2004-03-19 David Ponce <david@dponce.com>
20724
20725 * ruler-mode.el (ruler-mode-header-line-format-old):
20726 Don't `make-variable-buffer-local'.
20727 (ruler-mode-ruler-function): Default to `ruler-mode-ruler'.
20728 (ruler-mode-header-line-format): Simply funcall the above.
20729 (ruler-mode): Use `make-local-variable' and `kill-local-variable'
20730 to save/restore a previous header line format.
20731 (ruler-mode-space): Don't depend on a numeric WIDTH value.
20732 (ruler-mode-ruler): Use symbolic display elements for scrollbar,
20733 fringes and margins width.
20734 (ruler-mode-ruler-function): Default to ruler-mode-ruler.
20735
20736 2004-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
20737
20738 * log-edit.el (log-edit-font-lock-keywords): Typo.
20739
20740 * textmodes/tex-mode.el (tex-shell): Set error parsing function here.
20741 (tex-send-tex-command): Rather than here.
20742 (tex-compilation-parse-errors): Simplify.
20743
20744 * info.el (Info-default-dirs): Don't ignore last part of I-d-d-l.
20745
20746 * time.el (display-time-string-forms): Add help-echo with date on time.
20747
20748 * composite.el (compose-region): Use restore-buffer-modified-p.
20749
20750 * disp-table.el (standard-display-8bit): Simplify.
20751
20752 * server.el (server-process-filter): Delete temp frame.
20753
20754 * add-log.el (add-change-log-entry): Simplify.
20755
20756 2004-03-19 Kim F. Storm <storm@cua.dk>
20757
20758 * hexl.el (hexl-mode-ruler): Adapt to new :align-to semantics.
20759 (hexl-follow-line): Don't require 'fringe.
20760
20761 * progmodes/compile.el (compilation-start): Always set
20762 compilation-last-buffer and return it.
20763
20764 2004-03-17 Luc Teirlinck <teirllm@auburn.edu>
20765
20766 * simple.el (clone-buffer): Doc fix.
20767
20768 2004-03-18 Juanma Barranquero <lektu@terra.es>
20769
20770 * emacs-lisp/byte-run.el (make-obsolete-variable): Fix docstring.
20771
20772 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
20773
20774 * log-edit.el (log-edit-font-lock-keywords): New var.
20775 (log-edit-mode): Use it.
20776
20777 2004-03-17 Nick Roberts <nick@nick.uklinux.net>
20778
20779 * gdb-ui.el (gdb-var-list-children-handler): Handle C++ classes
20780 properly for watching in speedbar.
20781
20782 2004-03-17 Masatake YAMATO <jet@gyve.org>
20783
20784 * smerge-mode.el (smerge-popup-context-menu):
20785 Put `unwind-protect' around `overlay-put' and `popup-menu'.
20786
20787 2004-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
20788
20789 * vc-arch.el (vc-arch-workfile-unchanged-p): Define to avoid dup-diff.
20790 (vc-arch-workfile-version, vc-arch-mode-line-rewrite):
20791 Take sealed revisions into account.
20792 (vc-arch-checkin): Extract a summary line from the message.
20793
20794 2004-03-16 Masatake YAMATO <jet@gyve.org>
20795
20796 * register.el (register): Provide `register' feature.
20797
20798 2004-03-15 Masatake YAMATO <jet@gyve.org>
20799
20800 Added context menu support in smerge mode.
20801 Most of the part is written by Stefan Monnier.
20802
20803 * smerge-mode.el (smerge-context-menu-map, smerge-context-menu):
20804 New keymap and menu.
20805 (smerge-text-properties): New function.
20806 (smerge-remove-props): New function.
20807 (smerge-popup-context-menu): New function.
20808 (smerge-resolve): Call `smerge-remove-props'.
20809 (smerge-keep-base, smerge-keep-other, smerge-keep-mine): Ditto.
20810 (smerge-keep-current): Ditto.
20811 (smerge-kill-current): New function.
20812 (smerge-match-conflict): Put text properties.
20813 Detect the file as `same-diff conflict' if the filename is "ANCESTOR".
20814
20815 2004-03-15 David Ponce <david@dponce.com>
20816
20817 * ruler-mode.el (ruler-mode-left-fringe-cols)
20818 (ruler-mode-right-fringe-cols, ruler-mode-left-scroll-bar-cols)
20819 (ruler-mode-right-scroll-bar-cols): Remove.
20820 (ruler-mode-window-col, ruler-mode-mouse-set-left-margin)
20821 (ruler-mode-mouse-set-right-margin, ruler-mode-ruler):
20822 Use fringe-columns and scroll-bar-columns.
20823
20824 2004-03-15 Masatake YAMATO <jet@gyve.org>
20825
20826 * hl-line.el (hl-line-range-function): New variable.
20827 (hl-line-move): New function.
20828 (global-hl-line-highlight): Use `hl-line-move'.
20829 (hl-line-highlight): Ditto.
20830
20831 * scroll-bar.el (scroll-bar-columns):
20832 * fringe.el (fringe-columns): New function derived from ruler-mode.el.
20833
20834 * ruler-mode.el (top-level): Require scroll-bar and fringe.
20835 (ruler-mode-left-fringe-cols)
20836 (ruler-mode-right-fringe-cols): Use `fringe-columns'.
20837 (ruler-mode-right-scroll-bar-cols)
20838 (ruler-mode-left-scroll-bar-cols): Use `scroll-bar-columns'.
20839 (ruler-mode-ruler-function): New variable.
20840 (ruler-mode-header-line-format): Call `ruler-mode-ruler-function'
20841 if the value for `ruler-mode-ruler-function' is given.
20842
20843 * hexl.el (hexl-mode-hook): Make the hook customizable.
20844 (hexl-address-area, hexl-ascii-area): New customize variables.
20845 (hexlify-buffer): Put font-lock-faces on the address area and
20846 the ascii area.
20847 (hexl-activate-ruler): New function.
20848 (hexl-follow-line): New function.
20849 (hexl-highlight-line-range): New function.
20850 (hexl-mode-ruler): New function.
20851
20852 2004-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
20853
20854 * vc-hooks.el (vc-handled-backends): Add Arch. Move MCVS down.
20855 (vc-default-find-file-hook): New fun.
20856 (vc-find-file-hook): Call new find-file-hook operation.
20857
20858 * vc-arch.el: New file.
20859
20860 2004-03-12 Jesper Harder <harder@ifa.au.dk>
20861
20862 * info-look.el (info-lookup): Reuse an existing Info window.
20863
20864 2004-03-12 Francis J. Wright <F.J.Wright@qmul.ac.uk>
20865
20866 * woman.el (woman-preserve-ascii): Default value changed to t and
20867 doc string revised.
20868
20869 2004-03-12 Richard M. Stallman <rms@gnu.org>
20870
20871 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
20872 Fix minor bug.
20873
20874 * replace.el (occur-engine): Change message for count of matches.
20875
20876 * emacs-lisp/bytecomp.el (byte-compile-get-constant):
20877 For strings, do compare text properties.
20878
20879 2004-03-11 Daniel Pfeiffer <occitan@esperanto.org>
20880
20881 * progmodes/compile.el (compile-auto-highlight)
20882 (compilation-error-list, compilation-old-error-list)
20883 (compilation-parse-errors-function, compilation-parsing-end)
20884 (compilation-error-message, compilation-directory-stack)
20885 (compilation-enter-directory-regexp-alist)
20886 (compilation-leave-directory-regexp-alist)
20887 (compilation-file-regexp-alist, compilation-nomessage-regexp-alist)
20888 (compilation-current-file, compilation-regexps): Remove vars.
20889
20890 (compile-error-at-point, compilation-error-filedata)
20891 (compilation-error-filedata-file-name, compile-reinitialize-errors)
20892 (compilation-next-error-locus, compilation-forget-errors)
20893 (count-regexp-groupings, compilation-parse-errors)
20894 (compile-collect-regexps, compile-buffer-substring): Remove funs.
20895
20896 (compile-internal): Make obsolete.
20897
20898 (compilation-first-column, compilation-error)
20899 (compilation-directory-matcher, compilation-page-delimiter)
20900 (compilation-mode-font-lock-keywords, compilation-debug)
20901 (compilation-error-face, compilation-warning-face)
20902 (compilation-info-face, compilation-line-face)
20903 (compilation-column-face, compilation-enter-directory-face)
20904 (compilation-leave-directory-face, compilation-skip-threshold)
20905 (compilation-skip-visited, compilation-context-lines): New vars.
20906
20907 (compilation-warning-face, compilation-info-face)
20908 (compilation-message-face): New faces.
20909
20910 (compilation-error-regexp-alist-alist): New constant.
20911
20912 (compilation-face, compilation-directory-properties)
20913 (compilation-assq, compilation-error-properties, compilation-start)
20914 (define-compilation-mode, compilation-loop)
20915 (compilation-set-window): New functions.
20916
20917 (compile): Additional argument for interactive compiles like TeX.
20918
20919 * progmodes/grep.el (kill-grep): Move here from compile.el
20920 (grep-error, grep-hit-face, grep-error-face)
20921 (grep-mode-font-lock-keywords): New variables.
20922 (grep-regexp-alist): Simplify regexp and add `binary' case.
20923 (grep-mode): New mode.
20924 (grep-process-setup): Simplify.
20925
20926 2004-03-11 Jason Rumney <jasonr@gnu.org>
20927
20928 * net/ldap.el (ldap-search-internal): Handle file URLs with drive
20929 letters on DOS/Windows.
20930
20931 2004-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
20932
20933 * server.el (server-name): New var.
20934 (server-socket-dir): New var to replace server-socket-name.
20935 (server-start): Use them.
20936
20937 2004-03-11 Simon Josefsson <jas@extundo.com>
20938
20939 * mail/smtpmail.el (smtpmail-read-response): Abort if process has
20940 died to avoid infloop. Reported by Jonathan Glauner
20941 <jglauner@sbum.org>.
20942
20943 2004-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
20944
20945 * smerge-mode.el (smerge-check-cache, smerge-check): New var and fun.
20946 (smerge-mode-menu): Use it to deactivate menu entries.
20947 (smerge-keep-current): New fun.
20948 (smerge-keep-current): Use it.
20949
20950 2004-03-10 John Paul Wallington <jpw@gnu.org>
20951
20952 * foldout.el (foldout-fold-list, foldout-modeline-string):
20953 Declare them as variables, not constants.
20954
20955 2004-03-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20956
20957 * ps-print.el: Modification to print *Messages* buffer.
20958 (ps-print-version): New version 6.6.4.
20959 (ps-message-log-max): New fun.
20960 (ps-spool-without-faces, ps-spool-with-faces)
20961 (ps-count-lines-preprint): Code fix.
20962
20963 * printing.el: New tips in Tips section.
20964
20965 2004-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20966
20967 * delim-col.el: Doc fix.
20968
20969 * printing.el: Doc fix. New doc section (Tips).
20970
20971 2004-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
20972
20973 * type-break.el (type-break-emacs-variant): Remove.
20974 (type-break-run-at-time, type-break-cancel-function-timers):
20975 Use fboundp rather than version name and number.
20976
20977 2004-03-09 Masatake YAMATO <jet@gyve.org>
20978
20979 * hexl.el (hexl-mode): Use `make-local-variable' instead of
20980 `make-variable-buffer-local'.
20981
20982 2004-03-08 Michael Albinus <Michael.Albinus@alcatel.de>
20983
20984 * find-dired.el (find-dired): Call `shell-command' instead of
20985 `start-process-shell-command'. By this, Tramp takes over
20986 handling of remote directories.
20987
20988 2004-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
20989
20990 * newcomment.el (comment-use-global-state): New var.
20991 (comment-search-forward): Use it.
20992
20993 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set it.
20994
20995 * cus-edit.el (fill) <defgroup>: Move to fill.el.
20996
20997 * textmodes/fill.el (fill) <defgroup>: Move from cus-edit.el.
20998 (enable-kinsoku): Make it a defcustom.
20999 (fill-comment-paragraph): Don't rely on fill-prefix to bound the
21000 paragraph to same-comment-start-marker.
21001
21002 2004-03-07 Dave Love <fx@gnu.org>
21003
21004 * net/browse-url.el (rfc2368-parse-mailto-url): Autoload.
21005 (browse-url-mail): Use it.
21006
21007 * mail/rfc2368.el (rfc2368-unhexify-char): Delete.
21008 (rfc2368-unhexify-string): Use replace-regexp-in-string.
21009
21010 2004-03-07 Francis J. Wright <F.J.Wright@qmul.ac.uk>
21011
21012 * woman.el (woman-man.conf-path): Doc fix.
21013 (woman-parse-man.conf): Also parse OPTIONAL_MANPATH.
21014
21015 2004-03-07 Eli Zaretskii <eliz@gnu.org>
21016
21017 * sort.el (sort-columns): Remove ms-dos from the list of systems
21018 where the external `sort' command is not used.
21019
21020 2004-03-07 Kim F. Storm <storm@cua.dk>
21021
21022 * gdb-ui.el (gdb-overlay-arrow-position): Add defvar.
21023 (gdb-reset): Reset gdb-overlay-arrow-position marker and remove it
21024 from overlay-arrow-variable-list.
21025 (gdb-assembler-mode): Use add-to-list for gdb-overlay-arrow-position.
21026
21027 2004-03-06 Nick Roberts <nick@nick.uklinux.net>
21028
21029 * gdb-ui.el (gdb-assembler-mode, gdb-assembler-custom): Set up
21030 overlay arrow string properly for the assembler buffer.
21031
21032 2004-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
21033
21034 * mail/sendmail.el (mail-mode): Fix last change.
21035
21036 2004-03-05 Nick Roberts <nick@nick.uklinux.net>
21037
21038 * gdb-ui.el (gdb-assembler-mode): Create a second overlay arrow
21039 for the assembler buffer.
21040 (gdb-assembler-custom): Position the overlay arrow.
21041 (gdb-put-arrow, gdb-remove-arrow): Delete functions.
21042
21043 2004-03-04 Stefan Monnier <monnier@iro.umontreal.ca>
21044
21045 * progmodes/sh-script.el (sh-font-lock-paren): Add @ in case patterns.
21046
21047 * pcvs-info.el (cvs-fileinfo->backup-file): Use a more constraining
21048 regexp to distinguish .#ChangeLog.9.1.400 and .#ChangeLog.1.400.
21049
21050 * mail/sendmail.el (mail-mode): Set comment-start-skip.
21051
21052 * newcomment.el (uncomment-region): Allow non-terminated comment.
21053 (comment-normalize-vars): Check the user-specified comstart marker.
21054
21055 2004-03-04 Jesper Harder <harder@ifa.au.dk>
21056
21057 * sort.el (sort-columns): Don't use external 'sort' on ms-windows.
21058 Otherwise, do use it if the region only contains font-lock text
21059 properties.
21060
21061 2004-03-04 Masatake YAMATO <jet@gyve.org>
21062
21063 * hexl.el (hexl-mode): Set `hexl-print-current-point-info'
21064 as the callback function for eldoc.
21065 (hexl-print-current-point-info): New function.
21066 (hexl-current-address): Print the address in both decimal
21067 and hexadecimal format.
21068
21069 2004-03-04 Richard M. Stallman <rms@gnu.org>
21070
21071 * mail/rmail.el (rmail-convert-to-babyl-format):
21072 Specify t for UNIBYTE when calling mail-unquote-printable-region.
21073
21074 * mail/mail-utils.el (mail-unquote-printable-region):
21075 New arg UNIBYTE.
21076
21077 * startup.el (command-switch-alist): Doc fix.
21078
21079 * simple.el (undo): Temporarily set this-command to `undo-start',
21080 then set it to `undo' once undo-start returns without error.
21081
21082 * simple.el (minibuffer-history-sexp-flag): Doc fix.
21083
21084 * simple.el (kill-line): Don't disregard trailing whitespace
21085 in eol condition, if show-trailing-whitespace is set.
21086
21087 * mouse-sel.el (mouse-sel-has-been-enabled): New var.
21088 (mouse-sel-mode): When enabling, set mouse-sel-has-been-enabled.
21089 When disabling, restore old values only if mouse-sel-has-been-enabled.
21090
21091 * isearch.el (isearch-*-char): New arg WANT-BACKSLASH.
21092 (isearch-{-char): New function.
21093 (isearch-mode-map): Bind { to isearch-{-char.
21094
21095 * font-lock.el (lisp-font-lock-keywords-2):
21096 Turn off the CL with-... and do-... general patterns.
21097 Instead, recognize several specific with... and do... constructs.
21098
21099 * files.el (switch-to-buffer-other-window):
21100 Bind same-window-buffer-names and same-window-regexps to nil.
21101 (switch-to-buffer-other-frame): Likewise.
21102
21103 2004-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
21104
21105 * textmodes/fill.el (fill-comment-paragraph): Be more careful when
21106 recognizing leading comment on code line.
21107
21108 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
21109
21110 * Makefile.in (setwins, setwins_almost): Skip .arch-ids and other
21111 hidden files/directories.
21112
21113 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
21114
21115 * textmodes/fill.el (fill-paragraph): Don't check comment-start-skip,
21116 only comment-start (in case the mode hasn't set it).
21117
21118 * Makefile.in (AUTOGENEL): New var.
21119 (bootstrap-prepare): Rename from bootstrap-clean.
21120 Don't remove elc files.
21121 (maintainer-clean): New target.
21122
21123 * xml.el (xml-get-attribute-or-nil): Simplify.
21124
21125 2004-03-02 Juri Linkov <juri@jurta.org>
21126
21127 * net/browse-url.el (browse-url-netscape, browse-url-mozilla)
21128 (browse-url-galeon, browse-url-epiphany): Encode dollar signs in
21129 URL to prevent their substitution with the environment variable
21130 values by browsers.
21131
21132 2004-03-03 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21133
21134 * ps-print.el: Doc fix.
21135 (ps-print-version): New version number (6.6.3).
21136 (ps-right-header, ps-right-footer, ps-left-header, ps-left-footer):
21137 Docstring fix.
21138 (ps-kill-emacs-check): Check if ps-print temporary buffer is killed
21139 before printing.
21140 (ps-time-stamp-yyyy-mm-dd): New fun.
21141 (ps-time-stamp-iso8601): Alias for ps-time-stamp-yyyy-mm-dd.
21142
21143 2004-03-02 Kim F. Storm <storm@cua.dk>
21144
21145 * gdb-ui.el (gdb-mouse-toggle-breakpoint): Remove debug message.
21146
21147 2004-03-01 Juanma Barranquero <lektu@terra.es>
21148
21149 * allout.el (allout-rebullet-heading): Fix typo in docstring.
21150
21151 * desktop.el (desktop-file-version)
21152 (desktop-after-read-hook): Fix typos.
21153 (desktop-clear-preserve-buffers): Remove redundant info in
21154 docstring already shown by the obsolescence message.
21155 (desktop-truncate, desktop-internal-v2s)
21156 (desktop-value-to-string): Change argument name to match docstring.
21157
21158 * emulation/tpu-edt.el (tpu-set-mark): Fix typo in docstring.
21159
21160 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Fix typo in
21161 docstring.
21162
21163 2004-02-29 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21164
21165 * printing.el: Replace "As Is..." in PostScript file print/preview by
21166 "No Preprocessing...". Suggested by Colin Marquardt
21167 <_marquardt_@zmd.de>.
21168 (pr-insert-section-4): Adjust buffer interface.
21169
21170 2004-02-29 Kai Grossjohann <kai.grossjohann@gmx.net>
21171
21172 Version 2.0.39 of Tramp released.
21173
21174 * net/tramp.el (tramp-handle-file-local-copy)
21175 (tramp-handle-write-region, tramp-open-connection-rsh):
21176 Variable name typo. Small change. From Patrick Tullmann
21177 <tullmann@flux.utah.edu>.
21178 (tramp-process-connection-type): New variable.
21179 (tramp-maybe-open-connection): Use it.
21180 (tramp-do-copy-or-rename-via-buffer): Handle KEEP-DATE arg if possible.
21181 (tramp-touch): Set last-modified time of a remote file.
21182 (tramp-handle-write-region): Say which function is used when encoding.
21183
21184 2004-02-29 Michael Albinus <Michael.Albinus@alcatel.de>
21185
21186 * net/tramp-smb.el (tramp-smb-handle-file-writable-p): Handle the
21187 case of non-existing filename, too. Reported by Christoph Bauer
21188 <c_bauer@informatik.uni-kl.de>.
21189 (tramp-smb-get-file-entries): The directory in question should
21190 have permissions "drwxrwxrwx". Just virtual, because we don't
21191 know the real permissions. Don't we know?
21192 (tramp-smb-prompt): Add virtual prompt from listing shares, too.
21193 (tramp-smb-errors): Add "NT_STATUS_ACCOUNT_LOCKED_OUT".
21194 (tramp-smb-wait-for-output): Optimize algorithm getting pending
21195 output. If it was received chunkwise, there have been problems.
21196 Remove the "prompt not found" error message; it is obvious.
21197 Simplify algorithm.
21198 (tramp-smb-process-running): Remove. Since we acknowledge the
21199 virtual prompt for shares, there's no need for distinction of
21200 reading shares (process ends afterwards) and interactive mode of
21201 smblient.
21202 (tramp-smb-open-connection): Setting process sentinel removed.
21203 (tramp-smb-errors): Add "NT_STATUS_WRONG_PASSWORD" and
21204 "NT_STATUS_NETWORK_ACCESS_DENIED".
21205 (tramp-smb-maybe-open-connection): Set `process-connection-type'
21206 to 'pty. Suggested by Piet van Oostrum <piet@cs.uu.nl>.
21207 (top-level): Setting default value in `tramp-default-method-alist'
21208 corrected. Order of USER and HOST have been wrong.
21209 Nobody complained for months ...
21210 (tramp-smb-maybe-open-connection): Use `tramp-process-connection-type'.
21211 (tramp-smb-open-connection): Clear password cache if login has failed.
21212
21213 * net/tramp.el (tramp-completion-mode) Don't check for 'xemacs' but
21214 `tramp-unified-filenames'.
21215 (tramp-completion-mode): Make test for XEmacs explicitly.
21216 `event-to-character' can exists in Emacs packages too.
21217 Reported by Matt Swift <swift@alum.mit.edu>.
21218 (tramp-buffer-name): Buffer name must contain the user if exists.
21219 Reported by Adrian Phillips <a.phillips@met.no>.
21220 (tramp-do-copy-or-rename-file): Handle out-of-band methods.
21221 Call `tramp-do-copy-or-rename-file-out-of-band' this case.
21222 (tramp-do-copy-or-rename-file-out-of-band): Rename from
21223 `tramp-do-copy-or-rename-file-one-local', because it handles also
21224 the case both files use the same out-of-band method.
21225 Implementation added.
21226 (tramp-handle-file-local-copy, tramp-handle-write-region):
21227 Out-of-band handling removed. `copy-file' called instead, which
21228 calls `tramp-do-copy-or-rename-file-out-of-band'.
21229 (tramp-action-password): Check for out-of-band method removed.
21230 This function is used for 'login-program.
21231 (tramp-post-connection): Use `tramp-method-out-of-band-p' when
21232 appropriate.
21233 (tramp-completion-function-alist-ssh): Add `tramp-parse-shostkeys'
21234 and `tramp-parse-sknownhosts'.
21235 (tramp-completion-function-alist): It's a defvar now, because we
21236 want to apply the optimized `tramp-set-completion-function'
21237 instead of a static list.
21238 (tramp-set-completion-function): Implementation tuned.
21239 Avoid double entries, and entries where the function or the
21240 file/directory doesn't exist.
21241 (tramp-parse-shostkeys, tramp-parse-sknownhosts): New functions
21242 for SSH2.
21243 (tramp-file-name-handler-alist): Add `dired-compress-file' entry.
21244 (tramp-handle-dired-compress-file): New function.
21245 (tramp-async-proc): New variable.
21246 (tramp-handle-shell-command): Adding asynchronous processes.
21247 They are far from being perfect, but it works at least for
21248 `find-grep-dired' and `find-name-dired' in Emacs 22.1.
21249 (top-level): Require password.el if visible. Should be mandatory
21250 once No Gnus has found its way into (X)Emacs.
21251 (tramp-read-passwd): Invoke `password-read' if available,
21252 `read-passwd' otherwise. `ange-ftp-read-passwd' isn't used as
21253 fallback any longer.
21254 (tramp-clear-passwd): New function.
21255 (tramp-process-actions, tramp-process-multi-actions):
21256 Clear password cache if login has failed.
21257
21258 * net/tramp-ftp.el (Commentary): Remove pointer to EFS. It has
21259 its own module.
21260 (tramp-ftp-file-name-handler): Unset `ange-ftp-ftp-name-arg' and
21261 `ange-ftp-ftp-name-res'. There could be incorrect values from
21262 previous calls in case the "ftp" method is used in the Tramp file
21263 name. Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
21264
21265 2004-02-28 Richard M. Stallman <rms@gnu.org>
21266
21267 * term.el (term-mouse-paste): Call mouse-set-point.
21268
21269 * thumbs.el: New file.
21270
21271 2004-02-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21272
21273 * progmodes/ebnf-abn.el: Doc fix.
21274
21275 * progmodes/ebnf-bnf.el: Doc fix.
21276 (ebnf-repeat): Code fix.
21277
21278 * progmodes/ebnf2ps.el: Doc fix.
21279 (ebnf-syntax-directory, ebnf-syntax-file): New funs.
21280
21281 2004-02-28 Juri Linkov <juri@jurta.org>
21282
21283 * ffap.el (dired-at-point): Additional writability test for
21284 relative directory names.
21285 (dired-at-point-prompter): Treat directories as a directory, get
21286 the directory component from files.
21287 (ffap-string-at-point): Return string from region if region is active.
21288 (ffap-file-at-point): Remove redundant code.
21289
21290 2004-02-28 Kim F. Storm <storm@cua.dk>
21291
21292 * gdb-ui.el (breakpoint-enabled-icon, breakpoint-disabled-icon):
21293 Initialize margin area images to nil.
21294 (breakpoint-bitmap): New defvar for breakpoint fringe bitmaps.
21295 (breakpoint-enabled-bitmap-face)
21296 (breakpoint-disabled-bitmap-face): New faces for bpt in fringe.
21297 (gdb-info-breakpoints-custom): Use gdb-remove-breakpoint-icons.
21298 (gdb-info-breakpoints-custom): Use gdb-put-breakpoint-icon.
21299 (gdb-mouse-toggle-breakpoint): Handle bpt in fringe.
21300 (gdb-reset): Use gdb-remove-breakpoint-icons.
21301 (gdb-put-string): Add dprop arg to specify alternative display
21302 property (for setting fringe bitmap).
21303 (gdb-remove-strings): Doc fix.
21304 (gdb-put-breakpoint-icon): New defun which displays a breakpoint
21305 icon in fringe (if available), or else as icon or text in display
21306 margin. Creates necessary icons in breakpoint-bitmap,
21307 breakpoint-enabled-icon, and/or breakpoint-disabled-icon.
21308 Also make left window margin if required.
21309 (gdb-remove-breakpoint-icons): New defun to remove breakpoint
21310 icons inserted by gdb-put-breakpoint-icon. Remove left margin if
21311 no longer needed.
21312 (gdb-assembler-custom): Use gdb-remove-breakpoint-icons and
21313 gdb-put-breakpoint-icon.
21314 (gdb-assembler-mode): Don't set left-margin-width here.
21315
21316 2004-02-27 Kevin Ryde <user42@zip.com.au>
21317
21318 * info-look.el: In scheme-mode symbol regexp, disallow backquote and
21319 comma, so that it DTRT in macros.
21320
21321 2004-02-27 Markus Rost <rost@mathematik.uni-bielefeld.de>
21322
21323 * progmodes/sh-script.el (sh-shell-arg)
21324 (sh-require-final-newline, sh-assignment-regexp, sh-builtins)
21325 (sh-leading-keywords, sh-other-keywords): Fix custom type.
21326
21327 2004-02-27 Dan Nicolaescu <dann@ics.uci.edu>
21328
21329 * faces.el (face-spec-set-match-display): Add a new attribute,
21330 `min-colors'.
21331 (region, highlight, secondary-selection): Use `min-colors'.
21332
21333 * custom.el (defface): Add documentation for `min-colors'.
21334
21335 * font-lock.el (font-lock-comment-face, font-lock-string-face)
21336 (font-lock-keyword-face, font-lock-function-name-face)
21337 (font-lock-variable-name-face, font-lock-constant-face):
21338 Use `min-colors'.
21339
21340 * isearch.el (isearch, isearch-lazy-highlight-face): Use `min-colors'.
21341
21342 2004-02-25 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21343
21344 * progmodes/ebnf2ps.el: Doc fix. For compatibility with Emacs 20,
21345 define assq-delete-all if it's not defined.
21346 (ebnf-generate-region): Code fix.
21347
21348 * printing.el: Doc fix.
21349 (pr-version): New version number (6.7.2).
21350 (pr-command): Return empty string if command is an empty string.
21351
21352 2004-02-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
21353
21354 * progmodes/ebnf-abn.el: New file, implements an ABNF parser.
21355
21356 * progmodes/ebnf2ps.el: Doc fix. Accept ABNF (Augmented BNF). New
21357 arrow shapes: semi-up-hollow, semi-up-full, semi-down-hollow and
21358 semi-down-full. Fix a bug on productions like test = {"test"}* | (
21359 "tt" ["test"] ). Reported by Markus Dreyer
21360 <mdreyer@ix.urz.uni-heidelberg.de>.
21361 (ebnf-version): New version number (4.0).
21362 (ebnf-print-directory, ebnf-print-file, ebnf-spool-directory)
21363 (ebnf-spool-file, ebnf-eps-directory, ebnf-eps-file)
21364 (ebnf-delete-style): New commands.
21365 (ebnf-directory, ebnf-file): New funs.
21366 (ebnf-special-show-delimiter, ebnf-file-suffix-regexp)
21367 (ebnf-production-name-p, ebnf-stop-on-error): New options.
21368 (ebnf-syntax-alist): New var.
21369 (ebnf-element-width): New fun replacing ebnf-list-width.
21370 (ebnf-arrow-shape, ebnf-syntax): Custom fix.
21371 (ebnf-style-custom-list, ebnf-style-database, ebnf-arrow-shape-alist)
21372 (ebnf-prologue): Adjust vars.
21373 (ebnf-setup, ebnf-insert-style, ebnf-merge-style, ebnf-apply-style)
21374 (ebnf-reset-style, ebnf-push-style, ebnf-pop-style)
21375 (ebnf-check-style-values, ebnf-generate-production)
21376 (ebnf-generate-region, ebnf-production-dimension, ebnf-justify-list)
21377 (ebnf-make-terminal1, ebnf-make-or-more1, ebnf-make-repeat)
21378 (ebnf-token-repeat): Code fix.
21379
21380 * progmodes/ebnf-yac.el: Doc fix. Handle Bison pragmas %nonassoc,
21381 %right, %left and %prec. Suggested by Matthew K. Junker
21382 <junker@alum.mit.edu>.
21383 (ebnf-yac-definitions, ebnf-yac-lex): Code fix.
21384
21385 * progmodes/ebnf-iso.el: Doc fix.
21386 (ebnf-iso-token-table, ebnf-iso-non-terminal-chars): Adjust vars.
21387 (ebnf-iso-lex): Code fix.
21388
21389 * progmodes/ebnf-bnf.el: Doc fix.
21390 (ebnf-bnf-lex): Code fix.
21391
21392 * progmodes/ebnf-otz.el: Doc fix.
21393
21394 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
21395
21396 * abbrev.el (write-abbrev-file): Make argument optional. Doc fix.
21397 (abbrev-prefix-mark): Doc fix.
21398
21399 2004-02-23 Nick Roberts <nick@nick.uklinux.net>
21400
21401 * gdb-ui.el (gud-watch): Load tooltip, if necessary.
21402 (gdb-var-create-handler): Force speedbar-update-flag to be non-nil.
21403 (gdb-var-delete): Make interactive (really).
21404 (gdb-edit-value): Make non-interactive.
21405
21406 * progmodes/gud.el (gud-speedbar-menu-items):
21407 Add gdb-var-delete and, indirectly, gdb-edit-value.
21408 (gud-install-speedbar-variables): Bind gdb-var-delete to "D".
21409 (gud-speedbar-buttons): Remove gdb-var-delete from tag-line.
21410 (gud-gdb-marker-filter): Add comment for annotations.
21411
21412 2004-02-23 Glenn Morris <gmorris@ast.cam.ac.uk>
21413
21414 * calendar/calendar.el (generate-calendar)
21415 (calendar-read-date): Prevent display of BC calendars once more -
21416 reverts 2003-10-01 change.
21417 (generate-calendar-month): Doc fix.
21418
21419 2004-02-03 Matthew Mundell <matt@mundell.ukfsn.org> (tiny change)
21420
21421 * calendar/diary-lib.el (fancy-diary-display): Don't rely on
21422 return value of increment-calendar-month.
21423
21424 2004-02-21 Stephen Compall <s11@member.fsf.org>
21425
21426 * saveplace.el (save-place-forget-unreadable-files)
21427 (save-place-save-skipped, save-place-skip-check-regexp): New vars.
21428 (save-place-forget-unreadable-files): New function.
21429 (save-place-alist-to-file): Use it to filter out files that are
21430 no longer readable.
21431
21432 * textmodes/texinfo.el (texinfo-insert-@item): Look for the
21433 current Texinfo environment, using the same method as in
21434 `texinfo-insert-@end', and insert a space rather than a newline if
21435 point in a @table environment.
21436
21437 2004-02-21 Juri Linkov <juri@jurta.org>
21438
21439 * ffap.el (ffap-file-at-point): Try parent directories.
21440
21441 2004-02-21 Klaus Zeitler <kzeitler@lucent.com>
21442
21443 * vcursor.el (vcursor-modifiers): New defcustom.
21444 (vcursor-cs-binding): Use vcursor-modifiers instead of a
21445 hard-coded list.
21446
21447 2004-02-21 Masatake YAMATO <jet@gyve.org>
21448
21449 * play/animate.el (animate-birthday-present): Accept names other
21450 than `Sarah', too.
21451
21452 2004-02-21 Juri Linkov <juri@jurta.org>
21453
21454 * startup.el: Remove table of command line arguments from the
21455 Commentary section.
21456
21457 2004-02-20 John Wiegley <johnw@newartisans.com>
21458
21459 * eshell/em-pred.el (eshell-modifier-alist): Change the "eval
21460 again" modifier from 'e' to 'E', since 'e' is also used by the
21461 "file extension" modifier.
21462
21463 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
21464
21465 * help-fns.el (describe-categories): Doc fix.
21466
21467 2003-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
21468
21469 * ediff-util.el (ediff-compute-custom-diffs-maybe): Avoid creating
21470 temporary file for buffer already visiting one. This change makes
21471 output likely to be directly usable by patch program.
21472 Suggested by Adrian Aichner <adrian@xemacs.org>
21473
21474 2004-02-20 Nick Roberts <nick@nick.uklinux.net>
21475
21476 * gdb-ui.el (gdb-use-colon-colon-notation): Set default to nil for
21477 case of variables defined in compound statements.
21478 (gdb-setup-windows, gdb-source-info, gdb-source-info):
21479 Simplify constructions using switch-to-buffer.
21480
21481 2004-02-19 Simon Josefsson <jas@extundo.com>
21482
21483 * play/morse.el: Fix typo.
21484 (morse-code): Add @.
21485
21486 2004-02-19 Glenn Morris <gmorris@ast.cam.ac.uk>
21487
21488 * calendar/appt.el (appt-display-format): Change default to
21489 'ignore, for backwards compatibility.
21490 (appt-display-message): If appt-display-format is 'ignore,
21491 respect old vars appt-msg-window and appt-visible.
21492 (appt-activate): Don't depend on return value of cancel-timer.
21493
21494 * calendar/calendar.el (calendar-holidays): Doc fix.
21495
21496 * calendar/cal-coptic.el (coptic-prompt-for-date):
21497 Use assoc-string instead of assoc-ignore-case.
21498 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
21499 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
21500 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
21501 * calendar/cal-islam.el (calendar-goto-islamic-date)
21502 (mark-islamic-diary-entries): Ditto.
21503 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
21504 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
21505 (calendar-read-mayan-tzolkin-date): Ditto.
21506 * calendar/calendar.el (calendar-read-date): Ditto.
21507 * calendar/diary-lib.el (mark-diary-entries): Ditto.
21508
21509 2004-02-18 Markus Rost <rost@mathematik.uni-bielefeld.de>
21510
21511 * progmodes/executable.el (executable-command-find-posix-p):
21512 Fix choice of the directory.
21513
21514 2004-02-17 Luc Teirlinck <teirllm@auburn.edu>
21515
21516 * simple.el (interprogram-cut-function)
21517 (interprogram-paste-function, kill-new, kill-append):
21518 Doc fixes.
21519 (kill-region): Make it return nil. Doc fix.
21520 (yank-pop): Make its argument optional.
21521 (yank): Make ARG `-' equivalent to `-1'.
21522
21523 2004-02-17 Eli Zaretskii <eliz@gnu.org>
21524
21525 * mail/rmail.el (rmail-get-new-mail): Don't reference
21526 rmail-use-spam-filter if rmail-spam-filter is not loaded.
21527
21528 2004-02-16 Luc Teirlinck <teirllm@auburn.edu>
21529
21530 * autorevert.el (auto-revert-buffer-p): Only revert dired buffers
21531 if one of global-auto-revert-non-file-buffers or autorevert-mode
21532 is non-nil.
21533
21534 2004-02-16 Eli Zaretskii <eliz@gnu.org>
21535
21536 * subr.el (delete-dups): A better implementation from Karl Heuer
21537 <kwzh@gnu.org>.
21538
21539 2004-02-16 Matt Hodges <matt@stchem.bham.ac.uk> (tiny change)
21540
21541 * net/telnet.el (telnet-interrupt-subjob): Move doc string to the
21542 correct place.
21543 * progmodes/icon.el (icon-indent-command): Ditto.
21544 * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
21545
21546 2004-02-16 Eli Zaretskii <eliz@gnu.org>
21547
21548 * progmodes/grep.el (grep-compute-defaults): Undo change from
21549 2004-01-29: don't use executable-command-find-posix-p.
21550
21551 2004-02-16 Richard Sharman <rsharman@pobox.com>
21552
21553 * hilit-chg.el: Use require instead of eval-and-compile.
21554 (highlight-compare-buffers): New function.
21555
21556 2004-02-16 John Basrai <jbasrai@comcast.net> (tiny change)
21557
21558 * man.el (Man-fontify-manpage): Render section headings in
21559 `Man-overstrike-face' even when overstrike was not used by man
21560 formatter for section headings.
21561
21562 2004-02-16 Eli Tziperman <eli@deas.harvard.edu>
21563
21564 * rmail-spam-filter.el (vm-use-spam-filter)
21565 (rsf-min-region-length-added-to-spam-list): New variables.
21566 (rsf-bbdb-auto-delete-spam-bbdb-entries): Rename from
21567 rmail-bbdb-auto-delete-spam-entries. Add cc: to recipients for
21568 spam testing. Don't delete spam message if automatic deletion
21569 after output via variable rmail-delete-after-output is turned on.
21570 (rsf-bbdb-dont-create-entries-for-deleted-messages): Rename from
21571 rsf-bbdb-dont-create-entries-for-spam.
21572 (check-field): New function, extracted from code in
21573 rmail-spam-filter to ease addition of header fields like content-type.
21574 (message-content-type): New variable to check the content-type:
21575 field added, also in defcustom of rsf-definitions-alist.
21576 (rmail-spam-filter): Replace repeated test code for header fields
21577 by calls to check-field; change the call to
21578 rmail-output-to-rmail-file such that rmail-current-message stays
21579 the same to avoid wrong deletion of unseen flags.
21580 (rsf-add-contents-type): New function to convert old format
21581 of rmail-spam-definitions-alist into new one.
21582 Change prefixes of all variables and functions from
21583 rmail-spam-filter- or spam-filter- or rmail-spam- to rsf-.
21584
21585 2004-02-16 Eli Zaretskii <eliz@gnu.org>
21586
21587 * loadhist.el (unload-hook-features-list): New defvar.
21588
21589 2004-02-16 Dave Love <fx@gnu.org>
21590
21591 * loadhist.el (unload-feature): Doc fix. Rename flist to
21592 unload-hook-features-list.
21593
21594 2004-02-16 Jay Belanger <belanger@truman.edu> (tiny change)
21595
21596 * calc/calc-embed.el (calc-do-embedded-activate): Add autoload
21597 cookie. Don't check if we are looking-at open-formula.
21598
21599 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
21600
21601 * subr.el (match-string-no-properties): Use substring-no-properties.
21602
21603 2004-02-16 Eli Zaretskii <eliz@gnu.org>
21604
21605 * emacs-lisp/rx.el (rx-check, rx-check-any, rx-check-not)
21606 (rx-repeat, rx-check-backref, rx-syntax, rx-to-string):
21607 Use lower-case "rx" in all error message.
21608
21609 2004-02-16 Dave Love <fx@gnu.org>
21610
21611 * emacs-lisp/rx.el (rx-or): Put group around result.
21612 (rx-constituents): Add backref.
21613 (rx-syntax): Add string-delimiter, comment-delimiter.
21614 (rx-categories): Add combining-diacritic.
21615 (rx-check-not, rx-greedy, rx): Doc fix.
21616 (rx-backref, rx-check-backref): New.
21617
21618 2004-02-16 Jesper Harder <harder@ifa.au.dk>
21619
21620 * newcomment.el (uncomment-region): Allow eob as comment end.
21621
21622 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
21623
21624 * filecache.el: All message and error commands now use prefix
21625 "Filecache:" to make it easy to read *Messages* buffer.
21626
21627 2004-02-16 Jari Aalto <jari.aalto@poboxes.com>
21628
21629 * autorevert.el: Add support to detect changed dired and VC buffers.
21630 (auto-revert-active-p, auto-revert-list-diff)
21631 (auto-revert-dired-file-list, auto-revert-dired-changed-p)
21632 (auto-revert-handler, auto-revert-active-p): New functions.
21633 (auto-revert-buffers): Move revert logic to `auto-revert-handler'
21634 and `auto-revert-active-p'.
21635 (eval-when-compile): Defvar dired-directory and vc-mode.
21636 (auto-revert-vc-cvs-file-version, auto-revert-vc-buffer-p)
21637 (auto-revert-handler-vc): New functions.
21638
21639 2004-02-16 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
21640
21641 * progmodes/compile.el (compilation-directory): New defvar.
21642 (compile): Save current directory in compilation-directory.
21643 (recompile): Bind default-directory to compilation-directory if
21644 that is non-nil.
21645
21646 2004-02-16 Dave Love <fx@gnu.org>
21647
21648 * newcomment.el (comment-insert-comment-function)
21649 (comment-region-function, uncomment-region-function): New.
21650 (comment-indent): Use comment-insert-comment-function.
21651 (uncomment-region): Use uncomment-region-function.
21652 (comment-region): Use comment-region-function.
21653
21654 * emacs-lisp/rx.el (rx-not): Bind case-fold-search to nil.
21655
21656 2004-02-16 Richard Stallman <rms@gnu.org>
21657
21658 * Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
21659 loaddefs* and ldefs-boot*.
21660
21661 2004-02-16 Eli Zaretskii <eliz@gnu.org>
21662
21663 * mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name
21664 and email address at the beginning and end of the address.
21665
21666 * mail/rmail.el (rmail-default-dont-reply-to-names): Make "info-"
21667 anchored at the beginning of the email address.
21668
21669 2004-02-16 TAKAI Kousuke <tak@kmc.gr.jp> (tiny change)
21670
21671 * international/ccl.el (ccl-compile-write): Pass `left' to
21672 ccl-embed-code to generate correct code of write-expr-register.
21673
21674 2004-02-15 Dan Nicolaescu <dann@ics.uci.edu> (tiny change)
21675
21676 * progmodes/grep.el (grep-compute-defaults): Fix typos.
21677
21678 2004-02-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21679
21680 * x-dnd.el: Mention support for Motif in commentary.
21681 (x-dnd-handle-drag-n-drop-event): Ditto.
21682
21683 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
21684
21685 * ses.el: Use "ses--" prefixes for buffer-local variables.
21686 Use (point-min) instead of 1, even when we know the buffer
21687 is unnarrowed.
21688 (ses-build-load-map): Delete. Distribute its content to defconsts for
21689 the three maps.
21690 (ses-menu, ses-header-line-menu): New menus.
21691 (ses-mode-map): Use them.
21692 (ses-read-number) New fun. Duplicates code from interactive "N" spec.
21693
21694 2004-02-14 Martin Stjernholm <bug-cc-mode@gnu.org>
21695
21696 * Makefile.in: Fix the CC Mode recompile kludge so it works
21697 when building in a different directory.
21698
21699 2004-02-13 Luc Teirlinck <teirllm@auburn.edu>
21700
21701 * simple.el (kill-new): Put yank-handler property on the entire string.
21702
21703 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
21704
21705 * diff.el: Don't use compile any more, use diff-mode instead.
21706 (diff-regexp-alist, diff-old-file, diff-new-file)
21707 (diff-parse-differences, diff-process-setup): Remove.
21708 (diff-sentinel): New fun.
21709 (diff): Use it. Run the process ourselves.
21710 Use diff-mode for the rest of the processing.
21711
21712 * diff.el (diff): Simplify code handling `switch'.
21713
21714 2004-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
21715
21716 * pcvs-defs.el (cvs-menu): Add `tag'.
21717
21718 2004-02-11 Luc Teirlinck <teirllm@auburn.edu>
21719
21720 * simple.el (kill-append): Doc fix.
21721
21722 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
21723 Adapt outline-regexp to the new conventions for commenting out code.
21724
21725 2004-02-11 John Paul Wallington <jpw@gnu.org>
21726
21727 * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo.
21728
21729 2004-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
21730
21731 * diff.el (diff-switches): New fun.
21732 (diff, diff-backup): Use it.
21733 (diff): Clean up the args construction. Use backquote.
21734 Use listp instead of consp to avoid putting a nil arg.
21735 (diff): Add a revert-buffer function.
21736
21737 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21738
21739 * x-dnd.el (x-dnd-types-alist): Add COMPOUND_TEXT, FILE_NAME
21740 handled by x-dnd-handle-file-name.
21741 (x-dnd-known-types): Add COMPOUND_TEXT.
21742 (x-dnd-init-frame): Call x-dnd-init-motif-for-frame.
21743 (x-dnd-get-state-cons-for-frame): Must do copy-sequence on
21744 x-dnd-empty-state.
21745 (x-dnd-forget-drop): Ditto.
21746 (x-dnd-save-state): Add optional parameter extra-data (for Motif).
21747 (x-dnd-handle-one-url): Return private when inserting text.
21748 (x-dnd-insert-ctext): New function.
21749 (x-dnd-handle-file-name): New function for FILE_NAME.
21750 (x-dnd-handle-drag-n-drop-event): Add Motif, remove call to error.
21751 (x-dnd-init-motif-for-frame, x-dnd-get-motif-value)
21752 (x-dnd-motif-value-to-list, x-dnd-handle-motif): New functions.
21753
21754 2004-02-10 Kenichi Handa <handa@m17n.org>
21755
21756 * term/x-win.el (x-select-utf8-or-ctext): Use compare-strings
21757 instead of while loop.
21758
21759 2004-02-10 Miles Bader <miles@gnu.org>
21760
21761 * emacs-lisp/macroexp.el: New file, implements `macroexpand-all'.
21762
21763 2004-02-09 Kenichi Handa <handa@m17n.org>
21764
21765 * tar-mode.el (tar-extract): Fix for the case that a file doesn't
21766 have end-of-line.
21767
21768 2004-02-09 Martin Stjernholm <bug-cc-mode@gnu.org>
21769
21770 * Makefile.in: Added extra dependencies in the recompile target
21771 needed to cope with the compile time macro expansions in CC Mode.
21772
21773 2004-02-09 Kim F. Storm <storm@cua.dk>
21774
21775 * fringe.el (no-fringe-bitmap, undef-fringe-bitmap)
21776 (left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
21777 (up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
21778 (continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
21779 (overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
21780 (top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
21781 (bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
21782 (right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
21783 (hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
21784 (bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
21785 (empty-line-fringe-bitmap): Define standard fringe bitmaps id's.
21786
21787 2004-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
21788
21789 * window.el (window-safely-shrinkable-p): Don't change the buffer-list.
21790 Don't allow shrink if there's a window on our right.
21791
21792 * progmodes/prolog.el (prolog-program-name): Use gprolog if available.
21793 (prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
21794 Bring together declaration and initialization.
21795 (prolog-mode-variables): Don't set the syntax table.
21796 Don't set paragraph-start and comment-indent-function.
21797 Add /*..*/ to the comment regexps.
21798 (prolog-mode-commands): Remove. Do it during init of prolog-mode-map.
21799 (prolog-mode-map): Don't bind TAB.
21800 (prolog-mode): Set the syntax table.
21801 (prolog-comment-indent): Remove.
21802 (inferior-prolog-mode-map): Initialize in the declaration.
21803 (inferior-prolog-mode-syntax-table)
21804 (inferior-prolog-mode-abbrev-table): New vars.
21805 (inferior-prolog-mode): Derive from comint-mode.
21806 (run-prolog): Avoid switch-to-buffer which can fail in dedicated and
21807 minibuffer windows.
21808
21809 * progmodes/grep.el (grep-regexp-alist): Allow :, \t and (
21810 in file names, as long as it is unambiguous.
21811
21812 2004-02-08 Andreas Schwab <schwab@suse.de>
21813
21814 * textmodes/reftex-toc.el
21815 (reftex-toc-load-all-files-for-promotion): Remove useless use of
21816 format. Doc fix.
21817
21818 * textmodes/refer.el (refer-find-entry-internal): Remove extra
21819 format string arguments.
21820
21821 * tar-mode.el (tar-parse-octal-integer-safe): Add missing format
21822 string argument.
21823
21824 * progmodes/xscheme.el (verify-xscheme-buffer): Fix format strings.
21825
21826 * play/zone.el (zone-call): Fix format string.
21827
21828 * net/webjump.el (webjump-builtin): Add missing format string argument.
21829
21830 * midnight.el (midnight-delay-set): Remove extra format string
21831 argument.
21832
21833 * mail/rmail.el (rmail-get-new-mail): Remove useless use of format.
21834
21835 * hexl.el (hexl-insert-char): Add missing format string argument.
21836
21837 * format.el (format-decode): Fix format string.
21838
21839 * emulation/vi.el (vi-mode): Remove extra format string argument.
21840 (vi-repeat-last-search): Likewise.
21841 (vi-reverse-last-search): Likewise.
21842 (vi-goto-mark): Likewise.
21843 (vi-reverse-last-find-char): Likewise.
21844 (vi-repeat-last-find-char): Likewise.
21845 (vi-locate-def): Likewise.
21846
21847 * emacs-lisp/lisp-mnt.el (lm-verify): Remove useless use of format.
21848
21849 * ediff-util.el (ediff-toggle-read-only): Remove extra format
21850 string argument.
21851 (ediff-toggle-regexp-match): Likewise.
21852
21853 * dired-aux.el (dired-do-query-replace-regexp): Add missing
21854 format string argument.
21855
21856 * calc/calc-map.el (calc-get-operator): Remove extra format
21857 string argument.
21858
21859 * calc/calc-forms.el (calc-convert-time-zones): Fix format string.
21860
21861 * calc/calc-ext.el (calc-do-prefix-help): Remove extra format
21862 string argument.
21863
21864 * eshell/esh-mode.el (eshell-send-invisible): Fix format string.
21865
21866 * eshell/em-hist.el (eshell-hist-word-reference): Fix format string.
21867
21868 * emulation/viper-ex.el (ex-mark): Remove extra format string argument.
21869
21870 * emacs-lisp/cl-macs.el (defstruct): Remove extra format string arg.
21871 (cl-struct-setf-expander): Likewise.
21872
21873 * vc.el (with-vc-file): Fix unsafe uses of error.
21874 (vc-cancel-version): Likewise.
21875
21876 2004-02-08 Jan Nieuwenhuizen <jan.nieuwenhuizen@aspiratie.nl> (tiny change)
21877
21878 * progmodes/gud.el (gud-jdb-marker-filter): Add period as optional
21879 thousands separator; fixes <class>:<line-number> regexp for
21880 non-english locales.
21881
21882 2004-02-08 Andreas Schwab <schwab@suse.de>
21883
21884 * view.el (view-mode-enable): Revert previous change.
21885
21886 2004-02-07 Kim F. Storm <storm@cua.dk>
21887
21888 * simple.el (line-number-at-pos): Rename from line-at-pos.
21889 Uses changed (what-line and vc-annotate-warp-version).
21890
21891 2004-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
21892
21893 * diff-mode.el (diff-file-regexp-alist, diff-error-regexp-alist)
21894 (diff-mode): Remove aborted attempt at support for compile.el.
21895 (diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.
21896
21897 2004-02-06 Andreas Schwab <schwab@suse.de>
21898
21899 * view.el (view-mode-enable): Add view-mode-map to
21900 minor-mode-overriding-map-alist.
21901
21902 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21903
21904 * x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
21905
21906 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
21907
21908 * progmodes/cperl-mode.el (cperl-fill-paragraph): Call fill-paragraph
21909 with point inside rather than after the paragraph.
21910
21911 2004-02-04 Sam Steingold <sds@gnu.org>
21912
21913 * mail/smtpmail.el (smtpmail-try-auth-methods):
21914 Do not try authentication when no mechanism is available.
21915 Pass port-name as defaultport to `netrc-machine'.
21916
21917 2004-02-04 Stephen Eglen <stephen@gnu.org>
21918
21919 * iswitchb.el (iswitchb-minibuffer-setup-hook): Update doc string
21920 to show how minibuffer height can be constrained.
21921
21922 2004-02-04 John Paul Wallington <jpw@gnu.org>
21923
21924 * files.el (auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
21925
21926 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21927
21928 * x-dnd.el: New file for drag and drop.
21929
21930 * term/x-win.el: require x-dnd, set after-make-frame-functions
21931 to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
21932 drag-n-drop event.
21933
21934 * dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
21935 (dired-dnd-do-ask-action, dired-dnd-handle-local-file)
21936 (dired-dnd-handle-file): New functions for drag and drop support.
21937 (dired-mode): Initialize drag and drop if x-dnd present.
21938
21939 2004-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
21940
21941 * progmodes/cperl-mode.el (cperl-mode-map, cperl-do-auto-fill)
21942 (cperl-menu): Use fill-paragraph, not cperl-fill-paragraph.
21943 (cperl-mode): Set fill-paragraph-function.
21944 (cperl-fill-paragraph): Make it non-interactive.
21945
21946 2004-02-02 Benjamin Rutt <brutt@bloomington.in.us>
21947
21948 * diff-mode.el (diff-mode-shared-map): Bind q to `quit-window'.
21949
21950 2004-02-02 David Kastrup <dak@gnu.org>
21951
21952 * replace.el (perform-replace): Allow 'literal argument in
21953 regexp-flag to indicate literal replacement.
21954 (query-replace-regexp-eval): Use it.
21955
21956 2004-02-01 Andreas Schwab <schwab@suse.de>
21957
21958 * progmodes/executable.el (executable-command-find-posix-p): Doc fix.
21959
21960 2004-02-01 Stephen Eglen <stephen@gnu.org>
21961
21962 * info-look.el: Add support for maxima-mode. Update commentary
21963 because info-lookup-symbol is now bound to C-h S.
21964
21965 2004-01-31 Luc Teirlinck <teirllm@auburn.edu>
21966
21967 * simple.el (edit-and-eval-command): Bind print-level and
21968 minibuffer-history-sexp-flag around call to read-from-minibuffer.
21969 Correct initial position in command-history.
21970
21971 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
21972
21973 * files.el (read-directory-name): Adapt the docstring to recent
21974 change in Fread_file_name.
21975
21976 2004-01-30 Jonathan Yavner <jyavner@member.fsf.org>
21977
21978 * ses.el (ses-print-cell): If print format too wide for column
21979 width, truncate decimal places if that helps to avoid "#####" fill.
21980 * ses.el (ses-initial-column-width): Revert previous change.
21981
21982 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca>
21983
21984 * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var.
21985 (with-buffer-unmodified, with-buffer-prepared-for-jit-lock):
21986 Add edebug info.
21987 (jit-lock-mode): Setup/cancel the new timer.
21988 (jit-lock-context-fontify): New fun. Extracted from
21989 context fontification code of jit-lock-stealth-fontify.
21990 (jit-lock-stealth-fontify): Don't do context fontification any more.
21991
21992 * jit-lock.el (jit-lock-stealth-fontify): Allow quit.
21993 (jit-lock-fontify-now): Handle the `quit' case.
21994 (jit-lock-contextually): Rename from jit-lock-defer-contextually.
21995
21996 2004-01-29 Jari Aalto <jari.aalto@poboxes.com>
21997
21998 * progmodes/executable.el (executable-command-find-posix-p):
21999 New. Check if find handles arguments Posix-style.
22000
22001 * progmodes/grep.el (grep-compute-defaults):
22002 Use executable-command-find-posix-p.
22003 (grep-find): Check `grep-find-command'.
22004
22005 * filecache.el (file-cache-find-posix-p): Delete.
22006 (file-cache-add-directory-using-find):
22007 Use `executable-command-find-posix-p'.
22008
22009 2004-01-29 Dave Love <fx@gnu.org>
22010
22011 * emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
22012 Iterate the hook function if arg is given.
22013 (mark-defun, narrow-to-defun): Change order of finding the limits.
22014
22015 * emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
22016 (byte-compile-format-warn): New.
22017 (byte-compile-callargs-warn): Use it.
22018 (Format, message, error): Add byte-compile-format-like property.
22019 (byte-compile-maybe-guarded): New.
22020 (byte-compile-if, byte-compile-cond): Use it.
22021 (byte-compile-lambda): Compile interactive forms,
22022 just to make warnings about them.
22023
22024 2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
22025
22026 * ses.el (ses-initial-column-width): Increase to 14, so it will
22027 work well with the default printer of "%.7g" for extreme values
22028 like "-1.234567e+07".
22029
22030 2004-01-29 Kenichi Handa <handa@m17n.org>
22031
22032 * term/x-win.el (x-selection-value): Optimize for ASCII only case.
22033
22034 2004-01-28 Peter 'Luna' Runestig <peter@runestig.com>
22035
22036 * dos-w32.el: Added support for the `default-printer-name' function.
22037
22038 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
22039
22040 * server.el (server-socket-name): Don't use the hostname in the
22041 socket name since /tmp is local to the host anyway.
22042
22043 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
22044 robust check of widening and fix var-naming.
22045
22046 2004-01-27 Eli Tziperman <eli@deas.harvard.edu>
22047
22048 * rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
22049 or rmail-spam- to rsf- in all function and variable names.
22050 (rsf-min-region-to-spam-list): New variable.
22051 (rsf-bbdb-auto-delete-spam-entries): Rename from
22052 rmail-bbdb-auto-delete-spam-bbdb-entries. The cc: field is
22053 scanned together with the recipients field for spam testing; Don't
22054 delete spam message if rmail-delete-after-output is non-nil;
22055 (rsf-check-field): New function, extracted from code in
22056 rmail-spam-filter to ease addition of header fields like
22057 content-type:;
22058 (message-content-type): New variable. The content-type: field was
22059 added also in defcustom of rsf-definitions-alist;
22060 (rmail-spam-filter): Replace repeated test code for header fields
22061 by calls to check-field; change the call to
22062 rmail-output-to-rmail-file such that rmail-current-message stays
22063 the same to avoid wrong deletion of unseen flags.
22064 (rmail-use-spam-filter): Add autoload cookie.
22065
22066 2004-01-27 Jari Aalto <jari.aalto@poboxes.com>
22067
22068 * filecache.el (file-cache-find-posix-p): New function. Detect Cygwin.
22069 (file-cache-add-directory-using-find): Add Cygwin support.
22070 (file-cache-find-command-posix-flag): New user variable.
22071
22072 * filecache.el (file-cache-add-directory): Check for
22073 directories an remove them from dir-files.
22074
22075 2004-01-27 Richard M. Stallman <rms@gnu.org>
22076
22077 * man.el (Man-fontify-manpage): Clean up message.
22078
22079 2004-01-27 Kenichi Handa <handa@m17n.org>
22080
22081 * textmodes/paragraphs.el (sentence-end-without-space): New variable.
22082 (sentence-end): Define using sentence-end-without-space.
22083
22084 * textmodes/fill.el (fill-delete-newlines): Don't add a space if
22085 a sentence ends with one of a character in sentence-end-without-space.
22086
22087 2004-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
22088
22089 * font-lock.el (font-lock): Add jit-lock as explicit group member.
22090 (jit-lock): Group declaration moved to jit-lock.el.
22091 (toplevel): Don't explicitly require jit-lock, since it's autoloaded
22092 when necessary.
22093
22094 * jit-lock.el (jit-lock): Move group declaration from font-lock.el.
22095 (jit-lock-context-unfontify-pos): Rename from
22096 jit-lock-first-unfontify-pos.
22097 (jit-lock-defer-buffers): Rename from jit-lock-buffers.
22098
22099 2004-01-25 Glenn Morris <gmorris@ast.cam.ac.uk>
22100
22101 * progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
22102 (fortran-break-delimiters-re, fortran-no-break-re): New consts.
22103 (fortran-fill): When filling a string, adjust re-search-backward
22104 argument for special case of string just on fill-column.
22105 When filling non-string, allow one extra char if
22106 fortran-break-before-delimiters is non-nil.
22107 Suggested by Michael Hagemann <michael.hagemann@unibas.ch>.
22108 Use fortran-break-delimiters-re and fortran-no-break-re to
22109 correctly handle cases such as "**".
22110
22111 * progmodes/f90.el (f90-break-delimiters): Doc fix.
22112 (f90-no-break-re): Add some extra tokens. Doc fix.
22113
22114 2004-01-24 Thien-Thi Nguyen <ttn@gnu.org>
22115
22116 * mail/rmail-spam-filter.el:
22117 Use two semicolons as Commentary line prefix.
22118 Add ";;; Code:" stylized comment.
22119 Delete end-of-line whitespace.
22120 Wrap (require 'cl) with `eval-when-compile'.
22121
22122 2004-01-23 Benjamin Rutt <brutt@bloomington.in.us>
22123
22124 * vc.el (vc-annotate): Fix improper use of `make-local-variable'
22125 at the top level of vc.el.
22126
22127 2004-01-23 Andre Spiegel <spiegel@gnu.org>
22128
22129 * vc.el (vc-current-line): Function removed. This is now done by
22130 the new function line-at-pos in simple.el.
22131 (vc-annotate-warp-version): Use line-at-pos instead of
22132 vc-current-line.
22133
22134 2004-01-22 Kim F. Storm <storm@cua.dk>
22135
22136 * simple.el (line-at-pos): New defun.
22137 (what-line): Use it. Optimize by only counting lines in narrowed
22138 region once.
22139
22140 2004-01-22 Kenichi Handa <handa@m17n.org>
22141
22142 * language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
22143 point (register r1) only for charset mule-unicode-0100-24ff.
22144
22145 2004-01-21 Markus Rost <rost@mathematik.uni-bielefeld.de>
22146
22147 * mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
22148 trailing white space and ensure a final newline.
22149
22150 * mail/rmail-spam-filter.el (rmail-use-spam-filter):
22151 Add autoload cookie.
22152
22153 2004-01-21 Benjamin Rutt <brutt@bloomington.in.us>
22154
22155 * vc.el (vc-annotate-mode): Inherit from fundamental-mode and
22156 activate view-mode explicitly.
22157
22158 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22159
22160 * term/x-win.el (x-clipboard-yank, menu-bar-edit-menu): Call
22161 menu-bar-enable-clipboard and make Paste use clipboard first.
22162
22163 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
22164
22165 * vc-mcvs.el (vc-mcvs-mode-line-string): Remove. Does not work.
22166 (vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
22167 (vc-mcvs-cvs): Remove.
22168 (vc-mcvs-command): Remove use of assert.
22169
22170 * outline.el (outline-insert-heading): Tighten up match.
22171 (outline-demote, outline-move-subtree-down): Don't assume anything
22172 about outline-regexp.
22173
22174 * textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
22175 (texinfo-show-structure): Explicitly add ^, and simplify.
22176
22177 2004-01-20 Glenn Morris <gmorris@ast.cam.ac.uk>
22178
22179 * calendar/appt.el (appt-check): Restore usage of
22180 appt-issue-message deleted in previous change.
22181 (top-level): Activate package when loaded (needed for backwards
22182 compatibility).
22183
22184 2004-01-20 Jesper Harder <harder@ifa.au.dk>
22185
22186 * mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
22187 following previous change to smtpmail-send-data.
22188
22189 2004-01-20 Benjamin Rutt <brutt@bloomington.in.us>
22190
22191 * vc.el (vc-default-previous-version): Doc enhancement.
22192 (vc-default-next-version): New function.
22193 (vc-print-log): New arg FOCUS-REV.
22194 (vc-annotate-mode): Derive from view-mode.
22195 (vc-annotate): New args REVISION, DISPLAY-MODE.
22196 (vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
22197 (vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
22198 (vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
22199 (vc-annotate-show-diff-revision-at-line, vc-current-line)
22200 (vc-annotate-prev-version, vc-annotate-next-version): New functions.
22201
22202 * vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.
22203
22204 2004-01-19 Karl Berry <karl@gnu.org>
22205
22206 * textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
22207 or "TexInfo".
22208
22209 2004-01-19 Luc Teirlinck <teirllm@auburn.edu>
22210
22211 * subr.el (delete-dups): New function.
22212
22213 2004-01-19 Karl Berry <karl@gnu.org>
22214
22215 * textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
22216 with ^, since that's what texinfo-show-structure
22217 documentation says (plus it works much better in texinfo.txi).
22218
22219 2004-01-18 Jesper Harder <harder@ifa.au.dk>
22220
22221 * mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.
22222
22223 2004-01-18 David Ponce <david@dponce.com> (tiny change)
22224
22225 * progmodes/which-func.el (which-function-mode): Don't cancel
22226 which-func-update-timer if not set.
22227
22228 2004-01-17 Thien-Thi Nguyen <ttn@gnu.org>
22229
22230 * calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
22231 Remove spurious left square bracket in XX:XXam regexp.
22232
22233 2004-01-16 Luc Teirlinck <teirllm@auburn.edu>
22234
22235 * progmodes/cc-defs.el: Do not require cl at run time.
22236
22237 2004-01-16 Richard M. Stallman <rms@gnu.org>
22238
22239 * emacs-lisp/cl.el (cl-cannot-unload): New function.
22240 (cl-unload-hook): Defvar this to run cl-cannot-unload.
22241
22242 * mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
22243 Call rmail-spam-filter. Delete and expunge spam.
22244 Print number of spam messages deleted.
22245 Save and restore the deletion status of old messages when reading
22246 new mail with spam filter, so that expunging spam does not expunge
22247 msgs deleted by the user.
22248 (rmail-only-expunge): Add an optional argument dont-show to
22249 prevent showing message after expunge.
22250
22251 2004-01-15 Luc Teirlinck <teirllm@auburn.edu>
22252
22253 * emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
22254 * subr.el (declare): New macro.
22255
22256 2004-01-15 Thien-Thi Nguyen <ttn@gnu.org>
22257
22258 * progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".
22259
22260 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
22261
22262 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
22263 Test window-system rather than system-type (for X11/Mac).
22264
22265 2004-01-12 Luc Teirlinck <teirllm@auburn.edu>
22266
22267 * emacs-lisp/bytecomp.el (compile-defun): Doc fix.
22268
22269 2004-01-12 Richard M. Stallman <rms@gnu.org>
22270
22271 * mail/rmail.el (rmail-convert-to-babyl-format):
22272 Use mail-unquote-printable-region.
22273 (rmail-hex-string-to-integer, rmail-decode-quoted-printable):
22274 (rmail-hex-char-to-integer): Functions deleted.
22275
22276 * mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
22277 (mail-unquote-printable-region): New arg NOERROR.
22278 For invalid encoding, either signal an error to just return nil.
22279
22280 2004-01-11 Glenn Morris <gmorris@ast.cam.ac.uk>
22281
22282 * calendar/appt.el: Update copyright and commentary.
22283 (appt-issue-message): Make obsolete.
22284 (appt-visible, appt-msg-window): Make obsolete, in favor of
22285 appt-display-format.
22286 (appt-display-mode-line, appt-display-duration)
22287 (appt-display-diary, appt-time-msg-list, appt-mode-string)
22288 (appt-prev-comp-time, appt-display-count, appt-timer)
22289 (appt-convert-time): Doc change.
22290 (appt-disp-window-function, appt-delete-window-function):
22291 Use defcustom rather than defvar.
22292 (appt-display-format): New variable.
22293 (appt-display-message): New function with display code from appt-check.
22294 (appt-check): Add optional FORCE argument. Doc change.
22295 Add appt-make-list to diary-hook if displaying diary.
22296 Remove checking of view-diary-entries-initially.
22297 Message display section removed to new function appt-display-message.
22298 (appt-display-window): Doc change. Remove unused internal var
22299 this-buffer. Do not beep, since appt-display-message does that.
22300 (appt-make-list): Doc change. Use caar.
22301 (appt-sort-list): Simplify by using builtin sort function.
22302 (appt-update-list): New function for updating appts when diary is
22303 saved.
22304 (appt-activate): New autoloaded function to toggle package
22305 functionality.
22306
22307 * calendar/cal-x.el: (calendar-one-frame-setup)
22308 (calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.
22309
22310 * calendar/calendar.el: Update copyright.
22311 (view-diary-entries-initially, european-calendar-style): Doc change.
22312 (calendar-setup): Make defcustom rather than defvar.
22313 (mark-visible-calendar-date): Initialize temp-face and faceinfo
22314 in let binding so local to function.
22315
22316 * calendar/diary-lib.el: Update copyright.
22317 (diary, diary-entry-time): Doc change.
22318 (list-diary-entries): Doc change. Trivial logic change.
22319 (fancy-diary-display): Restore make-face command mistakenly
22320 deleted 2003-05-08.
22321 (show-all-diary-entries): Allow to pop-up frame if needed.
22322
22323 2004-01-09 John Paul Wallington <jpw@gnu.org>
22324
22325 * bindings.el (mode-line-change-eol): Add EVENT parameter.
22326 Temporarily select EVENT's window for changing eol type.
22327
22328 2004-01-09 Deepak Goel <deego@gnufans.org>
22329
22330 * calendar/diary-lib.el (diary-entry-time):
22331 Also accept time in the form XX[.XX][am/pm/AM/PM].
22332 (fancy-diary-font-lock-keywords): Likewise.
22333 (diary-font-lock-keywords): Likewise.
22334 * calendar/appt.el (appt-add): Likewise.
22335 (appt-make-list): Likewise.
22336 (appt-convert-time): Likewise.
22337
22338 2004-01-08 Nick Roberts <nick@nick.uklinux.net>
22339
22340 * gdb-ui.el (gdb-ann3): Revert previous change.
22341 (gdb-source-info): Allow for case of where compilation directory
22342 is not recorded.
22343
22344 2004-01-08 John Paul Wallington <jpw@gnu.org>
22345
22346 * emerge.el (emerge-restore-buffer-characteristics): Doc fix.
22347
22348 2004-01-07 Nick Roberts <nick@nick.uklinux.net>
22349
22350 * progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt
22351
22352 * gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
22353 (gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
22354 problems.
22355 (gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.
22356
22357 2004-01-07 Luc Teirlinck <teirllm@auburn.edu>
22358
22359 * files.el (write-file-functions, write-contents-functions):
22360 Clarify docstrings.
22361
22362 2004-01-07 Kenichi Handa <handa@m17n.org>
22363
22364 * international/mule.el (set-auto-coding): Fix for the case that
22365 end-of-line is only CR.
22366
22367 2004-01-07 Kim F. Storm <storm@cua.dk>
22368
22369 * subr.el (event-start, event-end): Doc fix.
22370 (posn-string, posn-image): New defuns.
22371 (posn-object): Return either image or string object.
22372 (posn-object-x-y): Return 8th element of position.
22373 (posn-object-width-height): New defun.
22374
22375 2004-01-06 Andreas Schwab <schwab@suse.de>
22376
22377 * gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
22378 output.
22379
22380 2004-01-05 Karl Berry <karl@gnu.org>
22381
22382 * emacs-lisp/copyright.el (copyright-regexp): Might as well allow
22383 / and *, too.
22384
22385 2003-12-31 Simon Josefsson <jas@extundo.com>
22386
22387 * files.el (before-save-hook): Add.
22388 (basic-save-buffer): Use before-save-hook.
22389
22390 * emacs-lisp/copyright.el: Fix comment to recommend
22391 before-save-hook instead of write-file-functions.
22392
22393 2004-01-05 Richard M. Stallman <rms@gnu.org>
22394
22395 * finder.el (finder-commentary): Call delete-other-windows.
22396
22397 * net/ange-ftp.el (ange-ftp-file-attributes):
22398 Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.
22399
22400 2004-01-04 Karl Berry <karl@gnu.org>
22401
22402 * emacs-lisp/copyright.el (copyright-regexp): Allow the common
22403 comment characters % and # in the copyright year notice,
22404 as well as ;.
22405
22406 2004-01-04 Per Abrahamsen <abraham@dina.kvl.dk>
22407
22408 * wid-edit.el (default): Define dummy :value-delete.
22409 Reported by Jesper Harder <harder@ifa.au.dk>.
22410
22411 2004-01-03 Richard M. Stallman <rms@gnu.org>
22412
22413 * progmodes/compile.el (compile-internal): Use point, not point-min,
22414 for set-window-point.
22415
22416 * textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.
22417
22418 * emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.
22419
22420 * progmodes/grep.el (grep-mode-map):
22421 Don't remap next-line, previous-line.
22422
22423 2004-01-03 Eric M. Ludlam <eric@siege-engine.com>
22424
22425 * speedbar.el (speedbar-edit-line): Change regexp to position
22426 the cursor on the first character of this line's button.
22427
22428 2004-01-03 Luc Teirlinck <teirllm@auburn.edu>
22429
22430 * subr.el (functionp): Doc fix.
22431
22432 2004-01-03 Jesper Harder <harder@ifa.au.dk> (tiny change)
22433
22434 * progmodes/idlwave.el (idlwave-make-tags):
22435 * textmodes/flyspell.el (flyspell-large-region):.
22436 * progmodes/make-mode.el (makefile-query-by-make-minus-q):
22437 * emulation/viper-util.el (viper-glob-unix-files):
22438 * emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
22439 * man.el (Man-init-defvars):
22440 * jka-compr.el (jka-compr-call-process):
22441 * files.el (get-free-disk-space,insert-directory):
22442 * ediff-ptch.el (ediff-test-patch-utility):
22443 * ediff-diff.el (ediff-test-utility):
22444 * dired-aux.el (dired-check-process):
22445 * mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
22446 test the return value of call-process, because it can be a string.
22447
22448 2003-12-31 John Paul Wallington <jpw@gnu.org>
22449
22450 * bindings.el (completion-ignored-extensions): Add .pfsl.
22451
22452 2003-12-31 Kim F. Storm <storm@cua.dk>
22453
22454 * ido.el (ido-nonreadable-directory-p): New defun to check for
22455 nonreadable directory without activating tramp (to avoid problems
22456 with checking incomplete tramp paths).
22457 (ido-set-current-directory, ido-file-internal)
22458 (ido-file-name-all-completions1): Use it.
22459
22460 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
22461
22462 * help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
22463 documentation if the anchor (or node) name is preceded by `info
22464 anchor' or `Info anchor' in addition to earlier `info node' and
22465 `Info node'.
22466 (help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.
22467
22468 2003-12-30 Eli Zaretskii <eliz@gnu.org>
22469
22470 * mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
22471 error in arguments to base64-decode-region. Remove ^M characters
22472 after decoding base64.
22473
22474 2003-12-30 Simon Josefsson <jas@extundo.com>
22475
22476 * textmodes/texinfo.el: Change maintainer to FSF. Suggested by
22477 karl@freefriends.org (Karl Berry), since the Texinfo Elisp files
22478 have only been distributed with Emacs for some years.
22479 (texinfo-mode-hook): Customize.
22480
22481 2003-12-30 Eli Zaretskii <eliz@gnu.org>
22482
22483 * mail/rmail.el (rmail-convert-to-babyl-format): Make the code
22484 cleaner (suggested by Richard Stallman).
22485
22486 * progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
22487 for gud-next, gud-nexti, gud-step and gud-stepi to prevent
22488 file-name clashes on 8+3 DOS filesystems.
22489
22490 * toolbar/gud-next.pbm, toolbar/gud-next.xpm
22491 * toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
22492 * toolbar/gud-step.pbm, toolbar/gud-step.xpm
22493 * toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
22494 gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
22495 file-name clashes on 8+3 filesystems.
22496
22497 * emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
22498 Renamed from testcover-unsafep.el and testcover-ses.el to avoid
22499 file-name clashes on 8+3 DOS filesystems.
22500
22501 2003-12-29 Richard M. Stallman <rms@gnu.org>
22502
22503 * mail/mail-utils.el (mail-unquote-printable-hexdigit):
22504 Upcase the character.
22505
22506 * textmodes/flyspell.el (mail-mode-flyspell-verify):
22507 Search for header separator alone on a line, literally,
22508 and search for it backward, not forward.
22509 (flyspell-abbrev-table): Always use global-abbrev-table
22510 if there is no local one.
22511
22512 * progmodes/sh-script.el (sh-get-indent-info):
22513 Don't move point back if at bob.
22514
22515 * progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.
22516
22517 * play/handwrite.el (handwrite): Make the handwrite credit message
22518 a comment rather than an output command.
22519
22520 * obsolete/sc.el: Display message that this file is obsolete.
22521
22522 * net/ange-ftp.el (ange-ftp-start-process): Copy the environment.
22523
22524 * mail/rfc822.el (rfc822-address-start): Declare variable.
22525 Renamed from address-start. All uses changed.
22526
22527 * term.el (term-exec): Set up sentinel.
22528 (term-sentinel): New function.
22529 (term-handle-exit): New function.
22530
22531 * subr.el (assoc-ignore-case, assoc-ignore-representation):
22532 Use assoc-string, and mark them obsolete.
22533 (delay-mode-hooks): Mark as permanent local.
22534
22535 * simple.el (sendmail-user-agent-compose): Use assoc-string.
22536
22537 * register.el (copy-rectangle-to-register): Doc fix.
22538
22539 * info.el (Info-insert-dir): Use assoc-string.
22540
22541 * info-look.el (info-lookup): Use assoc-string.
22542
22543 * frame.el (pop-up-frame-function): Use quote, not `function'.
22544 (frame-notice-user-settings): Calculate ADJUSTED-TOP
22545 copying with lists as coordinate values.
22546
22547 * font-lock.el (font-lock-after-change-function): Bind inhibit-quit.
22548
22549 * find-dired.el (kill-find): New command.
22550 (find-dired): Make buffer read-only.
22551 Set up a keymap with C-c C-k running kill-find.
22552 (find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.
22553
22554 * files.el (backup-buffer-copy): If MODES is nil, don't set modes.
22555
22556 * filecache.el (file-cache-ignore-case): New variable.
22557 (file-cache-assoc-function): Var deleted. Use assoc-string instead.
22558
22559 * comint.el (comint-arguments): Set COUNT after ARGS is complete.
22560 (comint-dynamic-complete-as-filename): Rename local vars.
22561 (comint-dynamic-list-filename-completions): Likewise.
22562
22563 * comint.el (comint-dynamic-list-completions-config): New var.
22564 (comint-dynamic-list-completions): Handle both SPC and TAB right.
22565
22566 * comint.el (comint-file-name-chars): Add [].
22567 (comint-word): Use skip-chars-backward, not search.
22568
22569 * shell.el (shell-file-name-chars): Add [].
22570
22571 * shell.el (shell-dynamic-complete-as-command): Rename local vars.
22572
22573 * bookmark.el (bookmark-get-bookmark): Use assoc-string.
22574
22575 * generic.el (define-generic-mode): Doc fix.
22576
22577 2003-12-29 Eli Zaretskii <eliz@gnu.org>
22578
22579 * files.el (kill-some-buffers): Doc fix.
22580
22581 2003-12-29 David Herring <sdh6@ra.msstate.edu> (tiny change)
22582
22583 * comint.el (comint-watch-for-password-prompt): Pass `string' as
22584 arg to send-invisible
22585 (send-invisible): Doc fix. The argument is now a prompt, not the
22586 string to send.
22587 (comint-read-noecho): Doc fix.
22588
22589 2003-12-29 Michael R. Wolf <MichaelRWolf@att.net> (tiny change)
22590
22591 * net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
22592 "@", as required by some ISP hosting service. Fix defcustom
22593 argument syntax errors that prevented use of customization.
22594
22595 2003-12-29 Eli Zaretskii <eliz@gnu.org>
22596
22597 * xml.el (xml-get-attribute-or-nil): Doc fix.
22598
22599 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
22600
22601 * net/zone-mode.el (zone-mode): Use write-file-functions, not
22602 write-file-hooks.
22603
22604 2003-12-29 Eric Hanchrow <offby1@blarg.net> (tiny change)
22605
22606 * autorevert.el (auto-revert-interval): Doc fix.
22607
22608 2003-12-29 Mark A. Hershberger <mah@everybody.org>
22609
22610 * xml.el (xml-get-attribute-or-nil): New function, like
22611 xml-get-attribute, but returns nil if the attribute was not found.
22612 (xml-get-attribute): Convert to defsubst, uses
22613 xml-get-attribute-or-nil.
22614
22615 2003-12-29 Eli Zaretskii <eliz@gnu.org>
22616
22617 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix.
22618
22619 2003-12-29 Alex Schroeder <alex@emacswiki.org> (tiny change)
22620
22621 * custom.el (custom-declare-theme): Use `value' when putting
22622 properties on `theme'.
22623
22624 2003-12-29 Takaaki Ota <Takaaki.Ota@am.sony.com>
22625
22626 * subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
22627 for each yank-handler segment.
22628 (insert-for-yank-1): New function, with the body of the previous
22629 insert-for-yank.
22630
22631 * textmodes/table.el (table-yank-handler): New defcustom.
22632 (table--put-cell-indicator-property): Put yank-handler property
22633 that indicates the yank handler for the table cell.
22634
22635 2003-12-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
22636
22637 * generic-x.el (etc-modules-conf-generic-mode): A more complete
22638 set of keywords.
22639
22640 2003-12-29 Eli Zaretskii <eliz@gnu.org>
22641
22642 * international/mule-cmds.el (reset-language-environment)
22643 (set-language-environment): Don't invoke fontset-related functions
22644 if fontset-list is not fboundp.
22645
22646 2003-12-29 Kenichi Handa <handa@m17n.org>
22647
22648 * international/mule-cmds.el (reset-language-environment):
22649 Call set-overriding-fontspec-internal with nil.
22650 (set-language-environment): Call set-overriding-fontspec-internal
22651 if the language environment specify `overriding-fontspec'.
22652 (language-info-alist): Doc added.
22653
22654 * language/cyrillic.el (ccl-encode-koi8-font): Make it work for
22655 characters of mule-unicode-0100-24ff.
22656 (ccl-encode-windows-1251-font): New CCL program.
22657 ("Bulgarian"): Specify overriding-fontspec.
22658 ("Belarusian"): Likewise.
22659
22660 2003-12-28 Sam Steingold <sds@gnu.org>
22661
22662 * net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
22663 parameter ID-FORMAT to conform with the 2003-11-30 patch.
22664
22665 2003-12-28 Nick Roberts <nick@nick.uklinux.net>
22666
22667 * progmodes/gud.el (gud-gdb-command-name): Set default to
22668 "gdb --annotate=3".
22669 (gud-gdb-marker-filter): Look out for annotations.
22670 (gdb-first-pre-prompt): New variable.
22671 Remove trailing white space.
22672
22673 * gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
22674 if necessary.
22675 (gdb-ann3): New function. Initialize M-x gdb as for M-x gdba if
22676 annotations are detected.
22677 (gud-gdba-marker-filter): Use global variable gud-marker-acc
22678 instead of a local one to allow transition from
22679 gud-gdb-marker-filter.
22680 Remove trailing white space.
22681
22682 2003-12-27 Kim F. Storm <storm@cua.dk>
22683
22684 * ido.el: Handle non-readable directories.
22685 (ido-decorations): Add 9th element for non-readable directory.
22686 (ido-directory-nonreadable): New dynamic var.
22687 (ido-set-current-directory): Set it.
22688 (ido-read-buffer, ido-file-internal):
22689 (ido-read-file-name, ido-read-directory-name): Let-bind it.
22690 (ido-file-name-all-completions1): Return empty list for
22691 non-readable directory.
22692 (ido-exhibit): Print [Not readable] if directory is not readable.
22693 (ido-expand-directory): New defun (based on tiny fix from Karl Chen).
22694 (ido-read-file-name, ido-file-internal, ido-read-directory-name):
22695 Use it.
22696
22697 2003-12-27 Lars Hansen <larsh@math.ku.dk>
22698
22699 * ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
22700 calls to directory-files-and-attributes and file-attributes.
22701 (ls-lisp-format): Remove system dependent handling of user and
22702 group id's.
22703
22704 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
22705
22706 * ffap.el (ffap-read-file-or-url): Revert previous change.
22707
22708 2003-12-25 Robert J. Chassell <bob@rattlesnake.com>
22709
22710 * textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
22711 new list of included files called `files-with-node-lines', that
22712 only have node lines. This way @include commands can include any
22713 file, such as version and update files without node lines, not
22714 just files that are chapters.
22715
22716 2003-12-25 Andreas Schwab <schwab@suse.de>
22717
22718 * jka-compr.el (jka-compr-insert-file-contents): Avoid error when
22719 file not found.
22720
22721 2003-12-08 Miles Bader <miles@gnu.org>
22722
22723 * dired.el (dired-between-files): Always use dired-move-to-filename,
22724 which is more robust in non-english locales.
22725
22726 2003-12-25 Markus Rost <rost@mathematik.uni-bielefeld.de>
22727
22728 * vc.el (vc-dired-purge): Avoid error from `kill-line'.
22729
22730 2003-12-24 Andreas Schwab <schwab@suse.de>
22731
22732 * shell.el (shell-file-name-quote-list): Add backslash.
22733
22734 * comint.el (comint-quote-filename): Correctly handle backslash
22735 in comint-file-name-quote-list.
22736
22737 2003-12-24 Kenichi Handa <handa@m17n.org>
22738
22739 * international/mule-cmds.el (set-default-coding-systems):
22740 Call ucs-set-table-for-input for all buffers that don't have local
22741 value of buffer-file-coding-system.
22742
22743 * international/ucs-tables.el (ucs-set-table-for-input):
22744 If translation-table-for-encode is a symbol, get its
22745 translation-table property.
22746
22747 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
22748
22749 * ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
22750 to `completing-read' on a recently fixed bug.
22751
22752 * fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
22753 instead of SPACE, to get the list of possible fringe modes.
22754 SPACE only works if both `partial-completion-mode' and
22755 `completion-auto-help' are nil.
22756
22757 * complete.el (PC-is-complete-p): Delete.
22758 (PC-do-completion): Replace all calls to `PC-is-complete-p' with
22759 calls to `test-completion'.
22760
22761 2003-12-23 Nick Roberts <nick@nick.uklinux.net>
22762
22763 * progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
22764 to edit values when there are no children.
22765
22766 * gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
22767 a mode called "Assembler" already exists.
22768 (gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
22769 (gud-watch): Use format option. Remove font properties from string.
22770 (gdb-var-create-handler, gdb-var-list-children-handler):
22771 Don't bother about properties as there are none.
22772 (gdb-var-create-handler, gdb-var-list-children-handler)
22773 (gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
22774 with two arguments.
22775 (gdb-var-evaluate-expression-handler, gdb-post-prompt):
22776 Let speedbar show value changes with a different font.
22777 (gdb-edit-value): New defun.
22778 (gdb-clear-partial-output, gdb-clear-inferior-io)
22779 (def-gdb-auto-update-handler): Use erase-buffer.
22780 (gdb-frame-handler): Display watch expressions in
22781 FUNCTION::VARIABLE format if required.
22782
22783 2003-12-23 John Paul Wallington <jpw@gnu.org>
22784
22785 * info.el (Info-unescape-quotes, Info-split-parameter-string)
22786 (Info-goto-emacs-command-node): Doc fixes.
22787
22788 2003-12-12 Jesper Harder <harder@ifa.au.dk>
22789
22790 * cus-edit.el (custom-add-parent-links): Define "many".
22791
22792 2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
22793
22794 * wid-edit.el (widget-child-value-get, widget-child-value-inline)
22795 (widget-child-validate, widget-type-value-create)
22796 (widget-type-default-get, widget-type-match): New functions.
22797 (lazy): New widget.
22798 (menu-choice, checklist, radio-button-choice, editable-list)
22799 (group, documentation-string): Remove redundant (per 2003-10-25
22800 change) calls to `widget-children-value-delete'.
22801 (widget-choice-value-get, widget-choice-value-inline): Remove.
22802 (menu-choice): Update widget.
22803
22804 2003-12-03 Kenichi Handa <handa@m17n.org>
22805
22806 * language/cyrillic.el: Register "microsoft-cp1251" in
22807 ctext-non-standard-encodings-alist.
22808 ("Bulgarian"): Add ctext-non-standard-encodings.
22809 ("Belarusian"): Likewise.
22810
22811 * international/mule-conf.el (compound-text-with-extensions):
22812 Change the type to 2 (iso-2022 base).
22813
22814 * international/mule.el (ctext-non-standard-encodings-alist):
22815 Change the format.
22816 (ctext-non-standard-encodings): New variable.
22817 (ctext-post-read-conversion): Fully re-written.
22818 (ctext-non-standard-designations-alist): Delete it.
22819 (ctext-non-standard-encodings-table): New function.
22820 (ctext-pre-write-conversion): Fully re-written.
22821
22822 2003-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
22823
22824 * cus-edit.el (custom-add-parent-links): Add documentation links
22825 for parent, if the item has none of its own.
22826
22827 2003-11-30 Richard M. Stallman <rms@gnu.org>
22828
22829 * dired-aux.el (dired-do-query-replace-regexp):
22830 Report files visited read-only.
22831
22832 2003-11-30 Juri Linkov <juri@jurta.org>
22833
22834 * dired-aux.el (dired-compare-directories): New command.
22835 (dired-file-set-difference, dired-files-attributes): New functions.
22836
22837 2003-11-30 Kai Grossjohann <kai.grossjohann@gmx.net>
22838 Version 2.0.38 of Tramp released.
22839
22840 * net/tramp.el (tramp-chunksize): Extend docstring. Suggested by
22841 Charles Curley <charlescurley@charlescurley.com>.
22842 (tramp-multi-connection-function-alist): Add ssht entry which adds
22843 "-e none -t -t" to the list of ssh args. Suggested by Adrian
22844 Aichner.
22845 (tramp-get-method-parameter): New function to retrieve a method
22846 parameter. This allows for omission of method parameters.
22847 Callers adjusted.
22848
22849 2003-11-30 Michael Albinus <Michael.Albinus@alcatel.de>
22850
22851 * net/tramp.el: Add new optional parameter ID-FORMAT to
22852 `file-attributes'. Calls of `file-attributes' won't use this
22853 parameter for backward compatibility reasons.
22854 (tramp-perl-file-attributes): Add a new parameter to Perl script
22855 in order to handle uid/gid as strings, if desired.
22856 (tramp-handle-file-truename, tramp-handle-file-symlink-p):
22857 Apply `file-attributes' instead of `tramp-handle-file-attributes' in
22858 order to make the function more general.
22859 (tramp-handle-file-attributes): Replace proprietary optional
22860 parameter NONNUMERIC by the recently (Emacs 22.1) introduced ID-FORMAT.
22861 (tramp-handle-file-attributes-with-perl): Handle parameter
22862 NONNUMERIC if set. This wasn't done in the past.
22863 (tramp-post-connection): Apply second parameter "$2" if
22864 `tramp-remote-perl' is called.
22865
22866 * net/tramp-smb.el (tramp-smb-handle-delete-file):
22867 Correct cut'n'waste error (`filename' instead of `directory').
22868 (tramp-smb-handle-directory-files-and-attributes)
22869 (tramp-smb-handle-file-attributes): Add recently (Emacs 22.1)
22870 introduced parameter ID-FORMAT.
22871 (tramp-smb-handle-make-directory-internal): Correct cut'n'waste
22872 error (`directory' instead of `ldir').
22873
22874 * net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
22875 `file-attributes' has a second parameter. If yes, apply it with
22876 value "'integer". Otherwise, don't use that parameter (default is
22877 integer format).
22878
22879 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
22880
22881 * help.el (help-map): Bind `display-local-help' to `C-h .'.
22882 (help-for-help): Add `C-h .' to the listed Help options.
22883 Remove trailing whitespace.
22884
22885 * help-at-pt.el: New file.
22886
22887 2003-11-30 Jonathan Yavner <jyavner@member.fsf.org>
22888
22889 * subr.el (noreturn, 1value): New macros for test coverage.
22890 See `testcover.el'.
22891
22892 * emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and
22893 `1value'.
22894
22895 * emacs-lisp/testcover.el (testcover-reinstrument): Special case
22896 for macro `1value'.
22897 (testcover-1value): New function. Checks that a 1value form
22898 actually returns only one value. Requested by RMS.
22899
22900 2003-11-29 Nick Roberts <nick@nick.uklinux.net>
22901
22902 * gdb-ui.el (gud-watch, gdb-var-create-handler)
22903 (gdb-var-list-children, gdb-var-list-children-handler)
22904 (gdb-var-update-handler, gdb-var-delete): Add server prefix to the
22905 gdb commands that use mi to keep them out of the command history.
22906
22907 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22908
22909 * cus-start.el (all): Add use-file-dialog.
22910
22911 2003-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
22912
22913 * textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.
22914
22915 2003-11-27 Kim F. Storm <storm@cua.dk>
22916
22917 * subr.el (posn-object-x-y): New defun.
22918
22919 2003-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
22920
22921 * progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
22922 Don't use `space' for \\\n.
22923 Be more selective as to which # are comment-starters.
22924
22925 2003-11-26 Luc Teirlinck <teirllm@auburn.edu>
22926
22927 * subr.el (number-sequence): Improve handling of floating point
22928 arguments (suggested by Kim Storm). Allow negative arguments.
22929
22930 2003-11-26 Kenichi Handa <handa@m17n.org>
22931
22932 * international/mule-cmds.el (standard-display-european-internal):
22933 Cancel the standard-display-table setting for ` and '.
22934
22935 2003-11-26 Kim F. Storm <storm@cua.dk>
22936
22937 * ido.el (ido-use-filename-at-point, ido-use-url-at-point):
22938 New defcustoms to add ffap-like functionality to ido.
22939 (ido-saved-vc-hb): Rename from ido-saved-vc-mt. Uses changed.
22940 (ido-no-final-slash): New defun.
22941 (ido-make-prompt, ido-file-internal, ido-toggle-vc)
22942 (ido-read-file-name): ): Toggle VC checking via
22943 vc-handled-backends instead of vc-master-templates.
22944 (ido-file-internal): Handle ido-use-url-at-point and
22945 ido-use-filename-at-point via code borrowed from ffap-guesser.
22946 Handle new ido-exit code ffap.
22947 (ido-sort-list): Ignore final slash when sorting file names.
22948
22949 2003-11-25 Kim F. Storm <storm@cua.dk>
22950
22951 * emulation/cua-base.el (cua--standard-movement-commands):
22952 Add forward-sentence and backward-sentence.
22953
22954 2003-11-25 Stephen Eglen <stephen@gnu.org>
22955
22956 * iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
22957 iswitchb-exit is set to 'usefirst when user selects buffer at head
22958 of list using RET. (Selecting buffers at the head of the list was
22959 broken if the substring was also a complete buffername.)
22960
22961 2003-11-23 Kim F. Storm <storm@cua.dk>
22962
22963 * progmodes/compile.el (grep-command, grep-use-null-device)
22964 (grep-find-command, grep-tree-command, grep-tree-files-aliases)
22965 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
22966 (grep-regexp-alist, grep-program, find-program)
22967 (grep-find-use-xargs, grep-history, grep-find-history)
22968 (grep-process-setup, grep-compute-defaults)
22969 (grep-default-command, grep, grep-tag-default, grep-find)
22970 (grep-expand-command-macros, grep-tree-last-regexp)
22971 (grep-tree-last-files, grep-tree): Move grep variables, functions
22972 and commands to new file grep.el.
22973 (compilation-mode-map): Remove grep commands from Compile sub-menu.
22974 (compilation-process-setup-function): Doc fix.
22975 (compilation-highlight-regexp, compilation-highlight-overlay): New
22976 defvars used for highlighting current compile error in source buffer.
22977 (compile-internal): New optional args HIGHLIGHT-REGEXP and
22978 LOCAL-MAP which overrides compilation-highlight-regexp and
22979 compilation-mode-map for this compilation.
22980 Delay calling compilation-set-window-height until after running
22981 compilation-process-setup-function so it can buffer-local override
22982 compilation-window-height.
22983 Check buffer-local value of compilation-scroll-output.
22984 (compilation-set-window-height): Use buffer-local value of
22985 compilation-window-height.
22986 (compilation-revert-buffer): Don't pass (undefined)
22987 preserve-modes arg to revert-buffer.
22988 (next-error-no-select, previous-error-no-select): New commands.
22989 (compilation-goto-locus): Temporarily highlight current match in
22990 source buffer using compilation-highlight-regexp.
22991
22992 * progmodes/grep.el: New file with grep code from compile.el.
22993 (grep): New defcustom group.
22994 (grep-window-height): New defcustom, like compilation-window-height.
22995 (grep-auto-highlight): New defcustom, like compile-auto-highlight.
22996 (grep-scroll-output): New defcustom, like compilation-scroll-output.
22997 (grep-command, grep-use-null-device, grep-find-command)
22998 (grep-tree-files-aliases, grep-tree-ignore-case)
22999 (grep-tree-ignore-CVS-directories): Move to grep custom group.
23000 (grep-setup-hook): New hook variable.
23001 (grep-mode-map): New keymap for grep commands. Add Grep menu.
23002 (grep-last-buffer): New defvar, override compilation-last-buffer.
23003 (grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
23004 Call compile-internal with args highlight-regexp and grep-mode-map.
23005
23006 2003-11-23 Kim F. Storm <storm@cua.dk>
23007
23008 * subr.el (event-start, event-end): Doc fix.
23009 (posn-window, posn-x-y, posn-timestamp): Simplify doc.
23010 (posn-area, posn-actual-col-row, posn-object): New defuns.
23011 (posn-col-row): Simplify doc. Rewrite to use cond.
23012 (posn-point): Also return buffer position for events outside text
23013 area (that info is now present in the event position).
23014
23015 * mouse.el: Bind mouse-1 on left-fringe and right-fringe to
23016 mouse-set-point so that hscroll still works now that clicks on
23017 fringes generate specific mouse events.
23018 (mouse-set-point): Note that it now works in fringes and margins
23019 too due to new semantics of posn-point in fringes and margins.
23020
23021 * gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
23022 (gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].
23023
23024 2003-11-20 Kim F. Storm <storm@cua.dk>
23025
23026 * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
23027 (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
23028 (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
23029 to 100 for icons to avoid increasing line height when shown.
23030
23031 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
23032
23033 * newcomment.el (comment-normalize-vars): Initialize properly if
23034 comment-start was nil.
23035
23036 2003-11-19 Andreas Schwab <schwab@suse.de>
23037
23038 * simple.el (set-variable): Fix indentation.
23039
23040 2003-11-17 Kenichi Handa <handa@m17n.org>
23041
23042 * international/latin1-disp.el (latin1-display-ucs-per-lynx):
23043 Fix docstring.
23044
23045 2003-11-17 Jesper Harder <harder@ifa.au.dk> (tiny change)
23046
23047 * international/latin1-disp.el (latin1-display): Fix docstring.
23048
23049 2003-11-16 John Wiegley <johnw@newartisans.com>
23050
23051 * eshell/em-ls.el (eshell-ls-file): There are times with
23052 size-width is nil and uncomputed (when directories are created in
23053 dired, for example); in this case, 4 is reasonable default value,
23054 although it may caused skewed new entries (which could be avoided
23055 by returning the original value of 8 in all cases, but 99% of the
23056 time this is a waste of whitespace).
23057
23058 2003-11-16 Martin Stjernholm <bug-cc-mode@gnu.org>
23059
23060 * cc-engine.el (c-guess-continued-construct)
23061 (c-guess-basic-syntax): Check a little more carefully if it's a
23062 function declaration when an unknown construct followed by a block
23063 is found inside a statement context. This avoids macros followed
23064 by blocks to be taken as function declarations.
23065
23066 (c-guess-continued-construct): Change the analysis of a statement
23067 continuation with a brace open to `substatement-block', for
23068 consistency with recognized statements.
23069
23070 (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
23071 start is in a position so that `c-beginning-of-statement-1' jumped
23072 to the beginning of the same statement.
23073
23074 * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
23075 Don't accept binary operators in the arglist if we're in a function
23076 call context, i.e. if `c-restricted-<>-arglists' is set. That avoids
23077 template recognition in cases like "if (a < b || c > d)".
23078
23079 (c-restricted-<>-arglists): New more appropriate name for
23080 `c-disallow-comma-in-<>-arglists'.
23081
23082 Accessing functions updated for the variable name change.
23083
23084 * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
23085 match data could get clobbered if NOT-INSIDE-TOKEN is used.
23086
23087 * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
23088 labels.
23089
23090 (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
23091 instead of duplicating parts of it. This fixes bogus label
23092 recognition.
23093
23094 * cc-align.el (c-gnu-impose-minimum): Revert to the old method
23095 of checking the context in which to apply the minimum indentation,
23096 so that it isn't enforced in e.g. namespace blocks.
23097
23098 * cc-vars.el (c-inside-block-syms): New constant used by
23099 `c-gnu-impose-minimum'. It's defined close to `c-offsets-alist'
23100 to somewhat reduce the risk of becoming stale.
23101
23102 * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
23103 cc-cmds to cc-engine to allow use from cc-align.
23104
23105 * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
23106 qualified identifiers containing "::".
23107
23108 * cc-defs.el (c-make-keywords-re): Add kludge for bug in
23109 `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
23110
23111 * cc-vars.el (c-emacs-features): Use a space in front of the name
23112 of the temporary buffer. That also avoids dumping problems in
23113 XEmacs due to undo info being left around after the buffer is killed.
23114
23115 * cc-engine.el (c-in-knr-argdecl): Look closer at the function
23116 arglist to see if it's a K&R style declaration.
23117
23118 (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
23119 before returning `knr-argdecl-intro'.
23120
23121 2003-11-16 John Wiegley <johnw@newartisans.com>
23122
23123 * eshell/em-ls.el (eshell-ls-file): Instead of making the size
23124 field in a long-listing always 8 characters, use `size-width',
23125 which has already been computed.
23126
23127 2003-11-15 Thien-Thi Nguyen <ttn@gnu.org>
23128
23129 * subr.el (minor-mode-list): Add `hs-minor-mode'.
23130
23131 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
23132
23133 * diff-mode.el (diff-hunk-prev, diff-hunk-next):
23134 Support operation while narrowed, with `diff-restrict-view'.
23135
23136 2003-11-14 Thien-Thi Nguyen <ttn@gnu.org>
23137
23138 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
23139 Take additional optional arg NARROWFUN. For the generated functions:
23140 Add local var `was-narrowed-p'. Also, if NARROWFUN is specified,
23141 include frags that arrange to check for and save narrowing state before
23142 the move and then conditionally call NARROWFUN after the move.
23143
23144 2003-11-14 John Wiegley <johnw@newartisans.com>
23145
23146 * eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
23147 that was optional, but obviously missing based on surrounding code.
23148
23149 * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
23150 string arguments to numbers unless the whole argument was seen as
23151 a number.
23152
23153 2003-11-14 Kenichi Handa <handa@m17n.org>
23154
23155 * international/mule.el (ctext-non-standard-encodings-alist):
23156 Fix coding systems.
23157
23158 2003-11-10 Kenichi Handa <handa@m17n.org>
23159
23160 * language/kannada.el ("Kannada"): Add sample-text.
23161
23162 * language/knd-util.el (kannada-compose-region)
23163 (kannada-compose-string, kannada-post-read-conversion):
23164 Add autoload cookie.
23165
23166 * international/quail.el (quail-completion): Change the message
23167 "corresponding translations" to "corresponding characters".
23168
23169 2003-11-09 Markus Rost <rost@mathematik.uni-bielefeld.de>
23170
23171 * descr-text.el (describe-char): Fix typo.
23172
23173 2003-11-08 Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
23174
23175 These changes are to support Kannada language/script.
23176
23177 * Makefile.in (DONTCOMPILE): Add kannada.el.
23178
23179 * makefile.w32-in (DONTCOMPILE): Add kannada.el.
23180
23181 * loadup.el: Preload kannada.el.
23182
23183 * language/ind-util.el (ucs-kannada-to-is13194-alist)
23184 (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
23185 New variables.
23186
23187 * language/kannada.el: New file.
23188
23189 * language/knd-util.el: New file.
23190
23191 2003-11-07 Andreas Schwab <schwab@suse.de>
23192
23193 * progmodes/autoconf.el (autoconf-font-lock-keywords):
23194 Also highlight AH_*.
23195
23196 * xml.el (xml-parse-dtd): Fix misplaced paren.
23197
23198 2003-11-07 Kenichi Handa <handa@m17n.org>
23199
23200 * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
23201
23202 2003-11-05 Juri Linkov <juri@jurta.org>
23203
23204 * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
23205 (desktop-buffer-file): Use saved buffer-file-coding-system
23206 for file reading. Set auto-insert to nil to prevent automatic
23207 insertion into restored empty files.
23208
23209 2003-11-04 Luc Teirlinck <teirllm@auburn.edu>
23210
23211 * files.el (risky-local-variable-p): Make second argument optional.
23212
23213 2003-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
23214
23215 * subr.el (add-hook): Fix last change.
23216
23217 2003-11-03 Eli Zaretskii <eliz@gnu.org>
23218
23219 * mail/rmail.el (rmail-convert-to-babyl-format):
23220 If base64-decode-region signals an error, catch it and silently
23221 ignore it.
23222
23223 2003-11-01 Mark A. Hershberger <mah@everybody.org>
23224
23225 * xml.el (xml-parse-region): Allow comments to appear after the
23226 topmost element has closed.
23227 (xml-ns-parse-ns-attrs, xml-ns-expand-el)
23228 (xml-ns-expand-attr): New functions to do namespace handling.
23229 (xml-intern-attrlist): Back-compatible handling of attribute names.
23230 (xml-parse-tag): Move namespace handling to separate functions.
23231 Now produces elements in the form ((:ns . "element") (attr-list)
23232 children) instead of ('ns:element (attr-list) children).
23233 (xml-parse-attlist): Fix attribute parsing.
23234 (xml-parse-dtd): Change parsing so that it produces strings
23235 instead of interned symbols.
23236
23237 2003-11-01 era@iki.fi <era@iki.fi> (tiny change)
23238
23239 * dired.el (dired-ls-sorting-switches): Doc fix.
23240
23241 2003-11-01 Oliver Scholz <epameinondas@gmx.de>
23242
23243 * emacs-lisp/rx.el (rx-or): Fix the case of
23244 "(rx (and ?a (or ?b ?c) ?d))".
23245
23246 2003-11-01 Christoph Wedler <wedler@users.sourceforge.net> (tiny change)
23247
23248 * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
23249 (texinfo-format-region): Use it.
23250 (texinfo-format-buffer-1): Ditto.
23251
23252 2003-11-01 Alan Mackenzie <acm@muc.de>
23253
23254 Changes to allow scrolling whilst in isearch mode:
23255 * isearch.el (isearch-unread-key-sequence): New function,
23256 extracted from isearch-other-meta-char.
23257 (top level): (put 'foo 'isearch-scroll) on all Emacs's
23258 "scrollable" standard functions.
23259 (isearch-allow-scroll): New customizable variable.
23260 (isearch-string-out-of-window, isearch-back-into-window)
23261 (isearch-reread-key-sequence-naturally)
23262 (isearch-lookup-scroll-key): New functions.
23263 (isearch-other-meta-char): Doc string and functionality enhanced.
23264 Now accepts a prefix argument.
23265 (isearch-lazy-highlight-window-end): New variable.
23266 (isearch-lazy-highlight-new-loop): Pay attention to the window's
23267 end (thru isearch-lazy-highlight-window-end), not only its start.
23268
23269 * simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
23270 (ensure-overriding-map-is-bound, restore-overriding-map): New funs.
23271 (universal-argument, universal-argument-more, negative-argument)
23272 (digit-argument, universal-argument-other-key): Minor changes.
23273
23274 2003-11-01 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
23275
23276 * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
23277 recursively if the last message is deleted, thus avoiding an
23278 infinite loop.
23279
23280 2003-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
23281
23282 * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
23283 (tex-main-file): Don't add .tex if the extension is already present.
23284 (tex-uptodate-p): Don't recurse indefinitely with symlinks.
23285
23286 2003-10-29 Lute Kamstra <lute@gnu.org>
23287
23288 * progmodes/octave-inf.el (inferior-octave-prompt):
23289 Recognize version number in prompt.
23290
23291 2003-10-28 Dave Love <fx@gnu.org>
23292
23293 * international/characters.el: Fix some Unicode ranges.
23294
23295 2003-10-28 Kenichi Handa <handa@m17n.org>
23296
23297 * disp-table.el (standard-display-8bit)
23298 (standard-display-default, standard-display-ascii)
23299 (standard-display-g1, standard-display-graphic)
23300 (standard-display-underline): Assure that standard-display-table
23301 is a display table.
23302
23303 2003-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
23304
23305 * simple.el (reindent-then-newline-and-indent): Delete space *after*
23306 reindenting the first line.
23307
23308 2003-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
23309
23310 * wid-edit.el (widget-default-delete): Always delete child widgets.
23311
23312 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
23313
23314 * newcomment.el (comment-indent): Don't call indent-according-to-mode
23315 if the line has code.
23316 Don't try to line up with something that's too far left.
23317
23318 * progmodes/octave-mod.el (octave-comment-start): Simplify.
23319 (octave-mode-syntax-table): Add % as a comment starter.
23320 (octave-point): Remove.
23321 (octave-in-comment-p, octave-in-string-p)
23322 (octave-not-in-string-or-comment-p, calculate-octave-indent)
23323 (octave-blink-matching-block-open, octave-auto-fill):
23324 Use line-(beginning|end)-position instead.
23325
23326 2003-10-23 Francesco Potort\e,Al\e(B <pot@gnu.org>
23327
23328 * emacs-lisp/authors.el (authors-aliases): Add correct realname
23329 for Francesco Potort\e,Al\e(B.
23330
23331 2003-10-23 Dave Love <fx@gnu.org>
23332
23333 * international/mule-cmds.el (locale-charset-to-coding-system):
23334 Don't rely on nil being a coding system.
23335
23336 * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
23337 (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
23338 (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
23339
23340 2003-10-21 Nick Roberts <nick@nick.uklinux.net>
23341
23342 * gdb-ui.el (gdb-current-language): New variable.
23343 (gdb-update-flag): Remove variable.
23344 (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
23345 (gdb-take-last-elt): Remove function.
23346 (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
23347 (gdb-post-prompt): Check for variable object changes here.
23348
23349 * progmodes/gud.el (gud-speedbar-buttons): Check for variable
23350 object changes in gdb-ui.el.
23351
23352 2003-10-21 Richard M. Stallman <rms@gnu.org>
23353
23354 * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
23355
23356 * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
23357 Don't check for foo*/ wildcard form here.
23358 (insert-directory): Recognize foo*/ as a wildcard.
23359 Separate wildcard-regexp variable from the arg, wildcard.
23360
23361 * subr.el (add-hook): Correctly detect when make-local-hook was used.
23362 (remove-hook): Correctly handle strange cases about local hooks.
23363
23364 2003-10-21 David Ponce <david@dponce.com>
23365
23366 * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
23367 argument REAL, to return a real number instead of a rounded
23368 integer value. Define as inline function.
23369 (ruler-mode-right-fringe-cols): Likewise.
23370 (ruler-mode-scroll-bar-cols): New function.
23371 (ruler-mode-left-scroll-bar-cols): Use it. Define as macro.
23372 (ruler-mode-right-scroll-bar-cols): Likewise.
23373 (ruler-mode-space): New function.
23374 (ruler-mode-ruler): Use it. Handle variations of fringe style,
23375 scroll bar mode and margins in a more robust way.
23376
23377 2003-10-21 Christoph Wedler <Christoph.Wedler@sap.com>
23378
23379 * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
23380 (antlr-c-init-language-vars): New function.
23381 (antlr-mode): Use it with cc-mode before v5.29.
23382 (antlr-c-common-init): Don't set some local vars here.
23383 (antlr-mode): Set them here.
23384 (antlr-c-forward-sws): New function alias.
23385 (antlr-mode): Redefine with cc-mode before v5.30.
23386 (antlr-skip-sexps): Use it.
23387 (antlr-skip-exception-part): Ditto.
23388 (antlr-skip-file-prelude): Ditto.
23389 (antlr-outside-rule-p): Ditto.
23390 (antlr-end-of-body): Ditto.
23391 (antlr-option-kind): Ditto.
23392 (antlr-insert-option-area): Ditto.
23393 (antlr-file-dependencies): Ditto.
23394
23395 2003-10-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
23396
23397 * textmodes/bibtex.el (bibtex-move-outside-of-entry):
23398 Move backward only if point was not inside an entry.
23399
23400 2003-10-21 Richard M. Stallman <rms@gnu.org>
23401
23402 * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
23403
23404 2003-10-21 Juri Linkov <juri@jurta.org>
23405
23406 * compare-w.el: Automatically skip non-matching text to resync.
23407 (compare-windows-whitespace): Doc fix.
23408 (compare-windows-sync, compare-windows-sync-string-size)
23409 (compare-windows-recenter, compare-ignore-whitespace)
23410 (compare-windows-highlight, compare-windows-face): New variables.
23411 (compare-windows): Use compare-windows-sync.
23412 (compare-windows-highlight, compare-windows-dehighlight)
23413 (compare-windows-sync-regexp)
23414 (compare-windows-sync-default-function): New functions.
23415
23416 2003-10-21 Juri Linkov <juri@jurta.org>
23417
23418 * diff.el (diff-parse-differences): Don't visit the files now;
23419 instead, just record the error locus.
23420
23421 2003-10-21 Dave Love <fx@gnu.org>
23422
23423 * progmodes/cfengine.el: New file.
23424
23425 2003-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
23426
23427 * complete.el (PC-do-completion): Do not forget to use `pred' as the
23428 default-directory when completing file names.
23429
23430 2003-10-20 Luc Teirlinck <teirllm@auburn.edu>
23431
23432 * help-mode.el (help-make-xrefs): Make sure that if a symbol is
23433 followed by the word `face', it gets treated as a face, even if
23434 it is also defined as a variable or a function.
23435
23436 2003-10-20 Dave Love <fx@gnu.org>
23437
23438 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
23439 Avoid incf in macro expansion.
23440
23441 2003-10-20 John Paul Wallington <jpw@gnu.org>
23442
23443 * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
23444 `evenp' so we don't implicitly require cl library at runtime.
23445
23446 2003-10-18 Luc Teirlinck <teirllm@auburn.edu>
23447
23448 * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
23449 (help-make-xrefs): Only make cross-references for faces if
23450 preceded or followed by the word `face'. Do not make a
23451 cross-reference for variables without variable documentation,
23452 unless preceded by the word `variable' or `option'. Update doc
23453 string accordingly.
23454
23455 2003-10-18 Thien-Thi Nguyen <ttn@gnu.org>
23456
23457 * progmodes/hideshow.el: Rewrite one-armed `if'
23458 constructs using either `when' or `unless'.
23459 (hs-grok-mode-type): Elide superfluous `progn'; nfc.
23460
23461 2003-10-16 Nick Roberts <nick@nick.uklinux.net>
23462
23463 * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
23464 (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
23465 instead of 12x12.
23466
23467 2003-10-16 Eli Zaretskii <eliz@gnu.org>
23468
23469 * mail/rmail.el (rmail-convert-to-babyl-format): Display a
23470 message while converting to Babyl.
23471
23472 2003-10-16 Vadim Nasardinov <vadimn@redhat.com> (tiny change)
23473
23474 * allout.el (allout-mode): Doc fix.
23475
23476 2003-10-16 Lute Kamstra <lute@gnu.org>
23477
23478 * subr.el (force-mode-line-update): Fix docstring.
23479
23480 2003-10-14 Dave Love <fx@gnu.org>
23481
23482 * international/mule-cmds.el (find-multibyte-characters): Doc fix.
23483 (default-input-method): Add :link, improve :type.
23484 (locale-charset-language-names): Fix utf-8 pattern.
23485 (locale-charset-match-p, locale-charset-alist)
23486 (locale-charset-to-coding-system): New.
23487 (set-locale-environment): Deal with codeset part of locale specs.
23488
23489 2003-10-14 Lute Kamstra <lute@gnu.org>
23490
23491 * fringe.el (fringe-mode): Use active voice in docstring.
23492 (set-fringe-style): Ditto.
23493
23494 2003-10-13 Lute Kamstra <lute@gnu.org>
23495
23496 * fringe.el (fringe-mode): Fix docstring.
23497 (set-fringe-style): Ditto.
23498
23499 2003-10-12 Michael Kifer <kifer@cs.stonybrook.edu>
23500
23501 * ediff-mult.el (ediff-filegroup-action):
23502 Use ediff-default-filtering-regexp.
23503
23504 * ediff-util.el (ediff-recenter): Don't call
23505 ediff-restore-highlighting twice.
23506 (ediff-select-difference): Set current difference.
23507 (ediff-unselect-and-select-difference): Add comment.
23508
23509 * ediff.el (ediff-directories,ediff-directory-revisions)
23510 (ediff-directories3,ediff-merge-directories)
23511 (ediff-merge-directories-with-ancestor)
23512 (ediff-merge-directory-revisions)
23513 (ediff-merge-directory-revisions-with-ancestor):
23514 Use ediff-default-filtering-regexp.
23515
23516 2003-10-12 Andreas Schwab <schwab@suse.de>
23517
23518 * international/mule-cmds.el (locale-charset-language-names):
23519 Simplify regex by removing unused grouping.
23520
23521 2003-10-10 Dave Love <fx@gnu.org>
23522
23523 * bindings.el: Don't bind stop.
23524
23525 2003-10-08 Miles Bader <miles@gnu.org>
23526
23527 * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
23528 face instead of attempting to emulate it.
23529
23530 2003-10-07 Kenichi Handa <handa@m17n.org>
23531
23532 * international/mule-diag.el (list-coding-systems-1): List coding
23533 systems that are loaded automatically.
23534
23535 * international/code-pages.el (iso-8859-11): Add autoload cookie.
23536
23537 * international/mule.el (autoload-coding-system): New function.
23538
23539 2003-10-07 Andreas Schwab <schwab@suse.de>
23540
23541 * log-edit.el (log-edit-changelog-entries): Prefer local value of
23542 change-log-default-name in the buffer visiting the file.
23543
23544 2003-10-06 Dave Love <fx@gnu.org>
23545
23546 * files.el (find-file-hook): Customize.
23547 (auto-mode-alist): Add .stk, .ss, .sch, .orig.
23548
23549 * bindings.el (completion-ignored-extensions): Remove .log.
23550 (global-map): Add again, open, stop keys.
23551
23552 2003-10-05 Richard M. Stallman <rms@gnu.org>
23553
23554 * progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
23555 (sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
23556 Use sh-modify directly.
23557 (sh-select): Use sh-append, not eval.
23558
23559 * mail/emacsbug.el (report-emacs-bug): Fix previous change.
23560
23561 * info.el (Info-following-node-name): New function.
23562
23563 * loadhist.el (unload-feature-special-hooks):
23564 Rename from loadhist-hook-functions.
23565 (loadhist-hook-functions): Now an alias.
23566
23567 2003-10-04 Eli Zaretskii <eliz@gnu.org>
23568
23569 * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
23570 file-name clashes on 8+3 filesystems.
23571
23572 * Makefile.in (DONTCOMPILE, bootstrap-clean):
23573 Rename loaddefs-boot.el to ldefs-boot.el
23574
23575 * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
23576 (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
23577
23578 2003-10-03 Lute Kamstra <lute@gnu.org>
23579
23580 * info.el (Info-mode): Revert previous change.
23581 (Info-escape-percent): New function.
23582 (Info-fontify-node): Use it.
23583
23584 2003-10-02 Andreas Schwab <schwab@suse.de>
23585
23586 * loaddefs-boot.el: Regenerated.
23587
23588 2003-10-01 Rajesh Vaidheeswarran <rv@gnu.org>
23589
23590 * ffap.el: Remove defadvice related code from CVS since `complete'
23591 provides a `PC-completion-as-file-name-predicate' variable that
23592 ffap can override.
23593
23594 2003-10-02 Kenichi Handa <handa@m17n.org>
23595
23596 * international/utf-8.el (ccl-decode-mule-utf-8):
23597 Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
23598
23599 * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
23600 * international/subst-big5.el: Likewise.
23601 * international/subst-gb2312.el: Likewise.
23602 * international/subst-ksc.el: Likewise.
23603
23604 2003-10-01 Glenn Morris <gmorris@ast.cam.ac.uk>
23605
23606 * calendar/calendar.el (increment-calendar-month)
23607 (calendar-leap-year-p, calendar-absolute-from-gregorian)
23608 (generate-calendar, calendar-read-date, calendar-interval)
23609 (calendar-day-of-week): Handle years BC.
23610 (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
23611
23612 2003-10-01 Dave Love <fx@gnu.org>
23613
23614 * language/cyrillic.el (cp1251): Alias for windows-1251.
23615
23616 * vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
23617 bootstrap.
23618
23619 2003-10-01 Lute Kamstra <lute@gnu.org>
23620
23621 * files.el: Fix typo.
23622 * imenu.el (imenu--generic-function): Docstring fix.
23623
23624 2003-09-30 Richard M. Stallman <rms@gnu.org>
23625
23626 * dired.el (dired-mode): Handle dired-directory as a list.
23627
23628 2003-09-30 Nick Roberts <nick@nick.uklinux.net>
23629
23630 * toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.
23631
23632 * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
23633
23634 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
23635 Replace gud-display with gud-watch.
23636 (gud-speedbar-buttons): Add stuff for watching expressions
23637 in the speedbar when using M-x gdba. Use dolist on old part
23638 of this function.
23639
23640 * gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
23641 (gdb-update-flag): New variables.
23642 (gdb-var-update, gdb-var-update-handler,gdb-var-delete)
23643 (gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
23644 (gud-watch, gdb-var-create-handler) : New functions.
23645 (gdb-var-list-children, gdb-var-list-children-handler)
23646 (gdb-var-create-regexp, gdb-var-update-regexp)
23647 (gdb-var-list-children-regexp): New constants.
23648 (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
23649 (gdb-annotation-rules): Reduce annotation set (level 3).
23650 (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
23651 (gdb-post-prompt): Don't update GDB buffers every time speedbar
23652 updates.
23653 (gdb-window-height, gdb-window-width, gdb-display-in-progress)
23654 (gdb-expression-buffer-name, gdb-display-number, gdb-point)
23655 (gdb-dive-display-number, gdb-nesting-level, gdb-expression)
23656 (gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
23657 (gdb-array-stop, gdb-array-slice-map, gdb-display-string)
23658 (gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
23659 (gdb-expressions-mode-menu, gdb-dive): Remove variables.
23660 (gud-display, gud-display1)
23661 (gdb-display-begin,gdb-display-number-end, gdb-delete-line)
23662 (gdb-display-end, gdb-display-go-back, gdb-array-section-end)
23663 (gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
23664 (gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
23665 (gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
23666 (gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
23667 (gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
23668 (gdb-display-display-buffer, gdb-toggle-display)
23669 (gdb-delete-display, gdb-expressions-popup-menu)
23670 (gdb-expressions-mode, gdb-array-visualise): Remove functions.
23671 (gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
23672 to display buffer.
23673
23674 2003-09-30 Richard M. Stallman <rms@gnu.org>
23675
23676 * progmodes/ada-mode.el (ada-mode): Don't use advice.
23677 Instead, set which-func-functions.
23678
23679 * progmodes/which-func.el (which-func-modes): Add ada-mode.
23680 (which-func-functions): New variable.
23681 (which-function): Use that.
23682
23683 * info.el (Info-mode): Double each `%' in header line.
23684
23685 * emacs-lisp/lisp-mnt.el (lm-with-file):
23686 When FILE is nil, run BODY in current buffer.
23687
23688 * mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.
23689
23690 * help.el (describe-mode): Start with a brief list of minor modes.
23691 Find them thru minor-mode-list so as to find them all.
23692 Show them in alphabetical order.
23693
23694 * mail/sendmail.el (mail-aliases): Doc fix.
23695
23696 * progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.
23697
23698 2003-09-30 Alexander Pohoyda <alexander.pohoyda@gmx.net> (tiny change)
23699
23700 * mail/rmailsum.el (rmail-make-summary-line-1):
23701 Change comma after last label to a space.
23702 (rmail-summary-font-lock-keywords): Adapt to that change.
23703
23704 2003-09-30 Thien-Thi Nguyen <ttn@gnu.org>
23705
23706 * progmodes/scheme.el (scheme-mode-variables): When setting
23707 `font-lock-defaults', also specify that "#" should
23708 be interpreted with `word' syntax.
23709 (scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.
23710
23711 2003-09-30 Lars Hansen <larsh@math.ku.dk>
23712
23713 * desktop.el: A lot of comments updated.
23714 (desktop-save-mode): Minor mode introduced.
23715 (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
23716 (desktop-load-default): Function made obsolete.
23717 (desktop-locals-to-save): Variable made customizable.
23718 (desktop-read): Optional parameter `dirname' added.
23719 (desktop-change-dir, desktop-revert): Parameter `dirname' in
23720 `desktop-read' used.
23721 (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
23722
23723 2003-09-29 Rajesh Vaidheeswarran <rv@gnu.org>
23724
23725 * whitespace.el (whitespace-clean-msg): Add user customizable message
23726 for displaying ``clean'' output.
23727 (whitespace-buffer): Use `whitespace-clean-msg'.
23728 (whitespace-global-mode): Fix typo.
23729
23730 2003-09-29 Thien-Thi Nguyen <ttn@gnu.org>
23731
23732 * pcvs.el (cvs-mode-unmark-up): Move to goal column when done.
23733
23734 2003-09-29 Lute Kamstra <lute@gnu.org>
23735
23736 * bindings.el (mode-line-modes): Remove superfluous :propertize
23737 construct in initialization.
23738 (mode-line-position): Change cons cell into proper list in
23739 initialization.
23740
23741 2003-09-29 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
23742
23743 * international/mule.el (decode-coding-inserted-region): Use car
23744 of the return value of find-operation-coding-system.
23745
23746 2003-09-29 Kenichi Handa <handa@m17n.org>
23747
23748 * descr-text.el (describe-char): Fix previous change.
23749
23750 2003-09-28 Kenichi Handa <handa@m17n.org>
23751
23752 * descr-text.el (describe-char-display): New function.
23753 (describe-char): Pay attention to display table on describing how
23754 a character is displayed.
23755
23756 * international/mule-cmds.el (encoded-string-description):
23757 Prepend "0x" to each encoded byte.
23758
23759 2003-09-28 Andreas Schwab <schwab@suse.de>
23760
23761 * find-file.el (ff-special-constructs): Add autoload cookie.
23762
23763 2003-09-28 Kevin Ryde <user42@zip.com.au>
23764
23765 * info.el (Info-find-index-name): Remove any "<n>" suffixes which
23766 makeinfo appends to duplicate index entries.
23767
23768 2003-09-28 Eli Zaretskii <eliz@gnu.org>
23769
23770 * dired-x.el (dired-clean-tex): Doc fix.
23771
23772 * language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
23773 using a Chinese tutorial.
23774
23775 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
23776
23777 * mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
23778 between "MAIL FROM:" and "RCPT TO:" and the following address.
23779
23780 2003-09-28 Jesper Harder <harder@ifa.au.dk> (tiny change)
23781
23782 * textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.
23783
23784 2003-09-28 David Ponce <david@dponce.com>
23785
23786 * recentf.el (recentf-initialize-file-name-history): New defcustom.
23787 (recentf-load-list): When `recentf-initialize-file-name-history'
23788 is non-nil, initialize an empty `file-name-history' with the
23789 recent list.
23790
23791 2003-09-28 Evgeni Dobrev <evgeni_dobrev@developer.bg> (tiny change)
23792
23793 * man.el (Man-default-man-entry): Remove the leading `*' from the
23794 word at point.
23795
23796 2003-09-26 Lute Kamstra <lute@gnu.org>
23797
23798 * bindings.el (mode-line-position): Mention size indication in
23799 docstring.
23800
23801 2003-09-26 Andre Spiegel <spiegel@gnu.org>
23802
23803 * calendar/parse-time.el (parse-time-string): Add autoload cookie.
23804
23805 * vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
23806 because it's autoloaded now.
23807
23808 2003-09-25 Glenn Morris <gmorris@ast.cam.ac.uk>
23809
23810 * progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
23811 (sh-font-lock-keywords, sh-feature): Fix previous change of
23812 sh-feature to avoid infloop with sh-font-lock-keywords.
23813
23814 2003-09-25 Kim F. Storm <storm@cua.dk>
23815
23816 * frame.el (frame-current-scroll-bars): New defun.
23817
23818 * window.el (window-current-scroll-bars): New defun.
23819
23820 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
23821
23822 * progmodes/cc-engine.el (c-parse-state): Fix bug that could
23823 cause errors when the state cache contains info on parts that have
23824 been narrowed out.
23825
23826 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
23827
23828 * progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
23829 `c-setup-paragraph-variables' has to be used when this variable is
23830 changed; it doesn't work to reinitialize the mode since that
23831 typically clobbers the variable.
23832
23833 * progmodes/cc-styles.el (c-setup-paragraph-variables):
23834 Make it interactive.
23835
23836 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
23837
23838 * progmodes/cc-fonts.el (c-font-lock-declarations):
23839 Fix recognition of constructors and destructors for classes whose
23840 names are matched by `*-font-lock-extra-types'.
23841
23842 * progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
23843 followed by an identifier in C++ then it's a type.
23844
23845 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
23846
23847 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
23848 problem that primarily affected XEmacs. Don't use faces to find
23849 unterminated strings since Emacs and XEmacs fontify strings
23850 differently - this function should now work better in XEmacs.
23851
23852 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
23853
23854 * progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
23855 `expand-abbrev' workaround which caused braces to misbehave inside
23856 macros.
23857
23858 * progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
23859 handling. This bug could cause interactive font locking to bail out.
23860
23861 2003-09-24 Martin Stjernholm <bug-cc-mode@gnu.org>
23862
23863 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
23864 Handle paren-style types in Pike. Also fixed some cases of
23865 insufficient handling of unbalanced parens.
23866
23867 2003-09-24 Rajesh Vaidheeswarran <rv@gnu.org>
23868
23869 * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
23870 common shell prompts that are not common filename or URL characters.
23871 (ffap-file-at-point): Use the new regexp to strip the prompts from
23872 the file names. This is an issue mostly for user prompts that
23873 don't have a trailing space and find-file-at-point is invoked from
23874 within a shell inside Emacs.
23875
23876 2003-09-24 Andre Spiegel <spiegel@gnu.org>
23877
23878 * vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
23879 stamps numerically, rather than textually.
23880
23881 2003-09-24 Kenichi Handa <handa@m17n.org>
23882
23883 * language/devan-util.el (devanagari-post-read-conversion):
23884 * language/mlm-util.el (malayalam-post-read-conversion):
23885 * language/tml-util.el (tamil-post-read-conversion):
23886 Add autoload cookie.
23887
23888 * international/utf-8.el (utf-8-post-read-conversion):
23889 Call post-read-conversion functions for Devanagari, Malayalam,
23890 and Tamil.
23891
23892 2003-09-23 Dave Love <fx@gnu.org>
23893
23894 * Makefile.in (bootstrap-clean): Fix misplaced `!'.
23895
23896 2003-09-22 Nick Roberts <nick@nick.uklinux.net>
23897
23898 * progmodes/gud.el (perldb): Add gud-until to list of commands.
23899 Update gud-remove.
23900
23901 2003-09-22 Richard M. Stallman <rms@gnu.org>
23902
23903 * progmodes/sh-script.el (sh-mode-default-syntax-table):
23904 Rename from sh-mode-syntax-table. Call sh-mode-syntax-table directly.
23905 (sh-mode-syntax-table-input): New variable.
23906 (sh-require-final-newline): Don't use eval.
23907 (sh-builtins, sh-leading-keywords, sh-other-keywords)
23908 (sh-variables, sh-font-lock-keywords): Don't use eval.
23909 (sh-set-shell): When setting require-final-newline,
23910 treat value = `require-final-newline' as don't change it.
23911 Set sh-mode-syntax-table locally based on
23912 sh-mode-syntax-table-input and sh-mode-default-syntax-table.
23913
23914 * progmodes/compile.el (compile-internal):
23915 Call compilation-set-window-height before setting window start.
23916
23917 2003-09-22 Greg Hill <ghill@synergymicro.com> (tiny change)
23918
23919 * emacs-lisp/bytecomp.el (byte-compile-log-file):
23920 Clear out byte-compile-last-warned-form.
23921
23922 2003-09-22 Richard M. Stallman <rms@gnu.org>
23923
23924 * woman.el (woman-file-name, woman-follow-word):
23925 If current-word returns nil, use "".
23926
23927 * simple.el (eval-expression): Bind standard-output in to-buffer case.
23928
23929 2003-09-22 Richard M. Stallman <rms@gnu.org>
23930
23931 * emacs-lisp/lisp-mnt.el (lm-with-file):
23932 Don't visit the file, just use insert-file-contents in temp buffer.
23933
23934 2003-09-22 Jari Aalto <jari.aalto@poboxes.com>
23935
23936 * emacs-lisp/lisp-mnt.el (lm-get-header-re):
23937 Add surrounding \\( and \\) around the header, as in
23938 for lm-history-header 'Change Log\\|History'.
23939
23940 2003-09-22 John Paul Wallington <jpw@gnu.org>
23941
23942 * progmodes/ld-script.el: Add Commentary section,
23943 minor cleanup of file header.
23944 (ld-script-font-lock-keywords): Doc fix.
23945 (toplevel): Provide `ld-script' feature.
23946
23947 2003-09-21 Kim F. Storm <storm@cua.dk>
23948
23949 * scroll-bar.el (set-scroll-bar-mode): Initialize to
23950 new built-in variable default-frame-scroll-bars.
23951 (scroll-bar-mode): Use default-frame-scroll-bars when enabling
23952 scroll-bar-mode; notably, use it instead of t when we toggle
23953 scroll-bars on.
23954 (toggle-scroll-bar): Use default-frame-scroll-bars.
23955
23956 2003-09-19 Masatake YAMATO <jet@gyve.org>
23957
23958 * pcvs.el (cvs-do-removal): Change the prompt depending on
23959 `filter' value.
23960
23961 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk>
23962
23963 * startup.el (command-line-1): Stop startup-echo-area-message
23964 being hidden by "Loading image..." message.
23965 (use-fancy-splash-screens-p, display-splash-screen):
23966 Move display-graphic-p test from latter to former.
23967
23968 * progmodes/sh-script.el (sh-font-lock-keywords):
23969 Highlight escaped EOLs differently from other backslash constructs.
23970
23971 2003-09-19 Richard M. Stallman <rms@gnu.org>
23972
23973 * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
23974 New functions.
23975 (edebug-enter, edebug-outside-excursion): Use them.
23976
23977 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
23978 Fix the condition for whether to print "In WHERE".
23979
23980 2003-09-19 Jari Aalto <jari.aalto@poboxes.com>
23981
23982 * finder.el (finder-mode-hook): New variable.
23983 (finder-mode): Run hook finder-mode-hook
23984
23985 2003-09-18 Masatake YAMATO <jet@gyve.org>
23986
23987 * progmodes/ebrowse.el: Fix broken magic autoload comments.
23988
23989 2003-09-17 Mario Lang <mlang@delysid.org>
23990
23991 * progmodes/gud.el (perldb): Change gud-print from just "%e" to
23992 "p %e" to actually print the value in the GUD buffer.
23993
23994 2003-09-16 Miles Bader <miles@gnu.ai.mit.edu>
23995
23996 From David Ponce <david.ponce@wanadoo.fr>:
23997 * makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
23998 (bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
23999 from loaddefs-boot.el if necessary.
24000
24001 2003-09-15 Zoltan Kemenczy <kemenczy@rogers.com>
24002
24003 * progmodes/gud.el (gud-find-class): Make jdb work again since
24004 cc-mode changed the syntactic information.
24005
24006 2003-09-15 David Ponce <david@dponce.com>
24007
24008 * recentf.el: (recentf-exclude): Accept predicates too.
24009 (recentf-file-readable-p): New function.
24010 (recentf-include-p): Handle predicates in recentf-exclude.
24011 (recentf-add-file): Doc fix. Use recentf-file-readable-p.
24012 (recentf-cleanup): Likewise.
24013 (recentf-save-list): Use write-file to handle backup of
24014 recentf-save-file.
24015
24016 2003-09-15 Miles Bader <miles@gnu.ai.mit.edu>
24017
24018 * loaddefs-boot.el: Renamed from `loaddefs.el'
24019 * Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
24020 (bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
24021 necessary.
24022
24023 2003-09-13 Thien-Thi Nguyen <ttn@gnu.org>
24024
24025 * electric.el (Electric-pop-up-window): For the `one-window' case,
24026 no longer disconcertingly move point in the original buffer.
24027
24028 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
24029
24030 * emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.
24031
24032 2003-09-12 Eric Hanchrow <offby1@blarg.net> (tiny change)
24033
24034 * dired.el (dired-mode-map): Fix typo.
24035
24036 2003-09-11 Richard M. Stallman <rms@gnu.org>
24037
24038 * dired.el (dired-mode-map): Bind M-g to dired-goto-file.
24039
24040 2003-09-11 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
24041
24042 * window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
24043 the function is less noisy. Now only `kill-buffer' can ask questions.
24044
24045 2003-09-10 Mario Lang <mlang@delysid.org>
24046
24047 * battery.el: Update Commentary and Copyright.
24048 (battery-linux-proc-acpi): Fix a bug in %b which made "!" never
24049 appear due to wrong ordering of the expressions in `or'.
24050
24051 2003-09-09 Lute Kamstra <lute@gnu.org>
24052
24053 * misc.el (upcase-char): Fix docstring.
24054 (zap-up-to-char): New command.
24055
24056 2003-09-08 David Ponce <david@dponce.com>
24057
24058 Ensure that recentf correctly updates the menu bar.
24059 * recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
24060 (recentf-menu-bar): New function.
24061 (recentf-clear-data): Use it
24062 (recentf-update-menu): Likewise. Use easy-menu-add-item instead
24063 of easy-menu-change.
24064
24065 2003-09-08 Lute Kamstra <lute@gnu.org>
24066
24067 * simple.el (size-indication-mode): New.
24068 * bindings.el (mode-line-position): Add buffer size indicator.
24069
24070 2003-09-04 Mario Lang <mlang@delysid.org>
24071
24072 * battery.el (battery-linux-proc-acpi): New function.
24073 (battery-status-function): Modify default value calculation to also
24074 check for availability of ACPI.
24075 (battery-echo-area-format): Ditto.
24076 (battery-mode-line-format): Ditto.
24077
24078 2003-09-06 Dave Love <fx@gnu.org>
24079
24080 * ielm.el (ielm-mode-hook): Add :options.
24081
24082 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
24083 (eldoc-print-current-symbol-info): Use it.
24084
24085 2003-09-04 Nick Roberts <nick@nick.uklinux.net>
24086
24087 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
24088 being displayed in GUD buffer.
24089 (gdb-idle-input-queue): Remove var. Use just one queue.
24090 (gdb-enqueue-idle-input,gdb-dequeue-idle-input):
24091 Remove functions. Use just one queue.
24092 (gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
24093 (gdb-invalidate-assembler, gdb-get-current-frame):
24094 Modify functions. Use just one queue.
24095
24096 2003-09-04 Dave Love <fx@gnu.org>
24097
24098 * cus-start.el: Add blink-cursor-alist.
24099
24100 * ruler-mode.el (ruler-mode-fill-column-char)
24101 (ruler-mode-current-column-char): Use char-displayable-p,
24102 not window-system.
24103
24104 * international/codepage.el ("mule-diag"): Add eval-after-load clause.
24105
24106 * language/european.el (windows-1252): Move from code-pages.
24107
24108 * language/cyrillic.el ("Windows-1251"): Delete.
24109 ("Bulgarian", "Belarusian"): Remove `features'.
24110 (windows-1251): Move from code-pages.
24111
24112 * international/mule-diag.el (non-iso-charset-alist):
24113 Remove `codepage' stuff.
24114 (print-designation, list-coding-systems-1): Output fixes.
24115
24116 * international/code-pages.el (cp-make-translation-table)
24117 (cp-valid-codes): Made defsubsts.
24118 (cp-fix-safe-chars): Delete.
24119 (mule-diag): Don't require.
24120 (windows-1251, windows-1252): Remove to cyrillic.el/european.el.
24121 (top-level): Check for defined coding system when defining
24122 cp... aliases. Change w32-add-charset-info test to avoid warning.
24123 (non-iso-charset-alist): Defvar when compiling.
24124 (cp-make-coding-system): Doc fix.
24125
24126 2003-09-02 Jason Rumney <jasonr@gnu.org>
24127
24128 * international/titdic-cnv.el (tsang-quick-converter): Fix broken
24129 line-ends from CVS before doing conversion.
24130
24131 2003-09-02 Glenn Morris <gmorris@ast.cam.ac.uk>
24132
24133 * calendar/diary-lib.el (diary-header-line-flag)
24134 (diary-header-line-format): New variables.
24135 (list-diary-entries): Use them to set header line in simple diary.
24136
24137 * progmodes/sh-script.el (sh-font-lock-keywords): Use something
24138 other than font-lock-string-face to highlight backslashes.
24139
24140 2003-09-01 Jason Rumney <jasonr@gnu.org>
24141
24142 * international/titdic-cnv.el (tit-read-key-value): Include \r in
24143 regexp.
24144
24145 2003-09-01 Dave Love <fx@gnu.org>
24146
24147 * mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.
24148
24149 * menu-bar.el (menu-bar-showhide-menu): Amend date and time label
24150 and :help; also line and column numbers labels.
24151
24152 * international/mule-util.el (char-displayable-p): Move from
24153 latin1-disp, rename and autoload.
24154
24155 * international/latin1-disp.el (latin1-char-displayable-p):
24156 Now obsolete alias. Replace uses with char-displayable-p.
24157 (latin1-display-ucs-per-lynx): Fix last change.
24158
24159 * international/mule-cmds.el (standard-display-european-internal):
24160 Don't use char code for Latin-1 NBSP.
24161 <XFree86 4>: Unfrob NBSP display table. Set display table to use
24162 U+2018, U+2019 for `'.
24163 (select-safe-coding-system): Message fix.
24164
24165 2003-09-01 Kenichi Handa <handa@m17n.org>
24166
24167 * international/fontset.el (setup-default-fontset): For Thai
24168 font, specify "*" family.
24169
24170 2003-09-01 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
24171
24172 * progmodes/compile.el (previous-error): Accept a prefix
24173 argument, similarly to next-error.
24174
24175 2003-08-31 Masatake YAMATO <jet@gyve.org>
24176
24177 * pcvs.el (cvs-do-removal): Use = instead of eq to check
24178 the number of files. Bind the number of files to a local
24179 variable. Suggested by Kevin Rodgers <ihs_4664@yahoo.com>.
24180
24181 2003-08-30 Eli Zaretskii <eliz@gnu.org>
24182
24183 * vc-hooks.el (vc-make-version-backup): Fix the change made on
24184 2003-07-26: msdos-long-file-names is a function, not a variable.
24185
24186 2003-08-29 Richard M. Stallman <rms@gnu.org>
24187
24188 * mail/sendmail.el (sendmail-sync-aliases, mail-setup):
24189 Do nothing with mail-personal-alias-file if it is nil.
24190
24191 * mail/mailabbrev.el (mail-abbrevs-sync-aliases):
24192 Do nothing if mail-personal-alias-file is nil.
24193
24194 * term.el (term-exec-1): Bind coding-system-for-read.
24195
24196 * dired.el (dired-mouse-find-file-other-window):
24197 Use dired-view-command-alist here, as in dired-view-file.
24198 (dired-view-command-alist): Use %s to substitute file name.
24199 Handle .ps_pages, .eps, .jpg, .gif, .png.
24200
24201 2003-08-29 Paul Pogonyshev <pogonyshev@gmx.net> (tiny change)
24202
24203 * info.el (Info-mode-map): Bind S-tab and <backtab> to
24204 `Info-prev-reference', instead of M-tab.
24205
24206 2003-08-29 Martin Stjernholm <mast@lysator.liu.se>
24207
24208 * simple.el (blink-matching-open): Work correctly on chars that
24209 are designated as parens through the syntax-table text property.
24210
24211 2003-08-29 Thierry Emery <thierry.emery@club-internet.fr> (tiny change)
24212
24213 * kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
24214 line break position in the middle of a non-kinsoku (e.g. latin)
24215 word, making it skip until either a space or a character with
24216 category "|".
24217 (kinsoku-longer): Test for end of buffer.
24218
24219 2003-08-28 Eli Zaretskii <eliz@gnu.org>
24220
24221 * mail/rmail.el (rmail-convert-to-babyl-format):
24222 Detect quoted-printable- and base64-encoded messages and decode them
24223 automatically. Set the message's encoding from the charset=
24224 header, if any. Decode base64-encoded messages in Mail format as well.
24225
24226 2003-08-26 Glenn Morris <gmorris@ast.cam.ac.uk>
24227
24228 * mail/smtpmail.el: Fix previous change.
24229 (smtpmail-send-queued-mail): Set smtpmail-mail-address before
24230 calling smtpmail-via-smtp.
24231 (smtpmail-via-smtp): Add fall-back values for envelope-from.
24232
24233 2003-08-26 John Paul Wallington <jpw@gnu.org>
24234
24235 * image.el (image-jpeg-p): Don't search beyond length of data.
24236
24237 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
24238
24239 * progmodes/cc-cmds.el (c-electric-brace): Work around for a
24240 misfeature in `expand-abbrev' which caused electric keywords like
24241 "else" to disappear if an open brace was typed directly afterwards.
24242
24243 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
24244
24245 * progmodes/cc-vars.el (c-extra-types-widget): The doc string is
24246 mandatory in `define-widget'.
24247
24248 * progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
24249 Don't align the operators "!=", "<=" and ">=" as assignment operators.
24250
24251 (c-assignment-operators): New language constant that only contains
24252 the assignment operators.
24253
24254 (c-assignment-op-regexp): New language var used by `c-lineup-math'.
24255
24256 2003-08-26 Martin Stjernholm <bug-cc-mode@gnu.org>
24257
24258 * progmodes/cc-engine.el (c-just-after-func-arglist-p):
24259 Safeguard against unbalanced sexps.
24260
24261 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
24262
24263 * version.el (emacs-version): Check for gtk. Include gtk version info.
24264
24265 2003-08-25 John Paul Wallington <jpw@gnu.org>
24266
24267 * man.el (Man-default-man-entry): Don't whizz past the section
24268 number before looking for it.
24269
24270 2003-08-24 Nick Roberts <nick@nick.uklinux.net>
24271
24272 * progmodes/gud.el (gud-display-line): Don't set window-point if
24273 source buffer is not visible. (Only happens with M-x gdba.)
24274
24275 * gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
24276 documentation.
24277 (gdb-source, gdb-source-info): Update to assembler unnecessary
24278 as its done after each GDB command anyway.
24279 (gdb-pre-prompt): Use with-current-buffer.
24280 (gdb-insert-field): Add help-echo text.
24281 (gdb-invalidate-assembler): Re-display of assembler now done in
24282 gdb-info-breakpoints-custom.
24283 (gdb-info-breakpoints-custom): Force re-display of assembler to
24284 happen *after* update of breakpoints buffer.
24285 (gdb-display-source-buffer): Don't choke if gdb-source-window
24286 isn't visible.
24287 (gdb-put-string, gdb-put-arrow): Remove free variables.
24288
24289 2003-08-24 John Paul Wallington <jpw@gnu.org>
24290
24291 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
24292
24293 * man.el (Man-default-man-entry): Strip text properties when
24294 snarfing parts of entry because `format' preserves properties.
24295
24296 2003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
24297
24298 * files.el (file-newest-backup): Use `expand-file-name'.
24299
24300 * calendar/diary-lib.el (simple-diary-display, make-diary-entry):
24301 Allow the diary to pop up a new frame, if needed.
24302
24303 * mail/sendmail.el (mail-specify-envelope-from): Doc change.
24304 * mail/smtpmail.el (smtpmail-mail-address): Doc change.
24305 (smtpmail-send-it): Make treatment of envelope-from consistent with
24306 sendmail.el.
24307
24308 * progmodes/sh-script.el (sh-builtins): Add some bash builtins.
24309 (sh-leading-keywords): Add the bash `time' reserved word.
24310 (sh-variables): Add some bash variables.
24311 (sh-add-completer): Fix nil branch of case statement.
24312
24313 2003-08-24 Masatake YAMATO <jet@gyve.org>
24314
24315 * progmodes/ld-script.el: New file.
24316
24317 2003-08-23 Markus Rost <rost@math.ohio-state.edu>
24318
24319 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.
24320
24321 2003-08-23 Andre Spiegel <spiegel@gnu.org>
24322
24323 * vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
24324 Better explain obsolescence, and what to use instead.
24325
24326 2003-08-23 Masatake YAMATO <jet@gyve.org>
24327
24328 * pcvs.el (cvs-do-removal): Show the deleted file name
24329 on the prompt.
24330
24331 2003-08-20 Dave Love <fx@gnu.org>
24332
24333 * international/mule.el (make-coding-system)
24334 (set-buffer-file-coding-system): Doc fix.
24335
24336 * emacs-lisp/lisp-mode.el (common-lisp-mode): New.
24337
24338 * emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.
24339
24340 * international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.
24341
24342 * international/utf-16.el: Add mime-text-unsuitable coding system
24343 properties.
24344
24345 * international/latin1-disp.el (latin1-display): Add ?\e$,1s"\e(B.
24346
24347 * cus-edit.el: Add some :links.
24348 (bib): Remove.
24349
24350 * textmodes/bib-mode.el (bib): Add :group external.
24351
24352 2003-08-18 Luc Teirlinck <teirllm@mail.auburn.edu>
24353
24354 * wid-edit.el (widget-echo-help): Make it handle expressions that
24355 evaluate to strings.
24356
24357 2003-08-18 Michael Mauger <mmaug@yahoo.com>
24358
24359 Version 1.8.0 of sql-mode. (Patch submitted 2003-06-21)
24360
24361 Simplify selection of SQL products to define highlighting and
24362 interactive mode. Includes detailed instructions on adding
24363 support for new products.
24364
24365 * progmodes/sql.el (sql-product): New variable. Identifies SQL
24366 product for use in highlighting and interactive mode.
24367 (sql-interactive-product): New variable. SQL product for
24368 sql-interactive-mode.
24369 (sql-product-support): New variable. Specifies product-specific
24370 parameters to drive highlighting and interactive mode.
24371 (sql-imenu-generic-expression): Add more object types.
24372 (sql-sqlite-options): Correct comment.
24373 (sql-ms-program): Use "osql" rather than "isql".
24374 (sql-prompt-regexp, sql-prompt-length): Update comment.
24375 (sql-mode-menu): Add "Start SQLi session" entry.
24376 Replace Highlighting submenu with Product menu. Fix Send Region entry.
24377 (sql-mode-abbrev-table): Add abbreviations. Support of
24378 SYSTEM-FLAG on define-abbrev. Support was removed with last
24379 check-in; it now handles older Emacsen without the SYSTEM-FLAG.
24380 (sql-mode-font-lock-object-name): Add font-lock pattern for object
24381 names.
24382 (sql-mode-ansi-font-lock-keywords): Set as default value.
24383 (sql-mode-oracle-font-lock-keywords): Set as default value.
24384 Support Oracle 9i keywords.
24385 (sql-mode-postgres-font-lock-keywords): Set as default value.
24386 (sql-mode-linter-font-lock-keywords): Set as default value.
24387 (sql-mode-ms-font-lock-keywords): New variable. Support Microsoft
24388 SQLServer 2000.
24389 (sql-mode-sybase-font-lock-keywords)
24390 (sql-mode-interbase-font-lock-keywords)
24391 (sql-mode-sqlite-font-lock-keywords)
24392 (sql-mode-strong-font-lock-keywords)
24393 (sql-mode-mysql-font-lock-keywords)
24394 (sql-mode-db2-font-lock-keywords): New variables. Default to ANSI
24395 keywords.
24396 (sql-mode-font-lock-defaults): Update comment.
24397 (sql-product-feature): New function. Returns feature associated
24398 with a product from `sql-product-support' alist.
24399 (sql-product-font-lock): New function. Set font-lock support
24400 based on `sql-product'.
24401 (sql-add-product-keywords): New function. Add font-lock rules to
24402 product-specific keyword variables.
24403 (sql-set-product): New function. Set `sql-product' and apply
24404 appropriate font-lock highlighting.
24405 (sql-highlight-product): New function. Set font-lock support
24406 based on a product. Also set mode name to include product name.
24407 (sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
24408 (sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
24409 Use `sql-set-product'.
24410 (sql-highlight-ms-keywords)
24411 (sql-highlight-sybase-keywords)
24412 (sql-highlight-interbase-keywords)
24413 (sql-highlight-strong-keywords)
24414 (sql-highlight-mysql-keywords)
24415 (sql-highlight-sqlite-keywords)
24416 (sql-highlight-db2-keywords): New functions. Use `sql-set-product'.
24417 (sql-get-login): Prompt in the same order as the tokens.
24418 (sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
24419 (sql-product-interactive): New function. Common portions of
24420 product-specific interactive mode wrappers.
24421 (sql-interactive-mode): Rewritten to use product features.
24422 (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
24423 (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
24424 (sql-db2, sql-linter): Use `sql-product-interactive'.
24425 (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
24426 (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
24427 (sql-connect-ingres, sql-connect-postgres)
24428 (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
24429 New functions. Format command line parameters and invoke comint on
24430 the appropriate interpreter. Code was in the corresponding
24431 `sql-xyz' function before.
24432 (sql-connect-ms): New function. Support -E argument to use
24433 operating system credentials for authentication.
24434
24435 2003-08-18 Kenichi Handa <handa@m17n.org>
24436
24437 * international/mule.el (encode-char): Fix for the ASCII case.
24438
24439 2003-08-15 Kenichi Handa <handa@m17n.org>
24440
24441 * international/fontset.el (setup-default-fontset): Change "*" to
24442 nil in the specifications of font family.
24443
24444 2003-08-18 Kim F. Storm <storm@cua.dk>
24445
24446 * kmacro.el (kmacro-keymap): Group related bindings in
24447 initialization for clarity. Bind C-s to start macro.
24448 Remove C-r binding.
24449 (kmacro-initial-counter-value): New defvar to hold initial counter
24450 value in case we set the value before defining a macro.
24451 (kmacro-insert-counter): Clear kmacro-initial-counter-value..
24452 (kmacro-set-counter): Set kmacro-initial-counter-value if we are
24453 not defining or executing macro. Doc fix.
24454 (kmacro-add-counter): Clear kmacro-initial-counter-value.
24455 (kmacro-view-last-item, kmacro-view-item-no): New defvars used to
24456 temporarily view older elements on the macro ring without cycling
24457 the ring.
24458 (kmacro-display): Doc fix.
24459 (kmacro-exec-ring-item): New helper function.
24460 (kmacro-call-ring-2nd): Use it.
24461 (kmacro-call-ring-2nd-repeat): Doc fix.
24462 (kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
24463 (kmacro-end-or-call-macro): Execute last viewed macro (using
24464 kmacro-exec-ring-item) from ring if this follows
24465 kmacro-view-macro. This allows us to find a macro on the ring
24466 with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
24467 the ring to bring it to the head of the ring.
24468 (kmacro-bind-to-key): Doc fix (describe reserved bindings).
24469 Allow binding to reserved keys without specifying C-x C-k prefix.
24470 Ask for confirmation if entered key sequence is already bound to
24471 a non-macro command.
24472 (kmacro-view-macro): Repeating command will show older elements
24473 on the macro ring; C-k will execute the last viewed macro.
24474 (kmacro-view-macro-repeat): Doc fix. Change its kmacro-repeat
24475 property from 'ring to 'head.
24476
24477 2003-08-17 Alan Shutko <ats@acm.org>
24478
24479 * calendar/calendar.el (calendar-make-alist): Correct off-by-one
24480 keeping December out of the alist.
24481
24482 2003-08-17 Edward M. Reingold <reingold@emr.cs.iit.edu>
24483
24484 * calendar/cal-move.el (calendar-goto-day-of-year): New function.
24485 * calendar/calendar.el (calendar-mode-map): Bind it to key.
24486 * calendar/cal-menu.el (calendar-mode-map): Add it to menu.
24487 (calendar-flatten): New function.
24488 (calendar-mouse-view-other-diary-entries)
24489 (calendar-mouse-view-diary-entries): Rewritten to put any holidays
24490 in the menu title and to show multi-line diary entries correctly
24491 in the menu.
24492
24493 2003-08-17 Luc Teirlinck <teirllm@mail.auburn.edu>
24494
24495 * info.el (Info-scroll-prefer-subnodes): Add :version keyword to
24496 defcustom, because the default was recently changed.
24497
24498 2003-08-16 Richard M. Stallman <rms@gnu.org>
24499
24500 * net/ange-ftp.el (ange-ftp-error): Add save-excursion.
24501
24502 * emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
24503 New subroutine, broken out of eval-last-sexp-1.
24504 (eval-last-sexp-1): Use eval-last-sexp-print-value.
24505
24506 * custom.el (custom-load-symbol): Load cus-load and cus-start first.
24507
24508 * dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.
24509
24510 * simple.el (eval-expression): Use eval-last-sexp-print-value.
24511
24512 2003-08-14 Jari Aalto <jari.aalto@poboxes.com>
24513
24514 * progmodes/compile.el (compilation-error-regexp-alist):
24515 Add Java ANt error detection as described in document
24516 http://ant.apache.org/faq.html
24517
24518 2003-08-12 Juri Linkov <juri@jurta.org> (tiny change)
24519
24520 * simple.el (backward-word, forward-to-indentation)
24521 (backward-to-indentation): Argument changed to optional.
24522 (next-line, previous-line): Use `or' instead of `unless'.
24523
24524 2003-08-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24525
24526 * progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
24527 instead of a constant.
24528
24529 2003-08-12 Markus Rost <rost@math.ohio-state.edu>
24530
24531 * shell.el (shell): With prefix-arg, suggest a new buffer name.
24532
24533 2003-08-12 Andre Spiegel <spiegel@gnu.org>
24534
24535 * vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
24536 (vc-sccs-workfile-version): Search the entire delta table, rather
24537 than just the first entry, because that might be a deleted version.
24538
24539 2003-08-11 Karl Fogel <kfogel@red-bean.com>
24540
24541 * menu-bar.el (menu-bar-options-menu): Supply a body for the
24542 [save-place] binding in the Options menu. Have it require
24543 'saveplace' and then toggle the variable manually, to avoid an
24544 unbound variable error. Thanks to <Sebastien.Kirche@sage.com>
24545 for the bug report.
24546
24547 2003-08-11 Nick Roberts <nick@nick.uklinux.net>
24548
24549 * gdb-ui.el (gdb-insert-field, gdb-array-format1)
24550 (gdb-info-breakpoints-custom, gdb-info-frames-custom)
24551 (gdb-info-threads-custom): Add help-echo text.
24552 (gdb-display-back): Don't use purecopy.
24553 (gdb-info-breakpoints-custom, gdb-reset)
24554 (gdb-assembler-custom): Use display-images-p to test if breakpoint
24555 icons can be displayed.
24556
24557 2003-08-11 Markus Rost <rost@math.ohio-state.edu>
24558
24559 * textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.
24560
24561 2003-08-11 Stefan Monnier <monnier@cs.yale.edu>
24562
24563 * bookmark.el (bookmark-completing-read):
24564 Return a string, instead of a list of one string.
24565 Use a popup menu if activated from the mouse.
24566 (bookmark-edit-annotation): Remove unused vars.
24567 (bookmark-jump, bookmark-relocate, bookmark-insert-location)
24568 (bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
24569 to bookmark-completing-read.
24570 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
24571 (bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
24572 (bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
24573 and erase-buffer.
24574 (bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
24575 (bookmark-menu-jump, bookmark-menu-insert)
24576 (bookmark-popup-menu-and-apply-function)
24577 (bookmark-menu-popup-paned-bookmark-menu): Remove.
24578 (bookmark-menu-build-paned-menu): Remove by folding it into
24579 bookmark-menu-popup-paned-menu.
24580 (menu-bar-bookmark-map): Move the define-key statements here.
24581 Use the "non-menu" commands since they now pop up a menu if needed.
24582 (bookmark-exit-hook-internal): Simplify.
24583
24584 2003-08-11 Carsten Dominik <dominik@sand.science.uva.nl>
24585
24586 * reftex-toc.el (reftex-toc-rename-label): New function.
24587 (reftex-toc-check-docstruct): New function.
24588
24589 * reftex.el (reftex-region-active-p): New function.
24590
24591 * reftex-parse.el (reftex-locate-bibliography-files): Improved the
24592 regexp to find the \bibliography macro.
24593
24594 * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
24595 which does not exist in LaTeX.
24596 (reftex-cite-format-builtin): Added amsrefs support.
24597 (reftex-toc-confirm-promotion): New option
24598
24599 * reftex-toc.el
24600 (reftex-toc): Use `reftex-toc-split-windows-fraction'.
24601 (reftex-toc-demote, reftex-toc-promote)
24602 (reftex-toc-do-promote, reftex-toc-promote-prepare)
24603 (reftex-toc-promote-action, reftex-toc-extract-section-number)
24604 (reftex-toc-newhead-from-alist)
24605 (reftex-toc-load-all-files-for-promotion): New functions.
24606 (reftex-toc-help): Added description of new keys.
24607 (reftex-toc-split-windows-fraction): New option.
24608 (reftex-recenter-toc-when-idle): Search *toc* window on all
24609 visible frames.
24610 (reftex-toc): Additional parameter REUSE
24611 (reftex-toc-recenter): Remember current frame. Call `reftex-toc'
24612 with REUSE argument.
24613 (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
24614 the call of `reftex-toc'.
24615 (reftex-make-separate-toc-frame): New function .
24616 (reftex-toc-recenter): When called with triple prefix arg, call
24617 `reftex-make-separate-toc-frame' first.
24618 (reftex-toc-toggle-dedicated-frame): New command.
24619 (reftex-toc-quit): Adapted to delete frame when called in
24620 dedicated frame.
24621
24622 * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
24623 all enclosing macros.
24624
24625
24626 2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24627
24628 * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
24629 first use.
24630
24631 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24632
24633 * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.
24634
24635 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk>
24636
24637 * calendar/calendar.el (list-diary-entries-hook)
24638 (diary-display-hook, nongregorian-diary-listing-hook)
24639 (mark-diary-entries-hook, nongregorian-diary-marking-hook):
24640 Add some customize options for these hooks.
24641 (calendar-abbrev-construct): Don't try to take a substring longer
24642 than the original string.
24643
24644 2003-08-05 Richard M. Stallman <rms@gnu.org>
24645
24646 * emacs-lisp/testcover.el (noreturn): Report error if does return.
24647 (testcover-reinstrument-clauses): Doc fix.
24648
24649 * emacs-lisp/warnings.el: Doc fixes, args renamed.
24650 (warning-type-format): Rename from warning-group-format.
24651
24652 * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
24653 (byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
24654 (byte-compile-defvar): Bind byte-compile-not-obsolete-var
24655 to prevent warnings about defvar for an obsolete variable.
24656
24657 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
24658 warning-group-format renamed to warning-type-format.
24659
24660 * subr.el (read-passwd): Use clear-string instead of fillarray.
24661
24662 * edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
24663 Use vconcat instead of concat.
24664 (edmacro-sanitize-for-string): New function.
24665
24666 2003-08-05 Dave Love <fx@gnu.org>
24667
24668 * cus-start.el: Add open-paren-in-column-0-is-defun-start,
24669 line-number-display-limit-width.
24670
24671 * textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.
24672
24673 2003-08-05 Kenichi Handa <handa@m17n.org>
24674
24675 * international/code-pages.el: Don't require mule-diag.
24676
24677 * international/mule-diag.el (non-iso-charset-alist):
24678 Add autoload cookie.
24679
24680 * language/devan-util.el (dev-glyph-order): Add an entry for the
24681 glyph code #xC4.
24682
24683 2003-08-03 Glenn Morris <gmorris@ast.cam.ac.uk>
24684
24685 * calendar/calendar.el (diary-file, diary-file-name-prefix)
24686 (european-calendar-style, diary-date-forms)
24687 (calendar-day-name-array, calendar-month-name-array): Doc change.
24688 (generate-calendar-month): Adapt for new behavior of
24689 `calendar-day-name' function.
24690 (calendar-abbrev-length, calendar-day-abbrev-array)
24691 (calendar-month-abbrev-array): New variables.
24692 (calendar-abbrev-construct): New function.
24693 (calendar-day-name, calendar-month-name): Use new abbrev arrays,
24694 rather than fixing abbrevs at some width. Calling syntax change.
24695 (calendar-make-alist): Use abbrev arrays. Calling syntax change.
24696 (calendar-date-string): Adapt for new behaviors of
24697 `calendar-day-name' and `calendar-month-name' functions.
24698
24699 * calendar/diary-lib.el (list-diary-entries): Adapt for new
24700 behavior of `calendar-day-name' and `calendar-month-name' functions.
24701 (diary-name-pattern): Use abbrev arrays, rather than fixing
24702 abbrevs at three chars. Calling syntax change.
24703 (mark-diary-entries): Adapt for new behaviors of
24704 `diary-name-pattern' and `calendar-make-alist' functions.
24705 (fancy-diary-font-lock-keywords): Adapt for new behavior of
24706 `diary-name-pattern' function.
24707 (font-lock-diary-date-forms): Use abbrev arrays, rather than
24708 fixing abbrevs at three chars. Calling syntax change.
24709 (cal-hebrew, cal-islam): Require when compiling.
24710 (diary-font-lock-keywords): Adapt for new behavior of
24711 `font-lock-diary-date-forms' function.
24712
24713 * calendar/cal-hebrew.el: Reposition some code so defined before used.
24714 (calendar-hebrew-month-name-array-common-year)
24715 (calendar-hebrew-month-name-array-leap-year): Add doc strings.
24716 (list-hebrew-diary-entries): Adapt for new behaviors of
24717 `calendar-day-name' and `add-to-diary-list' functions.
24718 (mark-hebrew-diary-entries): Adapt for new behaviors of
24719 `diary-name-pattern' and `calendar-make-alist' functions.
24720
24721 * calendar/cal-islam.el (calendar-islamic-month-name-array):
24722 Add doc string.
24723 (list-islamic-diary-entries): Adapt for new behaviors of
24724 `calendar-day-name' and `add-to-diary-list' functions.
24725 (mark-islamic-diary-entries): Adapt for new behaviors of
24726 `diary-name-pattern' and `calendar-make-alist' functions.
24727
24728 * calendar/cal-menu.el (cal-menu-update): Adapt for new behavior of
24729 `calendar-month-name' function.
24730
24731 * calendar/cal-coptic.el (coptic-name): defvar rather than defconst.
24732
24733 * calendar/solar.el (solar-seasons-data): Move definition before use.
24734
24735 * calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
24736 (cal-tex-LaTeX-hourbox): Move definition before use.
24737
24738 * calendar/cal-china.el, cal-hebrew.el, cal-islam.el
24739 * cal-julian.el, cal-menu.el, cal-move.el, holidays.el
24740 * lunar.el, solar.el (displayed-month, displayed-year):
24741 Define for compiler.
24742
24743 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
24744
24745 * progmodes/cc-mode.el (c-init-language-vars-for): Add argument
24746 MODE. Renamed from c-init-c-language-vars'.
24747 (c-initialize-cc-mode): Change accordingly.
24748 (c-common-init): Ditto.
24749 (c-mode): Ditto.
24750 (c++-mode): Use `c-init-language-vars-for'.
24751 (objc-mode): Ditto.
24752 (java-mode): Ditto.
24753 (idl-mode): Ditto.
24754 (pike-mode): Ditto.
24755 (awk-mode): Ditto.
24756
24757 2003-08-03 Martin Stjernholm <bug-cc-mode@gnu.org>
24758
24759 * progmodes/cc-engine.el (c-end-of-current-token): Return whether
24760 or not the point moved.
24761
24762 (c-search-decl-header-end): Don't trip up on operator identifiers
24763 in C++ and operators like == in all languages.
24764
24765 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
24766 Detect leading labels correctly.
24767
24768 2003-08-02 Andreas Schwab <schwab@suse.de>
24769
24770 * textmodes/ispell.el: Don't redo key bindings on loading, put
24771 them only in loaddefs.el.
24772 * bookmark.el: Likewise.
24773 * dabbrev.el: Likewise.
24774 * emerge.el: Likewise.
24775
24776 * apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
24777 has more than one member.
24778
24779 * progmodes/sh-script.el (sh-mode): Don't set mode-class property.
24780
24781 2003-08-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
24782
24783 * lpr.el (printify-region): It was ending conversion before the
24784 expected position. Reported by Keiichi Suzuki <keiichi@nanap.org>.
24785
24786 2003-07-31 John Paul Wallington <jpw@gnu.org>
24787
24788 * net/browse-url.el (browse-url-epiphany): Doc fix.
24789
24790 2003-07-30 Kenichi Handa <handa@m17n.org>
24791
24792 * international/fontset.el (setup-default-fontset):
24793 Change registry names of Akurti fonts.
24794
24795 2003-07-29 Jesper Harder <harder@ifa.au.dk> (tiny change)
24796
24797 * comint.el (comint-read-noecho): Use `clear-string' instead of
24798 `fillarray'.
24799
24800 2003-07-29 Thomas W Murphy <twm@andrew.cmu.edu> (tiny change)
24801
24802 * outline.el (outline-mode-hook): Add defvar.
24803
24804 2003-07-28 Nick Roberts <nick@nick.uklinux.net>
24805
24806 * gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
24807 Restore assembler in source window if that is what has been selected.
24808 (menu): Add gdb-restore-windows to menu. Make gdba
24809 specific menus only visible from gdba.
24810
24811 2003-07-28 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
24812
24813 * progmodes/compile.el (compilation-environment): New user variable.
24814 (compile-internal): Respect it.
24815
24816 2003-07-23 Masatake YAMATO <jet@gyve.org>
24817
24818 * progmodes/gud.el (gdb-script-font-lock-keywords):
24819 Put `font-lock-function-name-face' on a symbol which includes
24820 `-' like `hook-run'. Put font-lock-variable-name-face
24821 on a symbol starting with $.
24822
24823 2003-07-27 Markus Rost <rost@math.ohio-state.edu>
24824
24825 * files.el (set-visited-file-name): Use truename for buffer-file-name.
24826
24827 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
24828
24829 * vc-hooks.el (vc-file-not-found-hook): Doc fix.
24830
24831 2003-07-26 Andre Spiegel <spiegel@gnu.org>
24832
24833 * vc-hooks.el (vc-default-registered, vc-make-version-backup):
24834 Use with-no-warnings.
24835 (vc-file-not-found-hook): Add this to find-file-not-found-functions,
24836 rather than to find-file-not-found-hook, which doesn't exist.
24837
24838 2003-07-26 Markus Rost <rost@math.ohio-state.edu>
24839
24840 * international/quail.el (quail-translate-key): Fix previous change.
24841
24842 2003-07-25 John Paul Wallington <jpw@gnu.org>
24843
24844 * server.el (server-start): Check `server-process' is non-nil
24845 before killing it to avoid killing current buffer's process.
24846
24847 * simple.el (choose-completion-string): Use `minibufferp';
24848 test `completion-reference-buffer' if `buffer' arg is nil.
24849 (push-mark): Use `when' and `unless'.
24850 (pop-mark): Use `when'.
24851
24852 * mouse-sel.el (mouse-sel-get-selection-function):
24853 Check `x-last-selected-text-primary'. Don't barf if it or
24854 `x-last-selected-text' aren't bound.
24855
24856 2003-07-25 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
24857
24858 * menu-bar.el (menu-bar-tools-menu): Minor change in strings.
24859
24860 2003-07-23 Stefan Monnier <monnier@cs.yale.edu>
24861
24862 * vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.
24863
24864 2003-07-23 John Paul Wallington <jpw@gnu.org>
24865
24866 * tooltip.el (defface tooltip): Inherit from variable-pitch.
24867
24868 2003-07-23 Glenn Morris <gmorris@ast.cam.ac.uk>
24869
24870 * emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
24871 string. Defvar the derived hook.
24872
24873 * macros.el (insert-kbd-macro): Escape double quote character.
24874 From Thomas W Murphy <twm@andrew.cmu.edu>.
24875
24876 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
24877
24878 * textmodes/fill.el (fill-comment-paragraph): Construct a regexp
24879 to match the specific mark rather than reusing comment-start-skip.
24880
24881 2003-07-22 Thien-Thi Nguyen <ttn@gnu.org>
24882
24883 * progmodes/hideshow.el (hs-special-modes-alist):
24884 Clarify MDATA-SELECTOR doc; nfc. Thanks to Michael Ernst.
24885
24886 2003-07-21 Markus Rost <rost@math.ohio-state.edu>
24887
24888 * progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
24889 value using ?\s.
24890
24891 2003-07-21 John Paul Wallington <jpw@gnu.org>
24892
24893 * subr.el (with-selected-window): Add closing paren.
24894
24895 2003-07-21 Richard M. Stallman <rms@gnu.org>
24896
24897 * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
24898 (lisp-mode): Likewise.
24899
24900 * subr.el (with-selected-window): Copy code form save-selected-window
24901 so as to call select-window with norecord arg.
24902 (dynamic-completion-table): Doc fix.
24903 (lazy-completion-table): Doc fix.
24904
24905 * international/mule-cmds.el (set-locale-environment):
24906 langinfo renamed to locale-info.
24907
24908 * international/mule.el (auto-coding-functions): Doc fix.
24909
24910 2003-07-21 Kenichi Handa <handa@m17n.org>
24911
24912 * international/quail.el (quail-translate-key):
24913 Update quail-current-str correctly.
24914
24915 2003-07-21 Andreas Schwab <schwab@suse.de>
24916
24917 * progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
24918 ?, to "_".
24919
24920 2003-07-20 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
24921 Version 2.0.36 of Tramp released.
24922
24923 * net/tramp.el (tramp-default-password-end-of-line): Rename from
24924 tramp-password-end-of-line.
24925 (tramp-password-end-of-line): New method parameter.
24926 (tramp-get-password-end-of-line): Function to access method
24927 parameter `tramp-password-end-of-line', or variable
24928 `tramp-default-password-end-of-line' (default value).
24929 (tramp-methods): Add entries for new parameter
24930 tramp-password-end-of-line.
24931 (tramp-enter-password): Use new function
24932 `tramp-get-password-end-of-line'.
24933 (tramp-handle-insert-file-contents): Do not
24934 unconditionally inhibit the file operation file-local-copy, only
24935 do that when the inhibit-file-name-operation is currently
24936 insert-file-contents. This fixes finding remote CVS-controlled
24937 files. (It would barf on inserting the CVS/Entries file
24938 literally, because the file-local-copy handler wasn't called.)
24939 (tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
24940 (tramp-sh-extra-args): Adapt defcustom type to XEmacs.
24941 (tramp-initial-commands): New variable.
24942 (tramp-process-initial-commands): New function, using the variable.
24943 (tramp-open-connection-setup-interactive-shell): Call the new function.
24944 (tramp-buffer-name, tramp-debug-buffer-name): Always put the
24945 method into the buffer name, never use nil. Reported by Hanak
24946 David <dhanak@inf.bme.hu>.
24947 (tramp-open-connection-setup-interactive-shell): Erase buffer
24948 before sending "stty -onlcr".
24949
24950 * net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.
24951
24952 2003-07-19 Markus Rost <rost@math.ohio-state.edu>
24953
24954 * textmodes/artist.el (artist-erase-char): Fix default value using ?\s.
24955
24956 2003-07-19 John Paul Wallington <jpw@gnu.org>
24957
24958 * textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
24959 (artist-draw-rect, artist-draw-square): Doc fixes.
24960
24961 * textmodes/enriched.el (enriched-decode-display-prop): Doc fix.
24962
24963 * textmodes/two-column.el (2C-mode-line-format): Doc fix.
24964
24965 2003-07-19 Kenichi Handa <handa@m17n.org>
24966
24967 * international/kkc.el (kkc-show-conversion-list-update):
24968 Highlight the correct candidate in the message.
24969
24970 2003-07-18 John Paul Wallington <jpw@gnu.org>
24971
24972 * simple.el (current-word): Don't include punctuation char when
24973 `really-word' arg is non-nil.
24974
24975 2003-07-17 Martin Stjernholm <bug-cc-mode@gnu.org>
24976
24977 * progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
24978 moved to the directory obsolete.
24979
24980 2003-07-16 Stefan Monnier <monnier@cs.yale.edu>
24981
24982 * info.el (Info-menu-entry-name-re): Allow newlines in
24983 menu entry names.
24984
24985 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
24986 syntax-ppss-after-change-function.
24987 (syntax-ppss-after-change-function): New alias. Update uses.
24988 (syntax-ppss): Catch the case where the buffer is narrowed.
24989
24990 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
24991
24992 * progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
24993 (c-langelem-2nd-pos): Add accessor functions for syntactic elements.
24994
24995 2003-07-16 Martin Stjernholm <bug-cc-mode@gnu.org>
24996
24997 * progmodes/cc-engine.el (c-literal-faces): Declare as a variable
24998 since it might be modified.
24999
25000 * progmodes/cc-langs.el (c++-make-template-syntax-table)
25001 (c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
25002 names to these language constants.
25003
25004 2003-07-15 Kim F. Storm <storm@cua.dk>
25005
25006 * apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
25007 All uses changed.
25008
25009 2003-07-14 Mark A. Hershberger <mah@everybody.org>
25010
25011 * xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
25012 Namespace support.
25013
25014 2003-07-13 Juanma Barranquero <lektu@terra.es>
25015
25016 * frame.el (modify-all-frames-parameters): Reinstall (copyright
25017 papers received).
25018
25019 2003-07-13 Karl Eichwalder <ke@suse.de>
25020
25021 * textmodes/po.el (po-find-charset): White space at the start of the
25022 Content-Type field body is non-mandatory.
25023
25024 2003-07-13 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
25025
25026 * textmodes/texinfo.el (texinfo-section-list):
25027 Append appendixsection; a synonym for appendixsec.
25028
25029 2003-07-13 Jari Aalto <jari.aalto@poboxes.com>
25030
25031 * man.el (Man-translate-cleanup): New.
25032 (Man-translate-references): Call `Man-translate-cleanup' to clean
25033 leading, trailing and middle spaces.
25034
25035 2003-07-13 Lars Hansen <larsh@math.ku.dk>
25036
25037 * desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
25038 Handle `dired-directory' being a list.
25039
25040 2003-07-13 Jesper Harder <harder@ifa.au.dk> (tiny change)
25041
25042 * mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
25043 it doesn't exist.
25044
25045 2003-07-12 Richard M. Stallman <rms@gnu.org>
25046
25047 * progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.
25048
25049 * progmodes/cc-defs.el (c-make-keywords-re):
25050 Don't use delete-duplicates.
25051 (c-lang-const): Don't use mapcan.
25052
25053 * apropos.el (apropos-show-scores): Make it customizable.
25054 Document new meaning.
25055 (apropos): Compute scores from symbols.
25056 (apropos-print): Don't sort by scores if apropos-show-scores is nil.
25057
25058 2003-07-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
25059
25060 * ps-bdf.el: Fix copyright line.
25061 (bdf-directory-list): Fix initialization code.
25062
25063 2003-07-11 John Paul Wallington <jpw@gnu.org>
25064
25065 * emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
25066 (ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
25067 (ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.
25068
25069 2003-07-11 NAKAJIMA Mikio <minakaji@namazu.org> (tiny change)
25070
25071 * emacs-lisp/ring.el (ring-elements): Doc fix.
25072
25073 2003-07-11 Glenn Morris <gmorris@ast.cam.ac.uk>
25074
25075 * calendar/timeclock.el (timeclock-relative)
25076 (timeclock-ask-before-exiting, timeclock-use-display-time):
25077 Doc changes.
25078 (timeclock-modeline-display): Give a message if
25079 `timeclock-use-display-time' is non-nil but `display-time-mode'
25080 is not active.
25081
25082 2003-07-11 Kenichi Handa <handa@m17n.org>
25083
25084 * international/mule-cmds.el (set-language-environment):
25085 Set current-language-environment to the correct string.
25086
25087 2003-07-10 Vinicius Jose Latorre <viniciusjl@ig.com.br>
25088
25089 * ps-print.el: Print line number correctly in a region. Reported by
25090 Tim Allen <timallen@ls83.fsnet.co.uk>.
25091 (ps-print-version): New version number (6.6.2).
25092 (ps-printing-region): Code fix.
25093
25094 2003-07-10 John Paul Wallington <jpw@gnu.org>
25095
25096 * progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
25097 this function can be called from `add-completions-from-tags-table'.
25098
25099 2003-07-10 Glenn Morris <gmorris@ast.cam.ac.uk>
25100
25101 * calendar/timeclock.el (timeclock-use-display-time)
25102 (timeclock-day-over-hook, timeclock-workday-remaining)
25103 (timeclock-status-string, timeclock-when-to-leave)
25104 (timeclock-when-to-leave-string, timeclock-log-data)
25105 (timeclock-find-discrep, timeclock-day-base)
25106 (timeclock-generate-report, timeclock-visit-timelog): Doc fix.
25107 (timeclock-modeline-display): Set the variable
25108 `timeclock-modeline-display'.
25109 (timeclock-update-modeline): Doc fix. Respect value of
25110 `timeclock-relative'.
25111
25112 2003-07-09 Richard M. Stallman <rms@gnu.org>
25113
25114 * textmodes/reftex-parse.el (reftex-all-document-files):
25115 Add autoload cookie.
25116
25117 * textmodes/reftex.el (reftex-all-document-files): Delete autoload.
25118 (reftex-scanning-info-available-p): Add autoload cookie.
25119
25120 * international/mule-cmds.el
25121 (set-display-table-and-terminal-coding-system): Delete duplicate
25122 aset on standard-display-table.
25123
25124 * view.el (view-file): If existing buffer's major mode is special,
25125 don't go into view mode.
25126
25127 * dired.el (dired-move-to-filename-regexp): Allow quote in months.
25128
25129 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
25130
25131 * progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
25132 buffer changes; there's third party code that calls this function
25133 directly.
25134
25135 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
25136
25137 * progmodes/cc-fonts.el (javadoc-font-lock-keywords)
25138 (autodoc-font-lock-keywords): Don't byte compile on font lock
25139 initialization when running from byte compiled files.
25140
25141 2003-07-08 Alan Mackenzie <bug-cc-mode@gnu.org>
25142
25143 * progmodes/cc-engine.el: Fix AWK mode indentation when previous
25144 statement ends with auto-increment "++".
25145
25146 2003-07-08 Martin Stjernholm <bug-cc-mode@gnu.org>
25147
25148 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
25149 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
25150 these are changed, so declare them as variables and not constants.
25151
25152 2003-07-08 Markus Rost <rost@math.ohio-state.edu>
25153
25154 * subr.el (dolist, dotimes): Doc fix.
25155
25156 2003-07-08 Kim F. Storm <storm@cua.dk>
25157
25158 * international/mule-cmds.el
25159 (set-display-table-and-terminal-coding-system): Don't break
25160 bootstrap if standard-display-table isn't setup yet.
25161
25162 2003-07-07 Richard M. Stallman <rms@gnu.org>
25163
25164 * ehelp.el (ehelp-command): Use defalias to define ehelp-command.
25165 Give it a doc string, and autoload it.
25166
25167 * desktop.el (desktop-buffer-info, desktop-buffer-mh):
25168 Use with-no-warnings.
25169
25170 * info.el (Info-search): If find invisible text, search again.
25171
25172 * isearch.el (search-whitespace-regexp): Add a shy group around it.
25173
25174 * man.el (Man-name-regexp): Match + as part of name.
25175
25176 * simple.el (visible-mode): Rename from vis-mode.
25177 (vis-mode-saved-buffer-invisibility-spec): Doc fix.
25178
25179 * simple.el (current-word): New arg REALLY-WORD specifies
25180 don't include punctuation chars.
25181
25182 * emacs-lisp/debug.el (debug, debugger-env-macro):
25183 Use with-no-warnings while accessing and binding unread-command-char.
25184
25185 * international/mule-cmds.el
25186 (set-display-table-and-terminal-coding-system): Use explicit loop
25187 instead of calling standard-display-default.
25188
25189 * net/ange-ftp.el (ange-ftp-file-symlink-p):
25190 Use condition-case to catch error in ange-ftp-get-files.
25191
25192 * net/browse-url.el (browse-url-browser-function):
25193 Add alternative for Epiphany.
25194 (browse-url-epiphany-program, browse-url-epiphany-arguments)
25195 (browse-url-epiphany-startup-arguments)
25196 (browse-url-epiphany-new-window-is-tab): New variables.
25197 (browse-url-epiphany, browse-url-epiphany-sentinel): New functions.
25198
25199 * progmodes/compile.el (compile-auto-highlight): Default now t.
25200 (compile): Doc fix.
25201 (compilation-next-error): Fix previous change.
25202
25203 * textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.
25204
25205 * textmodes/sgml-mode.el (xml-mode): Add autoload cookie.
25206
25207 2003-07-07 Nick Roberts <nick@nick.uklinux.net>
25208
25209 * gdb-ui.el (gdb-source-info): Display current frame when
25210 attaching to an existing process.
25211 (gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
25212 while laying out windows when attaching to an existing process.
25213
25214 2003-07-07 Stefan Monnier <monnier@cs.yale.edu>
25215
25216 * info.el (Info-menu): Use Info-menu-entry-name-re.
25217
25218 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
25219
25220 * vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
25221 * vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.
25222
25223 * info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
25224 to match the same text.
25225
25226 2003-07-06 John Paul Wallington <jpw@gnu.org>
25227
25228 * vc.el (vc-annotate-offset): Move defvar up.
25229
25230 2003-07-06 Kim F. Storm <storm@cua.dk>
25231
25232 * info.el (Info-menu-entry-name-re): Add `:' to second [] part.
25233 This should fix the infinite loop when extracting menu names.
25234
25235 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
25236
25237 * files.el (auto-mode-alist, interpreter-mode-alist):
25238 Remove entries to CC Mode modes to avoid duplicates; they are now added
25239 with autoload directives in cc-mode.el.
25240
25241 2003-07-05 Martin Stjernholm <bug-cc-mode@gnu.org>
25242
25243 * progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
25244 (c-lang-variable-inits, c-lang-variable-inits-tail): The values of
25245 these are changed, so declare them as variables and not constants.
25246
25247 * progmodes/cc-mode.el: Fix some autoload problems: Try to
25248 ensure that the entry for ".c" extension comes before the one for
25249 ".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
25250 Fix incorrect entries that were added to `interpreter-mode-alist'.
25251 Move the autoload directives for AWK to the top level since they
25252 aren't recognized anywhere else. Do not use the new AWK mode doc
25253 in the autoload form for the old AWK mode.
25254
25255 2003-06-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
25256
25257 * textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
25258 (bibtex-sort-ignore-string-entries): Default value t.
25259 (bibtex-entry-kill-ring-max): Reintroduce as it was removed
25260 erroneously in previous version.
25261 (bibtex-string-files): Docstring reflects new parsing scheme.
25262 (bibtex-autokey-transcriptions): Merge some rewrite entries, fix
25263 docstring, add # as one of the chars to crush
25264 (bibtex-autokey-prefix-string, bibtex-autokey-names)
25265 (bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
25266 (bibtex-autokey-name-change-strings)
25267 (bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
25268 (bibtex-autokey-name-separator, bibtex-autokey-year-length)
25269 (bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
25270 (bibtex-autokey-title-terminators)
25271 (bibtex-autokey-titlewords-stretch)
25272 (bibtex-autokey-titleword-ignore)
25273 (bibtex-autokey-titleword-case-convert)
25274 (bibtex-autokey-titleword-abbrevs)
25275 (bibtex-autokey-titleword-abbrevs)
25276 (bibtex-autokey-titleword-change-strings)
25277 (bibtex-autokey-titleword-length)
25278 (bibtex-autokey-titleword-separator)
25279 (bibtex-autokey-name-year-separator)
25280 (bibtex-autokey-year-title-separator)
25281 (bibtex-autokey-before-presentation-function)
25282 (bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
25283 Fix docstring.
25284 (bibtex-strings, bibtex-reference-keys):
25285 Use lazy-completion-table and make-variable-buffer-local.
25286 (bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
25287 (bibtex-braced-string-syntax-table)
25288 (bibtex-quoted-string-syntax-table): New variables.
25289 (bibtex-parse-nested-braces): Remove.
25290 (bibtex-parse-field-string): Use syntax table and forward-sexp.
25291 (bibtex-parse-association): Simplify.
25292 (bibtex-parse-field-name): Obey bibtex-autoadd-commas.
25293 (bibtex-parse-field-text): Simplify.
25294 (bibtex-search-forward-field, bibtex-search-backward-field):
25295 argument BOUND can take value t.
25296 (bibtex-start-of-field, bibtex-start-of-name-in-field)
25297 (bibtex-end-of-name-in-field, bibtex-end-of-field)
25298 (bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
25299 (bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
25300 (bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
25301 (bibtex-skip-to-valid-entry): Return buffer position of beginning
25302 and ending of entry. Update for changes of bibtex-search-entry.
25303 Simplify.
25304 (bibtex-map-entries): FUN is called with three arguments.
25305 (bibtex-search-entry): Return a cons pair with buffer positions of
25306 beginning and end of entry.
25307 (bibtex-enclosing-field): Simplify.
25308 (bibtex-format-entry): Use booktitle to set a missing title.
25309 (bibtex-autokey-get-names): Fiddle with regexps.
25310 (bibtex-generate-autokey): Use identity.
25311 (bibtex-parse-keys): Use simplified parsing algorithm if
25312 bibtex-parse-keys-fast is non-nil. Simplify. Change order of
25313 arguments. Return alist of keys.
25314 (bibtex-parse-strings): Simplify. Return alist of strings.
25315 (bibtex-complete-string-cleanup): Fix docstring.
25316 (bibtex-read-key): New function.
25317 (bibtex-mode): Fix docstring. Do not parse for keys and
25318 strings when the mode is entered. Set fill-paragraph-function to
25319 bibtex-fill-field. Setup font-lock-mark-block-function the way
25320 font-lock intended.
25321 (bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
25322 (bibtex-parse-entry, bibtex-autofill-entry): New functions.
25323 (bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
25324 (bibtex-Preamble): Avoid hard coded constants.
25325 (bibtex-make-field): Fix docstring. Simplify.
25326 (bibtex-beginning-of-entry): Always return new position of point.
25327 (bibtex-end-of-entry): Rearrange cond clauses.
25328 (bibtex-count-entries, bibtex-validate, bibtex-reformat):
25329 Update for changes of bibtex-map-entries.
25330 (bibtex-ispell-abstract): Do not move point.
25331 (bibtex-entry-index): Use downcase. Simplify.
25332 (bibtex-lessp): Handle catch-all.
25333 (bibtex-find-crossref): Turn into a command.
25334 (bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
25335 (bibtex-clean-entry): Use bibtex-read-key. Handle string and
25336 preamble entries.
25337 (bibtex-fill-field-bounds): New function.
25338 (bibtex-fill-field): New command. Bound to fill-paragraph-function.
25339 (bibtex-fill-entry): Use bibtex-fill-field-bounds
25340 (bibtex-String): Use bibtex-strings. Always obey
25341 bibtex-sort-ignore-string-entries.
25342
25343 2003-07-05 John Paul Wallington <jpw@gnu.org>
25344
25345 * cus-theme.el (customize-create-theme):
25346 Call `customize-create-theme' in Reset widget's notify function.
25347
25348 * ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
25349 (ibuffer-mark-interactive): Use `or' instead of `unless'.
25350 (define-ibuffer-column name): Add summarizer.
25351 (define-ibuffer-column size): Likewise.
25352 (define-ibuffer-column filename): Likewise.
25353 (define-ibuffer-column process): Likewise. Change BODY's output too.
25354 (define-ibuffer-column filename-and-process): Likewise, likewise.
25355 (ibuffer): Remove local vars `already-in' and `need-update'.
25356
25357 * ibuf-ext.el: Don't require `derived' at compile-time.
25358
25359 2003-07-05 Kim F. Storm <storm@cua.dk>
25360
25361 * info.el: Disable paragraph refilling.
25362 (Info-refill-paragraphs): New defcustom.
25363 (Info-fontify-node): Use it.
25364
25365 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
25366
25367 * emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
25368 thingies from constructors created by defstruct.
25369
25370 * emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
25371 the default value of the variable.
25372 (byte-code-meter): Move declaration to top level.
25373
25374 * pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.
25375
25376 * info.el (Info-following-node-name-re): New fun.
25377 (Info-following-node-name): Remove.
25378 (Info-insert-dir): Use the new fun.
25379 (Info-extract-pointer): Don't save restriction; use new fun.
25380 (Info-menu-entry-name-re): New const.
25381 (Info-menu-entry-name-re): Use it along with new fun.
25382 (Info-node-spec-re): Use new fun.
25383 (Info-complete-menu-item, Info-fontify-node): Use new const.
25384 (Info-goto-node, Info-follow-reference, Info-menu-update):
25385 Use match-string.
25386 (Info-follow-reference): Use assoc-string.
25387 Use a list of strings for the completion table.
25388 (Info-fontify-node): Use match-string, line-end-position.
25389 Limit the search for `node:' to the first line.
25390
25391 * newcomment.el (uncomment-region): Remove padding coming from
25392 comment-start rather than just from comment-padding.
25393
25394 * vc-cvs.el (vc-cvs-repository-hostname): New operation.
25395 (vc-cvs-stay-local-p): Use vc-stay-local-p.
25396 (vc-cvs-rename-file): Remove (use the default).
25397 (vc-cvs-register): Register parent dir if needed.
25398 (vc-cvs-could-register): Return non-nil if parent can be registered.
25399 (vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
25400 (vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.
25401
25402 * vc-svn.el (vc-svn-use-edit): Make it into a const.
25403 (vc-svn-update): Fix the arguments to `svn'.
25404 (vc-svn-diff-tree): Just use `vc-svn-diff'.
25405 (vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
25406 Simple implementations, assuming `name' is a URL.
25407
25408 * progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
25409 set of chars allowed unquoted in a case pattern.
25410
25411 * font-core.el (font-lock-defaults-alist): Remove obsolete entries.
25412
25413 * font-lock.el (font-lock-extra-types-widget)
25414 (c-font-lock-extra-types, c++-font-lock-extra-types)
25415 (objc-font-lock-extra-types, java-font-lock-extra-types)
25416 (c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
25417 (c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
25418 (font-lock-match-c++-style-declaration-item-and-skip-to-next)
25419 (font-lock-match-c++-structor-declaration)
25420 (c++-font-lock-keywords-1, c++-font-lock-keywords-2)
25421 (c++-font-lock-keywords-3, c++-font-lock-keywords)
25422 (objc-font-lock-keywords-1, objc-font-lock-keywords-2)
25423 (objc-font-lock-keywords-3, objc-font-lock-keywords)
25424 (java-font-lock-keywords-1, java-font-lock-keywords-2)
25425 (java-font-lock-keywords-3, java-font-lock-keywords)
25426 (java-font-lock-syntactic-face-function): Remove obsolete code
25427 and constants. It's all in cc-fonts.el now.
25428
25429 2003-07-04 Glenn Morris <gmorris@ast.cam.ac.uk>
25430
25431 * mail/sendmail.el (mail-specify-envelope-from)
25432 (mail-envelope-from): Doc fix.
25433
25434 2003-07-04 Martin Stjernholm <mast@lysator.liu.se>
25435
25436 * generic-x.el: Do away with the dependency on `c-emacs-features'
25437 when populating `rul-generic-mode-syntax-table'; we already know
25438 this isn't XEmacs.
25439
25440 See ChangeLog.10 for earlier changes.
25441
25442 ;; Local Variables:
25443 ;; coding: iso-2022-7bit
25444 ;; End:
25445
25446 Copyright (C) 2001, 02, 04 Free Software Foundation, Inc.
25447 Copying and distribution of this file, with or without modification,
25448 are permitted provided the copyright notice and this notice are preserved.
25449
25450 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1