(Info-find-node): Don't record previous node if have none.
[bpt/emacs.git] / lisp / ChangeLog
1 2006-01-05 Richard M. Stallman <rms@gnu.org>
2
3 * simple.el (mark): Doc fix.
4
5 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6
7 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
8 already of desired type.
9 (mac-ae-list): Coerce parameter to "list" type.
10 (mac-dispatch-apple-event): Replace cadr part of event with a
11 dummy position so that event-start returns it.
12
13 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
14
15 * textmodes/org.el: (org-end-of-subtree): New function.
16 (org-cycle, org-subtree-end-visible-p, org-scan-tags): Use
17 `org-end-of-subtree'.
18 (org-agenda, org-agenda-convert-date): Protect calls to
19 `fit-window-to-buffer'.
20 (org-tags-view): Force matching of sublevels when doing a
21 todo-only search. Define the correct redo command, including the
22 arguments.
23 (org-agenda-redo): Display message.
24 (org-check-for-org-mode): New function.
25 (org-agenda-type): New variable.
26 (org-timeline, org-agenda-list, org-todo-list, org-tags-view): Set
27 `org-agenda-type'.
28 (org-agenda-check-type): New function.
29 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
30 (org-agenda-week-view, org-agenda-day-view)
31 (org-agenda-next-date-line, org-agenda-previous-date-line)
32 (org-agenda-log-mode, org-agenda-toggle-diary)
33 (org-agenda-toggle-time-grid, org-agenda-date-later)
34 (org-agenda-date-prompt, org-agenda-diary-entry)
35 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
36 (org-agenda-convert-date, org-agenda-menu): Use
37 `org-agenda-check-type'.
38 (org-make-overlay, org-delete-overlay)
39 (org-detatch-overlay, org-move-overlay, org-overlay-put): New
40 compatibility functions.
41 (org-calendar-select-mouse): New command.
42
43 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
44
45 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
46 (Custom-reset-standard): Fix y-or-n-p messages.
47 (custom-link): New face for links.
48 (custom-buffer-create-internal, custom-manual): Use it.
49 (custom-face-save): Push to theme-face before setting face spec.
50
51 * wid-edit.el (widget-default-mouse-face-get): New function.
52 (widget-specify-button): Handle mouse-face like button-face.
53
54 * custom.el (load-theme): Clear old theme settings if reloading.
55
56 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
57
58 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
59 "Erase Customization" button back to same position it occupies in
60 the individual State menus.
61
62 2006-01-04 Kim F. Storm <storm@cua.dk>
63
64 * wid-edit.el (key-sequence): Rework widget to read key binding
65 using `kbd' syntax. Use C-q to insert literal key, event, or code.
66 (widget-key-sequence-default-value): Default value for empty sequence.
67 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
68 (widget-key-sequence-read-event): New command for C-q.
69 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
70 (widget-key-sequence-value-to-external): New functions.
71
72 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
73
74 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
75 Use expand-file-name.
76 (flymake-delete-temp-directory): Use expand-file-name,
77 file-name-directory, and directory-file-name.
78 (flymake-strrchr): Delete.
79 (flymake-start-syntax-check): Don't pass the redundant buffer argument
80 to the init-f function.
81 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
82 (flymake-init-find-buildfile-dir)
83 (flymake-init-create-temp-source-and-master-buffer-copy)
84 (flymake-simple-make-init-impl, flymake-simple-make-init)
85 (flymake-master-make-init, flymake-master-make-header-init)
86 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
87 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
88 (flymake-xml-init): Remove corresponding redundant buffer argument.
89 (flymake-allowed-file-name-masks): Remove last elems that are equal to
90 the default anyway. Clean up regexps.
91
92 * progmodes/flymake.el (flymake-temp-source-file-name)
93 (flymake-master-file-name, flymake-temp-master-file-name)
94 (flymake-base-dir): New buffer-local vars.
95 (flymake-buffer-data, flymake-get-buffer-value)
96 (flymake-set-buffer-value): Replace those hash-tables by the new
97 buffer-local vars. Update callers.
98
99 * progmodes/flymake.el (flymake-check-start-time)
100 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
101 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
102 Move definition, so we can remove redundant earlier declaration.
103 (flymake-replace-regexp-in-string, flymake-split-string)
104 (flymake-get-temp-dir): Use defalias.
105 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
106 (flymake-xemacs-window-edges): Remove unused function.
107 (flymake-get-point-pixel-pos): Move.
108 (flymake-pid-to-names, flymake-reg-names)
109 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
110 Replace by a simple list flymake-processes and by process-buffer.
111 Update callers. Other than simplify the code, it uses buffers rather
112 than buffer-names so it doesn't get confused by uniquify.
113 (flymake-buffer-data): The global value should just be nil.
114
115 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
116 Optimize the body of a defalias like any other code.
117
118 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
119 Make sure we've setup font-lock's vars. It may influence which
120 function we then call.
121 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
122 here since it's too late anyway.
123
124 2006-01-03 Romain Francoise <romain@orebokech.com>
125
126 * startup.el (fancy-splash-tail, normal-splash-screen):
127 Update copyright year.
128
129 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
130
131 * mouse.el (mouse-drag-track): Rename, from
132 `mouse-drag-region-1'. Includes optional argument required to
133 enable post-drag event processing (e.g. delete region keys).
134 Can be used without this argument to track a mouse region and operate
135 on it as soon as the drag completes.
136 (mouse-drag-region): Use `mouse-drag-track'.
137
138 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
139
140 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
141 Move to `custom-buffer' group.
142
143 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
144 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
145 (custom-theme-insert-face-marker, custom-theme-variable-menu)
146 (custom-theme-face-menu): New variables.
147 (custom-theme-add-variable, custom-theme-variable-action)
148 (custom-variable-reset-theme, custom-theme-delete-variable)
149 (custom-face-reset-theme, custom-theme-face-action)
150 (custom-theme-delete-face, custom-theme-merge-theme)
151 (custom-theme-add-face, custom-theme-visit-theme): New functions.
152
153 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
154
155 * custom.el: Move Custom Themes commentary to start of theme code.
156 (custom-known-themes): Rename `standard' theme to `changed'.
157 (custom-push-theme): Caller no longer specifies what theme to use
158 when doing `reset'---the setting is simply removed from the theme.
159 Delete MODE from `theme-value' and `theme-settings' properties.
160 (custom-declare-theme): Ignore &rest args since we don't use them.
161
162 (custom-loaded-themes): Delete variable.
163 (custom-theme-load-themes, custom-theme-loaded-p)
164 (custom-theme-value): Delete functions.
165
166 (custom-declare-theme): Signal error on invalid theme names.
167 (provide-theme): custom-loaded-themes was deleted.
168 (load-theme): Load the file unconditionally.
169 (enable-theme): Call `load-theme' if theme is undefined.
170 (custom-enabled-themes): Only update value for successful loads.
171 (disable-theme): Complete from enabled themes when interactive.
172 (custom-variable-theme-value): Calculate theme value directly.
173
174 (custom-theme-reset-variables, custom-reset-variables): Mark as
175 XEmacs compatibility functions. We don't actually use these.
176
177 * cus-edit.el (custom-variable-state-set):
178 Use custom-variable-theme-value instead of custom-theme-value.
179 (custom-face-state-set): Rename `standard' theme to `changed'.
180 (custom-save-variables, custom-save-faces): Delete unneeded
181 references to custom-reset-variables.
182 (custom-save-resets): Delete function.
183 (custom-save-variables, custom-save-faces): MODE argument deleted.
184 (custom-save-variables, custom-save-faces): Ignore theme values.
185
186 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
187 compatibility function.
188
189 2006-01-01 Richard M. Stallman <rms@gnu.org>
190
191 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
192 (Custom-reset-current, Custom-reset-saved): Likewise.
193 (Custom-reset-standard): Show message if aborted.
194 (custom-mode): Doc fix, describing those commands.
195
196 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
197 put on event-kind property.
198
199 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
200
201 * custom.el (provide-theme): Ban `user' theme name.
202 (custom-enabling-themes): New variable.
203 (enable-theme): Don't enable user if custom-enabling-themes is t.
204 (custom-enabled-themes): Make it a defcustom.
205 (custom-theme-recalc-face): No-op if face is undefined.
206
207 * cus-edit.el (custom-button-mouse): New variable.
208 (custom-button-mouse): New face.
209 (custom-raised-buttons, custom-mode): Use it.
210
211 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
212
213 2005-12-31 Eli Zaretskii <eliz@gnu.org>
214
215 * progmodes/gud.el (gud-display-line): Support hl-line in the
216 source buffer.
217
218 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
219
220 * mouse.el (mouse-drag-window-above): Verify that the found window
221 overlaps with the given window in the horizontal dimension.
222
223 2005-12-31 Eli Zaretskii <eliz@gnu.org>
224
225 * Makefile.in (cvs-update): New target.
226
227 * makefile.w32-in (cvs-update): Ditto.
228
229 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
230
231 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
232 (custom-new-theme-mode-map): New variable.
233
234 2005-12-30 Richard M. Stallman <rms@gnu.org>
235
236 * custom.el (custom-load-themes): Function deleted.
237
238 * cus-edit.el (custom-save-loaded-themes): Function deleted.
239 (custom-save-variables): Don't delete or add custom-load-themes call.
240
241 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
242
243 * cus-start.el: Add `visible-cursor'.
244
245 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
246 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
247 (flymake-process-filter): Switch to buffer before calling it instead.
248 (flymake-post-syntax-check, flymake-highlight-err-lines)
249 (flymake-delete-own-overlays, flymake-parse-err-lines)
250 (flymake-start-syntax-check, flymake-start-syntax-check-process)
251 (flymake-count-lines, flymake-parse-residual):
252 Remove constant buffer argument.
253 (flymake-start-syntax-check-for-current-buffer): Remove.
254 Update callers to use flymake-start-syntax-check instead.
255 (flymake-display-err-menu-for-current-line):
256 Remove unused var `mouse-pos'.
257 (flymake-restore-formatting): Comment out unused function.
258 (flymake-report-status, flymake-report-fatal-status): Remove buffer
259 argument, use current-buffer instead. Update callers.
260
261 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
262
263 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
264 buffer-local because choose-completion-delete-max-match requires
265 that we set completion-ignore-case (i.e., binding via let is not
266 sufficient).
267 (bibtex-complete): Always set completion-ignore-case and
268 choose-completion-string-functions. The latter is needed because
269 choose-completion-string-functions keeps its value if we quit the
270 *Completions* buffer without requesting a completion.
271
272 2005-12-30 Andreas Schwab <schwab@suse.de>
273
274 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
275
276 2005-12-30 Eli Zaretskii <eliz@gnu.org>
277
278 * jit-lock.el (jit-lock-chunk-size): Doc fix.
279
280 2005-12-30 Juri Linkov <juri@jurta.org>
281
282 * locate.el (locate-fcodes-file, locate-header-face)
283 * progmodes/delphi.el (delphi-other-face)
284 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
285
286 * paren.el (show-paren-match, show-paren-mismatch): Use existing
287 group `paren-showing-faces'.
288
289 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
290 (goto-address): Fix docstring.
291
292 * net/webjump.el (webjump-sample-sites): Update URLs.
293
294 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
295
296 * subr.el (cancel-change-group): Add listp around pending-undo-list.
297
298 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
299
300 * font-lock.el (font-lock-compile-keywords): Signal an error when
301 font-lock-set-defaults hasn't been called.
302
303 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
304
305 * subr.el (noreturn, 1value): Doc fixes.
306
307 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
308
309 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
310 that assoc-string returns nil.
311
312 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
313
314 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
315 (bibtex-entry-type-str, bibtex-empty-field-re)
316 (bibtex-search-backward-string, bibtex-preamble-prefix)
317 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
318 (bibtex-any-valid-entry-type): New variable.
319 (bibtex-parse-field-name): Simplify.
320 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
321 (bibtex-preamble-prefix): Include left delimiter.
322 (bibtex-search-forward-field, bibtex-search-backward-field):
323 Allow unbounded search past entry boundaries (required by bibtex-pop).
324 (bibtex-text-in-field-bounds): Use push.
325 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
326 (bibtex-parse-preamble, bibtex-valid-entry)
327 (bibtex-beginning-first-field): New functions.
328 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
329 (bibtex-map-entries): Fix docstring.
330 (bibtex-flash-head): New arg prompt. Simplify.
331 (bibtex-enclosing-field): Include code of bibtex-inside-field.
332 (bibtex-insert-kill): Simplify. Always insert text past the
333 current field or entry.
334 (bibtex-format-entry): Use bibtex-parse-field.
335 (bibtex-pop): Use bibtex-beginning-of-entry and
336 bibtex-end-of-entry to initiate the search. Insert empty field if
337 we found ourselves.
338 (bibtex-print-help-message): New args field and comma.
339 Handle entry keys.
340 (bibtex-make-field): Use bibtex-beginning-of-entry.
341 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
342 invalid entry.
343 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
344 Handle preambles. Simplify code for thorough test.
345 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
346 New arg comma. Handle entry heads.
347 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
348 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
349 New arg comma.
350 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
351 (bibtex-fill-field): Simplify.
352 (bibtex-fill-entry): Use bibtex-beginning-first-field and
353 bibtex-parse-field.
354 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
355 (bibtex-complete): Use bibtex-parse-preamble.
356
357 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
358
359 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
360 Display name of expression instead of convenience variable.
361 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
362
363 * progmodes/gud.el (gud-tooltip-dereference): Rename from
364 toggle-gud-tooltip-dereference.
365 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
366 (gud-tooltip-tips): ...here when dereferencing..
367
368 2005-12-28 Bill Wohler <wohler@newt.com>
369
370 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
371
372 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
373
374 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
375 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
376 (vc-annotate-display-autoscale): Adjust call.
377 (vc-annotate-display-default): Adjust call. Make arg compulsory.
378 Fix interactive spec.
379 (vc-annotate-time-span): Remove.
380 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
381 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
382 (vc-annotate-display-select): Use new name.
383
384 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
385 (vc-annotate-mode-menu): Remove left-over redundant declaration.
386 Correct the construction of span entries. Simplify.
387 (vc-annotate-display-select): Fix the nil case.
388 (vc-annotate): Remove obsolete (and now broken) code.
389 (vc-annotate-extract-revision-at-line): Remove obsolete code.
390 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
391
392 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
393
394 * subr.el (lazy-completion-table): Correct typo in docstring.
395
396 * startup.el (command-line): Use `custom-reevaluate-setting' for
397 `send-mail-function'.
398
399 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
400
401 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
402
403 * mail/smtpmail.el (smtpmail-try-auth-methods):
404 Send credentials together with "AUTH PLAIN" command.
405
406 2005-12-27 Richard M. Stallman <rms@gnu.org>
407
408 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
409 mouse-2, go back to previously selected window, so it's selected
410 when mouse-2 command runs.
411
412 2005-12-27 Juri Linkov <juri@jurta.org>
413
414 * descr-text.el (describe-text-sexp): Use square brackets for
415 button [Show] to distinguish it from the property value `show'.
416 (describe-property-list): Use `insert-text-button' with
417 `help-face' type instead of putting face in quotes, because button
418 is not created automatically for a list of faces.
419 (describe-text-properties-1): Put button-type value in quotes to
420 distinguish from plain text "button".
421 (describe-char): Display code point values in hex. Don't use
422 `symbol-name' for `current-input-method' because it is a string.
423 Use `insert-text-button' with `help-face' type instead of putting
424 hardcoded face in quotes, because button is not created automatically.
425
426 2005-12-27 Richard M. Stallman <rms@gnu.org>
427
428 * progmodes/glasses.el (glasses-face): More specific custom type.
429
430 * files.el (set-visited-file-name): Doc fix.
431
432 * textmodes/flyspell.el (flyspell-external-point-words):
433 Use local var buffer-scan-pos to advance scan for next misspelling.
434 Advance it only after we find the misspelling.
435
436 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
437
438 * textmodes/flyspell.el (flyspell-external-point-words):
439 New criteria for finding the misspelling in the buffer.
440
441 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
442
443 * help-mode.el (help-insert-string): Set help-xref-stack-item
444 rather than call help-setup-xref.
445
446 * descr-text.el (describe-char): Revert previous changes for
447 optional buffer argument.
448
449 2005-12-27 Juri Linkov <juri@jurta.org>
450
451 * help-mode.el (help-insert-string): New function. Save buffer
452 contents in cases where it is impossible to recompute the old contents.
453
454 * descr-text.el (describe-char): Set help-xref-stack-item
455 explicitly after buffer has been generated.
456
457 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
458
459 * cus-start.el (all): Add x-gtk-show-hidden-files.
460
461 2005-12-26 Richard M. Stallman <rms@gnu.org>
462
463 * replace.el (perform-replace): Calculate match-again
464 before skipping read-only matches.
465
466 * paren.el (paren-showing-faces): New group.
467 (show-paren-match, show-paren-mismatch): Move to that group.
468
469 * button.el (button): Put into group `basic-faces'.
470
471 * progmodes/make-mode.el: Remove faces from group `faces'.
472
473 * apropos.el (apropos, apropos-value): Doc fix.
474 (apropos-documentation): Doc fix.
475
476 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
477
478 * subr.el (lazy-completion-table): Remove argument `args'.
479
480 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
481 Don't use the `args' argument of lazy-completion-table.
482
483 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
484
485 * descr-text.el (describe-char): Add optional argument for buffer.
486 Set buffer appropriately. Call help-setup-xref.
487 Suggested by Stefan Monnier.
488
489 2005-12-26 Juri Linkov <juri@jurta.org>
490
491 * descr-text.el: Require `help-fns' at runtime. Don't require
492 `button' for byte compilation.
493 (describe-text-widget): Add `help-echo' for first button.
494 Use `help-info' for second.
495 (describe-property-list): Use `help-argument-name' instead of `italic'.
496 (describe-text-category): Add prompt to interactive spec.
497 Call `help-setup-xref'.
498 (describe-char): Use `help-character-set'. Add `help-echo' for
499 code point. Use `help-input-method'. Remove superfluous insert.
500
501 2005-12-25 Richard M. Stallman <rms@gnu.org>
502
503 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
504 at point, in case of narrowing.
505
506 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
507
508 * locate.el (locate-header-face): Allow nil in type.
509
510 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
511
512 2005-12-25 Romain Francoise <romain@orebokech.com>
513
514 * battery.el (battery-linux-proc-acpi): Also try
515 `/proc/acpi/thermal_zone/THM0/temperature'.
516
517 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
518
519 * custom.el (custom-push-theme): Fix docstring.
520
521 * cus-edit.el (custom-variable-set, custom-variable-save)
522 (custom-variable-save): Custom-quote widget values.
523 (customize-save-variable): Fix custom-push-theme call.
524
525 2005-12-24 Eli Zaretskii <eliz@gnu.org>
526
527 * w32-fns.el (w32-batch-update-autoloads): New function.
528
529 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
530 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
531 from the command line.
532
533 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
534
535 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
536 reset means to remove setting from theme entirely. Don't keep
537 expanding theme-settings list; delete old entries if necessary.
538
539 * cus-edit.el (custom-buffer-create-internal): Move "Erase
540 customization" button one line up.
541 (custom-themed): New face.
542 (custom-magic-alist): New value, THEMED, for theme settings.
543 (custom-variable-state-set, custom-face-state-set):
544 Check theme-value instead of saved-value.
545 (custom-variable-reset-standard, custom-face-reset-standard):
546 Remove theme setting entirely. Recalculate new values.
547 (custom-variable-set, custom-variable-set)
548 (custom-variable-reset-saved, custom-variable-reset-backup)
549 (custom-face-set, custom-face-reset-saved): Update `user' theme.
550 (custom-variable-save): Fix typos.
551
552 2005-12-23 Juri Linkov <juri@jurta.org>
553
554 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
555 Add autoload cookies.
556 (edebug-outside-d-c-i-n-s-w): New variable.
557 (edebug-display, edebug-outside-excursion): Use it to save the
558 original value of default-cursor-in-non-selected-windows.
559 Set default-cursor-in-non-selected-windows to t while Edebug
560 is active.
561 (edebug-mode, edebug-eval-mode): Doc fix.
562
563 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
564 with `buffer-substring-no-properties' to remove common substring
565 highlighting.
566
567 * info.el (info-other-window, info): Rename function argument
568 `file' to `file-or-node'.
569 (Info-complete-menu-item): Use local variable `complete-nodes' to
570 keep the global value of `Info-complete-nodes' unchanged for
571 subsequent completions.
572 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
573
574 * simple.el (get-next-valid-buffer, last-buffer)
575 (next-error-buffer-p, next-error-find-buffer)
576 (minibuffer-history-sexp-flag): Doc fix.
577
578 * savehist.el (savehist-mode-hook): Add `:group'.
579
580 * log-view.el: Call autoload for vc-find-version.
581 (log-view-current-file): Adjust subgroup numbers.
582 (log-view-current-tag): Add `length'.
583
584 2005-12-23 Richard M. Stallman <rms@gnu.org>
585
586 * vc.el (vc-annotate-car-last-cons): Defn moved up.
587
588 2005-12-23 Juri Linkov <juri@jurta.org>
589
590 * hi-lock.el (hi-lock-archaic-interface-message-used)
591 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
592 (hi-lock-mode): Display "Hi" in the mode line only when
593 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
594 (hi-lock-write-interactive-patterns):
595 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
596 (hi-lock-set-pattern, hi-lock-set-file-patterns)
597 (hi-lock-font-lock-hook): Set 3rd arg `how' of
598 font-lock-add-keywords to t.
599
600 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
601
602 * hi-lock.el (hi-lock-highlight-range): New variable.
603 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
604 only if font-lock-fontified is non-nil. Remove overlays.
605 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
606 font-lock-fontified is non-nil, otherwise use overlays (instead of
607 text properties).
608 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
609 New variables.
610 (hi-lock-string-serialize) New function.
611
612 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
613
614 * menu-bar.el (menu-find-file-existing): New function.
615 (menu-bar-file-menu): Use menu-find-file-existing for Open.
616
617 * tool-bar.el (tool-bar-setup): open changed to menu-find-file-existing.
618
619 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
620
621 * vc.el: Remove unnecessary leading * in docstrings.
622 (vc-annotate-mode-map): Move initialization into declaration.
623 (vc-static-header-alist): Nitpick on the regexp.
624 (vc-default-init-version): New fun.
625 (vc-register): Use it.
626 (vc-insert-headers): Use dolist.
627 (vc-annotate-get-backend): Remove unused function.
628 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
629 (vc-annotate-mode): Remove corresponding call.
630 (vc-annotate-car-last-cons): Simplify.
631 (vc-annotate-buffers): Remove var.
632 (vc-annotate-backend): Make it buffer-local.
633 (vc-annotate): Move the interaction to the interactive spec.
634 Add a `buf' argument.
635 (vc-annotate-warp-version): Use this new `buf' argument to avoid
636 killing&creating a vc-annotate buffer, which is very disruptive when
637 the buffers are shown in dedicated frames.
638
639 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
640
641 * descr-text.el: Add FSF as maintainer.
642 (describe-text-mode, describe-text-mode-map)
643 (describe-text-mode-hook, describe-text-done): Delete. Use normal
644 help-mode.
645 (describe-text-widget, describe-text-sexp)
646 (describe-property-list, describe-text-category)
647 (describe-text-properties, describe-text-properties-1)
648 (describe-char): Use help buttons instead of widgets.
649 (describe-char-unicodedata-file): Make URL link in doc string.
650
651 2005-12-22 Richard M. Stallman <rms@gnu.org>
652
653 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
654 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
655 Don't include buttons that write a file when there's no file.
656 (custom-variable-menu, custom-face-menu, custom-group-menu):
657 Don't include commands that write a file when there's no file.
658 (customize-browse): Reword the top-of-buffer help intro.
659 (custom-buffer-create-internal): Fix previous change.
660 (customize-changed-options-previous-release): Prev release is 21.1.
661 (customize-changed-options): Doc fix.
662 (customize-changed): New alias.
663 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
664 Say "standard values".
665 (Custom-reset-standard): Doc fix.
666 (custom-face-reset-standard): Doc fix.
667
668 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
669
670 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
671 even if font-lock-mode is non-nil since it may be t without having
672 turned on font-lock-mode-internal.
673 (font-lock-choose-keywords): Minor optimization.
674 (font-lock-add-keywords, font-lock-remove-keywords)
675 (font-lock-set-defaults): Don't call make-local-variable on a variable
676 that we know to already be local.
677
678 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
679
680 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
681 messages if in the minibuffer.
682
683 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
684
685 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
686 (tex-mode-flyspell-verify, flyspell-get-word)
687 (flyspell-external-point-words): Don't use point-min/max uselessly.
688
689 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
690 by Kevin Rodgers. Instead, just hide the completions buffer if we
691 don't need to show it.
692
693 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
694
695 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
696
697 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
698
699 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
700 delete-windows-on with an inexistent buffer.
701
702 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
703
704 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
705 Delete defcustom variable :tag names.
706
707 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
708
709 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
710 (log-view-font-lock-keywords): Ajust subgroup numbers.
711 (log-view-current-tag): Don't hard code the number of subgroups.
712
713 2005-12-20 Juri Linkov <juri@jurta.org>
714
715 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
716 (tooltip-x-offset, tooltip-y-offset): Doc fix.
717
718 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
719 (menu-bar-non-minibuffer-window-p): Instead of checking
720 display-multi-frame-p, use selected-frame when menu-updating-frame
721 is nil.
722
723 2005-12-20 Davis Herring <herring@lanl.gov> (tiny change)
724
725 * align.el (align-rules-list): Use [ \t] instead of \s-
726 for column separators in text mode.
727
728 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
729
730 * help-mode.el (help-customize-variable, help-customize-face):
731 Don't pop help-xref-stack as help-follow no longer pushes
732 anything on to it.
733
734 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
735
736 * textmodes/org.el: (org-agenda-custom-commands): New option.
737 (org-agenda): Offer custom commands on splash screen.
738 (org-make-tags-matcher): Parser for Boolean logic added.
739 (org-agenda-set-tags): New command.
740 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
741 (org-set-tags): Efficiency improvements.
742 (org-auto-align-tags): New option.
743 (org-todo, org-demote, org-promote): Realign tags.
744 (org-tags-completion-function): Use also "&" and "|" as separators.
745 (org-org-menu): Agenda commands simplified.
746
747 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
748
749 * cus-edit.el (customize-apropos, customize-apropos-options):
750 Docstring changes.
751
752 * font-lock.el (font-lock): Add tags to the links in the defgroup.
753
754 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
755
756 * longlines.el (longlines-mode): Wrap while widened.
757 (longlines-decode-region, longlines-encode-region): Compute max
758 just once.
759
760 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
761
762 * cus-edit.el (mac): New group.
763
764 * cus-start.el (all): Add user options in macterm.c. Add test for
765 Mac-related built-ins. Fix test for GTK-related built-ins.
766
767 * term/mac-win.el (mac-handle-language-change)
768 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
769 (mac-services-open-selection, mac-services-mail-selection)
770 (mac-services-mail-to, mac-services-insert-text)
771 (mac-dispatch-apple-event): Add docstrings.
772 (x-get-selection, mac-select-convert-to-string): Select coding
773 system from `utf-16be' and `utf-16le' using `byteorder'.
774
775 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
776
777 * subr.el (lazy-completion-table): Don't be fooled if the var holds
778 a "list" (lambda ...) rather than a real completion list.
779
780 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
781 lexical-let when encountering ((lambda (...) ...) ...).
782
783 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
784
785 * progmodes/sh-script.el (sh-mode):
786 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
787 * textmodes/picture.el (picture-mode): Update docstrings.
788
789 2005-12-17 Eli Zaretskii <eliz@gnu.org>
790
791 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
792 commands enclosed in $(ARGQUOTE)s should not be split between two
793 lines, as that will break with GNU Make >3.80, when sh.exe is used
794 and arg quoting is with '..'.
795 (autoloads): Don't break the quoted --eval expression between
796 several lines.
797
798 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
799
800 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
801 Capture error from printing circular structures.
802
803 2005-12-17 Martin Rudalics <rudalics@gmx.at> (tiny change)
804
805 * wid-edit.el (widget-checkbox-action): Clear undo info.
806
807 2005-12-16 Bill Wohler <wohler@newt.com>
808
809 * menu-bar.el (kill-this-buffer): Set a good example by using menu
810 bar, not menubar in comment.
811
812 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
813
814 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
815 After-change-functions should not clobber the match data.
816
817 2005-12-16 Juri Linkov <juri@jurta.org>
818
819 * simple.el (choose-completion): Use `buffer-substring-no-properties'
820 instead of `buffer-substring'.
821 (completion-common-substring): Doc fix.
822 (completion-setup-function): Use minibuffer-completion-contents
823 instead of minibuffer-contents. Don't set common-string-length
824 initially. Remove special handling of partial-completion-mode.
825 Move computation of completion-base-size into one cond.
826 Call completion-base-size-function in mainbuf. In computation of
827 completion-base-size for file name completion don't move point to
828 the end of the minibuffer. Move computation of common-string-length
829 into one cond. Start putting faces only when common-string-length>=0.
830 Add condition to put completions-common-part when
831 common-string-length>0.
832
833 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
834 place point at the first different character in the minibuffer
835 even if this position is at the beginning of the minibuffer.
836
837 * info.el (Info-read-node-name-1): In completion-base-size-function's
838 lambda return 1 if common-substring or minibuffer-completion-contents
839 starts with (, and 0 otherwise.
840
841 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
842 Use `crm-current-element' for second arg of `display-completion-list'.
843
844 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
845
846 * files.el (set-auto-mode): Look for an interpreter specified on
847 the first line also if search for mode specification succeeded,
848 but the mode is not known.
849
850 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
851
852 * textmodes/org.el: (org-tags-match-list-sublevels): New option.
853 (org-open-at-point): Implement tag searches as links.
854 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
855 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
856 (org-tags-sparse-tree, org-tags-view, org-set-tags)
857 (org-agenda-dispatch): New commands.
858 (org-use-tag-inheritance, org-tags-column): New options.
859 (org-tab-follows-link, org-return-follows-link): New options.
860 (org-tags): New customize group.
861 (org-start-icalendar-file): Get local time zone.
862 (org-tags-completion-function): New function.
863 (org-set-font-lock-defaults): Make sure links will also be
864 highlighted inside headlines.
865
866 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
867
868 * term.el (term-emulate-terminal):
869 Let term-handle-ansi-terminal-messages override what Bash says about
870 its current directory.
871
872 2005-12-16 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
873
874 * bindings.el (last-buffer): Move to simple.el.
875 * simple.el (last-buffer): Move here.
876 (get-next-valid-buffer): New function.
877 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
878 (prev-buffer): Ditto. Rename to `previous-buffer'.
879
880 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
881 * bindings.el (global-map): Ditto.
882
883 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
884
885 * cus-edit.el: Introductory comment change.
886 (custom-magic-alist): Change message string for the `rogue' state.
887
888 2005-12-15 Richard M. Stallman <rms@gnu.org>
889
890 * tooltip.el: Delete defcustom variable :tag names.
891
892 * complete.el (partial-completion-mode): Doc fix.
893
894 * textmodes/flyspell.el (flyspell-external-point-words):
895 Use save-excursion to ensure we don't move backward in the
896 search loop, not even one character.
897 (flyspell-delete-all-overlays): Use remove-overlays directly.
898
899 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
900 (ispell-start-process): Set that variable.
901 Clear ispell-buffer-local-name.
902 (ispell-internal-change-dictionary):
903 Set ispell-current-dictionary after killing process.
904 (ispell-buffer-local-dict):
905 Don't set spell-personal-dictionary after killing process.
906 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
907 (ispell-tex-skip-alists)
908 (ispell-html-skip-alists, ispell-skip-region-alist): Mark as risky.
909
910 * net/newsticker.el (newsticker--retrieval-timer-list)
911 (newsticker--display-timer, newsticker-running-p)
912 (newsticker-ticker-running-p): Definitions moved up.
913
914 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
915
916 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
917
918 2005-12-15 David Ponce <david@dponce.com>
919
920 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
921 (recentf-edit-list, recentf-open-files): Signal an error when
922 there is no recent file.
923
924 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
925
926 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
927 read-only except for texinfo-format-region evaluation.
928
929 2005-12-14 Richard M. Stallman <rms@gnu.org>
930
931 * vc.el (vc-default-previous-version, vc-default-next-version)
932 (vc-do-command): Doc fixes.
933
934 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
935
936 * textmodes/bibtex.el (bibtex-expand-strings)
937 (bibtex-autokey-expand-string, bibtex-name-part)
938 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
939 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
940 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
941 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
942 (bibtex-entry-postfix, bibtex-known-entry-type-re)
943 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
944 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
945 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
946 (bibtex-beginning-of-last-entry): Remove.
947 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
948 message if comma is missing but buffer is read-only.
949 (bibtex-parse-field-text): Handle whitespaces at the end of field
950 text. Return 3-element list with beginning and end of field text
951 and end of field.
952 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
953 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
954 (bibtex-search-forward-field, bibtex-search-backward-field):
955 Search always delimited by limits of entry. Use more efficient
956 search algorithms.
957 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
958 bibtex-end-of-name-in-field.
959 (bibtex-text-in-field-bounds): Handle BibTeX strings when
960 extracting the content of a field.
961 (bibtex-text-in-field): Use search limits.
962 (bibtex-parse-string-prefix): Handle empty string keys based on
963 bibtex-string-empty-key.
964 (bibtex-parse-string): Fix docstring.
965 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
966 (bibtex-preamble-prefix, bibtex-strings): New functions.
967 (bibtex-skip-to-valid-entry): Include preceding whitespace in
968 BibTeX entries (consistent with other BibTeX functions).
969 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
970 (bibtex-search-entry): Fix docstring. Simplify.
971 (bibtex-flash-head, bibtex-complete-string-cleanup)
972 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
973 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
974 (bibtex-parse-entry): New optional arg content.
975 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
976 Use bibtex-text-in-field-bounds.
977 (bibtex-print-help-message): Handle BibTeX strings and preambles.
978 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
979 bibtex-parse-string-postfix.
980 (bibtex-find-text-internal): New function.
981 (bibtex-remove-delimiters): Use it.
982 (bibtex-find-text): Use it. New optional arg help.
983 (bibtex-complete): Handle BibTeX string and preamble entries.
984 (bibtex-Preamble): Fix order of closing delimiters.
985
986 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
987
988 * vc.el (vc-default-revert): New fun.
989
990 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
991
992 2005-12-14 Romain Francoise <romain@orebokech.com>
993
994 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
995 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
996 (font-lock-remove-keywords): Likewise.
997
998 2005-12-14 Juri Linkov <juri@jurta.org>
999
1000 * log-view.el (log-view-diff): Doc fix.
1001
1002 * isearch.el (isearch-query-replace): Use (mark) instead of
1003 isearch-opoint if mark is active in transient-mark-mode.
1004
1005 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
1006
1007 * isearch.el (isearch-query-replace): Check for isearch-other-end.
1008
1009 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
1010
1011 * progmodes/cpp.el (cpp-face): New widget.
1012 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
1013
1014 2005-12-14 Juri Linkov <juri@jurta.org>
1015
1016 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
1017 around `erase-buffer' and `insert'.
1018
1019 * descr-text.el (describe-text-properties): Replace buffer name
1020 "*Help-2*" with "*Help*<2>".
1021 (describe-char): Add functions print-help-return-message,
1022 toggle-read-only. Use help-setup-xref with nil to not store
1023 describe-char in help-xref-stack. Use help-make-xrefs to
1024 make [back] button.
1025
1026 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
1027
1028 * wdired.el (wdired-old-point): New internal variable.
1029 (wdired-change-to-wdired-mode): Set it buffer-locally.
1030 (wdired-abort-changes): Restore point after aborting changes.
1031
1032 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
1033
1034 * vc.el (vc-do-command): Add a new value t for okstatus.
1035
1036 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
1037 frame in case of errors.
1038
1039 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1040
1041 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
1042 so it comes after "On the Left" in the menu.
1043
1044 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
1045
1046 * cus-edit.el (customize-apropos, customize-apropos-options)
1047 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
1048
1049 2005-12-12 Bill Wohler <wohler@newt.com>
1050
1051 * vc-svn.el (vc-svn-registered): Fix problem of visiting
1052 non-writable Subversion-controlled files by saving window
1053 configuration before calling vc-do-command. vc-do-command calls
1054 pop-to-buffer on error which is unexpected during registration.
1055
1056 2005-12-12 Jay Belanger <belanger@truman.edu>
1057
1058 * calc/README: Update the summary of changes.
1059
1060 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
1061
1062 * descr-text.el (describe-char): Rework last fix to solve the problem
1063 is the same way it's solved for everything else in that function
1064 (i.e. by extracting the info before setting up the *Help* buffer).
1065
1066 2005-12-12 Kim F. Storm <storm@cua.dk>
1067
1068 * subr.el (version-regexp-alist): Allow space as separator before
1069 non-numeric part, e.g. "1.0 alpha".
1070 (version-to-list): Interpret .X.Y version as 0.X.Y version.
1071
1072 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
1073
1074 * textmodes/org.el: (org-agenda, org-timeline, org-todo):
1075 Implement Logging and the keep-modes setting.
1076 (org-get-category): Make sure a string is returned.
1077 (org-log-done): New function.
1078 (org-log-done, org-closed-string): New options.
1079
1080 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1081
1082 * tooltip.el (tooltip-y-offset): Change default to 20.
1083
1084 2005-12-12 Richard M. Stallman <rms@gnu.org>
1085
1086 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
1087
1088 * frame.el (display-hourglass): Doc fix.
1089
1090 * help.el (help-for-help-internal): Simplify entry for `a'.
1091
1092 * info.el (Info-on-current-buffer): Doc fix.
1093 (info-insert-file-contents): Don't test (featurep 'jka-compr).
1094
1095 * startup.el (inhibit-splash-screen): Make this the real name.
1096 (inhibit-startup-message): Make this the alias.
1097 (command-line): Find only simple.el, and use its directory
1098 to fill in other preloaded files' names.
1099 (command-line): Deactivate the mark if deactivate-mark is set.
1100
1101 * international/mule.el (load-with-code-conversion):
1102 Bind deactivate-mark.
1103
1104 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
1105
1106 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
1107
1108 * cus-edit.el (customize-apropos): Avoid listing an option more
1109 than once under different aliases. No longer list user options
1110 that are not defined with defcustom (unless a prefix arg is given).
1111 Doc fix.
1112 (customize-apropos-options): Doc fix.
1113
1114 2005-12-11 Juri Linkov <juri@jurta.org>
1115
1116 * frame.el (set-background-color, set-foreground-color)
1117 (set-cursor-color, set-mouse-color, set-border-color):
1118 Add explicit prompts to read colors by `facemenu-read-color'.
1119 (show-trailing-whitespace, blink-cursor-delay)
1120 (blink-cursor-interval, display-hourglass, hourglass-delay):
1121 Remove tags.
1122 (display-hourglass, hourglass-delay): Doc fix.
1123 (cursor-in-non-selected-windows): Capitalize words in tag.
1124
1125 * faces.el (frame-background-mode): Replace `choice-item' keywords
1126 with `const' to not make [default] button. Change default value tag
1127 from `default' to `automatic'. Doc fix.
1128 (trailing-whitespace) <defface>: Change group `whitespace' to
1129 `whitespace-faces'.
1130
1131 2005-12-11 Richard M. Stallman <rms@gnu.org>
1132
1133 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
1134
1135 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1136
1137 * term/mac-win.el: Create keymap for mac-apple-event-map.
1138
1139 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
1140
1141 * tooltip.el (tooltip-mode): Move to start of file so that it
1142 appears at top of customize buffer.
1143
1144 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
1145 Add the gud groupname.
1146 (gud-tooltip-mode): Add the tooltip groupname.
1147 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
1148 avoid conflict with tooltip-use-echo-area.
1149
1150 2005-12-10 Romain Francoise <romain@orebokech.com>
1151
1152 * help.el (help-for-help-internal): Add `r' in doc string.
1153
1154 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1155
1156 * align.el (align-regexp, align-highlight-rule):
1157 Use region-beginning and region-end instead of point and mark, so that
1158 repetition (with `repeat-complex-command') recomputes the region
1159 bounds.
1160
1161 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
1162
1163 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
1164 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
1165 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
1166 (balance-windows): Rewrite using the above new functions.
1167
1168 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
1169
1170 * hi-lock.el: (hi-lock-mode) Renamed from hi-lock-buffer-mode;
1171 react if global-hi-lock-mode seems intended.
1172 (global-hi-lock-mode) Renamed from hi-lock-mode.
1173 (hi-lock-archaic-interface-message-used)
1174 (hi-lock-archaic-interface-deduce): New variables.
1175 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
1176 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
1177 (hi-lock-find-patterns, hi-lock-font-lock-hook):
1178 Replace hi-lock-buffer-mode with hi-lock-mode.
1179
1180 2005-12-10 Kevin Rodgers <ihs_4664@ihs.com>
1181
1182 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
1183 completion list, even after a partial completion has been
1184 inserted in the current buffer. If there are more than 1
1185 completion, redisplay the *Completions* buffer; if the
1186 completion is unique, delete the *Completions* window.
1187
1188 2005-12-10 Eli Zaretskii <eliz@gnu.org>
1189
1190 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
1191 strings and long subject lines that were broken into multiple
1192 lines at arbitrary places. Handle subjects that have "Re: " in
1193 the middle.
1194
1195 2005-12-10 John W. Eaton <jwe@octave.org>
1196
1197 * emacs/octave-mod.el (octave-electric-space): Don't indent
1198 comments or strings if octave-auto-indent is nil.
1199
1200 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1201
1202 * term/mac-win.el: Require url when compiling.
1203 Call mac-process-deferred-apple-events after loading init files.
1204 (mac-apple-event-map): New defvar. Define event handlers in it.
1205 (core-event, internet-event): New Apple event class symbols.
1206 (open-application, reopen-application, open-documents)
1207 (print-documents, open-contents, quit-application)
1208 (application-died, show-preferences, autosave-now, get-url):
1209 New Apple event ID symbols.
1210 (about): New HICommand ID symbol.
1211 (mac-event-spec, mac-event-ae): New macros.
1212 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
1213 (mac-ae-selection-range, mac-ae-text-for-search)
1214 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
1215 (mac-application-menu-map): Remove keymap. Handlers for HICommand
1216 and Services menu events are now defined in mac-apple-event-map.
1217 (mac-drag-n-drop): Remove selection range handling.
1218
1219 2005-12-10 Kenichi Handa <handa@m17n.org>
1220
1221 * simple.el (zap-to-char):
1222 * isearch.el (isearch-process-search-char): Translate CHAR by
1223 translation-table-for-input.
1224
1225 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
1226
1227 * foldout.el (foldout-exit-fold): Properly hide subtree.
1228
1229 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
1230
1231 * files.el (save-buffer):
1232 * international/ucs-tables.el (ucs-set-table-for-input):
1233 * mail/mail-extr.el (mail-extract-address-components):
1234 * mail/sendmail.el (mail-mode): Reformat doc string.
1235
1236 2005-12-09 Juri Linkov <juri@jurta.org>
1237
1238 * isearch.el (isearch-highlight): Change main overlay priority
1239 from 1 to 1001. Simplify.
1240 (isearch-lazy-highlight-update): Change lazy overlay priority
1241 from 0 to 1000.
1242
1243 * replace.el (replace-highlight): Change overlay priority from
1244 1 to 1001.
1245
1246 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
1247 Change overlay priority from 1 to 1001. Reuse existing overlay.
1248
1249 * compare-w.el (compare-windows-highlight): Change overlay
1250 priority from 1 to 1000.
1251
1252 * menu-bar.el (menu-bar-edit-menu): Add listp around
1253 pending-undo-list to disable menu item "undo" when pending
1254 undo list is empty.
1255
1256 * locate.el (locate): Disable undo in *Locate* buffer.
1257
1258 2005-12-09 Kim F. Storm <storm@cua.dk>
1259
1260 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
1261
1262 2005-12-09 David Ponce <david@dponce.com>
1263
1264 * recentf.el: Improvement of the menu code.
1265 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
1266 instead of menu hook.
1267 (recentf-show-menu, recentf-hide-menu): New functions.
1268 (recentf-menu-customization-changed, recentf-mode): Use them.
1269 (recentf-menu-action, recentf-max-menu-items)
1270 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
1271 (recentf-arrange-by-rule-others)
1272 (recentf-arrange-by-rules-min-items)
1273 (recentf-arrange-by-rule-subfilter) : Don't use
1274 `recentf-menu-customization-changed'.
1275 (recentf-arrange-rules): Likewise. Accept functions to compute
1276 sub-menu titles.
1277 (recentf-menu-filter): Likewise. Doc fix.
1278 (recentf-menu-value-shortcut): Doc fix.
1279 (recentf-dump-variable): Quote atom value.
1280 (recentf-make-menu-items): Update to use it as a menu filter.
1281 (recentf-match-rule): New function.
1282 (recentf-arrange-by-rule): Use it.
1283 (recentf-indirect-mode-rule): New function.
1284 (recentf-build-mode-rules): Use it.
1285 (recentf-dir-rule): New function.
1286 (recentf-arrange-by-dir): Use it.
1287 (recentf-filter-changer-current): Rename from
1288 `recentf-filter-changer-state'. All references updated.
1289 (recentf-filter-changer-alist): Update filter names.
1290 (recentf-filter-changer-select): New function.
1291 (recentf-filter-changer): Use it. Make a sub-menu from filters
1292 available in `recentf-filter-changer-alist'.
1293 (recentf-data-cache, recentf-clear-data)
1294 (recentf-update-menu): Remove. All references updated.
1295 (recentf-match-rule-p, recentf-build-dir-rules)
1296 (recentf-filter-changer-goto-next)
1297 (recentf-filter-changer-get-current)
1298 (recentf-filter-changer-get-next): Remove.
1299
1300 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
1301
1302 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
1303 buffer "Reset" button to "Reset to Current" for consistency with
1304 the State buttons.
1305
1306 2005-12-08 John Paul Wallington <jpw@pobox.com>
1307
1308 * ibuf-ext.el (define-ibuffer-filter filename):
1309 If `dired-directory' is a list then really use its car.
1310
1311 2005-12-08 Kim F. Storm <storm@cua.dk>
1312
1313 * emulation/cua-rect.el (cua--rectangle-aux-replace): Fix
1314 indention of text on right side of replaced rectangle.
1315
1316 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
1317
1318 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
1319 No need to check gud-comint-buffer is bound.
1320 (gdb): Prevent multiple debugging when first session uses gdba.
1321
1322 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1323
1324 CC Mode update to 5.31.
1325
1326 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
1327 Emacsen which lack `define-minor-mode'. (Currently Emacs <21. We
1328 might do this function properly in the future).
1329
1330 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el: New
1331 macros c-sentence-end and c-default-value-sentence end, to cope
1332 with Emacs 22's new function `sentence-end'.
1333
1334 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1335
1336 * progmodes/cc-cmds.el (c-show-syntactic-information): Solved the
1337 compat issue using `c-put-overlay' and `c-delete-overlay'.
1338
1339 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay): New
1340 compat macros to handle overlays/extents.
1341
1342 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1343
1344 * progmodes/cc-fix.el: Add definitions of the macros push and pop
1345 (for GNU Emacs 20.4)
1346
1347 * progmodes/cc-defs.el:
1348 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
1349
1350 * progmodes/cc-cmds.el (c-show-syntactic-information): change the
1351 highlighting mechanism so it will work in XEmacs too.
1352
1353 * progmodes/cc-defs.el: Insert c-int-to-char.
1354
1355 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
1356 call to the new macro c-int-to-char. This solves XEmacs's
1357 regarding characters as different from integers.
1358
1359 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1360
1361 * progmodes/cc-fonts.el (c-make-syntactic-matcher): New internal
1362 helper.
1363
1364 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
1365 construct to make the indirect face lookup work in XEmacs.
1366
1367 (c-cpp-matchers): Append the negation char face to the existing
1368 fontification, so that the cpp face doesn't disappear. Use
1369 `c-make-syntactic-matcher' to avoid negation chars in comments and
1370 strings.
1371
1372 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
1373 to map to `font-lock-negation-char-face' in emacsen where it
1374 exists.
1375
1376 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1377
1378 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
1379
1380 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el: Rename
1381 "c-subword-move-mode" as "c-subword-mode".
1382
1383 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
1384 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
1385
1386 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1387
1388 * progmodes/cc-mode.el: Added autoload directive for
1389 `c-subword-move-mode' for use in older emacsen.
1390
1391 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1392
1393 * progmodes/cc-mode.el:
1394 (i) Insert a binding for C-c C-backspace into
1395 c-bind-special-erase-keys which works in TTYs.
1396 (ii) Make sure that when file styles are used, any explicitly
1397 given style variables take priority over those in the style. Do
1398 this by calling `hack-local-variables' a second time.
1399
1400 * progmodes/cc-vars.el: Add language specific customization
1401 widgets for AWK to c-doc-comment-style, c-require-final-newline
1402 and c-default-style. Add a defcustom for awk-mode-hook. Give
1403 c-syntactic-element and c-syntactic-context doc-strings by
1404 directly setting their `variable-documentation' propery. This
1405 allows Emacs 22.1 to read these with C-h v.
1406
1407 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan
1408 Monnier).
1409
1410 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1411
1412 * progmodes/cc-fonts.el, cc-vars.el
1413 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection,
1414 gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
1415 Masatake YAMATO.
1416
1417 (c-doc-comment-style): Made GtkDoc default in C mode.
1418
1419 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
1420 and C-c C-<delete>.
1421
1422 (c-bind-special-erase-keys): New function for use on
1423 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
1424
1425 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
1426 <delete> key behavior in XEmacs according to `delete-forward-p'.
1427 C.f. `c-electric-delete'.
1428
1429 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1430
1431 * progmodes/cc-mode.el: Give c-hungry-backspace and
1432 c-hungry-delete-forward permanent key bindings.
1433
1434 * progmodes/cc-cmds.el (c-electric-semi&comma): Bind
1435 c-syntactic-context for calls to "criteria functions", for
1436 consistency with other calls to user functions.
1437
1438 * progmodes/cc-cmds.el (c-indent-command): expunge use of
1439 `current-prefix-arg', since this might be the prefix arg to a
1440 command which calls c-indent-command as a function. Change the
1441 interactive spec from "p" to "P".
1442
1443 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
1444 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
1445 was difficult to understand.
1446
1447 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1448
1449 * progmodes/cc-engine.el (c-on-identifier): Fixed bug when at the
1450 first char of an identifier.
1451
1452 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
1453 +" syntax in C++.
1454
1455 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1456
1457 * progmodes/cc-cmds.el (c-mask-paragraph): correct, so that
1458 auto-fill doesn't split a c-comment's last word from a hanging
1459 "*/" when a space is typed between them after fill-column.
1460
1461 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
1462
1463 * progmodes/cc-styles.el (c-set-style,
1464 c-setup-paragraph-variables): Abort the command if we're not in a
1465 CC Mode buffer.
1466
1467 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
1468 with blank comment-prefix, and a blank line as the comment's
1469 second line.
1470
1471 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1472
1473 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
1474 Incorporated the patterns added in the Emacs development branch
1475 for the new Emacs 22 face `font-lock-negation-char-face'.
1476
1477 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
1478 of "red" since it stands out better in xterms and DOS terminals.
1479
1480 * progmodes/cc-engine.el (c-literal-faces): Added
1481 `font-lock-comment-delimiter-face' which is new in Emacs 22.
1482
1483 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1484
1485 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
1486 forcibly enable c-electric-flag.
1487
1488 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
1489 `comment-close-slash' on c-electric-slash: if enabled, typing `/'
1490 just after the comment-prefix of a C-style comment will close that
1491 comment.
1492
1493 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1494
1495 * progmodes/cc-fonts.el (c-basic-matchers-before,
1496 c-complex-decl-matchers): Fixed the "not-arrow-prefix" regexp used
1497 in Pike.
1498
1499 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
1500 digraphs.
1501
1502 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
1503 (c-cpp-message-directives, c-cpp-include-directives,
1504 c-opt-cpp-macro-define, c-opt-cpp-macro-define-start,
1505 c-cpp-expr-directives): Introduced new language constants to
1506 control cpp syntax in a cleaner way.
1507
1508 (c-cpp-expr-functions): Renamed from c-cpp-defined-fns.
1509
1510 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
1511
1512 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines,
1513 c-multiline-string-start-char): New language constants and
1514 variables to specify how newlines in string literals work.
1515
1516 (c-font-lock-invalid-string): Use them.
1517
1518 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
1519 unbalanced close brace is entered. Optimization by avoiding going
1520 back over arbitrarily large blocks. Removed hints that this
1521 function only would be relevant/useful in AWK.
1522
1523 (c-electric-brace): Indent syntactically after the cleanups since
1524 lineup functions might do it differently then.
1525
1526 * progmodes/cc-engine.el, cc-langs.el
1527 (c-opt-op-identifier-prefix): New language constant and variable.
1528
1529 (c-just-after-func-arglist-p, c-after-special-operator-id,
1530 c-search-decl-header-end, c-inside-bracelist-p): Use it.
1531
1532 * progmodes/cc-align.el, cc-engine.el
1533 (c-after-special-operator-id): New helper to handle C++ operator
1534 identifiers.
1535
1536 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p,
1537 c-guess-basic-syntax): Handle C++ operator identifiers in
1538 declarations.
1539
1540 * progmodes/cc-langs.el (c-assignment-operators): Added the
1541 trigraph version of ^= too.
1542
1543 * progmodes/cc-langs.el (c-assignment-operators): Added the
1544 trigraph version of |= in C++.
1545
1546 * progmodes/cc-fonts.el (c-font-lock-declarators): Handle
1547 `c-decl-hangon-kwds' after the identifier name.
1548
1549 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
1550 whether an arglist is "nonempty", ignore a comment after the open
1551 paren if it isn't followed by a non-comment token on the same
1552 line.
1553
1554 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4: Enable
1555 heuristics below the point to cope with classes inside special
1556 brace lists in Pike.
1557
1558 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1559
1560 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
1561
1562 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1563
1564 * progmodes/cc-guess.el (cc-guess-install): New function to
1565 install an already guessed style in another buffer.
1566
1567 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
1568 sets `inhibit-read-only' - `c-save-buffer-state' should be used
1569 anyway if the change always is undone.
1570
1571 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1572
1573 Implement togglable electricity:
1574
1575 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
1576 saying when it should be used.
1577
1578 * progmodes/cc-engine.el: Add the new buffer-local variable,
1579 c-electric-flag.
1580
1581 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
1582 c-toggle-auto-newline.
1583
1584 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
1585 c-toggle-auto-newline. Remove the binding for
1586 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
1587 c-toggle-electric-state.
1588
1589 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
1590
1591 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
1592 c-\(forward\|backward\)-subword.
1593 (c-update-modeline): Add the new modeline flag `l' for
1594 `c-electric-flag'. Make the auto-newline flag `a' dependent on
1595 `l'.
1596 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'. Make
1597 the old name an alias of the new name.
1598 (c-toggle-electric-state): New function.
1599 c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\):
1600 Adapt these functions to do electric things only when
1601 c-electric-flag is non-nil.
1602 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
1603 new functions from c-electric-brace.
1604 (c-point-syntax): Add a check for "virtual semicolons" in AWK
1605 mode, so that the tentative extra newline doesn't change the
1606 syntax of the following brace.
1607 (c-electric-brace): restructure by extracting the above functions.
1608 Tidy up the coding somewhat.
1609 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
1610 restructure a bit.
1611
1612 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1613
1614 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
1615 anchor position(s) using faces. Thanks to Masatake YAMATO for the
1616 idea.
1617
1618 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
1619 (c-submode-indicators): Changed name from `c-auto-hungry-string'
1620 since it's now used to track another submode.
1621
1622 (c-update-modeline): Converted to function and extended to check
1623 `c-subword-move-mode'.
1624
1625 (c-forward-into-nomenclature, c-backward-into-nomenclature):
1626 Converted to compat aliases for `c-forward-subword' and
1627 `c-backward-subword'.
1628
1629 * progmodes/cc-subword.el: New functions and minor mode to handle
1630 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
1631
1632 (c-forward-subword, c-backward-subword, c-mark-subword,
1633 c-kill-subword, c-backward-kill-subword, c-transpose-subwords,
1634 c-capitalize-subword, c-downcase-subword, c-upcase-subword):
1635 Functions corresponding to the standard word handling functions.
1636
1637 (c-subword-move-mode): Minor mode that replaces all the standard
1638 word handling functions with their subword equivalences.
1639
1640 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1641
1642 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
1643 entry for one-liner-defun.
1644
1645 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
1646 name in its def-edebug-spec.
1647
1648 * progmodes/cc-cmds.el (c-electric-brace): Make the
1649 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
1650 compacts space before a comment, if this will make things fit on
1651 one line.
1652
1653 Introduce an "awk" style, mainly for auto-newline and clean-ups.
1654
1655 * progmodes/cc-align.el: new function c-snug-1line-defun-close
1656
1657 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
1658 clean-up one-liner-defun.
1659
1660 * progmodes/cc-styles.el: Add the new "awk" style.
1661
1662 * progmodes/cc-vars.el: Add description of one-liner-defun to
1663 c-cleanup-list's doc-string. New user options,
1664 c-max-one-liner-length. In c-default-style, set the default style
1665 for AWK to "awk".
1666
1667 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1668
1669 * progmodes/cc-engine.el (c-forward-label): Fixed fontification of
1670 macros inside labels.
1671
1672 * progmodes/cc-engine.el (c-looking-at-bos): Obsoleted in favor of
1673 `c-at-statement-start-p' and `c-at-expression-start-p'.
1674
1675 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
1676 error if the mark isn't set.
1677
1678 * progmodes/cc-engine.el (c-guess-continued-construct,
1679 c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
1680 accurately detect functions inside functions.
1681
1682 * progmodes/cc-engine.el (c-at-expression-start-p): New function
1683 like `c-at-statement-start-p' that additionally recognizes commas
1684 and expression parentheses as delimiters.
1685
1686 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Added flag
1687 to avoid heuristics that doesn't work for unclosed blocks.
1688
1689 (c-at-statement-start-p): New function.
1690
1691 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
1692 Objective-C directives, e.g. directives spanning lines should work
1693 reasonably well now.
1694
1695 (c-put-c-type-property, c-clear-c-type-property): New helpers.
1696
1697 (c-forward-objc-directive): New function to move over any ObjC
1698 directive.
1699
1700 (c-just-after-func-arglist-p, c-guess-basic-syntax,
1701 c-basic-matchers-before): Use it.
1702
1703 (c-font-lock-objc-iip-decl): Removed.
1704
1705 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
1706 in the template arglist recognition.
1707
1708 * progmodes/cc-styles.el (c-style-alist): Fixed several
1709 inconsistencies in the Whitesmith style.
1710
1711 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks): New
1712 lineup function to get lines after Whitesmith style blocks
1713 correctly indented.
1714
1715 (c-lineup-whitesmith-in-block): Backed out the compensation for
1716 opening parens since it's done using `add' lists in the style
1717 definition instead. Don't use the anchor position since it varies
1718 too much between the syntactic symbols. :P
1719
1720 * progmodes/cc-vars.el (c-valid-offset): Updated.
1721
1722 * progmodes/cc-engine.el (c-evaluate-offset): Extended to handle
1723 lists where the offsets are combined according to several
1724 different methods: `first', `min', `max', and `add'. Report
1725 offset evaluation errors with `c-benign-error' so that some kind
1726 of reindentation still is done.
1727
1728 * progmodes/cc-engine.el (c-guess-basic-syntax): Anchor
1729 `arglist-intro' the same way as `arglist-cont-nonempty' and
1730 `arglist-close'.
1731
1732 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed similar
1733 situations for `arglist-cont-nonempty' and `arglist-close'.
1734
1735 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New
1736 constant.
1737
1738 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
1739 cc-bytecomp-boundp' in a number of places.
1740
1741 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fixed a
1742 macro related issue.
1743
1744 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1745
1746 * progmodes/cc-awk.el: Change the terminology of regexps: A char
1747 list is now
1748 [asdf], a char class [:alpha:]. Include code for char classes.
1749 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
1750 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
1751
1752 Remove (nearly all of) the cruft associated with AWK Mode's former
1753 concept of "virtual semicolons":
1754
1755 Adapt c-beginning-of-statement, c-end-of-statement (together with
1756 subfunctions) to use the new notion of "virtual semicolon" in
1757 place of the old awkward special handling for AWK. There remains
1758 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
1759 * progmodes/cc-cmds.el:
1760 (c-ascertain-adjacent-literal): In the backwards direction, now
1761 recognises AWK regexp delimiters as string delimiters.
1762 (c-after-statement-terminator-p): Adapt for virtual semicolons;
1763 check more rigorously for "end of macro".
1764 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
1765 virtual semicolons;
1766 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
1767 out the code for forward movement into ...
1768 (c-end-of-statement): Now contains the code for forward movement,
1769 adapted for virtual semicolons.
1770
1771 * progmodes/cc-engine.el:
1772 (c-ws*-string-limit-regexp): new regexp.
1773 (c-forward-single-comment, c-backward-single-comment): Comment out
1774 the (now redundant) "special" AWK stuff.
1775
1776 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
1777 c-string-par-start, c-string-par-separate to be more like Text
1778 Mode than Fundamental Mode.
1779
1780 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1781
1782 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
1783 to the fontified region so that fontification doesn't occur
1784 outside it
1785 (could happen e.g. when fontifying a line with an unfinished
1786 declaration).
1787
1788 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1789
1790 * progmodes/cc-awk.el: Regexps for analysing AWK code have been
1791 moved to near the start of the file. ^L now separate sections of
1792 the file. New defconsts: c-awk-non-eol-esc-pair-re,
1793 c-awk-blank-or-comment-line-re,
1794 c-awk-one-line-possibly-open-string-re,
1795 c-awk-regexp-one-line-possibly-open-char-class-re,
1796 c-awk-one-line-possibly-open-regexp-re,
1797 c-awk-one-line-non-syn-ws*-re. New functions: c-awk-at-vsemi-p,
1798 c-awk-vsemi-status-unknown-p.
1799
1800 Amend the concept of "virtual semicolons" (in the indentation
1801 engine) for languages like AWK, such that they are now
1802 conceptually attached to end of the last token of a statement, not
1803 the end of the line. (In AWK Mode, however, the pertinent text
1804 property is still physically set on the EOL.) Remove the specific
1805 tests for awk-mode, thus facilitating the introduction of other
1806 language modes where EOLs can end statements. (Note: The
1807 funtionality in cc-cmds.el, specifically
1808 c-beginning/end-of-statement has yet to be amended.)
1809
1810 * progmodes/cc-defs.el: New macros c-at-vsemi-p,
1811 c-vsemi-status-unknown-p.
1812
1813 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
1814 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
1815 c-vsemi-status-unknown-p-fn (in a new page).
1816
1817 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
1818 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
1819 numerous awkward forms like
1820 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
1821 with
1822 (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
1823 variable before-ws-ip, the place just after char-before-ip
1824 appears.
1825
1826 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
1827 a comment.
1828
1829 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1830
1831 * progmodes/cc-cmds.el (c-electric-brace): Cleaned up using
1832 `c-tentative-buffer-changes'.
1833
1834 * progmodes/cc-defs.el (c-region-is-active-p): Simplified and
1835 converted to macro to choose between Emacs and XEmacs at compile
1836 time.
1837
1838 (c-set-region-active): New set counterpart to
1839 `c-region-is-active-p'.
1840
1841 (c-tentative-buffer-changes): New macro to handle temporary buffer
1842 changes in a convenient way.
1843
1844 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
1845 for `c-tentative-buffer-changes'.
1846
1847 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tightened up
1848 the checks for paren sexps between the point and the keyword, to
1849 avoid some false alarms.
1850
1851 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
1852 Fixed a situation where an error could be thrown for unbalanced
1853 parens. Changed to make use of c-keyword-member' to avoid some
1854 repeated regexp matches.
1855
1856 (c-opt-lambda-key, c-opt-inexpr-block-key,
1857 c-opt-inexpr-class-key): These language variable are no longer
1858 necessary.
1859
1860 (c-block-stmt-kwds): New language constant used by
1861 c-looking-at-inexpr-block'.
1862
1863 (c-guess-basic-syntax): Removed an optional check that looked at
1864 the existence of the now removed language variables.
1865
1866 * progmodes/cc-engine.el (c-fdoc-shift-type-backward,
1867 c-forward-decl-or-cast-1): Fixed invalid recognition of C++ style
1868 object instantiation expressions as declarations in some contexts.
1869 This bug only affected languages where the declarator can't be
1870 enclosed in parentheses.
1871
1872 * progmodes/cc-styles.el (c-style-alist): Fixed the GNU style to
1873 insert newlines before and after substatement braces.
1874
1875 * progmodes/cc-engine.el: Improved the heuristics for recognizing
1876 function declaration headers and the handling of C++ style member
1877 init lists.
1878
1879 (c-just-after-func-arglist-p): Rewritten to use
1880 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
1881
1882 (c-beginning-of-member-init-list): Removed since it isn't used
1883 anymore.
1884
1885 (c-guess-basic-syntax): Case 5B adapted for the new
1886 `c-just-after-func-arglist-p'. Cases 5B.1 and 5B.3 merged. Cases
1887 5D.1 and 5D.2 removed since they aren't trigged anymore (case 5B.1
1888 covers all cases now).
1889
1890 * progmodes/cc-defs.el (c-point): Added `bosws' and `eosws'.
1891
1892 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
1893
1894 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
1895 c-string-par-start/separate c-sentence-end-with-esc-eol,
1896 initialised in c-setup-paragraph-variables, used in string
1897 scanning subroutines of c-beginning-of-statement.
1898
1899 * progmodes/cc-cmds.el (c-electric-brace): don't delete a comment
1900 which precedes the newly inserted `{'.
1901
1902 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
1903
1904 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
1905 function for declaration level blocks. It should now cope with
1906 templates better and also be a lot more comprehensible.
1907
1908 (c-looking-at-decl-block): The new function.
1909
1910 (c-search-uplist-for-classkey): The old one. It's now a wrapper
1911 for compatibility.
1912
1913 (c-add-class-syntax, c-guess-continued-construct,
1914 c-guess-basic-syntax): Adapted for `c-looking-at-decl-block'.
1915
1916 (c-decl-block-key): Changed to tell apart ambiguous and
1917 unambiguous keywords. Pike specials are now handled directly in
1918 the code instead.
1919
1920 (c-block-prefix-disallowed-chars, c-block-prefix-charset): New
1921 language constants and variables to make the backward skip in
1922 `c-looking-at-decl-block' as tight as possible.
1923
1924 (c-nonsymbol-token-char-list): New language constant.
1925
1926 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
1927 find balanced template arglists backwards.
1928
1929 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
1930 making char classes for `c-syntactic-skip-backward'.
1931
1932 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplified case
1933 16D - can't be a class-close at that point.
1934
1935 * progmodes/cc-engine.el (c-guess-basic-syntax,
1936 c-add-class-syntax): Don't narrow out the enclosing declaration
1937 level. This makes everything a lot easier, and it was actually
1938 only four small places that needed it to work. Some places that
1939 previously did `widen' are removed now, which has the effect that
1940 `c-guess-basic-syntax' never will look at things outside the
1941 current narrowment now. The anchor position for `topmost-intro'
1942 is affected by this, but it was so bogus it was basically useless
1943 before, and now it's equally bogus but in a slightly different
1944 way.
1945
1946 (c-narrow-out-enclosing-class): Gone.
1947
1948 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
1949 the narrowed region.
1950
1951 (c-least-enclosing-brace): Removed silly optional argument.
1952
1953 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fixed bug where
1954 the point could be left directly after an open paren when finding
1955 the beginning of the first decl in the block.
1956
1957 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
1958 Specify which submatch to use.
1959
1960 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
1961
1962 (c-decl-start-re): No no longer any need for special treatment of
1963 ObjC due to the above.
1964
1965 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
1966 presumably follows C in that regard.
1967
1968 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
1969 New language constants to specify operator tokens inside
1970 identifiers in a more high level way.
1971
1972 (c-opt-identifier-prefix-key): New internal language constant.
1973
1974 (c-opt-identifier-concat-key, c-opt-after-id-concat-key,
1975 c-identifier-start, c-identifier-key): Now completely calculated
1976 from other constants.
1977
1978 (c-identifier-last-sym-match): Decommissioned since it's no longer
1979 used.
1980
1981 (c-operators): Use `c-identifier-ops'. Documented
1982 `postfix-if-paren'.
1983
1984 * progmodes/cc-engine.el (c-forward-name): Removed the
1985 optimization when c-identifier-key is equal to c-symbol-key since
1986 it doesn't work in byte compiled files. Don't record empty
1987 regions as identifiers.
1988
1989 * progmodes/cc-langs.el (c-filter-ops): New helper function to
1990 simplify access to `c-operators' and its likes.
1991
1992 (c-operator-list, c-all-op-syntax-tokens,
1993 c-nonsymbol-token-regexp, c-<>-multichar-token-regexp,
1994 c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds,
1995 c-primary-expr-regexp, c-cast-parens): Use it.
1996
1997 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
1998 an explicit language in functions.
1999
2000 * progmodes/cc-defs.el (c-make-keywords-re): Added an appendable
2001 variant of adornment.
2002
2003 * progmodes/cc-langs.el (c-any-class-key): Removed unused language
2004 variable.
2005
2006 (c-type-decl-prefix-key): Removed some now unnecessary cruft from
2007 the Pike value.
2008
2009 * progmodes/cc-engine.el (c-on-identifier,
2010 c-simple-skip-symbol-backward): Small fix for handling "-"
2011 correctly in `skip-chars-backward'. Affected the operator lfun
2012 syntax in Pike.
2013
2014 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disabled the
2015 diagnostic message about precompiled language vars not being used.
2016
2017 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
2018 "__attribute__" is followed by a parenthesis.
2019
2020 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re,
2021 c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
2022 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
2023
2024 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el: Internal
2025 cleanups to properly detect the declared identifiers in various
2026 declarations.
2027
2028 (c-decl-start-kwds): New language constant to recognize
2029 declarations that can start anywhere. Used for class declarations
2030 in Pike.
2031
2032 (c-specifier-key, c-not-decl-init-keywords,
2033 c-decl-prefix-or-start-re, c-find-decl-prefix-search,
2034 c-find-decl-spots): Implement `c-decl-start-kwds'.
2035
2036 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds,
2037 c-decl-hangon-key, c-forward-decl-or-cast-1): Separated the
2038 handling of the compiler specific extension keywords into a new
2039 language constant `c-decl-hangon-kwds' that defines keyword
2040 clauses to be ignored in declarations.
2041
2042 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
2043 past unrecognized tokens when handling `c-colon-type-list-kwds'.
2044 Necessary to stop at the declared identifier in e.g. IDL valuetype
2045 declarations.
2046
2047 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds,
2048 c-prefix-spec-kwds-re, c-postfix-spec-kwds,
2049 c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key,
2050 c-forward-decl-or-cast-1): Recognize the declared identifier in
2051 class and enum declarations as such and not as part of the type.
2052
2053 (c-forward-decl-or-cast-1, c-forward-label): Relaxed the
2054 interpretation of PRECEDING-TOKEN-END when there's no preceding
2055 token.
2056
2057 (c-forward-decl-or-cast-1): Don't disregard sure signs of
2058 declarations when there's some syntax error later on.
2059
2060 (c-complex-decl-matchers): Did away with a reference to
2061 `c-specifier-key'.
2062
2063 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
2064 value - this variable is always dynamically bound.
2065
2066 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el,
2067 cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el,
2068 cc-cmds.el, cc-defs.el: Changed the policy for marking up
2069 functions that might do hidden buffer changes: All such internal
2070 functions are now marked instead of those that don't.
2071
2072 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments,
2073 c-(forward|backward)-single-comment, c-parse-state, c-on-identifier,
2074 c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments,
2075 c-literal-type): Allow these functions to make hidden buffer changes,
2076 so that they are free to use text property caching later on.
2077
2078 (c-electric-backspace, c-electric-delete-forward, c-electric-pound,
2079 c-electric-brace, c-electric-slash, c-electric-star,
2080 c-electric-semi&comma, c-electric-colon, c-electric-lt-gt,
2081 c-electric-paren, c-electric-continued-statement, c-indent-command,
2082 c-indent-region, c-mask-paragraph, c-indent-new-comment-line,
2083 c-context-line-break): Added `c-save-buffer-state' calls to comply
2084 with the changed semantics of the functions above.
2085
2086 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fixed a bug
2087 when macros occur in obscure places. Optimized the sexp movement
2088 a bit.
2089
2090 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
2091
2092 Enhancements for c-beginning-of-statement to work in AWK Mode:
2093
2094 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
2095 (completed statement) with `}' (statement completed by closing
2096 brace or semicolon) and `$' (statement completed by EOL).
2097
2098 (c-awk-virtual-semicolon-ends-prev-line-p,
2099 c-awk-virtual-semicolon-ends-line-p,
2100 c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward,
2101 c-awk-at-statement-end-p): new functions
2102
2103 * progmodes/cc-cmds.el: Simplify the structure of functions
2104 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
2105 two functions and c-beginning-of-statement to handle AWK Mode.
2106
2107 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
2108 c-backward-single-comment for AWK mode. Attempt to clarify their
2109 doc-strings.
2110
2111 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
2112
2113 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
2114
2115 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
2116 label handling. Labels are now recognized in a uniform and more
2117 robust way, regardless of context. Text properties are put on all
2118 labels to recognize the following declarations better. Multiword
2119 labels are handled both in indentation and fontification for the
2120 benefit of language extensions like Qt. For consistency, keywords
2121 in labels are now fontified with the label face instead. That
2122 also applies to "case" and "default".
2123
2124 (c-beginning-of-statement-1): Fixed some bugs in the label
2125 handling. Disregard `c-nonlabel-token-key' in labels that begin
2126 with `c-label-kwds'.
2127
2128 (c-find-decl-spots): Support that the callback adds more
2129 `c-decl-end' spots to find.
2130
2131 (c-forward-decl-or-cast-1): Don't treat a list of plain
2132 identifiers followed by a colon as a declaration.
2133
2134 (c-forward-label): New function to recognize labels.
2135
2136 (c-guess-basic-syntax): Replaced uses of `c-label-key' with
2137 `c-forward-label'. Moved the label recognition cases (14 and 15)
2138 earlier since they aren't so context sensitive now. Handle labels
2139 on the top level gracefully. Moved access label recognition to
2140 the generic label case (CASE 15) - removed CASE 5E.
2141
2142 (c-font-lock-declarations): Added recognition of labels in the
2143 same round since we need to handle labels in parallell with other
2144 declarations to recognize both accurately. It should also improve
2145 speed.
2146
2147 (c-simple-decl-matchers, c-basic-matchers-after): Moved
2148 `c-font-lock-labels' so that it only is used on decoration level 2
2149 since `c-font-lock-declarations' handles it otherwise.
2150
2151 (c-complex-decl-matchers): Removed the simplistic recognition of
2152 access labels.
2153
2154 (c-decl-prefix-re): Removed the kludges that was necessary to cope
2155 with labels earlier.
2156
2157 (c-decl-start-re): New language variable to make
2158 `c-font-lock-declarations' stop for the special protection labels
2159 in Objective-C that start with `@'.
2160
2161 (c-label-key): Removed since it's no longer used.
2162
2163 (c-recognize-colon-labels, c-label-prefix-re): New language
2164 constants to support recognition of generic colon-terminated
2165 labels.
2166
2167 (c-type-decl-end-used): `c-decl-end' is now used whenever there
2168 are colon terminated labels.
2169
2170 * progmodes/cc-align.el (c-lineup-arglist): Fixed bug when the
2171 first argument starts with a special brace list.
2172
2173 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1,
2174 c-font-lock-declarations): Broke out the declaration and cast
2175 recognition from `c-font-lock-declarations' to a new function, so
2176 that it can be used in the indentation engine.
2177
2178 * progmodes/cc-engine.el (c-find-decl-spots): Fixed bug in backing
2179 up to the start of the literal. Fixed bug with the point on the
2180 wrong side of the search limit that could happen when the start
2181 position is inside a literal.
2182
2183 * progmodes/cc-engine.el (c-parse-state,
2184 c-invalidate-state-cache): Modified the use of `c-state-cache-end'
2185 so that it's kept a little bit back to increase the hit rate.
2186
2187 (c-parse-state): Changed the macro handling and fixed some
2188 glitches. Macro context is checked more often than necessary now,
2189 but otoh less garbage conses are generated.
2190
2191 * progmodes/cc-engine.el (c-parse-state,
2192 c-invalidate-state-cache): Cache the last position where
2193 `c-state-cache' applies. This can speed up refontification quite
2194 a bit in blocks where there are many non-brace parens before the
2195 point.
2196
2197 (c-state-cache-end): New variable for this.
2198
2199 (c-guess-basic-syntax, c-debug-parse-state): Adapted for the new
2200 cache variable.
2201
2202 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
2203 get close initial continue positions when the start position is
2204 inside a literal or macro. Do not call the callback for spots
2205 before the start position (which can happen e.g. for `c-decl-end'
2206 spots inside comments). Optimize better in special cases when the
2207 region is a single line inside a literal or macro (typically when
2208 the current line is refontified).
2209
2210 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplified calls
2211 to `c-add-stmt-syntax' - there's no need to explicitly whack off
2212 entries from the paren state.
2213
2214 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrowed down the
2215 special case for "else if" clauses.
2216
2217 * progmodes/cc-engine.el (c-looking-at-inexpr-block,
2218 c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
2219
2220 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks): New
2221 language variable to recognize the gcc extension with statement
2222 blocks inside expressions.
2223
2224 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructured to make
2225 it somewhat more comprehensible. The argument AT-BLOCK-START is
2226 no longer used and hence removed.
2227
2228 (c-guess-continued-construct, c-guess-basic-syntax): Updated calls
2229 to `c-add-stmt-syntax'.
2230
2231 * progmodes/cc-engine.el (c-backward-to-decl-anchor): Use
2232 `c-beginning-of-statement-1' instead of duplicating parts of it.
2233 This fixes bogus label recognition.
2234
2235 * progmodes/cc-engine.el (c-add-type, c-check-type,
2236 c-forward-name, c-forward-type): Improved storage of template
2237 types in `c-found-types' so that they can be recognized better.
2238
2239 (c-syntactic-content): Added option to skip past nested parens.
2240
2241 * progmodes/cc-engine.el (c-forward-name): Set
2242 `c-last-identifier-range' all the time. It's less work that way.
2243 Handle that there might not be an identifier to store in
2244 `c-last-identifier-range'.
2245
2246 (c-forward-type): Handle that `c-last-identifier-range' might be
2247 nil from `c-forward-name'.
2248
2249 * progmodes/cc-defs.el: (c-safe-scan-lists,
2250 c-(go-)?(up|down)-list-(forward|backward)): Added limit arguments.
2251
2252 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
2253 to work even if the form fails.
2254
2255 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
2256 down in a large file in one go.
2257
2258 (c-get-fallback-start-pos): New helper function for
2259 `c-parse-state'.
2260
2261 * progmodes/cc-align.el (c-lineup-assignments): New lineup
2262 function which is like `c-lineup-math' but returns nil instead of
2263 `c-basic-offset' when it doesn't match.
2264
2265 (c-lineup-math): Changed to use `c-lineup-assignments'.
2266
2267 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
2268
2269 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
2270 c-beginning-of-statement. New subfunctions
2271 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
2272
2273 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
2274
2275 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
2276 hardcoded char classes whereever possible. Changed a couple of
2277 places to use skip by syntax instead of skip by char class.
2278
2279 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
2280 Fixed a bug in the regexp that caused extreme backtracking.
2281
2282 * progmodes/cc-langs.el (c-block-comment-starter,
2283 c-block-comment-ender): New language constants to specify in a
2284 single place how block comments look.
2285
2286 (c-comment-start-regexp, c-block-comment-start-regexp,
2287 comment-start, comment-end, comment-start-skip,
2288 c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws,
2289 c-syntactic-ws, c-nonempty-syntactic-ws,
2290 c-single-line-syntactic-ws, c-syntactic-eol): Now built from
2291 `c-line-comment-starter', `c-block-comment-starter' and
2292 `c-block-comment-ender'.
2293
2294 (c-block-comment-regexp, c-unterminated-block-comment-regexp): New
2295 language constants to break up things a bit.
2296
2297 (c-simple-ws): New language constant for simple whitespace.
2298
2299 * progmodes/cc-defs.el (c-concat-separated): New convenience
2300 function.
2301
2302 * progmodes/cc-defs.el (c-make-keywords-re): Added kludge for bug
2303 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
2304 newlines. Allow and ignore nil elements in the list.
2305
2306 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
2307
2308 * progmodes/cc-cmds.el: Comment out a (n almost certainly
2309 superfluous) check, (eq here (point-max)) in
2310 c-beginning-of-statement.
2311
2312 * progmodes/cc-cmds.el: Tidy up the comments in
2313 c-beginning-of-statement and subfunctions.
2314
2315 * progmodes/cc-awk.el: Replace calls to put-text-property to the
2316 more flexible c-put-char-property and c-clear-char-properties.
2317 Add the author's email address.
2318
2319 * progmodes/cc-langs.el: New variable,
2320 c-block-comment-start-regexp.
2321
2322 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
2323 closing "*/" of a block comment.
2324
2325 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
2326 subfunctions) so that it works at BOB and EOB.
2327
2328 * progmodes/cc-cmds.el, cc-vars.el: More updating of
2329 c-beginning-of-statement, including new variable
2330 c-block-comment-start-regexp.
2331
2332 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
2333
2334 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
2335 symbols from `*-font-lock-extra-types' so that there's no need to
2336 use `regexp-opt' on those lists.
2337
2338 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
2339 `c-type-modifier-kwds' is empty.
2340
2341 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
2342 there are several strings on the same line.
2343
2344 * progmodes/cc-engine.el (c-literal-limits): Removed the
2345 compatibility function for older emacsen. `c-literal-limits-fast'
2346 has now taken the place of this function.
2347
2348 * progmodes/cc-vars.el (c-emacs-features): Removed compatibility
2349 with older emacsen: We now require `pps-extended-state'.
2350
2351 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
2352
2353 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
2354 which obviates the need to hack sentence-end. This now handles
2355 escaped newlines in strings correctly. Correct minor bugs in
2356 c-move-over-sentence and in c-beginning-of-statement.
2357
2358 * progmodes/cc-cmds.el (c-beginning-of-statement (and
2359 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
2360 that movement over macros and code are rigorously separated from
2361 eachother. Correct a few incidental bugs.
2362
2363 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
2364 Improve its doc-string. Improve the handling of certain specific
2365 cases.
2366
2367 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
2368
2369 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
2370 (c-guess-basic-syntax): Changed the way class-level labels are
2371 recognized; they can now contain essentially any symbols.
2372
2373 (c-opt-extra-label-key): New language variable to cope with the
2374 special protection label syntax in Objective-C.
2375
2376 (c-opt-access-key): Removed; this is now handled better by
2377 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
2378
2379 (c-complex-decl-matchers): Update to handle that
2380 `c-opt-access-key' no longer exists.
2381
2382 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
2383 improved label recognition in `c-beginning-of-statement-1'.
2384
2385 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
2386 Recognize bitfields better.
2387
2388 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
2389 Removed some cruft and fixed a bug that could cause it to go to a
2390 position further down.
2391
2392 * progmodes/cc-langs.el, cc-engine.el
2393 (c-beginning-of-statement-1): Improved detection of labels in
2394 declaration contexts.
2395
2396 (c-beginning-of-decl-1): Use it.
2397
2398 (c-nonlabel-token-key): New language constant and variable needed
2399 by `c-beginning-of-statement-1'.
2400
2401 * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed bug that
2402 manifested itself due to the correction in `c-forward-sexp'.
2403
2404 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp): Made
2405 these behave as documented when used at the buffer limits.
2406
2407 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
2408 (c-type-decl-end-used): Made this a language variable.
2409
2410 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
2411 correctly when `combine-after-change-calls' is used together with
2412 temporary narrowings.
2413
2414 * progmodes/cc-engine.el (c-beginning-of-statement-1): Report
2415 labels correctly when the start point is immediately after the
2416 colon.
2417
2418 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties): Removed
2419 since it isn't used anymore.
2420
2421 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
2422 bracket arglists such as template parens in C++.
2423
2424 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fixed a bug
2425 in the last check-in. Some optimization.
2426
2427 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fixed bug
2428 where it could stop at the same level in a preceding sexp when
2429 PAREN-LEVEL is set.
2430
2431 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
2432 text property lookup only when it's needed.
2433
2434 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
2435 Changed the policy for paren marked angle brackets to be more
2436 persistent; once marked they remain marked even when they're found
2437 to be unbalanced in the searched region. This should keep the
2438 paren syntax around even when individual lines are refontified in
2439 multiline template arglists.
2440
2441 (c-parse-and-markup-<>-arglists): New dynamically bound variable
2442 to control markup so that incorrect angle bracket arglists aren't
2443 marked in contexts where the correct value for
2444 `c-disallow-comma-in-<>-arglists' isn't known.
2445
2446 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
2447 argument has become `c-parse-and-markup-<>-arglists'.
2448
2449 (c-remove-<>-arglist-properties): Removed - no longer used.
2450
2451 (c-after-change-check-<>-operators): New function used on
2452 `after-change-functions' to avoid that "<" and ">" characters that
2453 are part of longer operators have paren syntax.
2454
2455 (c-<>-multichar-token-regexp): New language variable used by
2456 `c-after-change-check-<>-operators'.
2457
2458 (c-after-change): Call `c-after-change-check-<>-operators'.
2459
2460 (c-font-lock-<>-arglists): Use the context properties set by
2461 `c-font-lock-declarations' to set
2462 `c-disallow-comma-in-<>-arglists' correctly to avoid doing invalid
2463 markup.
2464
2465 (c-font-lock-declarations): Removed code that undoes the invalid
2466 markup done by `c-font-lock-<>-arglists'.
2467
2468 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
2469 after `c-font-lock-declarations'.
2470
2471 * progmodes/cc-engine.el (c-syntactic-skip-backward): Added
2472 paren-level feature.
2473
2474 (c-guess-basic-syntax): Improved the anchor position for
2475 `template-args-cont' in nested template arglists. There's still
2476 much to be desired in this area, though.
2477
2478 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
2479
2480 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
2481 Make the "Text Filling and Line Breaking" commands work for AWK
2482 buffers.
2483
2484 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
2485
2486 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
2487 Removed;
2488 (c-major-mode-is 'awk-mode) can be used instead now.
2489
2490 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
2491 it doesn't work no longer are supported.
2492
2493 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el,
2494 cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
2495 requires support for the syntax-table' text property, which rules
2496 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
2497 cruft associated with those versions.
2498
2499 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
2500 for the `syntax-table' text property, which rules out Emacs 19 and
2501 XEmacs < 21.4. Removed various compatibility cruft associated
2502 with those versions.
2503
2504 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
2505 support for the `syntax-table' text property.
2506
2507 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
2508 variable and use an extra quoted face name instead. All the
2509 emacsen flavors handle that correctly.
2510
2511 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare,
2512 c-font-lock-declarators, c-font-lock-declarations,
2513 c-complex-decl-matchers, c-basic-matchers-after): Use a text
2514 property to mark the items in in declarator lists to handle
2515 refontification inside multiline declarations better.
2516
2517 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
2518 construct like "a * b = c;" as a declaration.
2519
2520 2005-12-08 Kim F. Storm <storm@cua.dk>
2521
2522 * emulation/cua-base.el (cua-use-hyper-key): Replaced by ...
2523 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
2524 select either meta, hyper, or super modifier for rectangle commands.
2525 (cua--rectangle-modifier-key): New defvar.
2526 (cua--M/H-key): Use it. Remove special case for `space'.
2527 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
2528 on X, to meta otherwise. Always bind C-return to toggle
2529 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
2530
2531 * emulation/cua-rect.el (cua-help-for-rectangle): Use
2532 cua--rectangle-modifier-key. Handle super modifier too.
2533 (cua--init-rectangles): Always bind C-return to toggle rectangle.
2534 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
2535
2536 * ido.el: Move Acknowledgements and History after Commentary.
2537 Minor changes to Commentary.
2538
2539 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
2540 keymap if cua--prefix-override-timer is `shift'.
2541 (cua--shift-control-prefix): New function; emulate "type prefix
2542 key twice" functionality to handle shifted prefix key override.
2543 (cua--shift-control-c-prefix, cua--shift-control-x-prefix): New
2544 commands.
2545 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
2546
2547 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
2548
2549 * textmodes/org.el (org-insert-heading): Try to do items before
2550 headings.
2551 (org-agenda-mode): Quote `org-agenda-mode-hook'.
2552 (org-insert-item): New function.
2553 (org-renumber-ordered-list): Don't skip to higher level lists.
2554
2555 2005-12-08 Juri Linkov <juri@jurta.org>
2556
2557 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
2558
2559 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
2560
2561 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
2562
2563 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
2564 the constructed function name fun-1.
2565
2566 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
2567 because such links don't lead to parent documentation.
2568
2569 2005-12-08 Kenichi Handa <handa@m17n.org>
2570
2571 * descr-text.el (describe-char): Use *Help-2* buffer if the
2572 current buffer is *Help*. Call describe-text-properties while
2573 setting the original buffer.
2574
2575 2005-12-07 Bill Wohler <wohler@newt.com>
2576
2577 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
2578 and causes problems with non-MH users (such as Gnus users).
2579
2580 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
2581
2582 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
2583 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
2584 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
2585 command "info sources". Move calls to GDB command "list".
2586 (gdb-find-file-hook): Just use gdb-source-file-list.
2587 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
2588 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
2589 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
2590 (gdb-data-list-register-values-handler): Use correct trigger name.
2591
2592 2005-12-07 Kim F. Storm <storm@cua.dk>
2593
2594 * ido.el (ido-completion-map): Renamed from ido-mode-map.
2595 (ido-common-completion-map, ido-file-completion-map)
2596 (ido-file-dir-completion-map, ido-buffer-completion-map):
2597 Renamed from ido-mode-....-map.
2598 (ido-init-completion-maps): Renamed from ido-init-mode-maps.
2599 (ido-setup-completion-map): Renamed from ido-define-mode-map.
2600 (ido-read-internal): Bind minibuffer-local-filename-completion-map
2601 to ido-completion-map.
2602
2603 2005-12-07 Kenichi Handa <handa@m17n.org>
2604
2605 * international/mule-cmds.el
2606 (set-display-table-and-terminal-coding-system): If the coding
2607 system specified in `unibyte-display' property is different from
2608 the arg coding-system, don't setup standard-display-table.
2609
2610 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2611
2612 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
2613 that comments end at \n, regardless of selective-display.
2614
2615 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
2616
2617 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
2618 (gdb-version): New variables.
2619 (gdb-source-file-list, gdb-register-names)
2620 (gdb-changed-registers): New variables for use with GDB 6.4+.
2621 (gdb-ann3): Replace with...
2622 (gdb-init-1, gdb-init-2): ...two new functions.
2623 (gdba, gdb-prompt): Call gdb-init-1.
2624 (gdb-get-version): New function. Call gdb-init-2 from here.
2625 (gud-watch): Make it work with mouse events too.
2626 (gdb-post-prompt): Don't add to queue until GDB version is known.
2627 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
2628 (gdb-locals-mode): Use gdb-version.
2629 (gdb-memory-format-map, gdb-memory-unit-map)
2630 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
2631 (gdb-locals-font-lock-keywords-1)
2632 (gdb-locals-font-lock-keywords-2): New variables.
2633 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
2634 (gdb-set-gud-minor-mode-existing-buffers-1)
2635 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
2636 (gdb-var-update-1, gdb-var-update-handler-1)
2637 (gdb-data-list-register-values-handler)
2638 (gdb-data-list-register-values-custom)
2639 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
2640 (gdb-stack-list-locals-handler, gdb-get-register-names):
2641 New functions for use with GDB 6.4+.
2642 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
2643 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
2644 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
2645 (gdb-stack-list-locals-regexp)
2646 (gdb-data-list-register-names-regexp): New regexps for use with
2647 GDB 6.4+.
2648
2649 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2650
2651 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
2652
2653 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
2654
2655 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
2656 prompts work for AUTH PLAIN. Also reported by Steve Allan
2657 <seallan@verizon.net>.
2658
2659 2005-12-06 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
2660
2661 * frame.el (set-frame-parameter): Add doc string.
2662
2663 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
2664
2665 * textmodes/org.el (org-occur-highlights): New variable.
2666 (org-highlight-new-match, org-remove-occur-highlights): New functions.
2667 (org-highlight-sparse-tree-matches): New option.
2668 (org-do-occur): New function.
2669 (org-get-heading): Make it work also at beginning of line.
2670 (org-category-table): New variable.
2671 (org-get-category-table, org-get-category)
2672 (org-camel-to-words, org-link-search): New functions.
2673 (org-select-this-todo-keyword): New variable.
2674 (org-todo-list): New command.
2675 (org-shiftright, org-shiftleft): New commands.
2676 (org-agenda-todo): Add prefix argument.
2677 (org-show-hierarchy-above): New option.
2678 (org-show-todo-tree): Numerical prefix creates tree for specific
2679 TODO keyword.
2680 (org-outline-level): New function, to assign a level to plain
2681 lists items.
2682 (org-cycle-include-plain-lists): New option.
2683 (org-mode): Use `org-outline-level' as value of `outline-level'.
2684 (org-cycle): Temporarily switch `outline-regexp' if
2685 `org-cycle-include-plain-lists' is non-nil.
2686 (org-start-icalendar-file): Fix format bug.
2687 (org-agenda-get-day-entries): Create category table.
2688 (org-agenda-get-todos, org-agenda-get-timestamps)
2689 (org-agenda-get-deadlines, org-agenda-get-scheduled)
2690 (org-agenda-get-blocks): Use `org-get-category'.
2691 (org-context-in-file-links): Rename from
2692 `org-line-numbers-in-file-links' .
2693
2694 2005-12-06 Romain Francoise <romain@orebokech.com>
2695
2696 * window.el (balance-windows): Delete extraneous third arg in call
2697 to `enlarge-window'.
2698
2699 2005-12-06 Kenichi Handa <handa@m17n.org>
2700
2701 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
2702
2703 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
2704
2705 * progmodes/gdb-ui.el (gdb-var-create-handler)
2706 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
2707 (gdb-var-list-children-handler, gdb-var-update-handler):
2708 Current buffer is already gdb-partial-output-buffer, don't
2709 make it current again.
2710
2711 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
2712
2713 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
2714 (list-buffers-noselect): Use it.
2715
2716 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
2717
2718 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
2719 (mail-yank-ignored-headers): Use regexp-opt.
2720 (mail-mode-map): Move initialization into declaration.
2721 (mail-sent-via): Remove unused shadowed var `to-line'.
2722 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
2723 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
2724 (mail-do-fcc): Use dolist and push.
2725 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
2726 (mail-yank-ignored-headers): Don't autoload.
2727
2728 2005-12-05 Kenichi Handa <handa@m17n.org>
2729
2730 * international/mule-cmds.el (set-language-info-internal): New fun.
2731 (set-language-info): Call set-language-info-internal to update
2732 language-info-alist. If LANG-ENV is the current one, call
2733 set-language-environment to make INFO effective now.
2734 (set-language-info-alist): Likewise.
2735 (locale-language-names): With locale "en", use English
2736 lang. env. but set the default codings to iso-8859-1.
2737
2738 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
2739
2740 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
2741 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
2742 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
2743 for plain strings.
2744 (gdb-frames-mode): Remove redundant call to font-lock-mode.
2745 (gdb-all-registers): Rename from toggle-gdb-all-registers.
2746 Create registers buffer if necessary. Echo new state in minibuffer.
2747 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
2748
2749 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
2750
2751 * info.el (Info-fontify-node): Match external links using
2752 non-directory part of filename.
2753
2754 2005-12-04 Juri Linkov <juri@jurta.org>
2755
2756 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
2757 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
2758 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
2759 because there is no customization option for it.
2760
2761 * font-lock.el (lisp-font-lock-keywords-1):
2762 Add define-global-minor-mode.
2763
2764 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
2765
2766 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
2767 properties on the constructed variable names.
2768
2769 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2770 Put `definition-name' properties on the constructed function names
2771 next-sym and prev-sym.
2772
2773 * emacs-lisp/find-func.el (find-function-regexp):
2774 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
2775 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
2776 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
2777 and easy-menu-define.
2778
2779 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
2780 easy-mmode-define-global-mode and define-global-minor-mode.
2781 (lisp-imenu-generic-expression): Add define-global-minor-mode.
2782
2783 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
2784 instead of easy-mmode-define-global-mode.
2785
2786 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
2787 Use define-minor-mode instead of easy-mmode-define-minor-mode.
2788
2789 * cus-edit.el (customize-group, customize-group-other-window):
2790 Filter out autoloaded options from the group completion list by
2791 using heuristics that autoloaded groups don't have `custom-autoload'
2792 property on their symbols (they have only `custom-loads').
2793
2794 * simple.el (completion-setup-function): Put completions-common-part
2795 face on complete completion string too (i.e. completion string
2796 without completions-first-difference face).
2797
2798 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
2799
2800 2005-12-03 Eli Zaretskii <eliz@gnu.org>
2801
2802 * view.el (view-mode): Doc fix.
2803
2804 * disp-table.el (standard-display-european): Add to the warning
2805 message a reference to the doc string.
2806
2807 * play/yow.el (apropos-zippy): Call print-help-return-message,
2808 similar to other Help and Apropos commands.
2809
2810 * help.el (print-help-return-message): If pop-up-frames is
2811 non-nil, set up help-return-method to delete the help window and,
2812 possibly, its frame as well, and don't display message about
2813 scrolling the help window. Doc fix.
2814 (help-return-method): Doc fix.
2815
2816 2005-12-03 Martin Rudalics <rudalics@gmx.at> (tiny change)
2817
2818 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
2819 whereby names of length one or names starting with a
2820 symbol-constituent character would not be returned.
2821
2822 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
2823
2824 * subr.el (atomic-change-group): Add edebug and indentation spec.
2825
2826 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
2827
2828 * completion.el (save-completions-file-name): Fix typo in last change.
2829
2830 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2831
2832 * info.el: Move back/forward history to the beginning of the tool bar.
2833
2834 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
2835
2836 * allout.el:(eval-when-compile): Remove unnecessary load of cl.
2837 Add fset of allout-real-isearch-abort during compile to fix
2838 byte-compilation warnings.
2839 (allout-mode-p): Move definition of this macro above all uses, or
2840 byte compilation in barren emacs (eg, during emacs build) will
2841 lack the definition.
2842 (allout-mode): Move this variable above any uses, or byte
2843 compilation will fail.
2844 (allout-resolve-xref): Remove use of personal file-reference function.
2845 (allout-toggle-current-subtree-encryption): Do the current (ie,
2846 visible containing) topic, rather than nearest around point. Doc fix.
2847 (allout-toggle-subtree-encryption): New function, workhorse that
2848 works on nearest topic containing point.
2849 (allout-encrypt-string): Signal requirement for newer version of pgg.
2850 (allout-resumptions): Doc fix.
2851
2852 2005-12-02 Eli Zaretskii <eliz@gnu.org>
2853
2854 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
2855
2856 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
2857
2858 * textmodes/flyspell.el (flyspell-external-point-words):
2859 Consider a misspelling as found in the string search if: (a) misspelling
2860 and found string lengths match, or (b) misspelling is found as
2861 element in a boundary-chars separated longer string, or (c)
2862 ispell-program-name is really ispell and misspelling is found as
2863 part of a TeX string. After successful match move beginning of
2864 search region to end of match. Warn about not found misspellings
2865 once the process is done.
2866 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
2867
2868 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
2869
2870 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
2871 tool bar (removed inadvertently).
2872
2873 2005-12-02 Juri Linkov <juri@jurta.org>
2874
2875 * log-view.el (log-view-diff): Clarify doc string.
2876
2877 2005-12-01 Bill Wohler <wohler@newt.com>
2878
2879 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
2880 triggers lm-verify errors.
2881
2882 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
2883
2884 * simple.el (transient-mark-mode, line-number-mode)
2885 (column-number-mode, size-indication-mode): Remove `:require nil'.
2886
2887 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
2888
2889 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
2890 in the margin also.
2891 (gdb-breakpoints-mode-map): Use D instead of d for
2892 gdb-delete-breakpoint.
2893 (gdb-get-frame-number): Require a number to match on.
2894 (gdb-threads-mode-map): Add follow-link binding.
2895
2896 2005-11-30 Jason Rumney <jasonr@gnu.org>
2897
2898 * isearch.el (isearch-mode-map): Avoid exiting search on
2899 language-change event.
2900
2901 2005-11-30 Romain Francoise <romain@orebokech.com>
2902
2903 * speedbar.el (speedbar-default-position): New defcustom.
2904 (speedbar-frame-reposition-smartly): Use it.
2905
2906 * dframe.el (dframe-reposition-frame-emacs): Fix position
2907 computation for `left' location.
2908 Update copyright year.
2909
2910 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
2911
2912 * help.el (help-map): Move initialization into declaration.
2913
2914 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
2915
2916 * help-fns.el (help-argument-name): Don't autoload.
2917 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
2918 to be re-loaded when customizing the `help' group.
2919
2920 2005-11-30 John Paul Wallington <jpw@gnu.org>
2921
2922 * help-fns.el (describe-function-1): Fill arglist output.
2923
2924 2005-11-30 Kim F. Storm <storm@cua.dk>
2925
2926 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
2927 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
2928 after revert-buffer (or anything else which kills all local variables).
2929
2930 * apropos.el (apropos-parse-pattern): Doc fix.
2931 Set apropos-regexp directly, rather than expecting callers to do so.
2932 (apropos-command, apropos, apropos-value, apropos-documentation):
2933 Simplify calls to apropos-parse-pattern.
2934
2935 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
2936
2937 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
2938 (hi-lock-face-phrase-buffer): Use hi-yellow face.
2939 (hi-lock-write-interactive-patterns): Use comment-region.
2940
2941 * longlines.el (longlines-mode): Add mail-setup-hook.
2942
2943 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
2944
2945 * simple.el (sendmail-user-agent-compose, next-line):
2946 Conditionally use hard-newline.
2947
2948 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
2949
2950 * international/latexenc.el (latex-inputenc-coding-alist):
2951 Reword doc string.
2952
2953 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
2954
2955 * help.el (describe-key-briefly, describe-key): Recognize default
2956 bindings.
2957
2958 2005-11-29 Romain Francoise <romain@orebokech.com>
2959
2960 * view.el (view-inhibit-help-message): New defcustom.
2961 (view-mode-enter): Use it.
2962
2963 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
2964
2965 * ediff-wind (ediff-setup-control-frame, ediff-make-wide-display):
2966 Preserve user position.
2967
2968 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
2969
2970 * font-lock.el: Throw error if facemenu is not loaded to prevent
2971 accidental change of loading order in loadup.el. (Suggested by RMS.)
2972
2973 * loadup.el: Add comment explaining why facemenu must be loaded
2974 before font-lock.
2975
2976 2005-11-28 Jay Belanger <belanger@truman.edu>
2977
2978 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
2979 (calc-dispatch-map): Add more keys for `calc-same-interface'.
2980
2981 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
2982
2983 * calc/calc-embed.el (calc-do-embedded): Update help message.
2984
2985 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
2986
2987 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
2988
2989 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
2990
2991 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
2992 called-interactively-p.
2993 (elp-profilable-p): Rename from elp-not-profilable-p.
2994 Invert result and take into account macros and autoloaded functions.
2995 (elp-instrument-function): Update call.
2996 (elp-instrument-package): Update call. Add completion.
2997 (elp-pack-number): Use match-string.
2998 (elp-results-jump-to-definition-by-mouse): Merge into
2999 elp-results-jump-to-definition and then remove.
3000 (elp-output-insert-symname): Make help echo text single-line.
3001
3002 * replace.el (query-replace-map): Move initialization into declaration.
3003 (occur-engine): Use with-current-buffer.
3004 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
3005 (occur-mode-mouse-goto): Replace with an alias.
3006
3007 2005-11-28 Juri Linkov <juri@jurta.org>
3008
3009 * simple.el (quoted-insert): Let-bind input-method-function to nil.
3010
3011 * term/w32-win.el: Bind [S-tab] to [backtab].
3012
3013 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
3014 `Info-find-file' to t.
3015
3016 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
3017 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
3018 and same-window-regexps.
3019 (occur-next-error): Don't move point for arg 0.
3020
3021 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
3022
3023 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
3024
3025 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
3026
3027 * log-edit.el (log-edit-changelog-use-first): New var.
3028 (log-edit-changelog-ours-p): Use it.
3029 (log-edit-insert-changelog): Set it with new arg `use-first'.
3030 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
3031 (log-edit-hook): Add them to the list of suggested options.
3032
3033 * textmodes/flyspell.el (flyspell-last-buffer): New var.
3034 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
3035 redundant work.
3036 (flyspell-mode-on): Use add-hook for after-change-functions.
3037 (flyspell-mode-off): Use remove-hook for after-change-functions.
3038 (flyspell-changes): Make it buffer-local.
3039 (flyspell-after-change-function): Make it non-interactive. Use push.
3040 (flyspell-post-command-hook): Check input-pending-p while processing
3041 the potentially long list of buffer changes.
3042
3043 2005-11-28 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
3044
3045 * buff-menu.el (list-buffers-noselect): Display the selected
3046 frame's buffer list, not the global one.
3047
3048 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
3049
3050 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
3051 that (list last-input-event) works as in interactive spec.
3052
3053 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
3054
3055 * loadup.el ("facemenu"): Load facemenu before font-lock, because
3056 `facemenu-keymap' needs to be defined when font-lock is loaded.
3057 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
3058
3059 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
3060
3061 * completion.el: Remove useless leading * in defcustom docstrings.
3062 (save-completions-file-name): Use ~/.emacs.d if available.
3063 (completion-standard-syntax-table): Rename from
3064 cmpl-standard-syntax-table and fold initialization into declaration,
3065 thus removing cmpl-make-standard-completion-syntax-table.
3066 (completion-lisp-syntax-table, completion-c-syntax-table)
3067 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
3068 (cmpl-saved-syntax, cmpl-saved-point): Remove.
3069 (symbol-under-point, symbol-before-point)
3070 (symbol-under-or-before-point, symbol-before-point-for-complete)
3071 (add-completions-from-c-buffer): Use with-syntax-table.
3072 (make-completion): Don't return a list of completion entries.
3073 Update callers.
3074 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
3075 (completion-initialize): Rename from initialize-completions.
3076 (completion-find-file-hook): Rename from cmpl-find-file-hook.
3077 (kill-emacs-save-completions): Collect stats here.
3078 (save-completions-to-file, load-completions-from-file):
3079 Use with-current-buffer.
3080 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
3081 into a function. Move all calls to toplevel.
3082 (completion-lisp-mode-hook): New fun.
3083 (completion-c-mode-hook, completion-setup-fortran-mode):
3084 Set the syntax-table here. Use local-set-key.
3085 (completion-saved-bindings): New var.
3086 (dynamic-completion-mode): Make it into a proper minor mode.
3087 (load-completions-from-file): Remove unused var `num-uses'.
3088
3089 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
3090 constructor if it is explicitly overridden.
3091
3092 * complete.el (PC-completion-as-file-name-predicate):
3093 Use minibuffer-completing-file-name.
3094 (partial-completion-mode): Use find-file-not-found-functions.
3095 (PC-lisp-complete-symbol): Use with-syntax-table.
3096 (PC-look-for-include-file): Remove dead setq.
3097 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
3098 (PC-complete): Use with-current-buffer.
3099
3100 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
3101 escape single quotes.
3102
3103 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
3104
3105 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
3106 of `if' whose condition always returned nil. Doc fix.
3107
3108 * buff-menu.el (Buffer-menu-revert-function): Make the selected
3109 window's buffer the current buffer around the call to
3110 `list-buffers-noselect'. This is necessary to mark that buffer
3111 with a `.' in the Buffer Menu when called from Lisp, for instance
3112 by Auto Revert Mode.
3113
3114 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
3115
3116 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
3117 attaching to it.
3118 (gdb-pre-prompt): Make sure gdb-error is reset.
3119
3120 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
3121 with a child process, detect it.
3122 (gud-speedbar-buttons): Match regexp more carefully.
3123
3124 2005-11-27 Richard M. Stallman <rms@gnu.org>
3125
3126 * mouse.el (mouse-drag-move-window-bottom):
3127 Use adjust-window-trailing-edge.
3128
3129 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
3130
3131 * simple.el (blink-matching-open): Ignore
3132 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
3133 (blink-matching-paren-on-screen): Update docstring.
3134
3135 * paren.el (show-paren-mode): No longer change
3136 `blink-matching-paren-on-screen'.
3137
3138 2005-11-27 John Paul Wallington <jpw@pobox.com>
3139
3140 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
3141 (gdb-threads-select, gdb-edit-register-value):
3142 Use `posn-set-point' instead of `mouse-set-point' because the
3143 latter is not fbound when configured without X.
3144
3145 2005-11-27 Kim F. Storm <storm@cua.dk>
3146
3147 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
3148 existing face when partially highlighting a TAB in a rectangle.
3149
3150 2005-11-26 Kim F. Storm <storm@cua.dk>
3151
3152 * ido.el (ido-mode-map): Doc fix.
3153 (ido-mode-common-map, ido-mode-file-map)
3154 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
3155 (ido-define-mode-map): Rewrite. Select one of the new maps as
3156 parent for ido-mode-map instead of building from scratch.
3157 (ido-init-mode-maps): New defun to initialize new maps.
3158 (ido-mode): Call it.
3159 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
3160 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
3161
3162 2005-11-26 John Paul Wallington <jpw@pobox.com>
3163
3164 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
3165 `mouse-set-point' because the latter is not fbound when configured
3166 without X.
3167
3168 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
3169
3170 * files.el (file-relative-name): Doc fix.
3171
3172 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
3173
3174 * progmodes/octave-inf.el (inferior-octave-startup): Force a
3175 non-empty string for secondary prompt PS2.
3176
3177 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
3178
3179 * progmodes/compile.el (compilation-setup): Fix last change.
3180
3181 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
3182
3183 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
3184 (gdb-mouse-toggle-breakpoint-margin)
3185 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
3186 Add gdb-server-prefix to keep out of command history.
3187 (gdb-edit-register-value): New function.
3188 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
3189 (gdb-info-registers-custom): Use above map.
3190
3191 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
3192
3193 * custom.el (enable-theme): Signal error if argument is not a
3194 theme. Don't recalculate a face if it's not loaded yet.
3195
3196 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
3197 the `user' theme is in effect.
3198
3199 * info.el (Info-on-current-buffer): Record actual filename in
3200 Info-current-file, instead of t, or a fake filename if a non-file
3201 buffer. Make autoload.
3202 (Info-find-node, Info-revert-find-node): No need to check for
3203 Info-current-file nil.
3204 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
3205 Info-current-file is now never `t'.
3206 (Info-fontify-node): Many simplifications due to Info-current-file
3207 always being valid. Use Info-find-file to find node filename.
3208
3209 2005-11-25 David Kastrup <dak@gnu.org>
3210
3211 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
3212 new character, then delete" in order to preserve markers.
3213
3214 2005-11-25 David Ponce <david@dponce.com>
3215
3216 * recentf.el (recentf-arrange-by-rule): Handle a special
3217 `auto-mode-alist'-like "strip suffix" rule.
3218 (recentf-build-mode-rules): Handle second level auto-mode entries.
3219
3220 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
3221
3222 * viper-keym.el (viper-ESC-key): Use different values in terminal and
3223 window modes.
3224
3225 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
3226 jde-javadoc-checker-report-mode.
3227
3228 * ediff-wind (ediff-make-wide-display): Slight simplification.
3229
3230 * ediff.el (ediff-date): Change the date of last update.
3231
3232 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
3233
3234 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
3235 Use define-minor-mode, and make it a local mode. Turn on font-lock.
3236 (hi-lock-mode): New global minor mode.
3237 (turn-on-hi-lock-if-enabled): New function.
3238 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
3239 Change arguments to regexp and face instead of a font-lock pattern.
3240 Directly set face property, instead of refontifying.
3241 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
3242 (hi-lock-find-patterns): Use line-number-at-pos.
3243
3244 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
3245 arguments for hi-lock-set-pattern.
3246 (hi-lock-unface-buffer, hi-lock-set-file-patterns): Call
3247 font-lock-fontify-buffer.
3248 (hi-lock-find-file-hook, hi-lock-current-line)
3249 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
3250
3251 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
3252 turned off.
3253
3254 * progmodes/compile.el (compilation-setup): Don't fiddle with
3255 font-lock-defaults.
3256
3257 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
3258
3259 * progmodes/gdb-ui.el (gdb-var-create-handler)
3260 (gdb-var-list-children-handler): Find values for all variable
3261 objects. gud-speedbar-buttons decides whether to display them.
3262
3263 2005-11-24 Romain Francoise <romain@orebokech.com>
3264
3265 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
3266 buffer name with a space.
3267
3268 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
3269
3270 * textmodes/org.el (org-export-plain-list-max-depth): Renamed from
3271 `org-export-local-list-max-depth'. Change default value to 3.
3272 (org-auto-renumber-ordered-lists)
3273 (org-plain-list-ordered-item-terminator): New options.
3274 (org-at-item-p, org-beginning-of-item, org-end-of-item)
3275 (org-get-indentation, org-get-string-indentation)
3276 (org-maybe-renumber-ordered-list, org-renumber-ordered-list): New
3277 functions.
3278 (org-move-item-down, org-move-item-up): New commands.
3279 (org-export-as-html): New classes for CSS support. Bug fix in
3280 regular expression detecting fixed-width regions. Respect
3281 `org-local-list-ordered-item-terminator'.
3282 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
3283 also a list item.
3284 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
3285 New item moving functions.
3286
3287 2005-11-24 Juri Linkov <juri@jurta.org>
3288
3289 * isearch.el (isearch-repeat): With empty search ring set
3290 `isearch-error' to the error string instead of signaling error
3291 with the function `error'.
3292
3293 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3294
3295 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
3296
3297 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
3298
3299 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
3300 and variable.
3301 (gdb-var-create-handler, gdb-var-list-children-handler):
3302 Don't match on "char **...".
3303 (gdb-var-update-handler): Find values for all variable objects.
3304 (gdb-info-frames-custom): Identify frames by leading "#".
3305
3306 * progmodes/gud.el (gud-speedbar-menu-items): Add
3307 gdb-speedbar-auto-raise as radio button.
3308 (gud-speedbar-buttons): Raise speedbar if requested.
3309 Don't match on "char **...".
3310 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
3311 Make it editable.
3312
3313 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
3314
3315 * info.el (Info-fontify-node): Handle the case where
3316 Info-current-file is t.
3317
3318 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
3319
3320 * simple.el (blink-matching-open): Fix off-by-one in last change.
3321
3322 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3323
3324 * term/mac-win.el: Don't change default directory.
3325
3326 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
3327
3328 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
3329 buffers correctly. (It used to throw an error in such buffers.)
3330 Make it ask for confirmation in group buffers and other Custom
3331 buffers containing more than one customization item.
3332
3333 2005-11-22 John Paul Wallington <jpw@gnu.org>
3334
3335 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
3336 property on mail and url overlays.
3337 (goto-address-at-point): Use `posn-set-point' instead of
3338 `mouse-set-point' because the latter is not fbound when configured
3339 without X.
3340
3341 2005-11-22 Lars Hansen <larsh@soem.dk>
3342
3343 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
3344 (ls-lisp-classify, ls-lisp-format): Delete call to
3345 ls-lisp-parse-symlink.
3346 (ls-lisp-handle-switches): Handle symlinks to directories as
3347 directories when ls-lisp-dirs-first in non-nil.
3348
3349 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
3350
3351 * startup.el (command-line): Make sure that loaddefs.el is handled
3352 correctly in load-history.
3353
3354 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
3355
3356 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
3357 (gdb-struct-string, gdb-array-string): New constants.
3358 (gdb-info-locals-handler): Use them.
3359 (gdb-reset): Reset gdb-var-list to nil.
3360
3361 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3362
3363 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
3364 in patterns.
3365
3366 2005-11-21 Juri Linkov <juri@jurta.org>
3367
3368 * custom.el (defcustom): Update link types in docstring.
3369
3370 2005-11-20 Martin Rudalics <rudalics@gmx.at> (tiny change)
3371
3372 * custom.el (defgroup): Add doc-string-elt info.
3373
3374 * widget.el (define-widget): Don't use declare for the doc-string-elt.
3375
3376 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3377
3378 * newcomment.el (comment-enter-backward): Fix last fix.
3379
3380 * simple.el (blink-matching-open):
3381 * paren.el (show-paren-function): Allow new paren-class info.
3382
3383 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
3384
3385 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
3386 handled automagically.
3387
3388 2005-11-20 Andreas Schwab <schwab@suse.de>
3389
3390 * descr-text.el (describe-char): When copying overlays put them
3391 over the full char description instead of just the first character
3392 of it.
3393
3394 2005-11-20 Juri Linkov <juri@jurta.org>
3395
3396 * simple.el (what-cursor-position):
3397 * descr-text.el (describe-char): Use Lisp-readable syntax
3398 for octal and hex. Reorder decimal, octal and hex values.
3399 Remove excess whitespace in the output. Use `=' in `column='
3400 like in `point=' and `Hscroll='.
3401
3402 * international/mule-cmds.el (encoded-string-description):
3403 Use Lisp-readable syntax for hex.
3404
3405 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
3406
3407 * newcomment.el (comment-enter-backward): Handle the case where the
3408 comment is closed by EOB.
3409
3410 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
3411
3412 * longlines.el (longlines-before-revert-hook)
3413 (longlines-after-revert-hook): New functions.
3414 (longlines-mode): Turn off longlines temporarily when reverting.
3415 Add a message-setup-hook.
3416 (longlines-decode-buffer): New function.
3417 (longlines-wrap-line): Preserve marker positions.
3418
3419 2005-11-19 Andreas Schwab <schwab@suse.de>
3420
3421 * emacs-lisp/shadow.el: Handle compressed files.
3422
3423 2005-11-19 Romain Francoise <romain@orebokech.com>
3424
3425 * net/browse-url.el (browse-url-default-browser): Signal an error
3426 if no usable browser can be found, rather than try to load w3.
3427
3428 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
3429
3430 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
3431 replacing existing properties.
3432 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
3433 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
3434 tty specs.
3435 (rcirc-server-prefix, rcirc-server): New faces.
3436 (rcirc-url-regexp): Generate with rx macro.
3437 (rcirc-last-server-message-time): New variable.
3438 (rcirc-filter): Record time of last message.
3439 (rcirc-keepalive): Kill processes that did not send a message
3440 since the last ping.
3441 (rcirc-mode): Give rcirc-topic a local binding here.
3442
3443 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org> (tiny change)
3444
3445 * subr.el (read-passwd): Fontify the prompt as we do with other
3446 prompts.
3447
3448 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
3449
3450 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
3451 binding buffer-read-only to nil.
3452
3453 2005-11-19 Eli Zaretskii <eliz@gnu.org>
3454
3455 * complete.el (partial-completion-mode):
3456 Mention completion-auto-help in the doc string.
3457
3458 * man.el (Man-highlight-references): Doc fix. Reformat code in a
3459 more Lisp-ish way.
3460
3461 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
3462
3463 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
3464 digits, not 8, to avoid misalignment for files larger than 100MB.
3465
3466 2005-11-19 Eli Zaretskii <eliz@gnu.org>
3467
3468 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
3469 Mention "keyboard shortcuts" in the help text.
3470
3471 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3472
3473 * startup.el (fancy-splash-default-action): Discard only
3474 mouse-down and succeeding mouse-up events in the splash screen
3475 window so that drag-n-drop event can be processed.
3476
3477 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
3478
3479 * longlines.el (longlines-mode): Add hacks for mail-mode and
3480 message-mode.
3481
3482 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
3483
3484 * textmodes/org.el (org-table-sort-lines): New command.
3485 (org-tbl-menu): Add entry for `org-table-sort-lines'.
3486 (org-add-file): Command removed, use `org-agenda-file-to-front'
3487 instead.
3488 (org-export-icalendar): Use `org-icalendar-combined-name'.
3489 (org-cycle-agenda-files, org-agenda-file-to-end)
3490 (org-agenda-file-to-front): New commands.
3491 (org-table-tab-jumps-over-hlines,org-export-html-style): New
3492 options.
3493 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
3494 (org-at-table.el-p, org-set-autofill-regexps,org-html-protect):
3495 New functions.
3496 (org-fill-paragraph): Call `org-table-align' in tables.
3497 (org-mode): Call `org-set-autofill-regexps'.
3498 (org-export-as-html): Support for local handformatted lists.
3499 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
3500 (org-export-local-list-max-depth): New option.
3501 (org-html-expand): Use `org-html-protect'.
3502
3503 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
3504
3505 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
3506 to "p".
3507 (gdb): Move definition of gud-pp to...
3508
3509 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
3510 speedbar.
3511 (gdb-find-watch-expression): New function.
3512
3513 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
3514
3515 * faces.el (face-attribute, set-face-attribute): Mention existence
3516 of `:ignore-defface' setting in docstring.
3517
3518 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3519
3520 * simple.el (completion-setup-function): Fix last change.
3521
3522 2005-11-17 John Paul Wallington <jpw@pobox.com>
3523
3524 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
3525 Use `posn-set-point' instead of `mouse-set-point' because the
3526 latter is not fbound when configured without X.
3527
3528 * comint.el (comint-insert-input): Likewise.
3529
3530 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
3531
3532 * simple.el (hard-newline): New variable.
3533 (sendmail-user-agent-compose, next-line): Use it.
3534
3535 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
3536 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
3537 (mail-mail-reply-to, mail-mail-followup-to)
3538 (mail-position-on-field, mail-signature, mail-yank-original)
3539 (mail-attach-file): Likewise.
3540
3541 * mail/mailheader.el (mail-header-format)
3542 (mail-header-format-function): Likewise.
3543
3544 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
3545
3546 2005-11-17 Juri Linkov <juri@jurta.org>
3547
3548 * font-lock.el (font-lock-faces): Rename this defgroup from
3549 `font-lock-highlighting-faces'.
3550 (font-lock-comment-face, font-lock-comment-delimiter-face)
3551 (font-lock-string-face, font-lock-doc-face)
3552 (font-lock-keyword-face, font-lock-builtin-face)
3553 (font-lock-function-name-face, font-lock-variable-name-face)
3554 (font-lock-type-face, font-lock-constant-face)
3555 (font-lock-warning-face, font-lock-negation-char-face)
3556 (font-lock-preprocessor-face)
3557 (font-lock-regexp-grouping-backslash)
3558 (font-lock-regexp-grouping-construct): Rename :group from
3559 `font-lock-highlighting-faces' to `font-lock-faces'.
3560
3561 * cus-edit.el (lisp, c, tex):
3562 * progmodes/ada-mode.el (ada):
3563 * progmodes/asm-mode.el (asm):
3564 * progmodes/cperl-mode.el (cperl-faces):
3565 * progmodes/cpp.el (cpp):
3566 * progmodes/dcl-mode.el (dcl):
3567 * progmodes/f90.el (f90):
3568 * progmodes/fortran.el (fortran):
3569 * progmodes/icon.el (icon):
3570 * progmodes/idlwave.el (idlwave-misc):
3571 * progmodes/m4-mode.el (m4):
3572 * progmodes/make-mode.el (makefile):
3573 * progmodes/meta-mode.el (meta-font):
3574 * progmodes/modula2.el (modula2):
3575 * progmodes/octave-mod.el (octave):
3576 * progmodes/pascal.el (pascal):
3577 * progmodes/perl-mode.el (perl):
3578 * progmodes/prolog.el (prolog):
3579 * progmodes/ps-mode.el (PostScript-edit):
3580 * progmodes/scheme.el (scheme):
3581 * progmodes/sh-script.el (sh-script):
3582 * progmodes/simula.el (simula):
3583 * progmodes/tcl.el (tcl):
3584 * textmodes/nroff-mode.el (nroff):
3585 * textmodes/reftex-vars.el (reftex-fontification-configurations):
3586 * textmodes/sgml-mode.el (sgml):
3587 * textmodes/texinfo.el (texinfo):
3588 Add :link (custom-group-link font-lock-faces) to defgroup.
3589
3590 * hi-lock.el (hi-lock): Rename this defgroup from
3591 `hi-lock-interactive-text-highlighting'. Change parent group from
3592 `faces' to `font-lock'. Add link to the manual.
3593 (hi-lock-mode, hi-lock-file-patterns-range)
3594 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
3595 `hi-lock-interactive-text-highlighting' to `hi-lock'.
3596 (hi-lock-faces): Add :group `faces'.
3597
3598 * cus-edit.el (custom-variable-prompt): Clarify the code.
3599
3600 * faces.el (face-read-string): Set the default value arg of
3601 completing-read.
3602
3603 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
3604
3605 * rfn-eshadow.el (file-name-shadow-properties)
3606 (file-name-shadow-tty-properties, file-name-shadow-mode):
3607 Remove autoloads, because the file is now preloaded.
3608
3609 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3610
3611 * printing.el (easy-menu-intern): Don't define.
3612 (pr-get-symbol): Use easy-menu-intern only if defined.
3613
3614 * simple.el (blink-matching-open): Simplify a bit.
3615 (completion-setup-function): Fix the case of partial-completion-mode
3616 when the minibuffer's contents start with "-".
3617 Obey completion-base-size-function even when
3618 minibuffer-completing-file-name is non-nil.
3619
3620 2005-11-16 Richard M. Stallman <rms@gnu.org>
3621
3622 * net/eudcb-ph.el (eudc-ph-open-session):
3623 Use set-process-query-on-exit-flag.
3624
3625 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
3626
3627 * international/ucs-tables.el (ucs-set-table-for-input):
3628 Use make-local-variable, not make-variable-buffer-local.
3629
3630 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
3631 Improve warning message text.
3632
3633 * savehist.el (savehist-save-hook): Add :group.
3634
3635 * menu-bar.el (menu-bar-help-menu):
3636 Rename Find Extra Packages to External Packages.
3637
3638 * cus-edit.el (Custom-reset-standard): Verify that
3639 :custom-standard-value prop exists before calling it.
3640
3641 * apropos.el (apropos-calc-scores): Use apropos-pattern.
3642
3643 2005-11-16 Martin Rudalics <rudalics@gmx.at> (tiny change)
3644
3645 * wid-edit.el (color): Enclose %t in %{...%}.
3646
3647 * cus-edit.el (face): Enclose %t in %{...%}.
3648
3649 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
3650
3651 * savehist.el (savehist-mode-hook): Re-add the var.
3652 (savehist-mode): Use it.
3653
3654 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3655
3656 * textmodes/flyspell.el: Fix commenting convention.
3657 Remove unnecessary leading * in custom docstrings.
3658 (flyspell-emacs): Remove unused var.
3659 (flyspell-delete-region-overlays): Use remove-overlays.
3660 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
3661 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
3662 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
3663 (flyspell-debug-signal-word-checked): Use with-current-buffer.
3664 (make-flyspell-overlay): Don't locally reuse a global name.
3665 (flyspell-highlight-incorrect-region)
3666 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
3667 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
3668 (flyspell-notify-misspell): Remove unused args `start' and `end'.
3669 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
3670 Wrap calls to accept-process-output inside with-local-quit since it's
3671 often called from a post-command-hook.
3672 (flyspell-correct-word, flyspell-auto-correct-word):
3673 Use ispell-send-string.
3674 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
3675
3676 * calendar/diary-lib.el (diary-list-entries): Also hide the
3677 terminating newline.
3678
3679 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
3680
3681 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
3682 window-system, to allow fonts on tty.
3683
3684 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
3685
3686 * progmodes/gud.el (gud-speedbar-item-info): New function.
3687 (gud-install-speedbar-variables): Use it to display data type
3688 of watch expression as a tooltip in speedbar.
3689
3690 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
3691
3692 * font-core.el (global-font-lock-mode): Add :version keyword,
3693 because default was changed.
3694
3695 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
3696
3697 * startup.el (command-line): Use `custom-reevaluate-setting' for
3698 `file-name-shadow-mode'.
3699
3700 * loadup.el: Preload rfn-eshadow.
3701
3702 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
3703 Add :version keyword.
3704 (file-name-shadow-properties, file-name-shadow-tty-properties)
3705 (file-name-shadow): Add :version keyword.
3706
3707 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
3708 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
3709 in the custom-group property of the symbol frames and the fringe
3710 group got no link to its parent group frames.
3711 Doc fix.
3712
3713 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
3714
3715 * progmodes/gud.el (gud-stop-subjob): New function.
3716 (gud-menu-map, gud-tool-bar-map): Use it.
3717
3718 2005-11-16 Kim F. Storm <storm@cua.dk>
3719
3720 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
3721 than kill it.
3722 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
3723 to a more useful/logical place.
3724
3725 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
3726
3727 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
3728 go buttons complementary.
3729
3730 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
3731
3732 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
3733 (rfn-eshadow-sifn-equal): New function.
3734 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
3735
3736 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
3737
3738 * viper-utils (viper-non-word-characters-reformed-vi): Quote `-' in
3739 string.
3740
3741 * viper.el (viper-emacs-state-mode-list): Ensure that
3742 rcirc-mode buffers come up in Emacs state.
3743
3744 * ediff-util (ediff-make-temp-file): Use proper file-name-handler
3745 operation.
3746
3747 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3748
3749 * term.el (term-termcap-format): Fix typos.
3750 (term-down): Fix the negative argument case.
3751
3752 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
3753
3754 * progmodes/gdb-ui.el: Remove face-alias left over from change on
3755 2005-08-15.
3756 (gdb-ann3): New command gud-go.
3757 (menu): Accomodate gdb-mi.el.
3758 (gdb-assembler-custom): Make buffer of selected window current
3759 so that set-window-point works.
3760
3761 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
3762 buttons and include new ones.
3763
3764 2005-11-16 Kim F. Storm <storm@cua.dk>
3765
3766 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
3767 (gud-menu-map): Use it.
3768
3769 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
3770
3771 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
3772 that works correctly for Custom and that does not override a user
3773 who disables it.
3774
3775 * help-mode.el (help-make-xrefs, help-xref-on-pp)
3776 (help-xref-interned, help-follow): Make hyperlinks for variables
3777 that are unbound, but have a non-nil variable-documentation property.
3778
3779 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
3780 mode hook. (It conflicted with defcustoms for some mode hooks.)
3781 Use the `variable-documentation' property to give the mode hook a
3782 docstring and expand that docstring.
3783
3784 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
3785
3786 * savehist.el (savehist-mode): Don't bother with
3787 `custom-set-minor-mode'.
3788 (savehist-coding-system): Check XEmacs version.
3789 (history-length): Declare also at run time.
3790 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
3791 Don't set the customize state.
3792 (savehist-minibuffer-hook): Special case for when
3793 minibuffer-history-variable is equal to t.
3794
3795 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
3796
3797 * files.el (write-file): Refresh VC status.
3798
3799 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
3800 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
3801 than fundamental-mode to see if the mode was set.
3802
3803 2005-11-14 Romain Francoise <romain@orebokech.com>
3804
3805 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
3806 dummy function in `eval-when-compile' to avoid compiler warning.
3807 Require `man' at compile time.
3808
3809 2005-11-14 Jay Belanger <belanger@truman.edu>
3810
3811 * calc-alg.el (calcFunc-write-out-power): Rename it to
3812 calcFunc-powerexpand.
3813 (math-write-out-power): Rename it to math-powerexpand; have it
3814 handle negative exponents.
3815 (calc-writeoutpower): Rename it to calc-powerexpand.
3816
3817 * calc-ext.el: Change calcFunc-writeoutpower and
3818 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
3819 autoloads.
3820 Add calcFunc-ldiv to autoloads.
3821
3822 * calc-arith.el (calcFunc-ldiv): New function.
3823
3824 * calc.el (calc-left-divide): New function.
3825
3826 2005-11-14 Juri Linkov <juri@jurta.org>
3827
3828 * cus-edit.el (custom-variable-prompt): Set the default value arg
3829 of completing-read.
3830
3831 * cus-dep.el (custom-make-dependencies): Reverse the list of
3832 found dependencies.
3833
3834 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
3835
3836 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
3837 Highlighting" entry, it is on by default now.
3838 (menu-bar-options-save): Do not save global-font-lock-mode.
3839
3840 2005-11-13 Richard M. Stallman <rms@gnu.org>
3841
3842 * textmodes/flyspell.el (flyspell-large-region):
3843 Call flyspell-accept-buffer-local-defs.
3844
3845 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
3846
3847 * textmodes/flyspell.el (flyspell-notify-misspell):
3848 Fix misspelling of "Misspelling".
3849 (flyspell-process-localwords): New function.
3850 (flyspell-large-region): Call flyspell-process-localwords and
3851 flyspell-delete-region-overlays.
3852 (flyspell-delete-region-overlays): New function.
3853 (flyspell-delete-all-overlays): Call that.
3854
3855 2005-11-13 Richard M. Stallman <rms@gnu.org>
3856
3857 * help.el (help-for-help-internal): Improve doc of C-h a.
3858 (describe-key): Improve prompt; doc fix.
3859
3860 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
3861
3862 * vc-svn.el (vc-svn-registered): Catch all errors.
3863
3864 * cus-dep.el (custom-make-dependencies): Typo.
3865
3866 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
3867
3868 * net/tramp-util.el (top): Fix compilation warning.
3869
3870 2005-11-13 Kim F. Storm <storm@cua.dk>
3871
3872 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
3873
3874 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
3875
3876 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
3877 (gud-speedbar-buttons): Match on "const char *" too.
3878
3879 * progmodes/gdb-ui.el (gdb-var-create-handler)
3880 (gdb-var-list-children-handler): Match on "const char *" too.
3881 (gdb-var-evaluate-expression-handler): Match on empty string.
3882 (gdb-var-update-handler): Only call
3883 gdb-var-evaluate-expression-handler when required.
3884
3885 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
3886
3887 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
3888 selected window. This still doesn't work for speedbar.
3889 (gud-speedbar-buttons): Handle string expressions properly.
3890
3891 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
3892 (gdb-var-create-handler): Handle string expressions properly.
3893 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
3894 Handle string expressions properly. Move "type" field into regexp.
3895
3896 2005-11-12 Karl Fogel <kfogel@red-bean.com>
3897
3898 * bookmark.el (bookmark-maybe-message): New function to reduce
3899 code duplication: invokes `message' iff baud-rate is high enough.
3900 (bookmark-write-file): Use above instead of an inline conditional.
3901 (bookmark-load): Same.
3902
3903 2005-11-12 Karl Fogel <kfogel@red-bean.com>
3904
3905 * bookmark.el (bookmark-write-file): Don't visit the destination
3906 file, just write the data to it using write-region. This is
3907 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
3908 change to avoid visiting the file in the first place.
3909
3910 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
3911
3912 * hi-lock.el (hi-lock-mode): Set the default value of
3913 font-lock-defaults.
3914
3915 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
3916
3917 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
3918 arg to `file-attributes'.
3919 (find-lisp-format): The UID and GID can now be strings.
3920
3921 2005-11-12 Kim F. Storm <storm@cua.dk>
3922
3923 * help.el (help-map): Bind C-h d to apropos-documentation.
3924
3925 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
3926 when point is at end-of-buffer.
3927
3928 * apropos.el (apropos-match-face): Doc fix.
3929 (apropos-sort-by-scores): Add new choice `verbose'.
3930 (apropos-documentation-sort-by-scores): New defcustom.
3931 (apropos-pattern): Now contains the pattern entered by the user.
3932 (apropos-pattern-quoted): New defvar.
3933 (apropos-regexp): New defvar, containing the regexp corresponding
3934 to apropos-pattern.
3935 (apropos-all-words-regexp): Rename from apropos-all-regexp.
3936 (apropos-read-pattern): New defun. Use it to read pattern arg in
3937 interactive calls; returns list of words for a word list, and
3938 string for a regexp.
3939 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
3940 parses a list of words or regexp as returned by apropos-read-pattern.
3941 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
3942 (apropos-score-doc): Return a very high score if the string
3943 entered by the user matches literally.
3944 (apropos-variable): Doc fix. Use apropos-read-pattern.
3945 (apropos-command): Doc fix. Use apropos-read-pattern and
3946 apropos-parse-pattern. Call apropos-print with nosubst=t.
3947 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
3948 apropos-parse-pattern.
3949 (apropos-documentation): Doc fix. Use apropos-read-pattern and
3950 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
3951 apropos-documentation-sort-by-scores. Call apropos-print with
3952 nosubst=t.
3953 (apropos-documentation-internal): Pass doc string through
3954 substitute-key-definition before adding text properties.
3955 Highlight substring matching literal user input if possible.
3956 (apropos-documentation-check-doc-file): Remove locals beg and end.
3957 Fix calculation of score (as added twice). Pass doc string through
3958 substitute-key-definition before adding text properties.
3959 (apropos-documentation-check-elc-file): Pass doc string through
3960 substitute-key-definition before adding text properties.
3961 Highlight substring matching literal user input if possible.
3962 (apropos-print): Add new arg NOSUBST; if set, command and variable
3963 doc strings have already been passed through substitute-key-definition.
3964 Add code to handle apropos-accumulator items without score element
3965 for backwards compatibility (e.g. with woman package).
3966 Only show scores if apropos-sort-by-scores is `verbose'.
3967
3968 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3969
3970 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
3971 Add jka-compr-load-suffixes to load-suffixes.
3972
3973 * jka-compr.el: Require jka-cmpr-hook.
3974 (jka-compr-info-compress-message, jka-compr-info-compress-program)
3975 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
3976 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
3977 (jka-compr-info-can-append, jka-compr-info-strip-extension)
3978 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
3979 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
3980 (jka-compr-uninstall): Remove entries from
3981 jka-compr-added-to-file-coding-system-alist after they are used.
3982 (jka-compr-error): Remove unused var `curbuf'.
3983 (jka-compr-file-local-copy): Remove unused var `notfound'.
3984
3985 2005-11-10 Romain Francoise <romain@orebokech.com>
3986
3987 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
3988
3989 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
3990
3991 * progmodes/gud.el (gud-menu-map): Move parentheses.
3992 (gdb): New command gud-pv.
3993
3994 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
3995
3996 * tar-mode.el: Remove spurious or unnecessary leading stars
3997 in docstrings.
3998 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
3999 (tar-parse-octal-integer-safe): Use mapc.
4000 (tar-header-block-summarize): Remove unused var `ck'.
4001 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
4002 cleared before. Obey default-enable-multibyte-characters.
4003 Use mapconcat. Simplify setting of tar-header-offset.
4004 (tar-mode-map): Move initialization inside delcaration.
4005 (tar-flag-deleted): Use `abs'.
4006 (tar-expunge-internal): Remove unused var `line'.
4007 (tar-expunge-internal): Don't hardcode point-min==1.
4008 (tar-expunge): Widen while doing set-buffer-multibyte.
4009 (tar-rename-entry): Use file-name-coding-system.
4010 (tar-alter-one-field): Don't hardcode point-min==1.
4011 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
4012 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
4013
4014 2005-11-10 Masatake YAMATO <jet@gyve.org>
4015
4016 * add-log.el (add-log-current-defun): Handle class::method
4017 notation of c++. Fix incorrect comment.
4018
4019 2005-11-10 Alan Mackenzie <acm@muc.de>
4020
4021 * help-fns.el (describe-variable): Make C-h v work when a variable
4022 has variable documentation yet is unbound.
4023
4024 2005-11-10 Masatake YAMATO <jet@gyve.org>
4025
4026 * man.el (Man-highlight-references): Set an empty
4027 string to `Man-arguments' if it is nil.
4028 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
4029
4030 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4031
4032 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
4033 commenting conventions.
4034
4035 * cus-dep.el (custom-make-dependencies): Simplify.
4036 Better follow the commenting conventions.
4037
4038 2005-11-09 Richard M. Stallman <rms@gnu.org>
4039
4040 * apropos.el (apropos-pattern): Rename from apropos-regexp.
4041 (apropos-orig-pattern): Rename from apropos-orig-regexp.
4042 All uses changed.
4043 (apropos-rewrite-regexp): Doc fix.
4044 (apropos-variable, apropos-command, apropos, apropos-value):
4045 Change prompt; carry through the argument renaming.
4046
4047 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
4048
4049 * find-lisp.el: Require dired.
4050 (find-lisp-find-dired-internal): Do not call
4051 `abbreviate-file-name' on DIR.
4052
4053 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
4054
4055 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
4056
4057 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
4058
4059 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
4060 when using the speedbar.
4061 (gdb): New command gud-pp.
4062 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
4063
4064 2005-11-09 Juri Linkov <juri@jurta.org>
4065
4066 * replace.el (occur-excluded-properties): New defcustom.
4067 (occur-1, occur-engine, occur-accumulate-lines): Use it.
4068
4069 2005-11-08 Jay Belanger <belanger@truman.edu>
4070
4071 * calc/calc-units.el (math-convert-units): Replace any composite
4072 unit by its definition.
4073
4074 2005-11-08 Lars Hansen <larsh@soem.dk>
4075
4076 * emacs-lisp/autoload.el (update-directory-autoloads):
4077 Add obsolete function alias.
4078
4079 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
4080
4081 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
4082 comment-indent-function.
4083 (lisp-comment-indent): Replace by an alias for comment-indent-default.
4084
4085 * reveal.el (reveal-post-command): Rework the handling of
4086 reveal-open-spots, so as to be more reliable. There were several
4087 tricky corner cases where an open spot might be lost, or where
4088 a closed spot might end up on the list of open spots.
4089 Only reveal text that's ellipsised.
4090
4091 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
4092
4093 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
4094
4095 2005-11-07 John Paul Wallington <jpw@gnu.org>
4096
4097 * ibuffer.el (ibuffer): Search iconified frames too when
4098 getting Ibuffer buffer's window.
4099
4100 2005-11-06 Richard M. Stallman <rms@gnu.org>
4101
4102 * progmodes/compile.el (compilation-internal-error-properties):
4103 save-excursion around the computation of MARKER.
4104
4105 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
4106
4107 * textmodes/flyspell.el (flyspell-external-point-words):
4108 flyspell-get-word returns a list, not just a string.
4109
4110 2005-11-06 John Paul Wallington <jpw@pobox.com>
4111
4112 * ibuffer.el (ibuffer): Search all visible frames when getting
4113 Ibuffer buffer's window.
4114
4115 2005-11-07 Masatake YAMATO <jet@gyve.org>
4116
4117 * man.el (Man-reference-regexp): Accept spaces between
4118 `Man-name-regexp' and `Man-section-regexp'.
4119 (Man-apropos-regexp): New variable.
4120 (Man-abstract-xref-man-page): Use value for `Man-target-string'
4121 if available.
4122 (Man-highlight-references, Man-highlight-references0):
4123 Handle the case when `Man-arguments' includes "-k".
4124 (Man-highlight-references0): Rename the argument `TARGET-POS' to
4125 `TARGET'. `TARGET' can be a number, function or nil.
4126
4127 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
4128
4129 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
4130 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
4131 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
4132 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
4133 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
4134 (gdb-send-item): Use buffer-local-value and simplify.
4135
4136 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
4137
4138 * startup.el (command-line): Use `custom-reevaluate-setting' for
4139 `global-font-lock-mode'.
4140
4141 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
4142 by default, except in batch mode or when the -D option is given.
4143
4144 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
4145 specified keyword args on to `define-minor-mode'. Update docstring.
4146
4147 2005-11-05 Romain Francoise <romain@orebokech.com>
4148
4149 * replace.el (occur-engine): Add marker at end of line, too.
4150
4151 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
4152
4153 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
4154 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
4155 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
4156 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
4157 argument to all these routines, so the passphrase can be managed
4158 externally and passed in to the system.
4159 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
4160 pgg-add-passphrase-to-cache function.
4161
4162 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
4163 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
4164 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
4165 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
4166 argument to all these routines, so the passphrase can be managed
4167 externally and passed in to the system.
4168 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
4169 function.
4170
4171 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
4172
4173 * font-lock.el: Don't deal with font-lock-face-attributes here,
4174 move the code ...
4175
4176 * startup.el (command-line): ... here. Use face-spec-set instead
4177 of custom-declare-face.
4178
4179 * faces.el (face-spec-set): Reset the face if spec is not nil.
4180
4181 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
4182
4183 * newcomment.el (comment-region-internal): Box more tightly in the
4184 common case where there's no TAB in the boxed text.
4185
4186 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4187
4188 * info.el (info-tool-bar-map): Use images prev-node, next-node and
4189 up-node.
4190
4191 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
4192
4193 * newsticker.el: Commentary updated. Code formatting changed.
4194 (newsticker-version): Change to "1.9".
4195 (newsticker, newsticker-feed): Doc fix.
4196 (newsticker-url-list): Doc fix. Add option "Weekly".
4197 (newsticker-retrieval-interval): Add option "Weekly".
4198 (newsticker-headline-processing): Doc fix.
4199 (newsticker-auto-mark-filter): Remove.
4200 (newsticker-auto-mark-filter-list): New.
4201 (newsticker-layout, newsticker-sort-method): Doc fix.
4202 (newsticker-hide-old-items-in-newsticker-buffer)
4203 (newsticker-heading-format, newsticker-item-format)
4204 (newsticker-desc-format): Doc fix.
4205 (newsticker-show-all-rss-elements): Remove.
4206 (newsticker-show-all-news-elements): New.
4207 (newsticker-faces, newsticker-ticker): Doc fix.
4208 (remove-from-invisibility-spec): Code formatting.
4209 (newsticker--process-ids): New.
4210 (newsticker-mode): Doc fix.
4211 (newsticker-mode): Change mode-line-format.
4212 (newsticker-start): Remove debug output.
4213 (newsticker-start-ticker): Doc fix. Add Autoload cookie.
4214 (newsticker-w3m-show-inline-images): Code formatting.
4215 (newsticker-next-item): Call `force-mode-line-update'.
4216 (newsticker-previous-item): Call `force-mode-line-update'.
4217 (newsticker-next-feed): Call `force-mode-line-update'.
4218 (newsticker-previous-feed): Call `force-mode-line-update'.
4219 (newsticker-mark-all-items-at-point-as-read): Code formatting.
4220 (newsticker-show-old-items): Do not show descs.
4221 (newsticker-hide-entry): Hide too much.
4222 (newsticker-hide-entry, newsticker-show-entry)
4223 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
4224 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
4225 (newsticker-toggle-auto-narrow-to-item): Code formatting.
4226 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
4227 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
4228 (newsticker-get-news): Call `force-mode-line-update'.
4229 Collect process ids.
4230 (newsticker--sentinel): Change coding system handling.
4231 Move image retrieval to new functions newsticker--get-logo-url-*.
4232 Move feed parsing to new functions newsticker--parse-*.
4233 Update list of process ids.
4234 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
4235 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
4236 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
4237 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
4238 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
4239 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
4240 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
4241 (newsticker--decode-coding-string): Remove.
4242 (newsticker--decode-numeric-entities): Check input. Format code.
4243 (newsticker--remove-whitespace): Check input.
4244 (newsticker--do-forget-preformatted): Doc fix.
4245 (newsticker--decode-rfc822-date): Allow for missing time.
4246 (newsticker--update-process-ids): New.
4247 (newsticker--image-sentinel): Change comment.
4248 (newsticker--image-read): Change error message.
4249 (newsticker--imenu-goto): Doc fix. Show headline title.
4250 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
4251 (newsticker--buffer-do-insert-text): Clean whitespace in
4252 html-rendered headline title. Code formatting.
4253 Call `newsticker--buffer-print-extra-elements'.
4254 (newsticker--buffer-print-extra-element): Remove.
4255 (newsticker--buffer-print-extra-elements): New.
4256 (newsticker--buffer-do-print-extra-element): New.
4257 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
4258 large sizes.
4259 (newsticker--run-auto-mark-filter)
4260 (newsticker--do-run-auto-mark-filter):
4261 Use `newsticker-auto-mark-filter-list'.
4262
4263 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
4264
4265 * net/rcirc.el: Use split-string OMIT-NULLS argument.
4266 (rcirc-print): Force redisplay before running hooks. Do long
4267 buffer truncation after making new text read-only. Deal with nil
4268 text when decoding strings. If TARGET is nil, use either the
4269 currently selected buffer, if it is an rcirc buffer and of the
4270 same process or the process buffer.
4271 (rcirc-mode): Remove header-line. Recompute short buffer names.
4272 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
4273 (rcirc-short-buffer-name): Add variable.
4274 (rcirc-kill-buffer-hook): Recompute short buffer names.
4275 Remove nick from private channel.
4276 (rcirc-send-input): Send command text to current-buffer.
4277 Don't clear overlay arrow here.
4278 (rcirc-short-buffer-name): Return a short buffer name.
4279 (rcirc-update-short-buffer-names, rcirc-abbreviate)
4280 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
4281 buffer-name abbreviations.
4282 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
4283 Do not touch nick-table when killing a parted channel.
4284 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
4285 Clear arrow from current buffer if it is now hidden.
4286 (rcirc-current-buffer): Add variable.
4287 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
4288 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
4289 Remove -face from names.
4290 (rcirc-update-activity-string): Print "DND" when globally ignoring
4291 activity.
4292 (rcirc-ignore-buffer-activity-flag): Rename from
4293 rcirc-ignore-channel-activity.
4294 (rcirc-ignore-all-activity-flag): Doc fix.
4295 (rcirc-channels): Remove variable.
4296 (rcirc-kill-buffer-hook):
4297 (rcirc-get-buffer-create): Add nick to private channel.
4298 (rcirc-multiline-edit-submit): Remove tabs.
4299 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
4300 folded.
4301 (rcirc-remove-nick-channel): Bug fix.
4302 (rcirc-toggle-ignore-buffer-activity): Rename from
4303 rcirc-toggle-ignore-channel-activity.
4304 (rcirc-record-activity): Add buffers to the front of the list.
4305 (rcirc-update-activity): Remove killed buffers from list.
4306 (rcirc-process-server-response-1): Remove last argument if it is
4307 null before calling handler.
4308 (rcirc): Add "rcirc" defcustom prefix.
4309 (rcirc-prompt): Simplify default prompt.
4310 Use custom-initialize-default.
4311 (rcirc-private-chats): Remove variable.
4312 (rcirc-prompt): Change initialization.
4313 (rcirc-version): Remove function.
4314 (rcirc-id-string): Add constant.
4315 (rcirc-last-buffer): Remove variable.
4316 (rcirc-buffer-alist): Add variable.
4317 (rcirc-connect): Update variable setup.
4318 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
4319 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
4320 default.
4321 (rcirc-handler-generic): Trigger activity.
4322 (rcirc-send-message): Create the buffor of the target.
4323 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
4324 (rcirc-get-buffer): Just return nil if there is no matching buffer.
4325 (rcirc-multiline-edit-cancel): Remove function.
4326 (rcirc-set-last-buffer): Remove function.
4327 (rcirc-get-any-buffer): Add function.
4328 (rcirc-join-channels): Don't print /join text.
4329 (rcirc-toggle-ignore-channel-activity): Add and update echo area
4330 messages.
4331 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
4332 (rcirc-handler-NOTICE): Recognize CTCP responses.
4333 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
4334 constructing TOPIC string for buffers we are not JOINed.
4335 (rcirc-handler-CTCP-response): Add handler.
4336 (rcirc-multiline-edit-submit): Restore the window-configuration
4337 before adjusting point.
4338 (rcirc): Add customization group.
4339 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
4340 (rcirc-user-full-name, rcirc-startup-channels-alist)
4341 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
4342 (rcirc-ignore-all-activity-flag, rcirc-time-format)
4343 (rcirc-input-ring-size, rcirc-read-only-flag)
4344 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
4345 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
4346 Change defvar to defcustom.
4347 (rcirc-update-prompt): Add optional ALL arg, which will update
4348 prompts in all rcirc buffers. Regexp quote replacement text.
4349 (rcirc-fill-column): Accept frame-width as a value.
4350 (rcirc-set-changed): Add function.
4351 (rcirc-next-active-buffer): Write more meaningful messages.
4352 (rcirc-faces): Add customization group.
4353 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
4354 (rcirc-nick-in-message-face, rcirc-prompt-face)
4355 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
4356 (with-rcirc-process-buffer): Move before first usage.
4357 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
4358 (rcirc-debug-flag): Rename from `rcirc-log-p'.
4359 (rcirc-debug): Rename from `rcirc-log'.
4360 (rcirc-format-response-string): Do not print `-' chars for a
4361 NOTICE with no sender. Simplify output of server responses.
4362
4363 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
4364
4365 (rcirc-browse-url-map, rcirc-browse-url-at-point)
4366 (rcirc-browse-url-at-mouse, rcirc-mangle-text): Make urls
4367 mouse and RET clickable.
4368
4369 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
4370
4371 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
4372
4373 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
4374
4375 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
4376 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
4377 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
4378 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
4379 argument to all these routines, so the passphrase can be managed
4380 externally and passed in to the system.
4381 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
4382 pgg-add-passphrase-to-cache function.
4383
4384 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
4385 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
4386 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
4387 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
4388 argument to all these routines, so the passphrase can be managed
4389 externally and passed in to the system.
4390 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
4391 function.
4392
4393 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
4394
4395 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
4396 from goto-address-url-regexp.
4397
4398 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
4399
4400 * textmodes/org.el (org-read-date, org-goto-calendar)
4401 (org-recenter-calendar, org-agenda-goto-calendar):
4402 Temporarily clear `calendar-move-hook'.
4403
4404 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
4405
4406 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
4407 merging.
4408
4409 * ediff-util.el (ediff-previous-difference): Don't skip regions that
4410 have merge clashes.
4411
4412 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4413
4414 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
4415 Undo previous change.
4416
4417 * startup.el (command-line): Use `custom-reevaluate-setting' for
4418 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
4419 tty-register-default-colors on Mac.
4420
4421 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
4422
4423 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
4424 (gdb-buffer-type): Make it automatically buffer local...
4425 (gdb-get-create-buffer): ...and set it accordingly.
4426 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
4427 actually work.
4428
4429 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
4430
4431 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
4432 not red.
4433
4434 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
4435
4436 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
4437 case GUD buffer is not visible.
4438 (gdb-goto-breakpoint): Try to force display in source buffer.
4439 (gdb-frame-gdb-buffer): Copy other similar functions.
4440 (gdb-restore-windows): Don't display source if not asked for.
4441 (gdb-assembler-buffer-name): Don't capitalise.
4442
4443 2005-11-03 Richard M. Stallman <rms@gnu.org>
4444
4445 * wid-edit.el (key-sequence): New widget type.
4446
4447 * simple.el (set-mark-command-repeat-pop): New variable.
4448 (set-mark-command): Only interpret plan C-@ after a pop as a pop
4449 if set-mark-command-repeat-pop is true.
4450
4451 * info.el (Info-fontify-node): Don't display extra "see" if there
4452 already is one here.
4453
4454 * mouse.el: Fix special handling of DEL after dragging a region:
4455 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
4456 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
4457
4458 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
4459
4460 * textmodes/ispell.el (ispell-command-loop): Change `i' description
4461 not to assume it pertains to an affix.
4462
4463 * textmodes/flyspell.el (flyspell-post-command-hook):
4464 Bind deactivate-mark to prevent deactivation.
4465
4466 2005-11-03 Lars Hansen <larsh@soem.dk>
4467
4468 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
4469 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
4470 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
4471
4472 2005-11-03 Romain Francoise <romain@orebokech.com>
4473
4474 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
4475 Update copyright years.
4476
4477 2005-11-03 Sam Steingold <sds@gnu.org>
4478
4479 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
4480 Use system-type instead of window-system because window-system is not
4481 correctly defined during loadup.
4482
4483 2005-11-02 Mark A. Hershberger <mah@everybody.org>
4484
4485 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
4486 (xml-parse-tag): Join strings separated by a comment properly.
4487
4488 2005-11-02 Andreas Schwab <schwab@suse.de>
4489
4490 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
4491
4492 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
4493
4494 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
4495 (byte-optimize-pure-func): Quote the eval'd value.
4496
4497 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
4498 Rename from perl-font-lock-syntactic-face-function.
4499 Change the calling convention so it can be used as a font-lock MATCHER.
4500 Do the parse-partial-sexp loop outselves.
4501 (perl-font-lock-syntactic-keywords): Use it.
4502 (perl-mode): Don't set font-lock-syntactic-face-function any more.
4503
4504 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
4505
4506 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
4507 disassembly buffer too.
4508 (gdb-exited): Remove overlay arrows when execution has finished.
4509 (gdb-info-frames-custom, gdb-info-threads-custom)
4510 (gdb-info-registers-custom): Don't add inappropriate text
4511 properties if inferior is not active.
4512
4513 2005-11-02 Glenn Morris <rgm@gnu.org>
4514
4515 * progmodes/fortran.el (fortran-blink-match):
4516 Use `blink-matching-delay'.
4517
4518 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
4519
4520 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
4521
4522 2005-11-02 Lars Hansen <larsh@soem.dk>
4523
4524 * net/tramp.el (tramp-action-out-of-band): Handle scp message
4525 "Permission denied".
4526
4527 2005-11-01 Richard M. Stallman <rms@gnu.org>
4528
4529 * textmodes/flyspell.el (flyspell-external-point-words):
4530 Pass nil to flyspell-get-word.
4531
4532 2005-11-02 Kim F. Storm <storm@cua.dk>
4533
4534 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
4535 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
4536
4537 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
4538
4539 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
4540 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
4541 (calendar-mouse-print-dates): Add optional `event' argument.
4542 Update interactive-spec.
4543 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
4544 Use `calendar-event-to-date' instead of `event'.
4545
4546 2005-11-02 Masatake YAMATO <jet@gyve.org>
4547
4548 * progmodes/ld-script.el (ld-script-builtins):
4549 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
4550 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
4551 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
4552
4553 2005-11-01 Romain Francoise <romain@orebokech.com>
4554
4555 * vc-sccs.el: Update copyright year.
4556 * ezimage.el: Likewise.
4557
4558 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
4559
4560 * info.el (Info-fontify-node): Use `string-width' for fontifying
4561 underlined titles.
4562
4563 2005-11-01 Juri Linkov <juri@jurta.org>
4564
4565 * info.el (Info-fontify-node): Downcase node header keywords Node,
4566 Prev, Next, Up before comparison.
4567 (Info-history): Insert absolute directory name, and put invisible
4568 property on it.
4569
4570 2005-11-01 Juri Linkov <juri@jurta.org>
4571
4572 * info.el (Info-file-supports-index-cookies): New variable.
4573 (Info-find-node-2): Check makeinfo version for index cookie support.
4574 (Info-index-nodes): Search for nodes with index cookies only when
4575 Info-file-supports-index-cookies is t. Otherwise, search nodes
4576 with "Index" in the node name.
4577 (Info-index-node): Search index cookie in the current node only when
4578 Info-file-supports-index-cookies is t. Otherwise, check the word
4579 "Index" in the node name.
4580 (Info-find-emacs-command-nodes): Remove code that searches nodes
4581 with "Index" node name in the top menu.
4582
4583 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
4584
4585 * progmodes/scheme.el (scheme-mode-variables): Use the default
4586 comment-indent-function.
4587
4588 * faces.el (face-attribute): Handle the case where a face inherits from
4589 a non-existent face.
4590
4591 * simple.el (eval-expression-print-format): Use lisp-readable syntax
4592 for octal and hexa output, and merge the char into the paren.
4593 (kill-new): Use push.
4594 (copy-to-buffer): Use with-current-buffer.
4595 (completion-setup-function): Move code in loop to remove redundancy.
4596 (minibuffer-local-must-match-map): Don't add bindings that duplicate
4597 those inherited from minibuffer-local-completion-map.
4598
4599 * savehist.el (savehist-mode) <defcustom>:
4600 Use custom-set-minor-mode if available.
4601 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
4602 and emit a message if applicable.
4603
4604 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
4605
4606 * savehist.el: Sync up to version 19.
4607 (savehist-mode): New minor mode.
4608 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
4609 (savehist-length): Remove (use history-length instead).
4610 (savehist-file-modes): Rename from savehist-modes.
4611 (savehist-save-hook, savehist-loaded): New vars.
4612 (savehist-load): Use savehist-mode. Try to smooth up transition from
4613 old format to new format.
4614 (savehist-install): Allow savehist-autosave-interval to be nil.
4615 (savehist-save): Run the new hook. Be more careful to only trim the
4616 history variables.
4617 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
4618 (savehist-printable): Print into a buffer rather than char-by-char.
4619
4620 2005-11-01 John Wiegley <johnw@newartisans.com>
4621
4622 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
4623 toggle-ignore keybinding (C-a). The author said it had been
4624 disabled much earlier due to a possible incompatibility, but after
4625 many months of usage I have encountered no problems (and it is a
4626 rather useful option, especially for switching to " *temp*").
4627
4628 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
4629 support for OS/X's AddressBook, by calling out to the open source
4630 program "contacts" (installable through Fink).
4631
4632 * net/eudc.el (eudc-expand-inline): If the
4633 `eudc-multiple-match-handling-method' is set to `all', delete the
4634 query string before inserting the query result.
4635
4636 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
4637 flag, to prevent Eshell from using the system ls when
4638 `eshell-ls-insert-directory' is in used.
4639 (eshell-ls-insert-directory): Disable font-lock in directory
4640 buffer so that Eshell's own fontification is seen. This broke
4641 recently due to changes in font-lock, so this goes back to version
4642 21 behavior.
4643
4644 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
4645
4646 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
4647 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
4648 (gdb-many-windows): Doc fix.
4649
4650 2005-10-31 Romain Francoise <romain@orebokech.com>
4651
4652 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
4653
4654 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
4655
4656 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
4657 that global-font-lock-mode can be enabled by default.
4658
4659 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
4660 (font-lock-add-keywords, font-lock-remove-keywords)
4661 (font-lock-fontify-buffer): Remove autoload cookies.
4662
4663 * jit-lock.el (jit-lock-register): Likewise.
4664
4665 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
4666
4667 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
4668
4669 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
4670 intact if there is no gud-comint-buffer.
4671
4672 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
4673
4674 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
4675 old prompt comint-prompt-read-only is t and GDB commands are
4676 issued from tool bar etc.
4677
4678 2005-10-31 Masatake YAMATO <jet@gyve.org>
4679
4680 * vc.el (vc-directory-exclusion-list): Add "{arch}".
4681
4682 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
4683
4684 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
4685 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
4686
4687 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
4688
4689 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
4690 starting at beginning of line. Fontification is messed up when
4691 `open-paren-in-column-0-is-defun-start' set to t.
4692 Reported by John Paul Wallington <jpw@pobox.com>.
4693
4694 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
4695
4696 * comint.el (comint-send-input): Call `comint-update-fence' when
4697 `comint-process-echoes' and `comint-prompt-read-only' are both
4698 non-nil, to avoid leftover read-only newline.
4699
4700 2005-10-30 Richard M. Stallman <rms@gnu.org>
4701
4702 * textmodes/flyspell.el (flyspell-external-point-words):
4703 Detect when WORD can't be checked properly because
4704 flyspell-get-word finds just part of it, and move on.
4705
4706 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
4707 boundarychar for Polish.
4708 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
4709 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
4710
4711 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
4712
4713 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
4714 (gdb-registers-font-lock-keywords): Delete.
4715 (gdb-registers-mode): Don't fontify.
4716 (gdb-info-registers-custom): Use text properties instead as, in
4717 future, changed register values will use font-lock-warning-face.
4718 (gdb-local-font-lock-keywords): Rename to...
4719 (gdb-locals-font-lock-keywords): ...for consistency.
4720
4721 2005-10-30 Andre Spiegel <spiegel@gnu.org>
4722
4723 * vc.el (vc-switch-backend): Better error message if the buffer is
4724 not visiting a file under version control.
4725
4726 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
4727
4728 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
4729
4730 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
4731 ~/.emacs.d/.emacs.
4732
4733 2005-10-29 Richard M. Stallman <rms@gnu.org>
4734
4735 * replace.el (occur-mode-mouse-goto): Always go to other window.
4736 (occur-mode-goto-occurrence): Always switch in same window.
4737
4738 * simple.el (undo): Display message at end, not at start.
4739
4740 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
4741 New arg REUSE-CELL.
4742 (cancel-timer-internal): New function.
4743 (timer-event-handler): Use cancel-timer-internal,
4744 and pass the cell it returns to timer-activate...
4745
4746 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
4747 (jit-lock-deferred-fontify, jit-lock-context-fontify)
4748 (jit-lock-after-change): Test memory-full.
4749
4750 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
4751
4752 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
4753 part of the decoded armor to find the key-identifier.
4754 (pgg-gpg-lookup-key-owner): New function to return the
4755 human-readable identifier of a key owner.
4756 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
4757 key itself.
4758 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
4759 the key value) if we have a key and can match it against a secret
4760 key. Also, added a note pointing out fact that the prompt only
4761 indicates the first matching key.
4762
4763 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
4764 pgg-decrypt-region.
4765 (pgg-pending-timers): A new hash for tracking the passphrase cache
4766 timers, so that new ones supercede old ones.
4767 (pgg-add-passphrase-to-cache): Rename from
4768 `pgg-add-passphrase-cache' to reduce confusion (all callers
4769 changed). Modified to cancel old timers when new ones are added.
4770 (pgg-remove-passphrase-from-cache): Rename from
4771 `pgg-remove-passphrase-cache' to reduce confusion (all callers
4772 changed). Modified to cancel old timers when their keys are
4773 removed from the cache.
4774 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
4775 XEmacs, an indirection to delete-itimer.
4776 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
4777 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
4778 users can only check cache without risk of prompting. Correct bug in
4779 notruncate behavior.
4780 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
4781 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
4782 Add informative docstrings.
4783 (pgg-decrypt): Convey provided passphrase in subordinate call to
4784 pgg-decrypt-region.
4785
4786 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
4787 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
4788 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
4789 'passphrase' argument, so the passphrase can be managed externally
4790 and then passed in to the system.
4791
4792 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
4793 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
4794 so the passphrase cache can be used reliably with identifiers
4795 besides a pgp packet's key id.
4796
4797 * pgg-gpg.el (pgg-pgp-encrypt-region)
4798 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
4799 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
4800 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
4801 argument to all these routines, so the passphrase can be managed
4802 externally and passed in to the system.
4803
4804 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
4805 'notruncate' argument, so the passphrase cache can be used
4806 reliably with identifiers besides a pgp packet's key id.
4807
4808 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
4809
4810 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
4811 symmetric encryption.
4812 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
4813 encrypted session key.
4814 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
4815 message ask for the passphrase in a proper way.
4816
4817 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
4818 New user commands for symmetric encryption.
4819
4820 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
4821
4822 * textmodes/conf-mode.el (conf-assignment-sign)
4823 (conf-assignment-regexp): Fix docstrings.
4824 (conf-mode-initialize): New function.
4825 (conf-mode): Remove optional args. Use delay-mode-hooks to
4826 recognize recursive calls.
4827 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
4828 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
4829 (conf-xdefaults-mode): Use define-derived-mode and
4830 conf-mode-initialize.
4831
4832 2005-10-29 Romain Francoise <romain@orebokech.com>
4833
4834 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
4835
4836 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
4837
4838 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
4839 part of the decoded armor to find the key-identifier.
4840 (pgg-gpg-lookup-key-owner): New function to return the
4841 human-readable identifier of a key owner.
4842 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
4843 key itself.
4844 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
4845 the key value) if we have a key and can match it against a secret
4846 key. Also, added a note pointing out fact that the prompt only
4847 indicates the first matching key.
4848
4849 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
4850 pgg-decrypt-region.
4851 (pgg-pending-timers): A new hash for tracking the passphrase cache
4852 timers, so that new ones supercede old ones.
4853 (pgg-add-passphrase-to-cache): Rename from
4854 `pgg-add-passphrase-cache' to reduce confusion (all callers
4855 changed). Modified to cancel old timers when new ones are added.
4856 (pgg-remove-passphrase-from-cache): Rename from
4857 `pgg-remove-passphrase-cache' to reduce confusion (all callers
4858 changed). Modified to cancel old timers when their keys are
4859 removed from the cache.
4860 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
4861 XEmacs, an indirection to delete-itimer.
4862 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
4863 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
4864 users can only check cache without risk of prompting. Correct bug in
4865 notruncate behavior.
4866 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
4867 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
4868 Add informative docstrings.
4869 (pgg-decrypt): Convey provided passphrase in subordinate call to
4870 pgg-decrypt-region.
4871
4872 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
4873
4874 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
4875 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
4876 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
4877 'passphrase' argument, so the passphrase can be managed externally
4878 and then passed in to the system.
4879
4880 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
4881 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
4882 so the passphrase cache can be used reliably with identifiers
4883 besides a pgp packet's key id.
4884
4885 * pgg-gpg.el (pgg-pgp-encrypt-region)
4886 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
4887 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
4888 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
4889 argument to all these routines, so the passphrase can be managed
4890 externally and passed in to the system.
4891
4892 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
4893 'notruncate' argument, so the passphrase cache can be used
4894 reliably with identifiers besides a pgp packet's key id.
4895
4896 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
4897
4898 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
4899 symmetric encryption.
4900 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
4901 encrypted session key.
4902 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
4903 message ask for the passphrase in a proper way.
4904
4905 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
4906 New user commands for symmetric encryption.
4907
4908 2005-10-28 Bill Wohler <wohler@newt.com>
4909
4910 * help-mode.el (help-url): New button type. Calls browse-url.
4911 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
4912 Similar to Info nodes: URL `url'.
4913 (help-make-xrefs): Create help-url buttons for
4914 help-xref-url-regexp matches.
4915
4916 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
4917
4918 * tool-bar.el (tool-bar-add-item-from-menu)
4919 (tool-bar-local-item-from-menu): Fix doc strings.
4920
4921 2005-10-28 Romain Francoise <romain@orebokech.com>
4922
4923 * ldefs-boot.el: Update.
4924
4925 * subr.el (locate-library): Move from help-fns.el.
4926 * help-fns.el (locate-library): Move to subr.el.
4927
4928 2005-10-28 Richard M. Stallman <rms@gnu.org>
4929
4930 * net/tramp.el (tramp-completion-mode): defvar moved up.
4931
4932 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
4933
4934 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
4935
4936 * files.el (find-file-noselect): Use %d to format large file size.
4937
4938 * bindings.el (mode-line-format): Add %e.
4939
4940 * loadup.el ("facemenu"): Load unconditionally.
4941 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
4942 ("x-dnd"): Load, when appropriate.
4943
4944 * startup.el (command-line): Call before-init-hook earlier.
4945 Warn about some bad characters in -u user name.
4946
4947 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
4948 (flyspell-external-point-words): Error if misspelled word is not found.
4949 Set flyspell-large-region-beg at end of word.
4950
4951 2005-10-28 Andreas Schwab <schwab@suse.de>
4952
4953 * view.el (View-revert-buffer-scroll-page-forward):
4954 Use view-page-size-default.
4955
4956 2005-10-28 Juri Linkov <juri@jurta.org>
4957
4958 * international/quail.el (quail-get-current-str): Translate last
4959 raw character for deterministic input methods.
4960
4961 2005-10-27 Jay Belanger <belanger@truman.edu>
4962
4963 * calc/calc-ext.el: Add functions to autoloads.
4964 (math-identity-matrix-p, math-ident-row-p): New functions.
4965
4966 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
4967 multiplication by an identity matrix; don't turn multiplication by
4968 an inverse matrix into division.
4969 (math-div-symbol-fancy): Replace division by matrices with
4970 multiplication by inverse.
4971
4972 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
4973
4974 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
4975 (calc-writeoutpower): New functions.
4976
4977 2005-10-27 Romain Francoise <romain@orebokech.com>
4978
4979 * replace.el (occur-engine): Include colon in mouse-face highlight.
4980
4981 * dired-x.el: Change Maintainer field.
4982
4983 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
4984
4985 * longlines.el (longlines-mode): Bind after-change-functions to
4986 nil during initial decoding and final encoding.
4987
4988 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
4989
4990 * term.el (term-emulate-terminal, term-handle-colors-array)
4991 (term-handle-ansi-escape): Specify the terminfo capabilities
4992 implemented.
4993
4994 2005-10-26 Richard M. Stallman <rms@gnu.org>
4995
4996 * info.el (Info-fontify-node): Fix detection of sentence-break
4997 before *Note.
4998
4999 2005-10-26 Romain Francoise <romain@orebokech.com>
5000
5001 * smerge-mode.el: Add `tools' to file keywords.
5002
5003 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
5004
5005 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
5006 when the fringe is not available.
5007
5008 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
5009 (def-gdb-auto-update-trigger): Simplify construction.
5010 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
5011 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
5012 defined explicitly.
5013 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
5014 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
5015 defined explicitly.
5016 (gdb-info-locals-custom): Remove as it's a no-op.
5017
5018 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
5019
5020 * longlines.el (longlines-mode): Remove narrowing before
5021 performing the initial decoding or final encoding.
5022
5023 2005-10-25 Romain Francoise <romain@orebokech.com>
5024
5025 * emacs-lisp/find-func.el (find-library-name): Also strip
5026 extension if library name ends in .el, to take advantage of
5027 `find-library-suffixes'.
5028
5029 2005-10-25 Richard M. Stallman <rms@gnu.org>
5030
5031 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
5032
5033 2005-10-25 Juri Linkov <juri@jurta.org>
5034
5035 * textmodes/texinfo.el (texinfo-mode): Change charset of one
5036 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
5037
5038 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5039
5040 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
5041 (blackbox-redefine-key): Add argument `map'.
5042
5043 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
5044 regions when moving the jit-lock-context-unfontify-pos boundary.
5045
5046 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
5047
5048 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
5049
5050 2005-10-25 Masatake YAMATO <jet@gyve.org>
5051
5052 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
5053
5054 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
5055
5056 * play/blackbox.el (blackbox-redefine-key): New function.
5057 (blackbox-mode-map): Use it to remap existing bindings for cursor
5058 motion instead of binding literal keys.
5059
5060 2005-10-25 Glenn Morris <rgm@gnu.org>
5061
5062 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
5063 diary does not end in a newline. Do not assume a blank line at
5064 the start of the diary file.
5065
5066 2005-10-25 Kenichi Handa <handa@m17n.org>
5067
5068 * international/quail.el (quail-translate-key): If the input
5069 method is deterministic and failed to handle the last key, restart
5070 the key handling loop from an appropriate key.
5071
5072 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
5073
5074 * vc.el (vc-dired-mode): Extend comment for binding of
5075 `directory-listing-before-filename-regexp'.
5076
5077 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5078
5079 * textmodes/texinfo.el (texinfo-mode):
5080 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
5081 not to unnecessarily expose emacs-mule's internal char codes.
5082
5083 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
5084
5085 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
5086 Display hand pointer and help-echo on disabled icon too.
5087 (gdb-mouse-until): New function.
5088 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
5089
5090 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
5091
5092 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
5093 with 2005-10-23 change to doctor.el.
5094
5095 * finder.el (finder-mode-map): Add follow-link binding.
5096
5097 2005-10-25 Kim F. Storm <storm@cua.dk>
5098
5099 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
5100 to gdb-mouse-toggle-breakpoint-fringe.
5101 (gdb-mouse-toggle-breakpoint-margin): Rename from
5102 gdb-mouse-toggle-breakpoint. Fix doc.
5103 (gdb-mouse-toggle-breakpoint-fringe): New defun.
5104 (gdb-put-string): Add optional SPROPS arg. Add props to string.
5105 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
5106 string properties also for fringe breakpoint bitmaps.
5107
5108 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
5109
5110 * textmodes/org.el (org-start-icalendar-file): Fix format form.
5111
5112 2005-10-25 Masatake YAMATO <jet@gyve.org>
5113
5114 * simple.el (completion-common-substring):
5115 Use `completion-common-substring' prior to `completion-base-size'.
5116
5117 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
5118
5119 * savehist.el: Require CL while compiling.
5120 (savehist-history-variables): Remove.
5121 (savehist-save-minibuffer-history, savehist-additional-variables)
5122 (savehist-minibuffer-history-variables): New vars.
5123 (savehist-save): Use them.
5124 (savehist-uninstall, savehist-minibuffer-hook): New funs.
5125 (savehist-install): New fun, extracted from savehist-load.
5126 (savehist-load): Use them.
5127
5128 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5129
5130 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
5131 a dummy doc-string-elt property.
5132 (defalias, defvaralias, define-category): Add a docstring property.
5133
5134 * image.el (defimage):
5135 * widget.el (define-widget):
5136 * custom.el (defface, defcustom): Add `doc-string' declaration.
5137
5138 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
5139 (defadvice): Add `doc-string' declaration.
5140
5141 * emacs-lisp/byte-run.el (macro-declaration-function):
5142 Handle `doc-string' declarations.
5143 (define-obsolete-function-alias, define-obsolete-variable-alias):
5144 Add `doc-string' declaration.
5145
5146 2005-10-24 Kenichi Handa <handa@m17n.org>
5147
5148 * international/utf-7.el (utf-7): Add autoload cookie.
5149
5150 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
5151
5152 2005-10-24 Eli Zaretskii <eliz@gnu.org>
5153
5154 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
5155 list of directories passed to batch-update-autoloads. Add "." to
5156 the list of the echoed directories.
5157
5158 * pgg-def.el:
5159 * pgg-gpg.el:
5160 * pgg-parse.el:
5161 * pgg-pgp.el:
5162 * pgg-pgp5.el:
5163 * pgg.el: Moved here from the gnus subdirectory.
5164
5165 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
5166
5167 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
5168 in case comint-prompt-read-only is set to t.
5169
5170 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
5171 in case comint-prompt-read-only is set to t.
5172
5173 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
5174
5175 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
5176 Now a string.
5177 (icalendar-import-format): Handle CLASS, STATUS, URL.
5178 Rename `subject' to `summary'.
5179 (icalendar-import-format-summary): Rename from
5180 `icalendar-import-format-subject'.
5181 (icalendar-import-format-url, icalendar-import-format-status)
5182 (icalendar-import-format-class): New variables.
5183 (icalendar--rris): Take variable argument list.
5184 (icalendar--datestring-to-isodate): Remove unnecessary
5185 calendar-style check when converting dates with explicit month names.
5186 (icalendar-export-region): Change return type of conversion
5187 subroutines. Bury current buffer unless error occurred.
5188 (icalendar--convert-to-ical)
5189 (icalendar--parse-summary-and-rest): New functions.
5190 (icalendar--convert-ordinary-to-ical)
5191 (icalendar--convert-weekly-to-ical)
5192 (icalendar--convert-yearly-to-ical)
5193 (icalendar--convert-block-to-ical)
5194 (icalendar--convert-cyclic-to-ical)
5195 (icalendar--convert-anniversary-to-ical): Change return type.
5196 Strip trailing blanks from subject.
5197 (icalendar--convert-sexp-to-ical): Change return type.
5198 Strip trailing blanks from subject. Handle simple sexp
5199 entries as generated by icalendar.el.
5200 (icalendar--convert-float-to-ical)
5201 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
5202 (icalendar-import-file): Doc fix.
5203 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
5204 Correct call to icalendar--rris.
5205 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
5206 `summary'.
5207 (icalendar--add-diary-entry): Rename `subject' to `summary'.
5208
5209 2005-10-24 Romain Francoise <romain@orebokech.com>
5210
5211 * server.el (server-sentinel): Set query-on-exit flag to nil on
5212 new client processes (it isn't inherited from the server process).
5213
5214 * replace.el (occur-engine): Rearrange text properties.
5215
5216 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
5217
5218 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
5219 case-fold-search is nil.
5220 (debug-help-follow): Use help-xref-interned directly.
5221
5222 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
5223
5224 * thumbs.el (thumbs-image-type): Add .pbm.
5225
5226 2005-10-23 Richard M. Stallman <rms@gnu.org>
5227
5228 * faces.el (inhibit-face-set-after-frame-default): New variable.
5229 (set-face-attribute): Bind it.
5230 (face-set-after-frame-default): Test it.
5231
5232 * help-fns.el (describe-simplify-lib-file-name): New function.
5233 (describe-function-1, describe-variable): Use it.
5234
5235 * faces.el (describe-face): Use describe-simplify-lib-file-name.
5236
5237 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
5238 Eliminate nil as possible value.
5239 (tooltip-hide-delay): Reduce internal-border-width.
5240
5241 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
5242 (menu-bar-file-menu) <new-file>: Likewise.
5243
5244 * simple.el (line-move-finish): Ignore fields computing LINE-END.
5245
5246 * international/mule.el (load-with-code-conversion):
5247 Pass full file name to `eval-buffer' unless preloading.
5248
5249 * textmodes/flyspell.el (flyspell-large-region):
5250 Call ispell-check-version.
5251
5252 * textmodes/ispell.el (ispell-local-dictionary-overridden):
5253 Fix the make-variable-buffer-local call that was supposed
5254 to be for this variable.
5255 (ispell-aspell-supports-utf8): Doc fix.
5256 (ispell-find-aspell-dictionaries): Preserve elements of
5257 ispell-dictionary-alist for dictionaries that aspell doesn't report.
5258 (ispell-aspell-find-dictionary): Return nil on error.
5259
5260 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
5261 (doctor-symptoms): Likewise.
5262
5263 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
5264
5265 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
5266
5267 * cus-edit.el (custom-button, custom-button-pressed): New vars.
5268 (custom-raised-buttons): Add :set spec.
5269 (custom-button-unraised, custom-button-pressed-unraised):
5270 New faces, so that custom-raised-buttons actually does something.
5271 (custom-mode): Use custom-button and custom-button-pressed.
5272
5273 * wid-edit.el (widget-specify-button): Don't ignore
5274 widget-mouse-face on graphic terminals.
5275 (widget-move-and-invoke): Cleanup.
5276
5277 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
5278
5279 * whitespace.el (whitespace-cleanup): Doc fix.
5280
5281 2005-10-23 Romain Francoise <romain@orebokech.com>
5282
5283 * emulation/viper.el (viper-set-hooks): Quote forms passed to
5284 `eval-after-load' to avoid evaluating their result.
5285
5286 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
5287
5288 * files.el (directory-listing-before-filename-regexp):
5289 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
5290
5291 * dired.el (dired-move-to-filename-regexp): Remove.
5292 All occurences replaced by `directory-listing-before-filename-regexp'.
5293
5294 * dired-x.el, locate.el, vc.el:
5295 Replace `dired-move-to-filename-regexp' by
5296 `directory-listing-before-filename-regexp'. In vc.el it is
5297 overwritten locally; maybe this can be handled in files.el too.
5298
5299 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
5300 replaced by `directory-listing-before-filename-regexp'.
5301
5302 2005-10-23 Andreas Schwab <schwab@suse.de>
5303
5304 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
5305 and eval-next-after-load.
5306
5307 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
5308
5309 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
5310 exist, create it.
5311
5312 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
5313
5314 * allout.el: Remove autoloads for mailcrypt and crypt++.
5315 Require pgg, pgg-gpg during compilation.
5316 (allout-version): Increment version number to 2.1, and use a literal
5317 rather than RCS Id.
5318 (allout-default-encryption-scheme): Remove.
5319 (allout-passphrase-verifier-handling)
5320 (allout-passphrase-verifier-string)
5321 (allout-file-passphrase-verifier-string)
5322 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
5323 (allout-passphrase-hint-handling): Rename and simplify.
5324 (allout-init): Use `find-file-hook' if available, otherwise
5325 `find-file-hooks'.
5326 (allout-mode): Use `write-file-functions' if available, otherwise
5327 `local-write-file-hooks' and, instead of making auto-save-hook
5328 buffer local, make the write-file-hook activity contingent to
5329 allout-mode.
5330 (allout-mode): Use key-binding substitution in the docstring.
5331 (allout-kill-line): Spell-out kill ring data structure mutation
5332 instead of using byte-compiler-complaint-provoking `pop'.
5333 (allout-insert-listified): Use `insert' rather than `insert-string'
5334 (allout-toggle-current-subtree-encryption): Update docstring, adjust
5335 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
5336 (allout-encrypt-string): Totally revamped vis new underlying
5337 encryption facilities.
5338 (allout-mc-activate-passwd): Remove.
5339 (allout-obtain-passphrase): New, more or less replaces
5340 allout-mc-activate-passwd.
5341 (allout-encrypted-key-info): More or less replaces
5342 allout-encrypted-text-type.
5343 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
5344 (my-mark-marker): Use `(featurep 'xemacs)'.
5345
5346 2005-10-23 Lars Hansen <larsh@soem.dk>
5347
5348 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
5349 (byte-compile-file-form-defmumble, byte-compile-defun)
5350 (byte-compile-defmacro): Use it.
5351 (byte-compile-form): Don't call byte-compile-set-symbol-position
5352 when a byte-compile handler is called.
5353
5354 2005-10-22 Romain Francoise <romain@orebokech.com>
5355
5356 * savehist.el (savehist-history-variables): Add `grep-find-history'.
5357
5358 * subr.el (eval-after-load): Convert library name to an absolute
5359 file name using locate-library, since load-history no longer has
5360 library names in it.
5361
5362 2005-10-22 Richard M. Stallman <rms@gnu.org>
5363
5364 * files.el (make-temp-file): Move from subr.el.
5365 * subr.el (make-temp-file): Move to files.el.
5366
5367 * window.el (get-buffer-window-list): Move from subr.el.
5368 * subr.el (get-buffer-window-list): Move to window.el.
5369
5370 * image.el (image-load-path): Use eval-at-startup to initialize.
5371
5372 * subr.el (eval-at-startup): New macro.
5373
5374 * subr.el: Much rearrangement of functions and division
5375 into pages. No code changes.
5376
5377 2005-10-22 Kenichi Handa <handa@m17n.org>
5378
5379 * tar-mode.el (tar-extract): Be sure to call
5380 find-operation-coding-system if set-auto-coding doesn't find a
5381 coding system.
5382
5383 2005-10-22 Kim F. Storm <storm@cua.dk>
5384
5385 * image.el (image-type-header-regexps): Rename from image-type-regexps.
5386 Change users.
5387 (image-type-file-name-regexps): New defconst.
5388 (image-type-from-data): Simplify loop.
5389 (image-type-from-buffer): New defun.
5390 (image-type-from-file-header): Use it instead of image-type-from-data.
5391 Use image-search-load-path instead of only looking in data-directory.
5392 (image-type-from-file-name): New defun.
5393 (image-search-load-path): Change `pathname' to `filename'.
5394 Make PATH arg optional, default to image-load-path.
5395
5396 2005-10-21 Richard M. Stallman <rms@gnu.org>
5397
5398 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
5399
5400 * textmodes/paragraphs.el (sentence-end-base): New variable.
5401 (sentence-end): Use sentence-end-base.
5402
5403 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
5404
5405 * font-lock.el (font-lock-default-fontify-region): Check the multiline
5406 property independently from the font-lock-multiline variable.
5407
5408 2005-10-21 Richard M. Stallman <rms@gnu.org>
5409
5410 * emacs-lisp/find-func.el (find-library-name): Doc fix.
5411
5412 * startup.el (command-line): Convert library names
5413 in `load-history' to absolute file names.
5414
5415 * subr.el (symbol-file): Doc fix.
5416
5417 * loadhist.el (file-loadhist-lookup): Call locate-library
5418 instead of find-library-name. Don't try converting
5419 abs file names to library names, since load-history no longer
5420 has library names in it.
5421 (file-dependents, file-provides, file-requires): Doc fixes.
5422
5423 2005-10-21 Juri Linkov <juri@jurta.org>
5424
5425 * progmodes/etags.el (tags-table-mode): New function.
5426 (tags-verify-table): Replace initialize-new-tags-table with
5427 tags-table-mode.
5428
5429 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
5430 default value.
5431 (desktop-modes-not-to-save): Add tags-table-mode to the
5432 default value.
5433
5434 * info.el (Info-index-next): Add total number of index
5435 alternatives to the message.
5436
5437 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
5438 backward only space (instead of space and period) before looking
5439 at sentence end.
5440
5441 * simple.el (set-variable): Use user-variable-p instead of symbolp.
5442 Add the old variable value as 4th default-value arg of read-string.
5443
5444 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5445
5446 * cus-face.el (custom-declare-face): Make face from X resources
5447 also on Mac.
5448
5449 * disp-table.el (standard-display-g1, standard-display-graphic):
5450 Refuse to use string glyphs also on Mac.
5451 (standard-display-european): Don't set terminal coding system also
5452 on Mac.
5453
5454 * frame.el (display-screens): Use x-display-screens also on Mac.
5455
5456 2005-10-21 Romain Francoise <romain@orebokech.com>
5457
5458 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
5459
5460 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
5461
5462 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
5463 and $? into sexps.
5464
5465 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
5466 warning face on open-paren-in-column-0.
5467
5468 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
5469 boundary case. Fix typo.
5470 Suggested by Martin Rudalics <rudalics@gmx.at>.
5471
5472 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
5473
5474 * textmodes/org.el (org-combined-agenda-icalendar-file)
5475 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
5476 (org-export-icalendar-this-file)
5477 (org-export-icalendar-all-agenda-files)
5478 (org-export-icalendar-combine-agenda-files): New commands.
5479 (org-export-icalendar, org-print-icalendar-entries)
5480 (org-start-icalendar-file, org-finish-icalendar-file)
5481 (org-ical-ts-to-string): New functions.
5482 (org-read-date, org-goto-calendar)
5483 (org-agenda-goto-calendar): Inhibit displaying diary entries by
5484 call to `calendar'.
5485 (orgtbl-setup): Remove the :keys arguments from the menu description.
5486 (org-after-save-iCalendar-file-hook): New variable.
5487
5488 2005-10-21 Kenichi Handa <handa@m17n.org>
5489
5490 * language/vietnamese.el (tcvn-5712): Make it an alias of
5491 vietnamese-tcvn coding-system.
5492
5493 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
5494
5495 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
5496 group id is given.
5497
5498 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
5499
5500 * progmodes/sh-script.el (sh-escaped-line-re): New var.
5501 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
5502 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
5503 whose line is either continued or ends with a comment.
5504
5505 2005-10-20 Romain Francoise <romain@orebokech.com>
5506
5507 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
5508
5509 * replace.el (occur-engine): Add follow-link property.
5510
5511 * font-core.el (font-lock-mode): Doc fix.
5512
5513 2005-10-20 Richard M. Stallman <rms@gnu.org>
5514
5515 * net/rcirc.el: New file.
5516
5517 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
5518
5519 * term.el (term-term-name): Initialize to "eterm-color".
5520
5521 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
5522
5523 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
5524 for encryption functionality.
5525 Move allout customization subgroup from `editing' to `outlines' group.
5526 Fix commentary keywords to legitimate ones.
5527 Update author info (using my current email address, obscurified).
5528 (allout-encrypt-string, allout-encryption-produce-work-buffer)
5529 (allout-encrypted-topic-p, allout-encrypted-text-type)
5530 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
5531 (allout-situate-encryption-key-verifier)
5532 (allout-get-encryption-key-verifier, allout-verify-key)
5533 (allout-next-topic-pending-encryption)
5534 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
5535 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
5536 (outline-key-verifier-handling, outline-key-hint-handling)
5537 (outline-encrypt-unencrypted-on-saves): New defcustoms.
5538 (allout-file-key-verifier-string, allout-encryption-scheme)
5539 (allout-key-verifier-string, allout-key-hint-string)
5540 (allout-after-save-decrypt): New variables.
5541 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
5542 (allout-after-saves-handler): New hook functions.
5543 (allout-post-command-business): Do allout-after-save-decrypt.
5544 (allout-enable-file-variable-adjustment): Custom var to enable
5545 mechanism for adding and adjusting settings of Emacs file variables.
5546 (allout-adjust-file-variable, allout-file-vars-section-data):
5547 New functions, implement the mechanism.
5548 (outlineify-sticky): Use the file vars mechanism.
5549 (allout-inhibit-protection, allout-during-write-cue)
5550 (allout-override-protect, allout-before-change-protect): Remove.
5551 (allout-flag-region, allout-open-topic): Adjust read-only text.
5552 (allout-open-line-not-read-only): Add to facilitate read-only
5553 text based protection.
5554 (allout-kill-line): Revise to adjust read-only text, clue the
5555 user about the inhibition.
5556 (allout-unprotected): Use unwind-protect.
5557 (allout-shift-in, allout-shift-out): Disallow manually shifting a
5558 topic deeper than the offspring depth of the previous topic -
5559 avoiding confusing "containment discontinuities".
5560 (allout-reindent-bodies): Fix retention of body relative hanging
5561 indent during promotion of collapsed bodies.
5562 (allout-open-topic): Make it easy to open new topic with same
5563 bullet as current topic - topic creation functions provided with
5564 any universal argument provokes now prompt for bullet, defaulting
5565 to the bullet of the previous topic.
5566 (allout-plain-bullets-string, allout-distinctive-bullets-string):
5567 Plain bullet alternates `.' period and `,' comma only. All other
5568 bullets are relegated to special status (but customizable).
5569 (allout-end-of-entry): Rename from allout-end-of-current-entry
5570 since it actually operates w.r.t. most immediately containing
5571 entry, visible or not.
5572 (allout-hide-current-entry, allout-show-current-entry): Use the
5573 revised version.
5574 (allout-old-expose-topic): Solidify deprecation.
5575 (allout-end-of-subtree): Add so we can span concealed as well
5576 as visible topics.
5577 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
5578 (allout-end-of-current-heading): Tweak to just respect the first line.
5579 (allout-get-body-text): Add.
5580 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
5581 when invoked interactively.
5582 (allout-up-current-level): Use `interactive-p'.
5583 (allout-mode, allout-init): Miscellaneous docstring and
5584 operational refinements, as well as hookups of new encryption stuff.
5585 (allout-beginning-of-current-entry): Now works as advertised.
5586 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
5587 (allout-isearch-rectification): Refine condition for isearching.
5588 (allout-isearch-abort, allout-enwrap-isearch)
5589 (allout-flag-region, my-region-active-p): Relocate some macros.
5590 (allout-title): Fallback title is (buffer-name), not
5591 non-existing (current-buffer-name).
5592 (subst-char-in-string): Define if absent (for some XEmacs versions).
5593
5594 2005-10-20 Jari Aalto <jari.aalto@cante.net>
5595
5596 * mail/sendmail.el (mail-setup-hook, mail-aliases)
5597 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
5598 (mail-citation-prefix-regexp, mail-signature-file)
5599 (mail-default-headers, mail-bury-selects-summary)
5600 (mail-send-nonascii): Add autoload cookies.
5601
5602 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5603
5604 * frame.el (blink-cursor-mode): Add `mac' to the list of
5605 window-system's that support blinking cursor.
5606
5607 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
5608
5609 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
5610
5611 2005-10-20 Eli Zaretskii <eliz@gnu.org>
5612
5613 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
5614 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
5615 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
5616
5617 2005-10-20 Kim F. Storm <storm@cua.dk>
5618
5619 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
5620 (ido-set-current-directory): Don't add / after final @.
5621 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
5622 Explicitly handle ange-ftp completion oddities.
5623 (ido-make-file-list): Don't rotate list at tramp root to avoid
5624 triggering tramp file handler for expand-file-name via get-file-buffer.
5625
5626 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5627
5628 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
5629
5630 2005-10-19 Jay Belanger <belanger@truman.edu>
5631
5632 * calc/calc-units.el (math-standard-units): Add units, adjust
5633 symbols and update values.
5634 (math-unit-prefixes): Add more prefixes.
5635
5636 2005-10-19 Romain Francoise <romain@orebokech.com>
5637
5638 * bookmark.el (bookmark-menu-heading): New face.
5639 (bookmark-bmenu-list): Use it.
5640 Don't fiddle with `baud-rate' at top-level.
5641
5642 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
5643
5644 * image.el (create-image, find-image): Mention max-image-size in
5645 docstring.
5646
5647 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5648
5649 * savehist.el (savehist-load): Revert to checking XEmacs.
5650
5651 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
5652 Various docstring and line-width fixups.
5653 (conf-mode): Use cond.
5654 Set font-lock-defaults. Don't set comment-use-syntax.
5655
5656 2005-10-18 David Ponce <david@dponce.com>
5657
5658 * tree-widget.el (tree-widget-button-click): New function.
5659 (tree-widget-button-keymap): Use it.
5660
5661 2005-10-18 Romain Francoise <romain@orebokech.com>
5662
5663 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
5664 (bookmark-bmenu-hide-filenames): Add follow-link property.
5665 Improve help-echo text.
5666
5667 * ffap.el (find-file-at-point): Doc fix.
5668
5669 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5670
5671 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
5672
5673 2005-10-18 Masatake YAMATO <jet@gyve.org>
5674
5675 Install to the CVS repository what I forgot to install in my
5676 2005-10-16 changes.
5677
5678 * progmodes/python.el (python-complete-symbol): Pass the common
5679 prefix substring of completion to `display-completion-list'.
5680
5681 * textmodes/org.el (org-complete): Ditto.
5682
5683 2005-10-18 Masatake YAMATO <jet@gyve.org>
5684
5685 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
5686
5687 * woman.el (WoMan-xref-man-page): New button type derived
5688 from `Man-abstract-xref-man-page'.
5689 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
5690
5691 * man.el (Man-abstract-xref-man-page): New button type.
5692 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
5693 (Man-highlight-references): Add new optional argument `xref-man-type'.
5694
5695 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
5696
5697 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
5698
5699 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
5700
5701 * cus-edit.el (Custom-move-and-invoke): Delete.
5702 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
5703
5704 * wid-edit.el (widget-move-and-invoke): New function, from
5705 Custom-move-and-invoke.
5706
5707 2005-10-17 Bill Wohler <wohler@newt.com>
5708
5709 Move all remaining images from lisp/toolbar to etc/images, move
5710 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
5711 the low resolution images in their own directory (low-color).
5712
5713 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*,
5714 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*:
5715 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*:
5716 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*:
5717 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*:
5718 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*:
5719 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
5720
5721 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
5722 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
5723 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
5724 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
5725 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
5726 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
5727 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
5728 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
5729 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
5730 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
5731 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
5732 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
5733 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
5734 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
5735 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
5736
5737 To conform with convention, replace the underscore (_) in the
5738 following image names with dash (-) or (/) as appropriate.
5739
5740 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
5741 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
5742 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
5743 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
5744 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
5745 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
5746 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
5747 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
5748 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
5749 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
5750 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
5751 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
5752 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
5753 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
5754 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
5755
5756 * info.el (info-tool-bar-map): Replace underscores in image names
5757 with dashes.
5758
5759 * makefile.w32-in (WINS): Remove toolbar.
5760
5761 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
5762
5763 * tool-bar.el: Move to lisp from toolbar. Now that
5764 toolbar is empty, it should be deleted when folks run "cvs up -P".
5765
5766 2005-10-18 Jay Belanger <belanger@truman.edu>
5767
5768 * calc/calc-store.el (calc-store-into): Get the proper variable name
5769 to display in message.
5770
5771 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
5772
5773 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
5774 expressions display in speedbar for all buffers when debugging.
5775 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
5776
5777 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
5778 (speedbar-insert-button, speedbar-make-button):
5779 Use add-text-properties.
5780 (speedbar-update-localized-contents)
5781 (speedbar-update-directory-contents)
5782 (speedbar-update-special-contents): Use dolist.
5783 (speedbar-buffer-easymenu-definition): Add a menu separator.
5784
5785 2005-10-17 Jason Rumney <jasonr@gnu.org>
5786
5787 * makefile.w32-in: Use $(lisp) consistently.
5788 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
5789 for shell specific generation of mh-autoloads.
5790
5791 2005-10-17 Richard M. Stallman <rms@gnu.org>
5792
5793 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
5794
5795 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
5796
5797 * jit-lock.el (jit-lock-fontify-now):
5798 Move jit-lock-context-unfontify-pos to avoid wasted work.
5799
5800 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
5801
5802 * net/tramp.el (tramp-completion-mode): New defvar. Used in
5803 `tramp-completion-mode' for checking if we are in completion mode.
5804 (tramp-completion-handle-file-name-all-completions): Reorder code
5805 in order to complete for file names only in case there are no
5806 method/user/host completions. This is necessary for cooperation
5807 with ido. Reported by Kim F. Storm <storm@cua.dk>.
5808
5809 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
5810
5811 * longlines.el (longlines-search-forward)
5812 (longlines-search-backward): Match any number of spaces.
5813
5814 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
5815
5816 * diff-mode.el (diff-mode): Doc fix.
5817
5818 2005-10-16 David Reitter <david.reitter@gmail.com>
5819
5820 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
5821 as default on darwin and windows systems.
5822
5823 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
5824
5825 * arc-mode.el (archive-zip-extract): Doc fix.
5826
5827 2005-10-16 Romain Francoise <romain@orebokech.com>
5828
5829 * mouse.el (mouse-1-click-follows-link): Doc fix.
5830
5831 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
5832
5833 * savehist.el: Don't require CL at runtime.
5834 (savehist-xemacs): Remove.
5835 (savehist-coding-system): Use utf-8 if present, regardless of religion.
5836 (savehist-no-conversion): Use (featurep 'xemacs).
5837 (savehist-load): Check existence of start-itimer rather than XEmacs.
5838 Use an idle timer.
5839 (savehist-process-for-saving): Replace use of CL funs `subseq' and
5840 `delete-if-not'.
5841
5842 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
5843
5844 * savehist.el: Newer version.
5845 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
5846 (savehist-last-checksum, savehist-no-conversion): New vars.
5847 (savehist-autosave, savehist-process-for-saving, savehist-printable):
5848 New functions.
5849 (savehist-load, savehist-save): Use them.
5850 (savehist-delimit): Remove.
5851
5852 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
5853
5854 * progmodes/compile.el (compilation-goto-locus): Display the
5855 compilation buffer first and the source buffer second, in case they're
5856 in overlapping frames. Don't raise the compilation frame if it was the
5857 selected window upon entry. Pass the `other-window' arg to
5858 pop-to-buffer.
5859
5860 * info.el (Info-fontify-node): Use dolist.
5861 Change add-text-properties to put-text-property.
5862
5863 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
5864
5865 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
5866 bound of search.
5867
5868 2005-10-16 Masatake YAMATO <jet@gyve.org>
5869
5870 * dabbrev.el (dabbrev-completion): Pass the common
5871 prefix substring of completion to `display-completion-list'.
5872
5873 * filecache.el (file-cache-minibuffer-complete)
5874 (file-cache-complete): Ditto.
5875
5876 * tempo.el (tempo-display-completions): Ditto.
5877
5878 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
5879
5880 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
5881
5882 * eshell/em-hist.el (eshell-list-history): Ditto.
5883
5884 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
5885
5886 * mail/mailalias.el (mail-complete): Ditto.
5887
5888 * progmodes/etags.el (complete-tag): Ditto.
5889
5890 * progmodes/make-mode.el (makefile-complete): Ditto.
5891
5892 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
5893
5894 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
5895
5896 * progmodes/pascal.el (pascal-complete-word)
5897 (pascal-show-completions): Ditto.
5898
5899 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
5900
5901 * simple.el (completion-common-substring): New variable.
5902 (completion-setup-function): Use `completion-common-substring'
5903 to put faces.
5904
5905 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5906
5907 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
5908 (x-get-selection, mac-select-convert-to-string): Convert from/to
5909 UTF-16 clipboard data as in native byte order, no BOM.
5910
5911 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
5912
5913 * progmodes/gud.el (gud-tool-bar-map): Rename the images
5914 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
5915 (gud-sentinel): Use speedbar-frame to check for speedbar.
5916
5917 2005-10-15 Richard M. Stallman <rms@gnu.org>
5918
5919 * savehist.el: New file.
5920
5921 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
5922
5923 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
5924 Fix bug in \bf fontification.
5925
5926 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
5927
5928 * pcvs.el (cvs-edit-log-files): New var.
5929 (cvs-mode-edit-log): New arg `file'.
5930 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
5931 Instead force the use of the original file and nothing else.
5932 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
5933 the cvs-minor-wrap-function is set.
5934 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
5935
5936 2005-10-14 Bill Wohler <wohler@newt.com>
5937
5938 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
5939 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
5940 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
5941 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
5942 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
5943 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
5944 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
5945 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
5946 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
5947 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
5948 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
5949 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
5950 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
5951 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
5952 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
5953
5954 * progmodes/gud.el (gud-tool-bar-map): Rename the images
5955 appropriately (for example, gud-break to gud/break).
5956
5957 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
5958
5959 * longlines.el (longlinges-search-function)
5960 (longlines-search-forward, longlines-search-backward): New functions.
5961 (longlines-mode): Set isearch-search-fun-function to
5962 longlinges-search-function.
5963
5964 * mouse.el (mouse-drag-region-1): Handle the case where a
5965 double-click event is bound to an arbitrary function.
5966
5967 2005-10-14 David Ponce <david@dponce.com>
5968
5969 * recentf.el (recentf-track-opened-file)
5970 (recentf-track-closed-file, recentf-update-menu)
5971 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
5972 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
5973 mouse-1-click-follows-link.
5974
5975 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5976
5977 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
5978 Gnome file-manager.png. Suggested by
5979 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
5980
5981 * toolbar/README: Add diropen.xpm.
5982
5983 2005-10-13 Bill Wohler <wohler@newt.com>
5984
5985 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
5986 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
5987
5988 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
5989
5990 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
5991 Don't waste the byte-compiler's time on constant data.
5992
5993 2005-10-13 Kenichi Handa <handa@m17n.org>
5994
5995 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
5996 byte with `escape-glyph' face.
5997
5998 * international/fontset.el (ccl-encode-unicode-font):
5999 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
6000 Handle the case that ucs-mule-to-mule-unicode translates a character to
6001 ASCII (usually for IPA characters).
6002
6003 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
6004
6005 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
6006 Don't hide the underline of titles if font-lock-mode is disabled.
6007
6008 2005-10-12 Bill Wohler <wohler@newt.com>
6009
6010 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
6011 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
6012 files in MH-E-SRC have been updated.
6013 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
6014
6015 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
6016
6017 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
6018 (mixal-mode-syntax-table): Add \n as end-comment.
6019 (mixal-operation-codes-alist): Immediately initialize to full value.
6020 (mixal-add-operation-code): Remove.
6021 (mixal-describe-operation-code): Make the arg non-optional.
6022 Use the interactive spec instead.
6023 Use mixal-operation-codes-alist rather than mixal-operation-codes.
6024 (mixal-font-lock-keywords): Don't highlight comments here any more.
6025 (mixal-font-lock-syntactic-keywords): New var.
6026 (mixal-mode): Use it. Fix comment-start-skip.
6027
6028 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6029
6030 * startup.el (command-line-x-option-alist): -nb => -nbi
6031
6032 2005-10-12 Kim F. Storm <storm@cua.dk>
6033
6034 * startup.el (fancy-splash-default-action): Discard mouse click in
6035 the splash screen window, as it has no sensible meaning in the
6036 next window to be selected. Fixes error reported by Jan D.
6037
6038 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
6039
6040 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
6041
6042 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
6043
6044 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
6045 Try to fix up minor layout issues like indentation, line break, etc...
6046 (mixal-mode-syntax-table): Don't try to specify comment syntax,
6047 because it doesn't work.
6048 (mixal-operation-codes): Add some more codes.
6049 (mixal-font-lock-keywords): Process comments here.
6050 (mixal-mode): mixasm no longer needs -g option.
6051
6052 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
6053
6054 * progmodes/sh-script.el (sh-tmp-file):
6055 Use mktemp -t. Finish support for es and rc shells.
6056
6057 2005-10-11 Jay Belanger <belanger@truman.edu>
6058
6059 * calc/calcalg2.el (calc-integral): With an argument, compute the
6060 definite integral.
6061
6062 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
6063
6064 * mouse.el (mouse-drag-region-1): Don't try to catch a
6065 double-click when doing follow-link (it's overridden anyway).
6066
6067 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
6068
6069 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
6070 (autoload-print-form-outbuf): Add docstring.
6071
6072 2005-10-11 Juri Linkov <juri@jurta.org>
6073
6074 * info.el (Info-mode-menu): Delete menu item "Edit".
6075 (Info-mode): Delete description of Info-edit from docstring,
6076 and rearrange descriptions of Info commands in the order
6077 they are documented in the Info manual.
6078
6079 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
6080
6081 * calendar/appt.el (appt-check): Use diary-selective-display var.
6082
6083 2005-10-10 Richard M. Stallman <rms@gnu.org>
6084
6085 * net/newsticker.el (newsticker-start, newsticker-show-news):
6086 Add autoload cookies.
6087
6088 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
6089
6090 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
6091
6092 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
6093
6094 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
6095
6096 2005-10-10 Jay Belanger <belanger@truman.edu>
6097
6098 * calc/calc-arith.el (math-check-known-scalarp)
6099 (math-check-known-matrixp): Check the values of arguments that are
6100 variables.
6101 (math-check-known-square-matrixp): New function.
6102 (math-known-square-matrixp): Use math-check-known-square-matrixp.
6103 (math-super-types): Add sqmatrix type.
6104
6105 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
6106 mode name `square' to `sqmatrix'.
6107
6108 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
6109 mode name `square' to `sqmatrix'.
6110
6111 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
6112
6113 * progmodes/etags.el (select-tags-table-mode): Don't use
6114 selective-display.
6115 (tags-select-tags-table): Pass `button' to the action function.
6116 (select-tags-table): Place the side-info on button properties rather
6117 than in hidden text. Abbreviate file names.
6118 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
6119 (select-tags-table-select): Add `button' argument.
6120 Get side-info from the button property rather than from hidden text.
6121
6122 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
6123
6124 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
6125 (gud-speedbar-buttons): Preserve point if possible.
6126 (gud-sentinel): Restore previous speedbar display type.
6127
6128 * progmodes/gdb-ui.el (gdba): Improve diagram.
6129 (def-gdb-auto-update-handler, gdb-info-locals-handler)
6130 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
6131 Call get-buffer-window once.
6132
6133 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
6134
6135 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
6136 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
6137 (pascal-indent-command): Remove unused var `ind'.
6138 (pascal-indent-case): Remove unused var `oldpos'.
6139 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
6140 since it's now used as a proper minor mode map.
6141 (pascal-outline): Rename to pascal-outline-mode.
6142 (pascal-outline-mode): Use define-minor-mode.
6143 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
6144 selective-display.
6145
6146 2005-10-10 Andreas Schwab <schwab@suse.de>
6147
6148 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
6149 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
6150
6151 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
6152 outside source directory.
6153
6154 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
6155
6156 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
6157 C-x' as a prefix.
6158 (orgtbl-mode-map): Full keymap instead of sparse, because all
6159 `self-insert-command' keys are redefined in this map.
6160 (org-export-as-html): Specify charset for HTML file, by taking it
6161 from the coding system.
6162
6163 2005-10-10 Kenichi Handa <handa@m17n.org>
6164
6165 * textmodes/flyspell.el (flyspell-check-word-p):
6166 If unread-command-events is non-empty, don't call sit-for.
6167
6168 2005-10-09 Richard M. Stallman <rms@gnu.org>
6169
6170 * font-lock.el (font-lock-syntactic-keywords)
6171 (font-lock-keywords): Doc fixes.
6172
6173 * textmodes/flyspell.el (flyspell-external-point-words):
6174 Simplify logic, and don't try to check for consecutive appearances
6175 of one incorrect word.
6176
6177 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
6178
6179 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
6180 separator.
6181
6182 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
6183 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
6184 (gud-expansion-speedbar-buttons): New function.
6185 (gud-speedbar-buttons): Check for gud-comint-buffer.
6186
6187 2005-10-09 Bill Wohler <wohler@newt.com>
6188
6189 * Makefile.in (updates): Add mh-loaddefs dependency.
6190
6191 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
6192
6193 * speedbar.el (speedbar-file-key-map): Fix typo.
6194
6195 2005-10-09 Daniel Brockman <daniel@brockman.se>
6196
6197 * cus-start.el (line-spacing): Add custom spec.
6198
6199 2005-10-09 Romain Francoise <romain@orebokech.com>
6200
6201 * textmodes/ispell.el (ispell-check-version): Fix last change.
6202
6203 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6204
6205 * term/x-win.el: Remove -i, --icon-type from comment.
6206
6207 * startup.el (command-line-x-option-alist): Remove options -i,
6208 -itype, --icon-type, added -nb, --no-bitmap-icon
6209
6210 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
6211
6212 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
6213 instead of :active.
6214
6215 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
6216
6217 * textmodes/ispell.el (ispell-check-version):
6218 Ignore hyphen, and all that follows, in aspell's version text.
6219
6220 2005-10-08 Jay Belanger <belanger@truman.edu>
6221
6222 * calc/calc-arith.el (math-known-square-matrixp): New function.
6223 (math-pow-fancy): Check for matrices before distributing exponent
6224 across products.
6225
6226 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
6227 fullscreen keypad. Suggested by Luc Teirlinck.
6228 (calc-keypad-show-input): Add space for formatting.
6229
6230 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
6231 Add square matrix option.
6232
6233 * calc/calc-poly.el (math-expand-term): Check for matrices instead
6234 of checking calc-matrix-mode when deciding how to expand.
6235
6236 * calc/calc.el (calc-set-mode-line): Add square matrix option.
6237
6238 2005-10-08 Lars Hansen <larsh@soem.dk>
6239
6240 * net/tramp.el (tramp-perl-directory-files-and-attributes):
6241 Add error handling.
6242 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
6243
6244 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
6245
6246 Sync with Tramp 2.0.51.
6247
6248 * net/tramp.el (tramp-handle-set-visited-file-modtime)
6249 (tramp-handle-insert-file-contents, tramp-handle-write-region):
6250 Insert special handling for `last-coding-system-used', again
6251 it still seems to be necessary (unlike stated before).
6252 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
6253 (tramp-password-prompt-regexp): There might be other words before
6254 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
6255 (tramp-chunksize): Improve docstring.
6256 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
6257 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
6258 Christian Joergensen <bugs@razor.dk>.
6259
6260 2005-10-07 Glenn Morris <rgm@gnu.org>
6261
6262 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
6263 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
6264 precision'.
6265
6266 2005-10-07 Romain Francoise <romain@orebokech.com>
6267
6268 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
6269 (ibuffer-do-shell-command-pipe-replace)
6270 (ibuffer-do-shell-command-file, ibuffer-do-eval)
6271 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
6272 (ibuffer-do-revert, ibuffer-do-replace-regexp)
6273 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
6274 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
6275 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
6276 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
6277 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
6278 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
6279 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
6280 Autoload file sans suffix.
6281
6282 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
6283
6284 2005-10-07 David Ponce <david@dponce.com>
6285
6286 * recentf.el (recentf-menu-open-all-flag): New option.
6287 (recentf-digit-shortcut-command-name): New function.
6288 (recentf--shortcuts-keymap): New variable.
6289 (recentf-menu-shortcuts): New variable.
6290 (recentf-make-menu-items): Initialize it. Replace the "More..."
6291 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
6292 (recentf-menu-value-shortcut): New function.
6293 (recentf-make-menu-item): Use it. No more in-lined.
6294 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
6295 (recentf-open-most-recent-file): Rename from
6296 `recentf-open-file-with-key'. Don't depend on key binding.
6297 (recentf-mode-map): New variable.
6298 (recentf-mode): Use it.
6299
6300 2005-10-06 Bill Wohler <wohler@newt.com>
6301
6302 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
6303
6304 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
6305 (MH-E-SRC): New. Used by mh-autoloads.
6306 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
6307 files in MH-E-SRC have been updated.
6308 (compile, recompile, bootstrap): Depend on mh-autoloads.
6309
6310 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
6311
6312 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
6313 gud-break and gud-remove icons when the fringe is not available.
6314
6315 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
6316 Typo.
6317
6318 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
6319
6320 * play/zone.el (zone): Wrap body with save-window-excursion.
6321
6322 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
6323
6324 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
6325 Use the new `list-only' arg to diary-list-entries.
6326
6327 * calendar/diary-lib.el: Use overlays rather than selective-display.
6328 (diary-selective-display): New var.
6329 (diary-header-line-format): Use it.
6330 (diary-list-entries): Add argument `list-only'.
6331 Put the buffer in diary-mode. Don't add \^M at beg and end.
6332 Replace \^M by invisible overlays.
6333 (diary-unhide-everything): Replace \^M by invisible overlays.
6334 (print-diary-entries): Look for overlays rather than \^M.
6335 Add a space to the temp buffer name.
6336 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
6337 Put the buffer in diary-mode.
6338 (list-sexp-diary-entries): Replace \^M by invisible overlays.
6339 (diary-anniversary): Make the year arg optional.
6340 (diary-time-regexp): New const.
6341 (diary-font-lock-keywords): Use it to accept a few more time formats.
6342
6343 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
6344
6345 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
6346
6347 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
6348 Fix bug introduced 2005-07-03: Use (car (last ...))
6349 to faithfully reproduce replaced artist-last.
6350 (artist-set-arrow-points-for-poly): Likewise.
6351 Suggested by Johan Bockg\e,Ae\e(Brd.
6352
6353 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
6354
6355 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
6356 * wid-edit.el (widget):
6357 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
6358 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
6359
6360 2005-10-06 Kenichi Handa <handa@m17n.org>
6361
6362 * international/mule-cmds.el (set-language-environment):
6363 Fix setting up of case-table for unibyte mode.
6364
6365 * simple.el (what-cursor-position): If the character is displayed
6366 by some `display' text property, show that. Don't use
6367 single-key-description for eight-bit characters in multibyte mode.
6368
6369 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
6370
6371 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
6372 (gdb-ann3): Set it.
6373 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
6374 (gdb-info-frames-custom): Use inverse-video for first five
6375 characters of selected frame only.
6376 (gdb-get-frame-number): Select frame even when point is on frame
6377 number.
6378
6379 2005-10-06 Masatake YAMATO <jet@gyve.org>
6380
6381 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
6382 Put `font-lock-function-name-face'.
6383 (gdb-info-frames-custom): Put `font-lock-function-name-face'
6384 and `font-lock-variable-name-face'
6385 (gdb-registers-font-lock-keywords): New font lock keywords definition.
6386 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
6387 (gdb-memory-font-lock-keywords): New font lock keywords definition.
6388 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
6389 (gdb-local-font-lock-keywords): New font lock keywords definition.
6390 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
6391 (gdb-threads-font-lock-keywords): New font lock keywords definition.
6392 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
6393
6394 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
6395
6396 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
6397 (ediff-merge-region-is-non-clash-to-skip): Previously called
6398 ediff-merge-region-is-non-clash.
6399
6400 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
6401 Use insert-buffer-substring.
6402
6403 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
6404 selecting files to patch. Also bug fixes.
6405
6406 * ediff-util.el (ediff-setup): Bug fix.
6407 (ediff-next-difference): Never skip clashes that differ in white
6408 space only.
6409
6410 * ediff-wind.el (ediff-setup-control-frame)
6411 (ediff-destroy-control-frame): Check the menubar feature.
6412
6413 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
6414 (viper-refresh-mode-line): Use make-local-variable to localize
6415 some vars instead of make-variable-buffer-local. Suggested by
6416 Stefan Monnier.
6417
6418 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
6419 (viper-restore-cursor-type, viper-set-insert-cursor-type):
6420 Use make-local-variable instead of make-variable-buffer-local.
6421 Suggested by Stefan Monnier.
6422
6423 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
6424 (viper-comint-mode-hook): Use make-local-variable on
6425 require-final-newline.
6426 (viper-non-hook-settings): Don't use make-variable-buffer-local.
6427
6428 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
6429
6430 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
6431 also the second char of a comment-start sequence.
6432 (scheme-sexp-comment-syntax-table): New var.
6433 (lambda, define): Set their scheme-doc-string-elt property.
6434 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
6435 Use lisp-font-lock-syntactic-face-function now that it properly
6436 handles |...| symbols.
6437 (scheme-mode-variables): Set lisp-doc-string-elt-property,
6438 parse-sexp-lookup-properties and font-lock-extra-managed-props.
6439
6440 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
6441 bit from # to |.
6442 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
6443
6444 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
6445 (lisp-doc-string-elt-property): New var.
6446 (lisp-font-lock-syntactic-face-function): Use it.
6447 Rewrite to recognize docstrings even for forms not at toplevel.
6448
6449 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
6450 annotation on the | part of #| rather than on the # part.
6451 (scheme-font-lock-syntactic-face-function): New function, to
6452 distinguish strings from |...| symbols.
6453 (scheme-mode-variables): Use it. Also fix up the font-lock-time
6454 syntax-table so that #|...|# is properly highlighted.
6455
6456 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
6457 Don't mark as docstring the 3rd elem of an unknown toplevel form.
6458
6459 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
6460
6461 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
6462 and C-e.
6463
6464 * emacs-lisp/eldoc.el: Move comments into docstrings.
6465 (eldoc-message-commands): Initialize in its declaration.
6466 Add move-beginning-of-line and move-end-of-line.
6467 (eldoc-add-command, eldoc-add-command-completions)
6468 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
6469
6470 * outline.el (outline-mark-subtree): Activate the mark.
6471
6472 * calendar/appt.el (appt-time-regexp): New var.
6473 (appt-add, appt-make-list): Use it.
6474 (appt-convert-time): Clean up.
6475
6476 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
6477 Don't set any syntax-table property here.
6478 (tex-font-lock-verb): New function. Do it here.
6479 (tex-font-lock-syntactic-keywords): Use it.
6480
6481 2005-10-04 Richard M. Stallman <rms@gnu.org>
6482
6483 * wid-edit.el (widget-file-complete): Get the widget start point
6484 the right way. Default directory to `/' if file has none.
6485
6486 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
6487
6488 * textmodes/flyspell.el (flyspell-mode-on):
6489 Call ispell-maybe-find-aspell-dictionaries.
6490
6491 * textmodes/ispell.el (ispell-word, ispell-region):
6492 Call ispell-maybe-find-aspell-dictionaries.
6493 (ispell-accept-buffer-local-defs):
6494 Don't call ispell-maybe-find-aspell-dictionaries
6495
6496 2005-10-04 Richard M. Stallman <rms@gnu.org>
6497
6498 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
6499
6500 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
6501
6502 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
6503 instead of `fboundp' in order to allow for anonymous functions.
6504
6505 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
6506
6507 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
6508 case the user clicks on the link while another window is selected.
6509 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
6510
6511 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
6512 functionality.
6513 (dframe-help-echo): Save point in case mouse tracking is off.
6514
6515 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
6516
6517 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
6518
6519 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6520
6521 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
6522 not change the global value of those vars.
6523
6524 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
6525 make-local-variable which we do not need any more.
6526
6527 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
6528
6529 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
6530 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
6531 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
6532 (speedbar-path-line): Define obsolete aliases.
6533 (speedbar-line-directory): Doc fix.
6534
6535 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
6536 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
6537 instead of speedbar-line-path.
6538
6539 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6540
6541 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
6542 to nil if dropping on a window. Handle dropping on a minibuffer window
6543 like dropping on a non-window part of Emacs.
6544
6545 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6546
6547 * net/ange-ftp.el: Use with-current-buffer.
6548 (ange-ftp-insert-directory): Do not follow symlinks any more.
6549
6550 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
6551 Remove interactive spec.
6552
6553 2005-10-03 Kim F. Storm <storm@cua.dk>
6554
6555 * ido.el (ido-mode): Use custom-initialize-set.
6556
6557 2005-10-02 Richard M. Stallman <rms@gnu.org>
6558
6559 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
6560 Use insert-buffer-substring.
6561
6562 * net/tramp.el: Pacify byte compiler warnings in pacification code.
6563 (tramp-handle-file-local-copy): Use insert-buffer-substring.
6564
6565 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
6566
6567 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
6568 in last change.
6569 (ange-ftp-insert-directory): Fix up the search for the case where
6570 `file' is absolute.
6571
6572 2005-10-02 Romain Francoise <romain@orebokech.com>
6573
6574 * progmodes/compile.el (compile-goto-error): Delete extra paren.
6575
6576 2005-10-02 Andreas Schwab <schwab@suse.de>
6577
6578 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
6579 directory component in the session info.
6580
6581 2005-10-01 Richard M. Stallman <rms@gnu.org>
6582
6583 * comint.el (comint-redirect-subvert-readonly): Doc fix.
6584
6585 * simple.el (next-error-internal): New function.
6586
6587 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
6588 (compilation-start): Pass new arg to compilation-buffer-name.
6589 (compile-goto-error): Use next-error-internal.
6590
6591 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
6592
6593 * speedbar.el: Remove RCS tag.
6594 (speedbar-check-read-only): Handle non-existent files.
6595
6596 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
6597
6598 * info.el (Info-speedbar-hierarchy-buttons)
6599 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
6600
6601 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6602
6603 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
6604 Do not match newline.
6605 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
6606 (bibtex-summary): Remove unnecessary save-excursion.
6607 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
6608
6609 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6610
6611 * term/mac-win.el: Add charset info for "iso10646-1".
6612 Modify default fontset to use ATSUI-compatible fonts for some charsets
6613 if available.
6614
6615 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
6616
6617 * speedbar.el: Re-apply arch tag.
6618 (speedbar-version): Rename to version 1.0. Suggested by Eric
6619 M. Ludlam.
6620 Reapply two changes from Emacs CVS' version of speedbar lost
6621 during the merge:
6622 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
6623 (speedbar-frame-parameters): Improve customize type.
6624
6625 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6626
6627 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
6628 (ange-ftp-file-directory-p): Fix the symlink case.
6629 (ange-ftp-insert-directory): When listing a single file, get a list of
6630 the parent buffer and extract the relevant line. Inspired from a patch
6631 by Katsumi Yamaoka <yamaoka@jpl.org>.
6632 (ange-ftp-file-name-sans-versions): Simplify.
6633
6634 2005-09-30 Bill Wohler <wohler@newt.com>
6635
6636 Move MH-E image files from toolbar and mail directories into
6637 etc/images.
6638
6639 * mail/reply2.*: Move to etc/images/mail/reply*.
6640
6641 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
6642 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
6643 etc/images.
6644
6645 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
6646 * toolbar/reply*: Move to etc/images/mail.
6647
6648 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
6649
6650 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
6651
6652 * speedbar.el: New version 1.0pre3.
6653
6654 Frame management code (including timer, and mouse click specifics)
6655 moved to dframe.el:
6656 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
6657 (speedbar-timer): Removed. Use dframe-timer.
6658 (speedbar-close-frame): Removed. Use dframe-close-frame.
6659 (speedbar-activity-change-focus-flag): Removed. Use
6660 dframe-activity-change-focus-flag.
6661 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
6662 dframe-update-speed.
6663
6664 (speedbar-current-frame): New macro. Use this instead of the
6665 variable speedbar-frame.
6666
6667 (speedbar-use-images, speedbar-expand-image-button-alist)
6668 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
6669
6670 (speedbar-find-image-on-load-path): Removed. Replaced by
6671 defezimage in ezimage.el.
6672 (speedbar-expand-image-button-alist): Removed. Replaced by
6673 ezimage-expand-image-button-alist in ezimage.el.
6674
6675 (speedbar-ignored-directory-regexp)
6676 (speedbar-add-ignored-directory-regexp)
6677 (speedbar-ignored-directory-expressions)
6678 (speedbar-line-directory, speedbar-buffers-line-directory)
6679 (speedbar-directory-line, speedbar-buffers-line-directory):
6680 Renamed, replacing `path' with `directory'.
6681
6682 (speedbar-create-directory, speedbar-expand-line-descendants)
6683 (speedbar-toggle-line-expansion)
6684 (speedbar-contract-line-descendants): New commands.
6685
6686 (speedbar-query-confirmation-method, speedbar-select-frame-method)
6687 (speedbar-use-tool-tips-flag): New options.
6688
6689 (speedbar-check-read-only, speedbar-require-version)
6690 (speedbar-insert-separator, speedbar-buffers-tail-notes)
6691 (speedbar-handle-delete-frame, speedbar-try-completion)
6692 (speedbar-update-localized-contents): New functions.
6693
6694 (speedbar-incompatible-version, speedbar-ro-to-do-point)
6695 (speedbar-object-read-only-indicator): New variables.
6696
6697 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
6698 New hooks.
6699
6700 (speedbar-separator-face): New face.
6701
6702 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
6703 (speedbar-ignored-modes): Add fundamental-mode.
6704 (speedbar-directory-unshown-regexp): Add . directories.
6705
6706 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
6707 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
6708 `]' for full expand/close.
6709 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
6710
6711 (speedbar-check-vc): Support hidden files.
6712 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
6713 (speedbar-this-file-in-vc): Use vc-state if available. If VC
6714 state is nil, it is not checked out.
6715
6716 (speedbar-line-text, speedbar-line-token): Support expand buttons
6717 with no text.
6718 (speedbar-refresh): Universal argument acts as power-click.
6719 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
6720 that buffer to get variable values.
6721
6722 And many other bugfixes.
6723
6724 * dframe.el, ezimage.el, sb-image.el: New files.
6725
6726 * sb-*.xpm: Remove files. New image files installed into
6727 etc/images/ezimage.
6728
6729 2005-09-30 Kenichi Handa <handa@m17n.org>
6730
6731 * ps-mule.el (ps-mule-show-warning): If a character is in
6732 ps-print-translation-table, don't treat it as non-printable.
6733
6734 2005-09-30 David Ponce <david@dponce.com>
6735
6736 * tree-widget.el (tree-widget-themes-load-path): New variable.
6737 (tree-widget-themes-directory): Doc fix.
6738 (tree-widget-image-formats) [Emacs]: Doc fix.
6739 (tree-widget--locate-sub-directory): New function.
6740 (tree-widget-themes-directory): Use it.
6741
6742 * recentf.el (recentf-filename-handlers): Rename from
6743 `recentf-filename-handler'. Allow a list of functions.
6744 (recentf-menu-items-for-commands): Fix :help strings.
6745 (recentf-apply-filename-handlers): New function.
6746 (recentf-expand-file-name): Use it.
6747 (recentf-cleanup): Remove duplicates too.
6748
6749 2005-09-29 Juri Linkov <juri@jurta.org>
6750
6751 * faces.el: Rearrange face definitions to be in the same order as
6752 their face descriptions in "(emacs)Standard Faces".
6753
6754 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
6755
6756 * tooltip.el (tooltip): Add group `basic-faces'.
6757
6758 * buff-menu.el (Buffer-menu-buffer): Remove group
6759 `font-lock-highlighting-faces'.
6760
6761 * progmodes/compile.el (compilation-error, compilation-warning)
6762 (compilation-info, compilation-line-number, compilation-column-number):
6763 Change group from `font-lock-highlighting-faces' to `compilation'.
6764
6765 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
6766 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
6767 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
6768 (vhdl-font-lock-reserved-words-face)
6769 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
6770 `font-lock-highlighting-faces'.
6771
6772 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
6773
6774 2005-09-28 Kim F. Storm <storm@cua.dk>
6775
6776 * emulation/cua-base.el: Set CUA move property on additional commands:
6777 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
6778 forward-sexp, backward-sexp, forward-list, backward-list.
6779
6780 2005-09-28 Romain Francoise <romain@orebokech.com>
6781
6782 * comint.el (comint-show-output): Really set point at the
6783 beginning of the output when not using `comint-use-prompt-regexp'.
6784
6785 2005-09-27 Jay Belanger <belanger@truman.edu>
6786
6787 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
6788 in TeX mode.
6789
6790 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
6791
6792 * textmodes/org.el (org-table-sum): Fix format string.
6793
6794 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
6795 Quote face names.
6796
6797 2005-09-26 Romain Francoise <romain@orebokech.com>
6798
6799 * isearch.el (isearch-forward-regexp): Close doc string.
6800
6801 2005-09-25 Richard M. Stallman <rms@gnu.org>
6802
6803 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
6804
6805 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
6806
6807 * progmodes/compile.el (compilation-error-properties):
6808 When getting the file from the previous error message,
6809 correctly decode the new data format.
6810
6811 * progmodes/cc-cmds.el (c-electric-paren):
6812 Call old-blink-paren only for close-paren.
6813
6814 2005-09-24 Andreas Schwab <schwab@suse.de>
6815
6816 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
6817 condition.
6818
6819 2005-09-25 Romain Francoise <romain@orebokech.com>
6820
6821 * dired-aux.el (dired-copy-file-recursive):
6822 * dired.el (dired-delete-file):
6823 * ediff-mult.el (ediff-dir-diff-copy-file):
6824 * ediff-util.el (ediff-test-save-region):
6825 * forms.el (forms-mode):
6826 * ido.el (ido-file-internal, ido-delete-file-at-head):
6827 * log-edit.el (log-edit-done):
6828 * ses.el (ses-yank-resize):
6829 * play/gomoku.el (gomoku-human-plays, gomoku)
6830 (gomoku-human-resigns, gomoku-prompt-for-other-game)
6831 (gomoku-offer-a-draw):
6832 * play/landmark.el (lm-human-resigns, lm):
6833 * net/eudcb-ldap.el (eudc-ldap-check-base):
6834 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
6835 * progmodes/ebrowse.el (ebrowse-find-pattern):
6836 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
6837 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
6838 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
6839
6840 * vc.el (vc-delete-file):
6841 * play/gomoku.el (gomoku-terminate-game, gomoku)
6842 (gomoku-prompt-for-move, gomoku-human-takes-back):
6843 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
6844 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
6845
6846 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
6847
6848 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
6849 color rxvt terminals by using the code xterm.el used to use before
6850 2005-04-09 in order to match the colors used by rxvt.
6851
6852 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
6853
6854 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
6855 colors rxvt-unicode terminals by using the same code as xterm.el.
6856
6857 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
6858
6859 * textmodes/tex-mode.el (tex-font-lock-append-prop)
6860 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
6861 new symbol used for the tex-verbatim face.
6862
6863 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
6864
6865 * woman.el (woman-file-name):
6866 * wid-edit.el (widget-file-prompt-value)
6867 (widget-coding-system-prompt-value):
6868 * w32-fns.el (set-w32-system-coding-system):
6869 * vc.el (vc-version-diff, vc-annotate):
6870 * textmodes/reftex-auc.el (reftex-arg-cite)
6871 (reftex-arg-index-tag):
6872 * textmodes/refer.el (refer-get-bib-files):
6873 * textmodes/artist.el (artist-figlet-choose-font):
6874 * terminal.el (terminal-emulator):
6875 * replace.el (occur-read-primary-args):
6876 * rect.el (string-rectangle, string-insert-rectangle):
6877 * ps-print.el (ps-print-preprint):
6878 * progmodes/pascal.el (pascal-goto-defun):
6879 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
6880 * progmodes/compile.el (compilation-find-file):
6881 * printing.el (pr-interactive-n-up):
6882 * play/animate.el (animate-birthday-present):
6883 * net/rcompile.el (remote-compile):
6884 * man.el (man, Man-goto-section, Man-follow-manual-reference):
6885 * mail/rmailsum.el (rmail-summary-search-backward)
6886 (rmail-summary-search):
6887 * mail/rmailout.el (rmail-output-read-rmail-file-name)
6888 (rmail-output-read-file-name):
6889 * mail/rmail.el (rmail-search, rmail-search-backwards):
6890 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
6891 * locate.el (locate):
6892 * international/quail.el (quail-show-keyboard-layout):
6893 * international/mule.el (set-buffer-file-coding-system)
6894 (revert-buffer-with-coding-system, set-file-name-coding-system)
6895 (set-terminal-coding-system, set-keyboard-coding-system)
6896 (set-next-selection-coding-system):
6897 * international/mule-diag.el (describe-coding-system)
6898 (describe-font, describe-fontset):
6899 * international/mule-cmds.el (universal-coding-system-argument)
6900 (search-unencodable-char, describe-input-method)
6901 (set-language-environment, describe-language-environment):
6902 * international/codepage.el (codepage-setup):
6903 * international/code-pages.el (codepage-setup):
6904 * info.el (Info-search, Info-follow-reference)
6905 (Info-search-backward):
6906 * emacs-lisp/advice.el (ad-read-advised-function)
6907 (ad-read-advice-class, ad-clear-cache, ad-activate)
6908 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
6909 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
6910 (ad-read-regexp):
6911 * ediff-util.el (ediff-toggle-regexp-match):
6912 * ediff-ptch.el (ediff-prompt-for-patch-file):
6913 * dired-aux.el (dired-diff):
6914 * diff.el (diff):
6915 * cus-edit.el (custom-variable-prompt):
6916 * calendar/timeclock.el (timeclock-ask-for-project):
6917 * calc/calcalg3.el (calc-get-fit-variables):
6918 * calc/calc-store.el (calc-edit-variable)
6919 (calc-permanent-variable):
6920 * vc-mcvs.el (vc-mcvs-register):
6921 * shadowfile.el (shadow-define-literal-group):
6922 * woman.el (woman-file-name):
6923 * vc.el (vc-version-diff, vc-merge):
6924 * textmodes/reftex-index.el (reftex-index-complete-tag):
6925 * format.el (format-decode-buffer, format-decode-region):
6926 * emulation/viper-cmd.el (viper-read-string-with-history):
6927 * emacs-lisp/debug.el (cancel-debug-on-entry):
6928 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
6929 * ediff.el (ediff-merge-revisions)
6930 (ediff-merge-revisions-with-ancestor, ediff-revision):
6931 * completion.el (interactive-completion-string-reader):
6932 * calc/calc-prog.el (calc-user-define-formula):
6933 Follow convention for reading with the minibuffer.
6934
6935 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
6936
6937 * progmodes/python.el (python-describe-symbol): Add globals() and
6938 locals() to the arguments of emacs.ehelp.
6939
6940 2005-09-24 Magnus Henoch <mange@freemail.hu>
6941
6942 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
6943 New function, code extracted from ispell-valid-dictionary-list.
6944 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
6945 Call it.
6946
6947 2005-09-24 Eli Zaretskii <eliz@gnu.org>
6948
6949 * subr.el (version-regexp-alist): Extend valid syntax for version
6950 strings: allow any of the characters -,_,+ to separate the
6951 alpha/beta/rc part from the version part. Doc fix.
6952 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
6953
6954 2005-09-23 David Reitter <david.reitter@gmail.com>
6955
6956 * mail/mailclient.el: New file.
6957
6958 2005-09-23 Richard M. Stallman <rms@gnu.org>
6959
6960 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
6961 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
6962 Doc fixes.
6963
6964 * progmodes/cc-mode.el (c-font-lock-init):
6965 Specify font-lock-lines-before.
6966
6967 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6968
6969 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
6970 whole conflict.
6971
6972 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
6973
6974 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
6975 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
6976 of `remap' feature when available. Additional key bindings for
6977 better tty support.
6978 (org-mode-restart, org-force-self-insert): New commands.
6979 (org-time-stamp-inactive): New command.
6980 (org-remap): New function.
6981 (org-table-auto-blank-field, org-level-color-stars-only): New options.
6982 (org-enable-fixed-width-editor): Move to `org-structure'
6983 customization group.
6984 (org-self-insert-command, orgtbl-self-insert-command): Modify to
6985 blank field after field motion commands.
6986
6987 2005-09-23 Kenichi Handa <handa@m17n.org>
6988
6989 * international/mule-cmds.el (set-language-environment):
6990 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
6991 have to call utf-translate-cjk-load-tables.
6992
6993 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
6994
6995 * mouse.el (mouse-move-drag-overlay): Fix last change.
6996
6997 2005-09-22 David Ponce <david@dponce.com>
6998
6999 * tree-widget.el (tree-widget-value-create): Fix previous change.
7000
7001 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
7002
7003 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
7004
7005 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7006
7007 * mouse.el (mouse-move-drag-overlay): New function.
7008 (mouse-drag-region-1): Use it.
7009 Try to simplify a bit the state handling. Handle clicks on links
7010 inside intangible areas.
7011 (mouse-save-then-kill): Minor simplification.
7012 (mouse-secondary-overlay): Make it always non-nil instead of
7013 recreating it each time.
7014 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
7015 (mouse-kill-secondary, mouse-secondary-save-then-kill):
7016 Simplify accordingly.
7017
7018 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
7019
7020 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
7021
7022 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
7023
7024 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
7025 (ediff-file-name-sans-prefix): Treat nil as an empty string.
7026 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
7027 to patch.
7028
7029 * ediff-util.el: Use insert-buffer-substring.
7030
7031 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
7032
7033 * emulation/viper-cmd.el (viper-change-state): Don't move over the
7034 field boundaries in the minibuffer.
7035 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
7036 (viper-minibuffer-post-command-hook): New hook.
7037 (viper-line): Don't move cursor at bolp.
7038
7039 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
7040
7041 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
7042 avoid compiler warnings.
7043
7044 * emulation/viper-macs.el (ex-map): Better messages.
7045
7046 * emulation/viper-utils.el (viper-beginning-of-field): New function.
7047
7048 * emulation/viper.el: Replace make-variable-buffer-local with
7049 viper-make-variable-buffer-local everywhere, to avoid warnings.
7050
7051 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7052
7053 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
7054 Delete unused var `old-selected-window'.
7055 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
7056 (mouse-drag-secondary): Delete unused var `start-frame'.
7057
7058 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
7059
7060 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
7061
7062 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7063
7064 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
7065 Re-indent within 80 columns. Use inhibit-read-only.
7066
7067 2005-09-19 Romain Francoise <romain@orebokech.com>
7068
7069 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
7070
7071 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7072
7073 * font-lock.el (font-lock-default-fontify-region): Don't add a line
7074 unconditionally, since the after-change-function already did it.
7075
7076 2005-09-19 Miles Bader <miles@gnu.org>
7077
7078 * net/newsticker.el: Get rid of CVS keyword.
7079
7080 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
7081
7082 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
7083 The prompt is formatted later.
7084
7085 2005-09-19 David Ponce <david@dponce.com>
7086
7087 * tree-widget.el (tree-widget-value-create): Save the converted
7088 tree :node widget.
7089
7090 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
7091
7092 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
7093 variable `message'.
7094
7095 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
7096
7097 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
7098 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
7099 <slawomir.nowaczyk.847@student.lu.se>.
7100
7101 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
7102
7103 * image.el (image-load-path): Use symbol `data-directory' instead
7104 of its value, for backward compatibility with packages that bind
7105 it during `find-image'. Suggested by Katsumi Yamaoka.
7106 (image-search-load-path): Handle symbols whose values are strings.
7107
7108 2005-09-18 Romain Francoise <romain@orebokech.com>
7109
7110 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
7111 with-current-buffer form in save-excursion.
7112
7113 2005-09-18 D Goel <deego@gnufans.org>
7114
7115 * apropos.el (apropos-command): Fix `message' call: first arg
7116 should be a format spec. In this and all other cases that appear
7117 below and elsewhere in the source code, I made a change only when
7118 two conditions were satisfied: [1] I can think of a possibility
7119 that the arguments would cause an error, for example, the code in
7120 question relies on external variables such as filenames. [2] I
7121 was sure that the arg to `message' could not have been nil in the code.
7122
7123 * textmodes/tildify.el (tildify-region): Ditto.
7124
7125 * textmodes/reftex-index.el (reftex-index-change-entry)
7126 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
7127 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
7128 * textmodes/org.el (org-complete, org-deadline, org-schedule)
7129 (org-priority, org-table-sum):
7130 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
7131 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
7132 (flyspell-word, flyspell-display-next-corrections):
7133 * textmodes/bibtex.el (bibtex-print-help-message):
7134 * textmodes/artist.el (artist-key-set-point-poly):
7135 * term/mac-win.el (mac-services-insert-text):
7136 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
7137 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
7138 (vhdl-port-paste-testbench, vhdl-compose-new-component)
7139 (vhdl-compose-configuration):
7140 * progmodes/sh-script.el (sh-blink, sh-show-indent)
7141 (sh-set-indent, sh-learn-line-indent):
7142 * progmodes/ps-mode.el (ps-mode-target-column):
7143 * progmodes/idlwave.el (idlwave-make-tags)
7144 (idlwave-scan-library-catalogs):
7145 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
7146 * progmodes/gud.el (gud-jdb-analyze-source):
7147 * progmodes/flymake.el (flymake-log):
7148 * progmodes/ebnf2ps.el (ebnf-generate-region):
7149 * progmodes/cmacexp.el (c-macro-expansion):
7150 * progmodes/ada-xref.el (ada-treat-cmd-string):
7151 * progmodes/ada-mode.el (ada-create-case-exception-substring)
7152 (ada-justified-indent-current, ada-batch-reformat):
7153 * play/zone.el (zone):
7154 * play/landmark.el (lm-move):
7155 * play/decipher.el (decipher-show-alphabet):
7156 * net/newsticker.el (newsticker--display-jump)
7157 (newsticker--display-scroll):
7158 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
7159 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
7160 * mail/feedmail.el (feedmail-dump-message-to-queue):
7161 * eshell/esh-proc.el (eshell-remove-process-entry):
7162 * emulation/ws-mode.el (ws-last-error):
7163 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
7164 (viper-record-kbd-macro):
7165 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
7166 * emacs-lisp/lisp-mnt.el (lm-report-bug):
7167 * emacs-lisp/find-func.el (find-function-noselect):
7168 * calendar/timeclock.el (timeclock-status-string)
7169 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
7170 (timeclock-when-to-leave-string):
7171 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
7172 * calc/calc-units.el (calc-enter-units-table):
7173 * calc/calc-mode.el (calc-mode-record-mode):
7174 * woman.el (woman-mini-help):
7175 * wdired.el (wdired-change-to-wdired-mode):
7176 * vc.el (vc-retrieve-snapshot):
7177 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
7178 * startup.el (display-startup-echo-area-message):
7179 * simple.el (set-goal-column):
7180 * ses.el (ses-command-hook, ses-recalculate-cell):
7181 * server.el (server-process-filter):
7182 * printing.el (pr-interface-txt-print, pr-interface-printify)
7183 (pr-interface-ps):
7184 * pcvs.el (cvs-help):
7185 * log-edit.el (log-edit, log-edit-mode-help):
7186 * iswitchb.el (iswitchb-possible-new-buffer):
7187 * isearch.el (isearch-edit-string):
7188 * image-mode.el (image-mode, image-minor-mode):
7189 * ibuf-macs.el (define-ibuffer-filter):
7190 * hi-lock.el (hi-lock-find-patterns):
7191 * files.el (toggle-read-only):
7192 * ediff-util.el (ediff-copy-diff)
7193 (ediff-write-merge-buffer-and-maybe-kill):
7194 * echistory.el (Electric-history-undefined):
7195 * dnd.el (dnd-insert-text):
7196 * dired-aux.el (dired-query):
7197 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
7198 * bookmark.el (bookmark-bmenu-locate):
7199 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
7200 Fix `message' calls to ensure first arg is a format string.
7201 The change was made only when these two conditions were satisfied:
7202 [1] when there is a possibility that the arguments would cause an error
7203 for example, if the code in question relies on external variables
7204 such as filenames, and
7205 [2] if the arg to `message' could not have been nil in the code.
7206
7207 * pcomplete.el (pcomplete--help): Fix `message' format spec.
7208 Not having a %s would be weird, though not technically wrong.
7209
7210 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7211
7212 * term/mac-win.el (mac-add-charset-info): Doc fix.
7213
7214 2005-09-17 Romain Francoise <romain@orebokech.com>
7215
7216 * shell.el (shell-resync-dirs): Handle echoing processes more
7217 reliably. Don't insert resync command if `comint-process-echoes'
7218 is non-nil.
7219
7220 2005-09-17 Magnus Henoch <mange@freemail.hu>
7221
7222 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
7223 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
7224 aspell versions >= 0.60.
7225 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
7226 only if ispell-aspell-supports-utf8 is non-nil.
7227
7228 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
7229
7230 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
7231 buffer-local value to lisp-indent-function.
7232
7233 2005-09-17 Milan Zamazal <pdm@zamazal.org>
7234
7235 * progmodes/glasses.el (glasses-make-readable): If
7236 glasses-separator differs from underscore, put appropriate
7237 overlays over underscore characters.
7238 (glasses-convert-to-unreadable): If glasses-separator differs from
7239 underscore, try to convert glasses-separator characters to
7240 underscores.
7241
7242 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
7243
7244 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
7245 Use with-syntax-table and dolist.
7246
7247 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
7248
7249 * textmodes/reftex-auc.el:
7250 * textmodes/reftex-cite.el:
7251 * textmodes/reftex-dcr.el:
7252 * textmodes/reftex-global.el:
7253 * textmodes/reftex-parse.el:
7254 * textmodes/reftex-ref.el:
7255 * textmodes/reftex-sel.el:
7256 * textmodes/reftex-toc.el:
7257 * textmodes/reftex-vars.el:
7258 * textmodes/reftex.el: Small changes to remove compiler warnings.
7259
7260 * textmodes/reftex-index.el: Likewise.
7261 (reftex-query-index-phrase): More efficient use of markers.
7262
7263 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
7264
7265 * image.el (image-load-path): New variable.
7266 (image-search-load-path): New function.
7267 (find-image): Search for images in `image-load-path'.
7268
7269 2005-09-15 Richard M. Stallman <rms@gnu.org>
7270
7271 * follow.el: Change Maintainer field.
7272
7273 2005-09-15 David Ponce <david@dponce.com>
7274
7275 * recentf.el (recentf-save-file-modes): New option.
7276 (recentf-save-list): Use it.
7277
7278 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
7279
7280 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
7281 (mode-line-mule-info, mode-line-modified): Move bindings from
7282 mouse-3 to mouse-1.
7283
7284 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
7285
7286 * simple.el (sendmail-user-agent-compose): Revert last change.
7287
7288 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7289
7290 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
7291 Use with-current-buffer.
7292 (ange-ftp-gwp-start): Remove unused var `gw-user'.
7293 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
7294 (ange-ftp-insert-directory): Remove unused var `short'.
7295 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
7296
7297 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
7298 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
7299
7300 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
7301 (check-calendar-holidays, diary-list-entries): Autoload.
7302 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
7303 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
7304
7305 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
7306 which mistakenly removed a call to display-buffer.
7307
7308 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
7309
7310 * obsolete/iso-insert.el: Move to obsolete/ from international/.
7311
7312 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
7313
7314 * progmodes/hideshow.el
7315 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
7316 (hs-allow-nesting): New user var.
7317 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
7318 (hs-hide-block-at-point): When nesting allowed,
7319 if there is already an overlay in place, delete it.
7320 (hs-safety-is-job-n): Delete func; remove call sites.
7321 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
7322 (hs-overlay-at): New func.
7323 (hs-already-hidden-p, hs-show-block): Use it.
7324 (hs-hide-all): Don't pre-clean if nesting allowed.
7325 (hs-show-all): Temporarily disallow
7326 nesting around call to `hs-discard-overlays'.
7327
7328 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
7329
7330 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
7331 Delete unused local var.
7332
7333 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
7334
7335 * help-fns.el (describe-categories): "?\ " -> "?\s".
7336 (help-do-arg-highlight): Recognize also ARG-n, as in
7337 `move-to-left-margin' (ARG+n is already recognized). Simplify.
7338
7339 * international/codepage.el (dos-unsupported-char-glyph):
7340 * net/newsticker.el (tool-bar-map, w3-mode-map)
7341 (w3m-minor-mode-map):
7342 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
7343 (ent-alist):
7344 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
7345
7346 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
7347
7348 * custom.el (custom-push-theme): Handle the case where a symbol is
7349 bound but face properties have not yet been assigned.
7350
7351 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
7352 Fix behavior if noerase is `t' and there is no mail buffer.
7353
7354 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
7355 if `continue' is nil, rather than signal an error.
7356
7357 2005-09-12 Richard M. Stallman <rms@gnu.org>
7358
7359 * font-lock.el (font-lock-keywords): Add autoload.
7360
7361 * help-fns.el (describe-variable): Rearrange to put source link
7362 in a predictable place.
7363
7364 * net/newsticker.el: New file.
7365
7366 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7367
7368 * calendar/calendar.el (calendar-for-loop): Add edebug info.
7369 (calendar-basic-setup): Use the new nil arg.
7370 (number-of-diary-entries): Move to diary-lib.el.
7371
7372 * calendar/diary-lib.el: Use with-current-buffer, match-string.
7373 (diary-list-entries): Use with-syntax-table and dolist.
7374 Rename from list-diary-entries.
7375 Use number-of-diary-entries if `number' is nil.
7376 (diary, diary-view-entries): Use this new name and new nil arg value.
7377 (number-of-diary-entries): Move from calendar.el.
7378 (diary-unhide-everything): New function.
7379 (include-other-diary-files, fancy-diary-display)
7380 (diary-show-all-entries, make-diary-entry): Use it.
7381 (diary-mail-entries): Use buffer-string.
7382 (mark-diary-entries): Fix long standing paren typo.
7383 (diary-sexp-entry): Use count-lines.
7384 (make-diary-entry): Avoid `previous-line'.
7385 (diary-mode-map): New var.
7386 (diary-mode): Redraw cal after saving. Setup header-line.
7387 (fancy-diary-display-mode): Use local-set-key.
7388
7389 * startup.el (command-line): Try calling various terminal-init-foo-bar
7390 functions by stripping hyphenated suffixes from $TERM.
7391
7392 * files.el (normal-mode): Check boundness of font-lock-keywords.
7393
7394 2005-09-12 Richard M. Stallman <rms@gnu.org>
7395
7396 * progmodes/compile.el: Don't decide a file's directory
7397 until the user actually tries to go there.
7398 (compilation-next-error-function):
7399 Pass compilation-find-file the directory from the file-struct.
7400 (compilation-internal-error-properties): Separate local FILE-STRUCT
7401 from FILE. Doc the args better. Rename arg FMT to FMTS.
7402 (compilation-find-file): Arg DIR renamed to DIRECTORY.
7403 Expand it, and if nil, use default-directory.
7404 (compilation-get-file-structure): Don't mix specified directory
7405 with default directory. Put specified directory into
7406 file-struct. Don't make the file name absolute.
7407
7408 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
7409 (compile-command): Add autoload.
7410 (compilation-disable-input): Add autoload.
7411
7412 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
7413
7414 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
7415 strings of the variables it can override.
7416 (time-stamp): New (as yet undocumented) time-stamp-format escapes
7417 %Q and %q, for fully-qualified domain name and unqualified host name.
7418
7419 2005-09-11 Kim F. Storm <storm@cua.dk>
7420
7421 * emacs-lisp/authors.el (authors-aliases): Update list.
7422 (authors-fixed-entries): Update mldrag.el entry.
7423
7424 2005-09-10 Alan Mackenzie <acm@muc.de>
7425
7426 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
7427 from the region narrowed to.
7428
7429 2005-09-10 Magnus Henoch <mange@freemail.hu>
7430
7431 * textmodes/ispell.el (ispell-check-version): Signal an error if
7432 aspell version is less than 0.60.
7433
7434 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
7435
7436 * progmodes/octave-inf.el (inferior-octave-startup):
7437 Resync current dir at the end.
7438
7439 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
7440
7441 * woman.el (woman-topic-at-point-default):
7442 Rename to woman-use-topic-at-point-default.
7443 (woman-topic-at-point): Rename to woman-use-topic-at-point.
7444 (woman-file-name): Reflect renames above. Automatically use the
7445 word at point as topic if woman-use-topic-at-point is non-nil.
7446 Otherwise offer it as default but don't insert it in the
7447 minibuffer. Also use `test-completion' instead of `assoc' as
7448 suggested by Stefan Monnier.
7449
7450 2005-09-10 Andre Spiegel <spiegel@gnu.org>
7451
7452 * vc.el (vc-directory, vc-update-change-log): Throw an error on
7453 the attempt to do it over Tramp. This is not yet supported.
7454
7455 2005-09-10 Eli Zaretskii <eliz@gnu.org>
7456
7457 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
7458 (menu-bar-non-minibuffer-window-p): New functions.
7459 ("Split Window", "Save As..."): Use them.
7460 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
7461 ("Print Buffer", "Truncate Long Lines in this Buffer"):
7462 Use menu-bar-menu-frame-live-and-visible-p.
7463 ("Save Buffer", "Insert File", "Open Directory...")
7464 ("Open File...", "Visit New File..."):
7465 Use menu-bar-non-minibuffer-window-p.
7466 (kill-this-buffer-enabled-p, dired <menu-enable>):
7467 Use menu-bar-non-minibuffer-window-p.
7468
7469 2005-09-09 Eli Zaretskii <eliz@gnu.org>
7470
7471 * cus-start.el (all): Don't complain about fringe-related
7472 built-ins if fringes are not supported. Ditto about
7473 selection-related built-ins. Fix the test for GTK-related built-ins.
7474
7475 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
7476 ("Postscript Print Buffer", "Print Region", "Save As...")
7477 ("Save", "Insert File...", "Open Directory...")
7478 ("Open File...", "Visit New File..."")
7479 ("Truncate Long Lines in this Buffer"): Don't look at
7480 menu-updating-frame if this display does not support multiple frames.
7481
7482 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
7483
7484 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
7485
7486 2005-09-09 Emilio Lopes <eclig@gmx.net>
7487
7488 * woman.el: Format- and whitespace-related changes.
7489
7490 2005-09-09 Eli Zaretskii <eliz@gnu.org>
7491
7492 * woman.el: Fix my email address.
7493
7494 2005-09-08 Richard M. Stallman <rms@gnu.org>
7495
7496 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
7497 (sh-mode): Locally set skeleton-pair-default-alist.
7498
7499 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
7500
7501 * progmodes/flymake.el: Require `compile' unconditionally.
7502
7503 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
7504
7505 * woman.el (woman-file-name): Provide a default, not initial input.
7506
7507 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
7508
7509 * font-lock.el (font-lock-support-mode): Doc fix.
7510
7511 * descr-text.el (describe-property-list): Handle non-symbol prop names.
7512
7513 2005-09-08 Richard M. Stallman <rms@gnu.org>
7514
7515 * simple.el (blink-matching-open): Get rid of text props from
7516 the string shown in echo area. Don't permanently set point.
7517 Some rearrangements.
7518
7519 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
7520
7521 * recentf.el (recentf-filename-handler): Add custom choice
7522 `abbreviate-file-name'.
7523
7524 * msb.el (msb--very-many-menus): Fix typo.
7525
7526 * disp-table.el (standard-display-european): Don't set
7527 enable-multibyte-characters to nil.
7528
7529 2005-09-08 David Ponce <david@dponce.com>
7530
7531 * recentf.el (recentf-show-file-shortcuts-flag): New option.
7532 (recentf-expand-file-name): Doc fix.
7533 (recentf-dialog-mode-map): Define digit shortcuts.
7534 (recentf--files-with-key): New variable.
7535 (recentf-show-digit-shortcut-filter): New function.
7536 (recentf-open-files-items): New function.
7537 (recentf-open-files): Use it.
7538 (recentf-open-file-with-key): New command.
7539
7540 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
7541
7542 * buff-menu.el (Buffer-menu-sort-by-column): New function.
7543 Suggested by Kim F. Storm.
7544 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
7545 (Buffer-menu-make-sort-button): Use global keymap.
7546
7547 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
7548
7549 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
7550 (Man-getpage-in-background-advice): Remove defadvice; it isn't
7551 necessary any longer with the remapped command.
7552 (Man-bgproc-sentinel-advice): Remove defadvice which counts
7553 formatting time only.
7554
7555 * net/tramp.el (tramp-action-password)
7556 (tramp-multi-action-password): Compile the password prompt from
7557 `method', `user' and `host'. Sometimes it isn't obvious which
7558 password to enter, for example with remote files offered by
7559 recentf.el, or with multiple steps. Suggested by Robert Marshall
7560 <robert@chezmarshall.freeserve.co.uk>.
7561
7562 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
7563
7564 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
7565 Fix regexp for when "s///" is at the beginning of line.
7566
7567 2005-09-07 Jay Belanger <belanger@truman.edu>
7568
7569 * calc/calc-poly.el (math-expand-term): Multiply out any powers
7570 when in matrix mode.
7571
7572 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
7573
7574 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
7575 non-anonymous functions.
7576
7577 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
7578
7579 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
7580 when using a header line. Otherwise, use mouse-1-click-follows-link.
7581
7582 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
7583 can't be moved; don't signal an error.
7584
7585 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
7586
7587 * cus-theme.el (custom-theme-write-faces): Save the current face
7588 spec, not the defface spec.
7589
7590 * custom.el (custom-known-themes): Clarify meaning of "standard".
7591 (custom-push-theme): Save old values in the standard theme.
7592 (disable-theme): Correct typo.
7593 (custom-face-theme-value) Deleted unused function.
7594 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
7595
7596 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
7597
7598 * progmodes/compile.el (compilation-goto-locus): Take into account
7599 iconified frames when determining whether the buffer is
7600 already visible.
7601 Don't reset window height if the window already existed.
7602
7603 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
7604
7605 * custom.el (load-theme): Rename from require-theme.
7606 Add interactive spec.
7607 (enable-theme): Rename from custom-enable-theme.
7608 Add interactive spec.
7609 (disable-theme): Rename from custom-disable-theme.
7610 Add interactive spec.
7611 (custom-make-theme-feature): Doc fix.
7612 (custom-theme-directory): Doc fix.
7613 (provide-theme): Call enable-theme.
7614
7615 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
7616
7617 * obsolete/lazy-lock.el (lazy-lock-mode):
7618 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
7619 font-lock-mode if it's off. Print a warning instead.
7620
7621 * progmodes/compile.el (compilation-start): Ignore errors if the
7622 process died before we get to send-eof.
7623
7624 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
7625 Undo last change. Enclosing the result in quotes broke things on Unix
7626 since tex-send-command passes it through shell-quote-argument.
7627 (tex-send-command): Pass `file' through convert-standard-filename
7628 when possible.
7629 (tex-uptodate-p): Handle the case where TeX hasn't put additional
7630 info in a transcript.
7631
7632 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
7633
7634 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
7635 fix compilation warning. Reorder the key definitions to group
7636 together keys emitted by the current version of xterm.
7637
7638 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
7639 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
7640 Reorder predicates to correct min-color usage.
7641
7642 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
7643
7644 * longlines.el (longlines-mode): Inhibit read-only when encoding.
7645 Kill local variables when longlines-mode is turned off.
7646
7647 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
7648
7649 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
7650
7651 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
7652
7653 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
7654
7655 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
7656 (font-lock-lines-before): Change default to being inactive.
7657 (font-lock-default-fontify-region): Obey font-lock-lines-before.
7658 (font-lock-after-change-function): Don't handle f-l-lines-before here.
7659
7660 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
7661
7662 * net/tramp.el (tramp-handle-make-auto-save-file-name):
7663 Deactivate temporarily advice if active (not needed for Emacs 22,
7664 but for backwards compatibility).
7665 (tramp-exists-file-name-handler): Rewrite. First implementation
7666 was too simple.
7667 (tramp-advice-make-auto-save-file-name):
7668 Call `tramp-handle-make-auto-save-file-name' (again, just for
7669 backwards compatibility).
7670
7671 2005-08-31 Reto Zimmermann <reto@gnu.org>
7672
7673 * progmodes/vhdl-mode.el
7674 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
7675 (vhdl-end-p): Fix indentation bug "else" after "-- when".
7676 (vhdl-set-default-project): New function (easier setting of default).
7677 (vhdl-port-copy): Handle extended identifiers for generics.
7678 (vhdl-compiler-alist): Better description for error message regexp.
7679 (vhdl-make): Query for target, use previous as default.
7680 (vhdl-port-copy): Fix port copy for port names starting with "signal".
7681 (vhdl-font-lock-keywords-2): Fix fontification for record
7682 el. assign.
7683 (vhdl-speedbar-make-subpack-line): Add package body link.
7684 (vhdl-generate-makefile-1): Not include itself as dependency.
7685 (vhdl-font-lock-init): Highlight c-preprocessor directives.
7686 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
7687 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
7688 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
7689 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
7690 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
7691 (vhdl-import-project): Add string argument for `error'.
7692 (vhdl-compose-configuration)
7693 (vhdl-compose-configuration-architecture): Add configuration
7694 declaration generation.
7695 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
7696 (vhdl-trailer-re): Add "record" keyword (better indentation).
7697 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
7698 "[^ \t-\"]+".
7699 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
7700 (vhdl-testbench-entity-file-name)
7701 (vhdl-testbench-architecture-file-name): Allow separate
7702 customization of testbench file names.
7703 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
7704 (vhdl-get-visible-signals): Allow newline within alias declaration.
7705 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
7706 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
7707 (member-ignore-case): Alias for missing function in XEmacs.
7708 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
7709 (vhdl-update-sensitivity-list): Ignore case on read signals.
7710 (vhdl-replace-string): Adjust case only for file names.
7711 (vhdl-update-sensitivity-list): Fix search for read signals.
7712 (vhdl-update-sensitivity-list): Exclude formal parameters.
7713 (vhdl-get-visible-signals): Include aliases of signals.
7714 (vhdl-get-visible-signals): Fix signal name searching.
7715 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
7716 (vhdl-fixup-whitespace-region): Fix for character
7717 literals (e.g. ':').
7718
7719 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
7720
7721 * ansi-color.el (comint-last-output-start):
7722 * bs.el (font-lock-verbose):
7723 * diff-mode.el (add-log-buffer-file-name-function):
7724 * dired-x.el (vm-folder-directory):
7725 * faces.el (help-xref-stack-item):
7726 * files.el (font-lock-keywords):
7727 * find-lisp.el (dired-buffers, dired-subdir-alist):
7728 * ido.el (cua-inhibit-cua-keys):
7729 * log-view.el (cvs-minor-wrap-function):
7730 * outline.el (font-lock-warning-face):
7731 * simple.el (compilation-current-error):
7732 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
7733 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
7734 * tooltip.el (comint-prompt-regexp):
7735 * w32-fns.el (explicit-shell-file-name):
7736 * term/mac-win.el (mac-charset-info-alist)
7737 (mac-services-selection, mac-system-script-code):
7738 * term/tty-colors.el (msdos-color-values):
7739 * term/w32-win.el (xlfd-regexp-registry-subnum):
7740 * term/x-win.el (x-keysym-table, x-selection-timeout)
7741 (x-session-id, x-session-previous-id):
7742 * textmodes/ispell.el (mail-yank-prefix):
7743 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
7744 * textmodes/org.el (calc-embedded-close-formula)
7745 (calc-embedded-open-formula)
7746 (font-lock-unfontify-region-function):
7747 * textmodes/reftex-global.el (isearch-next-buffer-function)
7748 (TeX-master):
7749 * textmodes/reftex.el (font-lock-keywords):
7750 * textmodes/tex-mode.el (font-lock-comment-face)
7751 (font-lock-doc-face):
7752 * textmodes/texinfo.el (outline-heading-alist):
7753 Add defvars.
7754
7755 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
7756 (artist-spray-chars, artist-mode-init, artist-replace-string)
7757 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
7758 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
7759 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
7760
7761 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
7762 (conf-align-assignments): "?\ " -> "?\s".
7763
7764 * textmodes/reftex-index.el (TeX-master): Add defvar.
7765 (reftex-index-phrases-marker): Move up defvar.
7766
7767 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
7768 (reftex-toc-include-labels-indicator)
7769 (reftex-toc-include-index-indicator)
7770 (reftex-toc-max-level-indicator): Move up declarations.
7771
7772 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
7773 of args to `tramp-run-real-handler', even if it's empty in this case.
7774
7775 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7776
7777 * dired.el (dired-move-to-filename-regexp): Add date format for
7778 Mac OS X 10.3 in East Asian locales.
7779
7780 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
7781
7782 * files.el (make-auto-save-file-name): Add file name handler call
7783 if applicable.
7784
7785 * net/tramp.el (tramp-file-name-handler-alist)
7786 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
7787 (tramp-handle-make-auto-save-file-name): Rename from
7788 `tramp-make-auto-save-file-name'.
7789 (tramp-exists-file-name-handler): New defun.
7790 (tramp-advice-make-auto-save-file-name): Make defadvice only when
7791 `make-auto-save-file-name' is not a magic file name operation.
7792
7793 2005-08-30 Richard M. Stallman <rms@gnu.org>
7794
7795 * files.el (risky-local-variable-p):
7796 Match `-predicates' and `-commands.
7797
7798 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
7799 (custom-save-all): Visit the file if necessary;
7800 kill the buffer if we created it.
7801 (custom-save-delete): Don't visit file or kill buffer here.
7802
7803 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
7804
7805 * textmodes/org.el (org-special-keyword): New face.
7806 (org-table-copy-down, org-table-eval-formula)
7807 (org-table-recalculate, org-init-section-numbers):
7808 Use `string-to-number' instead of `string-to-int'.
7809 (org-get-location): Use `insert-buffer-substring' instead of
7810 `insert-buffer'.
7811 (org-modify-diary-entry-string): New function.
7812 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
7813 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
7814 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
7815 active region.
7816 (org-export-as-html): Handle QUOTE keyword.
7817 (org-quote-string): New option.
7818 (org-bookmark-jump-unhide): New function, used for
7819 `bookmark-after-jump-hook'.
7820 (org-diary-default-entry): Apply only when not called through
7821 `org-agenda'.
7822
7823 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
7824
7825 * net/eudc.el (mode-popup-menu):
7826 * play/handwrite.el (ps-printer-name, ps-lpr-command):
7827 * progmodes/ada-mode.el (compile-auto-highlight)
7828 (skeleton-further-elements):
7829 * progmodes/autoconf.el (font-lock-syntactic-keywords):
7830 * progmodes/cmacexp.el (msdos-shells):
7831 * progmodes/compile.el (font-lock-extra-managed-props)
7832 (font-lock-keywords, font-lock-maximum-size)
7833 (font-lock-support-mode):
7834 * progmodes/grep.el (font-lock-lines-before):
7835 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
7836 * progmodes/mixal-mode.el (compile-command):
7837 * progmodes/perl-mode.el (font-lock-comment-face)
7838 (font-lock-doc-face, font-lock-string-face):
7839 * progmodes/prolog.el (comint-prompt-regexp):
7840 * progmodes/sh-script.el (font-lock-comment-face)
7841 (font-lock-set-defaults, font-lock-string-face):
7842 * progmodes/sql.el (font-lock-keyword-face)
7843 (font-lock-set-defaults, font-lock-string-face):
7844 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
7845 (itimer-version, lazy-lock-defer-contextually)
7846 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
7847 Add defvars.
7848
7849 * progmodes/cperl-mode.el (cperl-electric-lbrace)
7850 (cperl-electric-keyword, cperl-electric-pod)
7851 (cperl-electric-backspace, cperl-forward-re)
7852 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
7853 (vc-rcs-header, vc-sccs-header): Add defvars.
7854
7855 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
7856 (font-lock-syntactic-keywords, gud-find-expr-function):
7857 Add defvars.
7858
7859 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
7860 (gdb-frame-parameters): Declare before use.
7861
7862 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
7863 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
7864 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
7865 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
7866
7867 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
7868 (idlwave-help-with-source): Use `insert-buffer-substring', not
7869 `insert-buffer'.
7870
7871 2005-08-29 Juri Linkov <juri@jurta.org>
7872
7873 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
7874 Put outline-back-to-heading function call inside save-excursion.
7875
7876 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
7877
7878 * man.el (Man-init-defvars, Man-translate-references)
7879 (Man-support-local-filenames, Man-highlight-references):
7880 * progmodes/sql.el (sql-interactive-mode):
7881 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
7882
7883 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
7884 (compilation-mode-font-lock-keywords): Add defvars.
7885 (checkdoc-interactive-loop): "?\ " -> "?\s".
7886
7887 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
7888 (font-lock-doc-face, font-lock-string-face)
7889 (font-lock-keywords-case-fold-search): Add defvars.
7890 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
7891
7892 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
7893 Don't pass X and Y (they are ignored anyway).
7894 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
7895 (mouse-delete-window): Make arguments optional.
7896
7897 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
7898 (caesar-translate-table, minor-modes, news-buffer-save)
7899 (news-group-name, news-minor-modes): Add defvars.
7900
7901 * emacs-lisp/lselect.el (mouse-highlight-priority)
7902 (x-lost-selection-functions, zmacs-regions):
7903 * emacs-lisp/pp.el (font-lock-verbose):
7904 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
7905 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
7906 (ses-mode-map):
7907 * emacs-lisp/tcover-unsafep.el (safe-functions):
7908 * international/mule-cmds.el (mac-system-coding-system)
7909 (mac-system-locale):
7910 * language/ethio-util.el (rmail-current-message)
7911 (rmail-message-vector):
7912 * language/thai-util.el (thai-auto-composition-mode):
7913 * mail/metamail.el (rmail-current-message, rmail-message-vector):
7914 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
7915 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
7916 (vm-primary-inbox, vm-spool-files):
7917 * mail/rmail.el (deleted-head, font-lock-fontified)
7918 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
7919 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
7920 (total-messages):
7921 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
7922 (rmail-summary-mode-map):
7923 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
7924 (rmail-last-label, rmail-last-multi-labels)
7925 (rmail-summary-vector, rmail-total-messages):
7926 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
7927 * mail/rmailsum.el (msgnum):
7928 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
7929 (rmail-current-message):
7930 * obsolete/fast-lock.el (font-lock-face-list):
7931 * obsolete/rnewspost.el (mail-reply-buffer):
7932 * obsolete/scribe.el (compile-command):
7933 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
7934
7935 2005-08-28 John Paul Wallington <jpw@gnu.org>
7936
7937 * ibuf-ext.el (ibuffer-auto-update-changed):
7938 Use `frame-or-buffer-changed-p' to check whether we need to update.
7939 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
7940 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
7941 as a `frame-or-buffer-changed-p' state vector instead.
7942
7943 2005-08-27 Romain Francoise <romain@orebokech.com>
7944
7945 * textmodes/makeinfo.el (makeinfo-compile):
7946 Use `compilation-start'. Set `next-error-function' according to
7947 `disable-errors'.
7948 (makeinfo-next-error): New function.
7949 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
7950 (makeinfo-buffer): Likewise.
7951
7952 * progmodes/compile.el (compilation-start): Add autoload cookie.
7953
7954 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
7955 * textmodes/sgml-mode.el: Likewise.
7956 * progmodes/python.el: Likewise.
7957
7958 2005-08-27 Eli Zaretskii <eliz@gnu.org>
7959
7960 * simple.el (blink-matching-paren-distance): Document the meaning
7961 of nil value, and allow to customize to nil.
7962
7963 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
7964 command.com, not command.exe.
7965
7966 2005-08-26 John Wiegley <johnw@newartisans.com>
7967
7968 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
7969 code around a bit so that an extraneous nil argument is not added
7970 to a command when no args are given.
7971
7972 * eshell/esh-arg.el (eshell-parse-double-quote): If a
7973 double-quoted argument resolves to nil, return it as an empty
7974 string rather than as nil. This made it impossible to pass "" to
7975 a shell script as a null string argument.
7976
7977 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
7978
7979 * outline.el (outline-invent-heading): New fun.
7980 (outline-promote, outline-demote): Use it.
7981 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
7982 (outline-end-of-subtree): Remove unused var `opoint'.
7983
7984 2005-08-26 David Reitter <david.reitter@gmail.com>
7985
7986 * menu-bar.el (truncate-lines, write-file, print-buffer)
7987 (ps-print-buffer-faces, ps-print-buffer, split-window):
7988 Disable menu items when the frame they refer to is invisible, or when
7989 they refer to a buffer and the minibuffer is selected.
7990
7991 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
7992
7993 * progmodes/flymake.el (flymake-highlight-err-lines):
7994 Use save-excursion around flymake-highlight-line to preserve point.
7995
7996 2005-08-26 Eli Zaretskii <eliz@gnu.org>
7997
7998 * progmodes/octave-mod.el: Change Author and Maintainer address.
7999 (octave-maintainer-address): Change Kurt's email address.
8000 * progmodes/octave-inf.el: Change Author and Maintainer address.
8001 * progmodes/octave-hlp.el: Change Author and Maintainer address.
8002
8003 2005-08-26 Kim F. Storm <storm@cua.dk>
8004
8005 * subr.el (version-list-<, version-list-<=, version-list-=):
8006 Rename from integer-list-*.
8007 (version-list-not-zero): Likewise. Fix while loop.
8008 (version=): Use version-list-= instead of string-equal.
8009
8010 2005-08-26 Richard M. Stallman <rms@gnu.org>
8011
8012 * outline.el (outline-promote): Try shortening the heading.
8013 As last resort, read the heading to use.
8014 (outline-demote): As last resort, read the heading to use.
8015
8016 2005-08-26 Romain Francoise <romain@orebokech.com>
8017
8018 * progmodes/compile.el (compilation-start): Doc fix.
8019
8020 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
8021 (antlr-font-lock-additional-keywords): Fix reference to
8022 `antlr-font-lock-literal-regexp' erroneously changed during the
8023 mass face rename.
8024 (antlr-run-tool): Use `compilation-start'.
8025
8026 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
8027 instead of the obsolete `compile-internal'.
8028
8029 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
8030
8031 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
8032 (number, original-date):
8033 * calendar/cal-china.el (date):
8034 * calendar/cal-coptic.el (date):
8035 * calendar/cal-french.el (date):
8036 * calendar/cal-hebrew.el (date, entry, number, original-date):
8037 * calendar/cal-islam.el (date, number, original-date):
8038 * calendar/cal-iso.el (date):
8039 * calendar/cal-julian.el (date):
8040 * calendar/cal-mayan.el (date):
8041 * calendar/cal-menu.el (date, event):
8042 * calendar/cal-persia.el (date):
8043 * calendar/lunar.el (date):
8044 * calendar/solar.el (date): Add defvars.
8045
8046 * emerge.el:
8047 * ibuffer.el:
8048 * info-xref.el:
8049 * obsolete/bg-mouse.el:
8050 * obsolete/sun-curs.el:
8051 * obsolete/swedish.el: Move the `defvar's to the top level.
8052
8053 * smerge-mode.el (smerge-refined-change): Add :group.
8054
8055 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
8056
8057 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
8058 (smerge-keep-n): Remove props.
8059 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
8060 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
8061 now that it's done in smerge-keep-n.
8062 (smerge-refined-change): New face.
8063 (smerge-refine-chopup-region, smerge-refine-highlight-change)
8064 (smerge-refine): New funs.
8065 (smerge-basic-map): Bind smerge-refine.
8066
8067 2005-08-25 Juri Linkov <juri@jurta.org>
8068
8069 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
8070 compilation-process-setup-function and compilation-disable-input
8071 in grep-mode instead of let-bindings in grep.
8072
8073 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
8074 Delete "Automatic File De/compression" (auto-compression-mode).
8075
8076 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
8077
8078 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
8079 Silence warning about non-existent variable.
8080
8081 2005-08-25 Richard M. Stallman <rms@gnu.org>
8082
8083 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
8084 Rename "Describe Key" to "Describe Key or Mouse Operation".
8085
8086 * mail/mailalias.el (build-mail-aliases): Delete comments
8087 from the contents before processing them.
8088
8089 * isearch.el (isearch-edit-string): Erase the Search prompt
8090 if user enters an empty string and there is no default.
8091
8092 * comint.el (comint-file-name-prefix): Add autoload.
8093
8094 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
8095
8096 * subr.el (play-sound): Rearrange to avoid warning.
8097
8098 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
8099
8100 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
8101 New hook.
8102 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
8103
8104 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
8105
8106 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
8107
8108 * custom.el (custom-theme-set-variables): Sort minor modes last.
8109
8110 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8111
8112 * subr.el (version-separator, version-regexp-alist): New vars used by
8113 version comparison funs.
8114 (integer-list-<, integer-list-=, integer-list-<=)
8115 (integer-list-not-zero): New funs for integer list comparison.
8116 (version-to-list, version=, version<, version<=): New funs for version
8117 comparison.
8118
8119 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
8120
8121 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
8122 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
8123 time to silence the byte-compiler.
8124
8125 * ibuffer.el (ibuffer-compile-make-eliding-form)
8126 (ibuffer-check-formats): Use `with-no-warnings' to hide references
8127 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
8128 so it's silly to get warnings for it).
8129 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
8130 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
8131 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
8132 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
8133 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
8134 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
8135 Defvar at compile time.
8136 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
8137 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
8138 Declare them before use.
8139
8140 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
8141 (info-xref-good, info-xref-bad): Defvar at compile time.
8142
8143 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
8144 Use `let*' instead of `let'.
8145
8146 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
8147 (*mouse-y*, menu, char): Defvar at compile time.
8148 (sc::menu): Declare it before use.
8149 (sc::pack-one-line): Use `let', not `let*'.
8150
8151 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
8152 (mail-send-hook): Defvar at compile time.
8153
8154 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
8155 Defvar at compile time.
8156
8157 * term/sun-mouse.el (current-global-mousemap)
8158 (current-local-mousemap): Declare them before use.
8159
8160 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
8161
8162 * bookmark.el (bookmark-after-jump-hook): New hook.
8163 (bookmark-jump): Run `bookmark-after-jump-hook'.
8164
8165 2005-08-23 Juri Linkov <juri@jurta.org>
8166
8167 * faces.el (minibuffer-prompt): Doc fix.
8168
8169 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
8170
8171 * progmodes/xscheme.el: Trivial changes to silence warnings.
8172 (xscheme-previous-mode, xscheme-previous-process-state):
8173 Add defvars.
8174 (xscheme-last-input-end, xscheme-process-command-line)
8175 (xscheme-process-name, xscheme-buffer-name)
8176 (xscheme-expressions-ring-max, xscheme-expressions-ring)
8177 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
8178 (xscheme-control-g-synchronization-p)
8179 (xscheme-control-g-disabled-p, xscheme-string-receiver)
8180 (default-xscheme-runlight, xscheme-runlight)
8181 (xscheme-runlight-string, xscheme-process-filter-state)
8182 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
8183 Move to beginning of file.
8184 (scheme-interaction-mode-commands-alist)
8185 (scheme-interaction-mode-map, scheme-debugger-mode-map):
8186 Declare them before use. Note: the initialization code for the variables
8187 has not been moved because it uses functions that reference the variables.
8188 (xscheme-control-g-message-string, xscheme-process-filter-alist)
8189 (xscheme-prompt-for-expression-map): Declare them before use.
8190 (scheme-debugger-mode-commands): "?\ " -> "?\s".
8191
8192 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
8193
8194 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
8195
8196 2005-08-22 Juri Linkov <juri@jurta.org>
8197
8198 * faces.el (set-face-underline): Delete this duplicate function
8199 and make an obsolete alias to set-face-underline-p.
8200 (set-face-underline-p): Use docstring of set-face-underline.
8201 (describe-face): Create hyperlink to parent face.
8202
8203 * info.el (Info-insert-dir): Use save-excursion around
8204 insert-buffer-substring.
8205 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
8206 (Info-escape-percent): Delete function.
8207 (Info-fontify-node): Replace Info-escape-percent by
8208 replace-regexp-in-string with REP arg set to lambda that
8209 duplicates `%' and preserves text properties.
8210
8211 * progmodes/compile.el (compilation-disable-input): Doc fix.
8212 (define-compilation-mode): Doc fix and refill.
8213 (kill-compilation): Use `mode-name' in the error message.
8214 (compilation-find-file): Use `compilation-error' in the
8215 read-file-name's prompt.
8216
8217 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
8218
8219 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
8220 (smerge-auto-leave): Make undo re-enable the mode.
8221 (debug-ignored-errors): Add the user-error of impossible resolution.
8222 (smerge-resolve): Move things around a bit, in preparation for later.
8223 (smerge-diff): Don't fail if the buffer has no associated file.
8224 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
8225 (smerge-conflict-overlay): New function.
8226 (smerge-match-conflict): Don't add text properties here.
8227 (smerge-find-conflict): Instead, add an overlay here.
8228 Also check for the case where we're inside a conflict already, so as to
8229 obviate the need for font-lock-multiline, which is unbearably slow with
8230 large conflicts and ciomplex font-lock patterns.
8231 (smerge-remove-props): Remove overlay rather than text-properties.
8232 (smerge-mode): Don't set font-lock-multiline.
8233 Remove overlays when turned off.
8234
8235 2005-08-21 Kim F. Storm <storm@cua.dk>
8236
8237 * ido.el (ido-ignore-item-p): Use save-match-data.
8238 Bind case-fold-search to ido-case-fold locally.
8239
8240 2005-08-20 Richard M. Stallman <rms@gnu.org>
8241
8242 * files.el (normal-mode): If font lock is on, turn it off and on.
8243
8244 * subr.el (replace-regexp-in-string): Doc fix.
8245
8246 * startup.el (command-line-1): Don't suppress startup screen
8247 due to existing processes.
8248
8249 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
8250
8251 * progmodes/compile.el (compilation-disable-input): Default to nil.
8252
8253 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
8254
8255 * progmodes/compile.el (compilation-disable-input): New defcustom.
8256 (compilation-start): If compilation-disable-input is non-nil, send
8257 EOF to the compilation process.
8258
8259 2005-08-20 Eli Zaretskii <eliz@gnu.org>
8260
8261 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
8262 Run the argument of tex-shell-cd-command through
8263 convert-standard-filename, to get the correct style of slashes on
8264 Windows, and enclose the result in quotes, in case the file name
8265 includes whitespace or other special characters.
8266
8267 2005-08-19 Andreas Schwab <schwab@suse.de>
8268
8269 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
8270 process.
8271
8272 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
8273
8274 * cus-start.el (minibuffer-prompt-properties): Correct typo.
8275
8276 2005-08-18 Kim F. Storm <storm@cua.dk>
8277
8278 * scroll-lock.el: Fix errors due to incorrect line wrapping.
8279
8280 2005-08-18 Richard M. Stallman <rms@gnu.org>
8281
8282 * scroll-lock.el: New file.
8283
8284 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
8285
8286 * dired.el (dired-move-to-end-of-filename):
8287 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
8288
8289 2005-08-18 Kim F. Storm <storm@cua.dk>
8290
8291 * ido.el (ido-everywhere): Fix defcustom :set function to disable
8292 rather than toggle mode when custom value is nil.
8293 (ido-everywhere): Fix defun doc string.
8294
8295 2005-08-17 Richard M. Stallman <rms@gnu.org>
8296
8297 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
8298 as tag instead of "Inviolable".
8299
8300 2005-08-17 Kim F. Storm <storm@cua.dk>
8301
8302 * windmove.el (windmove-coordinates-of-position): Remove.
8303 (windmove-coordinates-of-window-position): Remove.
8304 (windmove-reference-loc): Use posn-at-point instead.
8305
8306 * subr.el (insert-for-yank-1): Doc fix.
8307
8308 * ido.el (ido-enter-matching-directory): Rename from
8309 ido-enter-single-matching-directory. Change `slash' choice to
8310 `only'. Add `first' choice.
8311 (ido-exhibit): Adapt to above changes.
8312
8313 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
8314
8315 * Makefile.in: Expand comment about building loaddefs.el.
8316
8317 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
8318
8319 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
8320 Comment use of defadvice.
8321
8322 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
8323
8324 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
8325
8326 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
8327 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
8328 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
8329 * progmodes/idlw-shell.el, progmodes/ld-script.el,
8330 * progmodes/which-func.el, ruler-mode.el, strokes.el,
8331 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
8332 for backward compatibility for faces that did not appear in the
8333 previous Emacs release.
8334
8335 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
8336
8337 2005-08-15 Kim F. Storm <storm@cua.dk>
8338
8339 * emulation/cua-base.el (cua-delete-region): Return t if
8340 deleted region was non-empty.
8341 (cua-replace-region): Inhibit overwrite-mode for
8342 self-insert-command if replaced region was non-empty.
8343 (cua--explicit-region-start, cua--status-string): Make them
8344 buffer-local at top-level...
8345 (cua-mode): ...rather than when mode is enabled.
8346
8347 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
8348
8349 * progmodes/vhdl-mode.el (vhdl-emacs-21):
8350 Set t for Emacs 21, 22, and so on.
8351
8352 2005-08-15 David Ponce <david@dponce.com>
8353
8354 * tree-widget.el: Update Commentary header.
8355 (tree-widget-theme): Doc fix.
8356 (tree-widget-space-width): New option.
8357 (tree-widget-image-properties): Look up in the default theme too.
8358 (tree-widget--cursors): Only for images with arrow pointer shape.
8359 (tree-widget-lookup-image): Pointer shape is hand by default.
8360 (tree-widget-icon): Rename generic icon widget from
8361 `tree-widget-control'.
8362 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
8363 derive from `tree-widget-icon'.
8364 (tree-widget-handle): Improve default look and feel of the text
8365 representation.
8366 (tree-widget): Rename :*-control properties to :*-icon properties.
8367 Add :action and :help-echo properties.
8368 (tree-widget-after-toggle-functions): Move.
8369 (tree-widget-close-node, tree-widget-open-node): Remove.
8370 (tree-widget-before-create-icon-functions): New hook.
8371 (tree-widget-value-create): Update to allow customization of icons
8372 and nodes at run-time via that new hook.
8373 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
8374 (tree-widget-icon-action, tree-widget-icon-help-echo)
8375 (tree-widget-action, tree-widget-help-echo): New functions.
8376
8377 2005-08-15 Kim F. Storm <storm@cua.dk>
8378
8379 * ido.el (ido-buffer-internal): Use with-no-warnings.
8380 (ido-make-merged-file-list): Use while-no-input.
8381
8382 2005-08-15 Richard M. Stallman <rms@gnu.org>
8383
8384 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
8385 (flyspell-large-region): Fix doc and custom type.
8386
8387 2005-08-14 Richard M. Stallman <rms@gnu.org>
8388
8389 * files.el (interpreter-mode-alist): Doc fix.
8390
8391 * mail/rmail.el (rmail-nonignored-headers): New variable.
8392 (rmail-clear-headers): Use it.
8393 (rmail-reply): Better handling of mail-followup-to header.
8394
8395 * progmodes/sh-script.el (sh-font-lock-keywords-var):
8396 Rename variable from sh-font-lock-keywords. In the `shell' entry,
8397 don't try to refer to executable-font-lock-keywords.
8398 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
8399 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
8400 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
8401 (sh-mode): Set comment-start-skip, local-abbrev-table,
8402 imenu-case-fold-search.
8403 (sh-set-shell): Don't set them here.
8404 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
8405 Don't cache the results in the original alist; don't ever modify
8406 that alist.
8407
8408 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
8409
8410 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
8411 empty.
8412
8413 2005-08-15 Andreas Schwab <schwab@suse.de>
8414
8415 * desktop.el: Put autoload cookie at risky-local-variable declarations.
8416
8417 * dired.el, info.el, mail/rmail.el: Revert last change.
8418
8419 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
8420
8421 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
8422 modification in `eval-after-load' form.
8423 * info.el: Likewise.
8424 * mail/rmail.el: Likewise.
8425
8426 2005-08-14 Juri Linkov <juri@jurta.org>
8427
8428 * progmodes/compile.el (compilation-mode-font-lock-keywords):
8429 Remove highlighting of "Compilation started". Highlight only
8430 the word "finished" in "Compilation finished". Add highlighting
8431 of "interrupt", "killed", "terminated" and the exit code.
8432 (compilation-start): Add newline after header. Use exactly the
8433 same time stamp format as the finishing message.
8434 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
8435
8436 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
8437 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
8438 Add highlighting of "interrupt", "killed", "terminated".
8439
8440 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
8441 enabled and the current command is self-insert-command, call it
8442 explicitly with overwrite-mode bound to nil, to not allow it
8443 to delete the character after the selected region.
8444
8445 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
8446
8447 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
8448 move-end-of-line, end-of-line, and beginning-of-line to the list
8449 of commands after which the echo area is updated.
8450
8451 2005-08-12 Eli Zaretskii <eliz@gnu.org>
8452
8453 * cus-edit.el (custom-save-all, custom-save-delete):
8454 Bind recentf-exclude to exclude custom-file.
8455
8456 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
8457
8458 * mail/rmailsum.el (rmail-summary-end-of-message): New command
8459 to go to the bottom of the mail message. Added to
8460 `rmail-summary-mode-map' with key "/".
8461 (rmail-summary-show-message): New (internal) function for use by
8462 both `rmail-summary-beginning/end-of-message'.
8463 (rmail-summary-beginning-of-message): Change to use
8464 rmail-summary-show-message.
8465
8466 * mail/rmail.el (rmail-end-of-message): New command to go to the
8467 end of the current message. Added to `rmail-mode-map' with key "/".
8468 (rmail-beginning-of-message): Fix to work as documented.
8469 (rmail-mode): Change documentation.
8470
8471 * progmodes/compile.el (compilation-start): Add the line
8472 "Compilation started" with compilation start time.
8473 (compilation-mode-font-lock-keywords): Add `started' to keywords.
8474
8475 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
8476
8477 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
8478 of menu items.
8479
8480 2005-08-11 Richard M. Stallman <rms@gnu.org>
8481
8482 * simple.el (pop-global-mark): Reverse test of widen-automatically.
8483
8484 * battery.el (battery-status-function): Don't use ignore-errors.
8485
8486 2005-08-11 Lute Kamstra <lute@gnu.org>
8487
8488 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
8489 define-obsolete-variable-alias.
8490
8491 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
8492
8493 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
8494 (ange-ftp-send-cmd): Revert last change, and expand
8495 the comment explaining the problem.
8496
8497 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
8498
8499 * ldefs-boot.el: Update.
8500
8501 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
8502 item to "Time, Load and Mail". Change help echo text.
8503
8504 * time.el (display-time-use-mail-icon, display-time-format)
8505 (display-time-string-forms): Shorten first line of docstrings.
8506
8507 2005-08-10 Lars Hansen <larsh@soem.dk>
8508
8509 * desktop.el (desktop-buffer-mode-handlers):
8510 Make non-customizable. Add autoload cookie. Change initial value to
8511 nil; add elements in respective modules instead. Fix doc string.
8512 (desktop-load-file): New function.
8513 (desktop-minor-mode-handlers): New autoloaded variable.
8514 (desktop-create-buffer): Call minor mode handlers.
8515 Use desktop-load-file to load major and minor mode modules prior to
8516 checking for a handler.
8517 (desktop-save): Don't add nil to desktop-minor-modes for minor
8518 modes with nil function in desktop-minor-mode-table. Don't delete
8519 desktop file before rewriting it.
8520 (desktop-locals-to-save): Add autoload cookie. Don't make
8521 automatically buffer-local. Add variables column-number-mode,
8522 size-indication-mode, indent-tabs-mode,
8523 indicate-buffer-boundaries, indicate-empty-lines and
8524 show-trailing-whitespace.
8525 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
8526 regexps. Don't use desktop-clear-preserve-buffers-regexp.
8527 (desktop-clear-preserve-buffers-regexp): Delete.
8528 (desktop-clear-preserve-buffers): Update initial value and docstring.
8529 (desktop-save-buffer): Fix doc string.
8530
8531 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
8532 (hilit-chg-desktop-restore): New function.
8533 (highlight-changes-mode): Add highlight-changes-mode to
8534 desktop-locals-to-save.
8535
8536 * dired.el: Add handler to desktop-buffer-mode-handlers.
8537 (dired-restore-desktop-buffer): Remove autoload cookie.
8538 (dired-mode): Add autoload cookie.
8539
8540 * info.el: Add handler to desktop-buffer-mode-handlers.
8541 (Info-restore-desktop-buffer): Remove autoload cookie.
8542 (Info-mode): Add autoload cookie.
8543
8544 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
8545 (mh-restore-desktop-buffer): Remove autoload cookie.
8546 (mh-folder-mode): Add autoload cookie.
8547
8548 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
8549 (rmail-restore-desktop-buffer): Remove autoload cookie.
8550
8551 2005-08-11 Masatake YAMATO <jet@gyve.org>
8552
8553 * hexl.el (hexl-address-region):
8554 (hexl-ascii-region, hexl-font-lock-keywords):
8555 (hexl-highlight-line-range): Use the term "region"
8556 instead of "area" for consistency with the other symbols
8557 defined in hexl.el.
8558
8559 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
8560
8561 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
8562 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
8563 out by Juri Linkov). Add `display-battery-mode'.
8564
8565 2005-08-09 Juri Linkov <juri@jurta.org>
8566
8567 * progmodes/compile.el (compilation-mode-font-lock-keywords):
8568 Remove `-text' from face variable names.
8569 (compilation-error-file-name, compilation-warning-file-name)
8570 (compilation-info-file-name): Delete faces.
8571 (compilation-line-number, compilation-column-number):
8572 Remove face underlining.
8573 (compilation-message-face): Set to `underline' value by default.
8574 (compilation-error-face, compilation-warning-face)
8575 (compilation-info-face): Remove `-file-name' from face names.
8576 (compilation-error-text-face, compilation-warning-text-face)
8577 (compilation-info-text-face): Delete face variables.
8578 (compilation-text-face): Delete function.
8579
8580 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
8581 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
8582 (grep-error-face): Set to `compilation-error' instead of
8583 `compilation-error-face' (which is redefined to `grep-hit-face' in
8584 grep buffers).
8585 (grep-mode-font-lock-keywords): Remove `-text' from face variable
8586 names. Use `grep-error-face' instead of `compilation-error-text-face'.
8587
8588 * dired-aux.el (dired-do-query-replace-regexp):
8589 Use `query-replace-read-args'.
8590
8591 * replace.el (query-replace-read-from, query-replace-read-to)
8592 (query-replace-read-args): Rename arg `string' to `prompt'.
8593
8594 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
8595
8596 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
8597
8598 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
8599 uploading files.
8600 (ange-ftp-canonize-filename): Handle file names beginning with ~
8601 correctly.
8602
8603 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
8604
8605 * textmodes/fill.el (canonically-space-region)
8606 (fill-context-prefix, fill-french-nobreak-p)
8607 (fill-delete-newlines, fill-comment-paragraph)
8608 (justify-current-line): "?\ " -> "?\s".
8609
8610 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
8611
8612 * textmodes/fill.el (fill-nonuniform-paragraphs):
8613 Improve argument/docstring consistency.
8614
8615 2005-08-09 Richard M. Stallman <rms@gnu.org>
8616
8617 * textmodes/ispell.el (ispell-word): More fboundp checks.
8618
8619 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
8620 (find-file-noselect-1): Call it here, only if RAWFILE.
8621 (normal-mode): Always set some major mode.
8622 (save-some-buffers-action-alist): Change some explanation strings.
8623 (file-name-non-special): In the `quote' method, use unwind-protect.
8624
8625 2005-08-09 Magnus Henoch <mange@freemail.hu>
8626
8627 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
8628 (ispell-have-aspell-dictionaries): New variable.
8629 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
8630 (ispell-get-aspell-config-value): New function.
8631 (ispell-aspell-find-dictionary): New function.
8632 (ispell-aspell-add-aliases): New function.
8633 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
8634 appropriate. Don't look for ispell dictionaries if we use aspell.
8635 (ispell-menu-map): Don't build a submenu of dictionaries.
8636
8637 2005-08-09 Richard M. Stallman <rms@gnu.org>
8638
8639 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
8640 (sql-read-passwd): Use read-passwd.
8641
8642 * progmodes/idlw-toolbar.el (idlwave-toolbar)
8643 (idlwave-toolbar-is-possible): Add defvars.
8644
8645 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
8646 Avoid warnings.
8647
8648 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
8649 (idlwave-system-class-info, idlwave-executive-commands-alist):
8650 Use defvar.
8651
8652 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
8653
8654 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
8655 Avoid warnings.
8656
8657 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
8658 and content-type: headers.
8659
8660 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
8661
8662 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
8663 and rename some of them to be more self-explanatory.
8664
8665 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
8666
8667 * startup.el (command-line-1): Implement -scriptload.
8668
8669 * replace.el (occur-engine): Initial *Occur* output not undoable.
8670
8671 * menu-bar.el (menu-bar-file-menu): Rename some menu items
8672 and improve help strings.
8673
8674 * isearch.el (isearch-repeat): When changing direction,
8675 mark search successful.
8676
8677 * ediff-init.el: Use (featurep 'xemacs).
8678
8679 * comint.el (send-invisible): Identify buffer, if not selected.
8680
8681 * align.el: Delete autoload for c-guess-basic-syntax.
8682
8683 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
8684
8685 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
8686 Improve argument/docstring consistency. Doc fixes.
8687 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
8688 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
8689 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
8690 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
8691 (r2bv-organization, r2bv-pages, r2bv-primary-author)
8692 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
8693 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
8694 Defvar at compile time.
8695
8696 2005-08-09 Juri Linkov <juri@jurta.org>
8697
8698 * info.el: Replace `info' with upper-case `Info' where appropriate.
8699 (info-title-1, info-title-2, info-title-3, info-title-4)
8700 (info-menu-header): Move up face definitions.
8701 (info-menu-star): Rename from `info-menu-5'.
8702 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
8703 (Info-fontify-visited-nodes): Fix docstring.
8704 (Info-hide-note-references): Fix docstring.
8705 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
8706 menu items in the same way as on cross-references.
8707 (info-apropos): Fix sorting order and formatting to be like in the
8708 stand-alone Info browser. Display error messages for 1 sec.
8709 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
8710 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
8711 from the menu bar.
8712 (Info-insert-dir): Restore point after calling
8713 `insert-buffer-substring'.
8714
8715 2005-08-08 Richard M. Stallman <rms@gnu.org>
8716
8717 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
8718 (recompute-lucid-menubar): Add defvars.
8719
8720 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
8721
8722 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
8723
8724 * net/net-utils.el (run-dig): Rename from `dig'.
8725
8726 * play/gametree.el (gametree-mode): Use make-local-variable,
8727 not make-variable-buffer-local.
8728
8729 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
8730
8731 * ansi-color.el (ansi-color-make-extent)
8732 (ansi-color-set-extent-face): Use fboundp, not functionp.
8733
8734 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
8735 not make-variable-buffer-local.
8736
8737 * bookmark.el (Info-current-file): Add defvar.
8738 (bookmark-jump-noselect): Use with-no-warnings.
8739
8740 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
8741
8742 * ebuff-menu.el (Helper-return-blurb): Add defvar.
8743
8744 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
8745
8746 * find-file.el (ada-procedure-start-regexp)
8747 (ada-package-start-regexp): Add defvars.
8748
8749 * info.el (Info-insert-dir): Use insert-buffer-substring.
8750
8751 * xml.el (xml-att-def-re): Add defvar.
8752
8753 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
8754 calling convention.
8755
8756 * subr.el (while-no-input): Return t if there is input.
8757
8758 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
8759
8760 * cus-start.el (all): Add `overflow-newline-into-fringe'.
8761
8762 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
8763
8764 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
8765 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
8766
8767 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
8768
8769 * cmuscheme.el (scheme-start-file): Replace reference to
8770 `user-emacs-directory' by "~/.emacs.d/".
8771
8772 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
8773
8774 * info.el (Info-dir-remove-duplicates): Avoid case folding
8775 in loop; instead, keep downcased strings for comparison.
8776 Suggested by Helmut Eller.
8777
8778 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
8779
8780 Sync with Tramp 2.0.50.
8781
8782 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
8783 XEmacs case; not necessary anymore.
8784 (tramp-user-regexp): Allow "@" as part of user name.
8785 (tramp-handle-set-visited-file-modtime)
8786 (tramp-handle-insert-file-contents)
8787 (tramp-handle-write-region): No special handling for
8788 `last-coding-system-used, because this is done in
8789 `tramp-accept-process-output' now.
8790 (tramp-accept-process-output): New defun.
8791 (tramp-process-one-action, tramp-process-one-multi-action)
8792 (tramp-wait-for-regexp, tramp-wait-for-output)
8793 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
8794 Howells <dhowells@redhat.com>.
8795 (clear-visited-file-modtime): Defadvice removed. The check for
8796 unset buffer's modtime does not need to be based on
8797 `tramp-buffer-file-attributes'. Suggested by RMS.
8798 (tramp-message): Insert "\n" if not being at beginning of line.
8799 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
8800 sequence with same logic.
8801 (tramp-completion-handle-expand-file-name): Discard call of
8802 `tramp-drop-volume-letter'. It is not necessary, and there have
8803 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
8804 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
8805 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
8806 should always be visible.
8807 (tramp-handle-insert-directory, tramp-setup-complete)
8808 (tramp-set-process-query-on-exit-flag)
8809 (tramp-append-tramp-buffers): Pacify byte-compiler.
8810 (tramp-bug): Delete non-existing variables from list.
8811 Apply `tramp-load-report-modules' as pre-hook.
8812 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
8813 `shell-prompt-pattern' because of non-7bit characters.
8814 Reported by Sebastian Luque <sluque@mun.ca>.
8815 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
8816 (tramp-match-string-list): Remove function.
8817 (tramp-wait-for-regexp): Remove call of that function.
8818 Suggested by Kim F. Storm <storm@cua.dk>.
8819 (tramp-set-auto-save-file-modes): Use octal integer code #o600
8820 instead of octal character code ?\600. The latter resulted in a
8821 syntax error with XEmacs.
8822
8823 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
8824 XEmacs case; not necessary anymore.
8825 (tramp-smb-handle-write-region): No special handling for
8826 `last-coding-system-used, because this is done in
8827 `tramp-accept-process-output' now.
8828 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
8829
8830 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
8831
8832 * wid-edit.el (widget-choice-value-create):
8833 Unconditionally respect user choice. Set :explicit-choice back to nil
8834 when no longer needed.
8835 (widget-choice-action): Unconditionally respect user choice.
8836 Eliminate :explicit-choice-value.
8837
8838 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
8839
8840 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
8841 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
8842 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
8843 running new function `toggle-indicate-empty-lines'.
8844 Rename "Customize" item to "Customize fringe".
8845 Rename "Indicators" item to "Buffer boundaries" and change help echo.
8846 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
8847 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
8848 Delete "Empty lines only" item.
8849 (menu-bar-showhide-fringe-ind-customize): New function.
8850 (menu-bar-showhide-fringe-ind-mixed)
8851 (menu-bar-showhide-fringe-ind-box)
8852 (menu-bar-showhide-fringe-ind-right)
8853 (menu-bar-showhide-fringe-ind-left)
8854 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
8855 instead of `fringe-indicators'.
8856
8857 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
8858
8859 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
8860 Change the date of last update.
8861
8862 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
8863
8864 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
8865 (viper-exec-yank, viper-put-back): Don't display modification msg
8866 if in the minibuffer.
8867
8868 * viper-init.el (viper-replace-overlay-cursor-color)
8869 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
8870 Make variables frame local.
8871
8872 * viper-util.el (viper-append-filter-alist): Use append instead of
8873 nconc.
8874
8875 * viper.el (viper-vi-state-mode-list)
8876 (viper-emacs-state-mode-list): Move help-mode and
8877 completion-list-mode from the first list to the second.
8878 (viper-mode): Docstring.
8879 (viper-go-away, viper-non-hook-settings): Don't localize
8880 minor-mode-alist in newer Emacsen. Add advice to
8881 set-cursor-color. Don't bind "\C-c\\".
8882
8883 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
8884
8885 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
8886 (scheme-macro-expand-command): New user options.
8887 (scheme-trace-procedure, scheme-expand-current-form): New commands.
8888 (scheme-form-at-point, scheme-start-file)
8889 (scheme-interactively-start-process): New functions.
8890 (scheme-get-process): New function, extracted from `scheme-proc'.
8891 (run-scheme): Call `scheme-start-file' to get start file, and pass
8892 it to `make-comint'.
8893 (switch-to-scheme, scheme-proc):
8894 Call `scheme-interactively-start-process' if no Scheme buffer/process
8895 is available.
8896
8897 2005-08-06 Juri Linkov <juri@jurta.org>
8898
8899 * progmodes/compile.el (compilation-mode-font-lock-keywords):
8900 Use `compilation-text-face', `compilation-info-text-face' and
8901 `compilation-error-text-face' instead of `font-lock-keyword-face'.
8902 (compilation-error): New face.
8903 (compilation-error-file-name): Inherit from
8904 `compilation-error' instead of `font-lock-warning-face'.
8905 (compilation-warning-file-name): Inherit from
8906 `compilation-warning' instead of `font-lock-warning-face'.
8907 (compilation-info, compilation-error-file-name)
8908 (compilation-warning-file-name, compilation-info-file-name)
8909 (compilation-line-number, compilation-column-number): Doc fix.
8910 (compilation-error-text-face, compilation-warning-text-face)
8911 (compilation-info-text-face): New face variables.
8912 (compilation-line-face, compilation-column-face)
8913 (compilation-enter-directory-face)
8914 (compilation-leave-directory-face): Doc fix.
8915 (compilation-text-face): New function.
8916
8917 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
8918 instead of 1 to display binary file names as info file links.
8919 (grep-error-face): Use `compilation-error-face' instead of
8920 `font-lock-keyword-face'.
8921 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
8922 and `compilation-warning-text-face' instead of
8923 `font-lock-keyword-face'. Use `compilation-error-text-face'
8924 instead of `grep-error-face'.
8925
8926 2005-08-05 Kenichi Handa <handa@m17n.org>
8927
8928 * international/code-pages.el: Add autoload cookies for all coding
8929 systems.
8930
8931 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
8932
8933 * cus-start.el (all): Put undo.c where it alphabetically belongs.
8934
8935 2005-08-04 Juri Linkov <juri@jurta.org>
8936
8937 * progmodes/compile.el (compilation-mode-map):
8938 * progmodes/grep.el (grep-mode-map):
8939 Bind TAB to `compilation-next-error' and [backtab] to
8940 `compilation-previous-error'.
8941
8942 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
8943 matching line numbers, column numbers and their ranges with regexp
8944 matching only line numbers.
8945 (grep-context-face): New face variable.
8946 (grep-mode-font-lock-keywords): Use it.
8947
8948 * faces.el (read-face-name): Delete duplicate faces.
8949
8950 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
8951
8952 * thumbs.el (thumbs-find-image): Don't make variables
8953 automatically buffer local.
8954 (thumbs-current-tmp-filename, thumbs-current-image-filename)
8955 (thumbs-image-num): Make automatically buffer local.
8956 (thumbs-show-thumbs-list): Use `make-local-variable', not
8957 `make-variable-buffer-local'.
8958 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
8959
8960 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
8961 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
8962 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
8963 (bother, bye, canyou, chatlst, continue, deathlst, describe)
8964 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
8965 (feelings-about, foullst, found, hello, history, howareyoulst)
8966 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
8967 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
8968 (neglst, obj, object, owner, please, problems, qlist)
8969 (random-adjective, relation, remlst, repetitive-shortness)
8970 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
8971 (shortlst, something, sportslst, stallmanlst, states, subj)
8972 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
8973 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
8974 Defvar at compile time.
8975
8976 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
8977 not `make-variable-buffer-local'.
8978
8979 2005-08-02 Kim F. Storm <storm@cua.dk>
8980
8981 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
8982 rectangle overlay in selected window.
8983
8984 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
8985
8986 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
8987 instead of display group. Make `indicate-buffer-boundaries'
8988 customizable through Custom.
8989
8990 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
8991
8992 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
8993 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
8994 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
8995 (gdb-put-string): Fix typos in docstrings.
8996
8997 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
8998
8999 Update copyright notices of files in progmodes directory for
9000 release of Emacs 22.1.
9001
9002 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
9003
9004 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
9005 Don't barf if the GUD buffer has been killed.
9006
9007 2005-08-01 Kim F. Storm <storm@cua.dk>
9008
9009 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
9010
9011 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
9012
9013 * simple.el (next-error-follow-minor-mode):
9014 make-variable-buffer-local -> make-local-variable.
9015
9016 * emacs-lisp/cl-extra.el: Require CL also when compiling.
9017
9018 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
9019 (byte-compile-form-make-variable-buffer-local): New functions to warn
9020 about misuses of make-variable-buffer-local where make-local-variable
9021 was meant.
9022
9023 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
9024
9025 * bs.el (bs-attributes-list): Doc fix.
9026 (bs): Update url-link.
9027
9028 * desktop.el (desktop-save-buffer): Fix typos in docstring.
9029 (desktop-load-default): Simplify.
9030
9031 * ibuffer.el (ibuffer-columnize-and-insert-list)
9032 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
9033 (ibuffer-unmark-all, ibuffer-toggle-marks)
9034 (ibuffer-unmark-forward, ibuffer-unmark-backward)
9035 (ibuffer-compile-make-format-form, ibuffer-format-column)
9036 (ibuffer-current-buffers-with-marks)
9037 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
9038 (ibuffer): Doc fix.
9039 (ibuffer-mode): Fix typo in docstring.
9040 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
9041 with `define-obsolete-variable-alias'.
9042 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
9043
9044 2005-07-29 Kenichi Handa <handa@m17n.org>
9045
9046 * international/mule-cmds.el (select-message-coding-system):
9047 Be sure to use LF for end-of-line. If no coding system is decided,
9048 return iso-8859-1-unix.
9049
9050 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
9051
9052 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
9053 (ange-ftp-pending-error-line): New vars.
9054 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
9055 to handle the non-fatal no-route-to-host messages.
9056 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
9057
9058 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
9059
9060 * isearch.el (isearch-mode-map, isearch-other-meta-char)
9061 (isearch-quote-char, isearch-printing-char)
9062 (isearch-text-char-description): "?\ " -> "?\s".
9063 (isearch-lazy-highlight-cleanup)
9064 (isearch-lazy-highlight-initial-delay)
9065 (isearch-lazy-highlight-interval)
9066 (isearch-lazy-highlight-max-at-a-time)
9067 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
9068 Declare with define-obsolete-*-alias macros.
9069 (isearch-forward): Fix typo in docstring.
9070 (search-invisible, search-ring-yank-pointer)
9071 (regexp-search-ring-yank-pointer): Doc fixes.
9072
9073 * recentf.el (recentf-menu-append-commands-p): Declare with
9074 `define-obsolete-variable-alias'.
9075 (recentf-max-saved-items, recentf-menu-filter)
9076 (recentf-arrange-by-rule-subfilter): Doc fixes.
9077 (recentf-menu-append-commands-flag)
9078 (recentf-initialize-file-name-history, recentf-expand-file-name)
9079 (recentf-clear-data): Fix typos in docstrings.
9080
9081 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
9082
9083 * progmodes/gdb-ui.el: Smarten comments.
9084 (gdb-info-breakpoints-custom): Use nowarn when finding file.
9085
9086 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
9087
9088 * term/apollo.el (terminal-init-apollo): New function containing
9089 all former top level forms in the file.
9090 * term/bobcat.el (terminal-init-bobcat):
9091 * term/cygwin.el (terminal-init-cygwin):
9092 * term/iris-ansi.el (terminal-init-iris-ansi):
9093 * term/linux.el (terminal-init-linux):
9094 * term/news.el (terminal-init-news):
9095 * term/rxvt.el (terminal-init-rxvt):
9096 * term/sun.el (terminal-init-sun):
9097 * term/tvi970.el (terminal-init-tvi970):
9098 * term/vt100.el (terminal-init-vt100):
9099 * term/vt102.el (terminal-init-vt102):
9100 * term/vt125.el (terminal-init-vt125):
9101 * term/vt200.el (terminal-init-vt200):
9102 * term/vt201.el (terminal-init-vt201):
9103 * term/vt220.el (terminal-init-vt220):
9104 * term/vt240.el (terminal-init-vt240):
9105 * term/vt300.el (terminal-init-vt300):
9106 * term/vt320.el (terminal-init-vt320):
9107 * term/vt400.el (terminal-init-vt400):
9108 * term/vt420.el (terminal-init-vt420):
9109 * term/wyse50.el (terminal-init-wyse50):
9110 * term/xterm.el (terminal-init-xterm): Likewise.
9111
9112 * term/README: Describe the terminal-init-* functionality.
9113
9114 * startup.el (command-line): After loading the terminal initialization
9115 file call the corresponding terminal initialization function.
9116
9117 2005-07-27 Kenichi Handa <handa@m17n.org>
9118
9119 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
9120 negative.
9121
9122 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
9123 (ps-mule-composition-prologue): Fix for the case that
9124 RelativeCompose is false.
9125
9126 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
9127
9128 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
9129
9130 * descr-text.el (describe-char): Handle the case where the list of
9131 chars is displayed in a separate frame.
9132 Be a bit more discriminating when looking for the char.
9133
9134 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
9135
9136 * bookmark.el (bookmark-automatically-show-annotations)
9137 (bookmark-read-annotation-text-func): Doc fixes.
9138 (bookmark-save): Improve argument/docstring consistency.
9139 (bookmark-get-bookmark, bookmark-get-bookmark-record)
9140 (bookmark-alist-from-buffer)
9141 (bookmark-upgrade-file-format-from-0)
9142 (bookmark-grok-file-format-version)
9143 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
9144 (bookmark-read-annotation-mode)
9145 (bookmark-insert-current-bookmark, bookmark-jump)
9146 (bookmark-exit-hook): Fix typos in docstrings.
9147 (bookmark-exit-hooks): Define as obsolete alias.
9148 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
9149 not `bookmark-exit-hooks'. Fix docstring.
9150 (bookmark-bmenu-select): "?\ " -> "?\s".
9151
9152 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
9153
9154 * startup.el (command-line): Fix typo.
9155
9156 2005-07-24 Richard M. Stallman <rms@gnu.org>
9157
9158 * tooltip.el (tooltip-mode): Test emacs-basic-display,
9159 not emacs-quick-startup.
9160
9161 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
9162
9163 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
9164 (reb-next-match, reb-show-subexp): Use `with-selected-window'
9165 instead of `reb-with-current-window'.
9166 (reb-prev-match): Likewise. Also, don't move left if the search
9167 was unsuccessful.
9168 (reb-initialize-buffer): New function.
9169 (re-builder, reb-change-syntax): Use it.
9170
9171 * man.el (Man-goto-page): Make second argument NOERROR optional.
9172
9173 2005-07-23 Richard M. Stallman <rms@gnu.org>
9174
9175 * man.el (Man-bgproc-sentinel): Check here for failure to find
9176 any man page in the output, and report the error here.
9177 (Man-arguments): Make it permanent local.
9178 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
9179 (Man-mode): Pass t for NOERROR.
9180
9181 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
9182 (grep-mode-font-lock-keywords):
9183 Don't use compilation-...-face for messages that are not file names.
9184
9185 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9186 Don't use compilation-...-face for messages that are not file names.
9187
9188 2005-07-22 Juri Linkov <juri@jurta.org>
9189
9190 * startup.el (normal-splash-screen): Update menu name.
9191
9192 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
9193
9194 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
9195
9196 * term/xterm.el: Load term/rxvt if the terminal is actually an
9197 rxvt terminal.
9198 (xterm-rxvt-set-background-mode): Remove, not used anymore.
9199
9200 * term/rxvt.el (function-key-map): Use substitute-key-definition
9201 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
9202
9203 * term/cygwin.el: New file.
9204
9205 2005-07-22 Kim F. Storm <storm@cua.dk>
9206
9207 * image-file.el (insert-image-file, image-file-yank-handler):
9208 Fix last change to maintain a (unique) yank-handler on yanked images.
9209
9210 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
9211
9212 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
9213 of the file size (as in "177B" for 177 bytes). This happens with
9214 "ls -lh" on FreeBSD.
9215
9216 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
9217
9218 * hilit-chg.el (highlight-changes-global-initial-state)
9219 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
9220 (hilit-chg-fixup, highlight-changes-mode):
9221 Fix typos in docstrings.
9222 (highlight-changes-global-modes, highlight-changes-rotate-faces):
9223 Doc fixes.
9224
9225 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
9226
9227 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
9228 mode function using `eval-after-load'.
9229
9230 2005-07-21 Kim F. Storm <storm@cua.dk>
9231
9232 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
9233 included when reporting an emacs crash, and tell about the DEBUG file.
9234
9235 * image-file.el (insert-image-file): Add yank-handler.
9236 (image-file-yank-handler): Yank handler to make unique copies of
9237 images when they are yanked into a buffer next to each other.
9238
9239 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
9240
9241 * comint.el (comint-use-prompt-regexp, comint-send-input)
9242 (comint-source-default, comint-extract-string)
9243 (comint-get-source, comint-word, comint-completion)
9244 (comint-source, comint-prompt-read-only, comint-update-fence):
9245 Fix typos in docstrings.
9246 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
9247 Declare with define-obsolete-*-alias macros.
9248 (comint-previous-matching-input-from-input)
9249 (comint-next-matching-input-from-input)
9250 (comint-previous-matching-input, comint-next-matching-input)
9251 (comint-forward-matching-input):
9252 Improve argument/docstring consistency.
9253
9254 * desktop.el (desktop-clear-preserve-buffers-regexp):
9255 Also preserve the *server* buffer.
9256
9257 * simple.el (clone-indirect-buffer): Doc fix.
9258 (fixup-whitespace, just-one-space)
9259 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
9260 (next-error, next-error-highlight)
9261 (next-error-highlight-no-select, next-error-last-buffer)
9262 (next-error-buffer-p, next-error-find-buffer, next-error)
9263 (previous-error, next-error-no-select, previous-error-no-select)
9264 (open-line, split-line, minibuffer-prompt-width, kill-new)
9265 (binary-overwrite-mode): Fix typos in docstrings.
9266 (set-fill-column): Fix typo in message.
9267
9268 * skeleton.el (skeleton-proxy-new): Doc fix.
9269
9270 * strokes.el (strokes-load-hook): Doc fix.
9271 (strokes-grid-resolution, strokes-get-grid-position)
9272 (strokes-renormalize-to-grid, strokes-read-stroke)
9273 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
9274 (strokes-global-map): Fix typos in docstrings.
9275 (strokes-help): Doc fix. Fix help message and pass it through
9276 `substitute-command-keys'.
9277
9278 * tempo.el (tempo-insert-prompt, tempo-interactive)
9279 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
9280 (tempo-insert-string-functions, tempo-local-tags)
9281 (tempo-define-template, tempo-insert-template)
9282 (tempo-insert-prompt-compat, tempo-is-user-element)
9283 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
9284 Fix typos in docstrings.
9285
9286 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
9287 (vcursor-key-bindings, vcursor-use-vcursor-map)
9288 (vcursor-find-window, vcursor-scroll-down)
9289 (vcursor-disable, vcursor-beginning-of-buffer)
9290 (vcursor-end-of-buffer): Fix typos in docstrings.
9291 (vcursor-relative-move, vcursor-get-char-count):
9292 Improve argument/docstring consistency.
9293
9294 * version.el: "?\ " -> "?\s".
9295
9296 * wid-edit.el (widget-default-create, widget-after-change)
9297 (widget-default-format-handler, widget-checklist-add-item)
9298 (widget-radio-add-item, widget-choose, widget-specify-secret)
9299 (widget-field-value-create, widget-field-value-get)
9300 (widget-editable-list-format-handler)
9301 (widget-editable-list-entry-create, widget-group-value-create)
9302 (widget-documentation-link-add)
9303 (widget-documentation-string-value-create): "?\ " -> "?\s".
9304 (widget-convert-text): Doc fix.
9305 (widget-narrow-to-field, widget-field-find)
9306 (widget-url-link-action, widget-emacs-library-link-action)
9307 (widget-color-notify): Fix typos in docstrings.
9308
9309 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
9310 (x-select-text, set-w32-system-coding-system)
9311 (w32-add-charset-info): Fix typos in docstrings.
9312
9313 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
9314 (cua-enable-cua-keys, cua-use-hyper-key)
9315 (cua-virtual-rectangle-edges): Fix typos in docstrings.
9316 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
9317
9318 * net/tramp.el (tramp-handle-load): Fix typo in error message.
9319
9320 * emacs-lisp/re-builder.el (regexp-builder): Declare with
9321 `defalias' instead of faking it.
9322
9323 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
9324 (eshell-ls-missing, eshell-ls-dired-initial-args)
9325 (eshell-ls-use-in-dired): Fix typos in docstrings.
9326
9327 2005-07-20 Kim F. Storm <storm@cua.dk>
9328
9329 * emulation/cua-base.el (cua-mode): Improve doc string.
9330
9331 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
9332
9333 * abbrev.el (expand-region-abbrevs): Doc fix.
9334 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
9335 Improve argument/docstring consistency.
9336
9337 * arc-mode.el (archive-get-descr, archive-alternate-display):
9338 Doc fixes.
9339 (archive-l-e): Improve argument/docstring consistency.
9340 (archive-tmpdir, archive-unixdate, archive-unixtime)
9341 (archive-chmod-entry): Fix typos in docstrings.
9342 (archive-unflag, archive-unflag-backwards)
9343 (archive-unmark-all-files): "?\ " -> "?\s".
9344
9345 * buff-menu.el (Buffer-menu-unmark): Doc fix.
9346 (Buffer-menu-not-modified, Buffer-menu-execute)
9347 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
9348 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
9349
9350 * composite.el (compose-string, encode-composition-rule)
9351 (compose-last-chars): Fix typos in docstrings.
9352
9353 * desktop.el (desktop-enable, desktop-basefilename):
9354 Declare with `define-obsolete-variable-alias'.
9355 (desktop-internal-v2s): Don't quote keywords.
9356 (desktop-clear): "?\ " -> "?\s".
9357
9358 * dired.el (dired-align-file, dired-flag-backup-files)
9359 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
9360 (dired-listing-switches, dired-ls-F-marks-symlinks)
9361 (dired-dwim-target, dired-load-hook, dired-mode-hook)
9362 (dired-directory, dired-faces, dired, dired-revert)
9363 (dired-mode, dired-summary, dired-view-file)
9364 (dired-copy-filename-as-kill, dired-delete-file)
9365 (dired-no-confirm, dired-unmark-all-marks)
9366 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
9367 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
9368 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
9369 Fix typos in message strings.
9370
9371 * dired-x.el (virtual-dired): Declare with `defalias'.
9372 (dired-mark-unmarked-files, dired-local-variables-file)
9373 (dired-omit-here-always): Doc fix.
9374 (dired-omit-mode, dired-find-subdir)
9375 (dired-enable-local-variables, dired-clean-up-buffers-too)
9376 (dired-extra-startup, dired-mark-extension, dired-jump)
9377 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
9378 (dired-smart-shell-command, dired-guess-shell-alist-user)
9379 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
9380 (dired-x-bind-find-file, dired-x-submit-report):
9381 Fix typos in docstrings.
9382 (dired-mark-unmarked-files): "?\ " -> "?\s".
9383
9384 * dirtrack.el (dirtrack-list): Fix typos in docstring.
9385
9386 * faces.el (describe-face): "?\ " -> "?\s".
9387 (read-all-face-attributes, read-face-font, modify-face)
9388 (face-attr-construct, italic): Fix typos in docstrings.
9389 (frame-update-face-colors): Declare with
9390 `define-obsolete-function-alias'.
9391
9392 * files.el (find-file-noselect, recode-file-name): Doc fixes.
9393 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
9394 (magic-mode-alist, buffer-file-numbers-unique)
9395 (write-file-functions, get-free-disk-space):
9396 Fix typos in docstrings.
9397 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
9398 (write-contents-hooks, write-file-hooks):
9399 Declare with `define-obsolete-variable-alias'.
9400
9401 * forms-d2.el (arch-rj): Fix typo in docstrings.
9402 (arch-tocol): Likewise. "?\ " -> "?\s".
9403
9404 * frame.el (set-frame-font, cursor-in-non-selected-windows):
9405 Fix typo in docstring.
9406 (set-screen-width, set-screen-height): Delete redundant info in
9407 doctrings.
9408 (new-frame, screen-height, screen-width): Declare with
9409 `define-obsolete-function-alias'.
9410 (delete-frame-hook, blink-cursor): Declare with
9411 `define-obsolete-variable-alias'.
9412
9413 * paths.el (prune-directory-list): Fix typos in docstring.
9414
9415 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
9416 (cvs-prefix-get): Fix typos in docstrings.
9417
9418 * ps-print.el (ps-extend-face-list, ps-extend-face)
9419 (ps-print-background-image): Fix typos in docstrings.
9420 (ps-default-fg, ps-default-bg): Doc fixes.
9421
9422 * s-region.el (s-region-bind): Doc fix.
9423 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
9424
9425 * textmodes/org.el (org-table-formula-substitute-names)
9426 (org-table-get-vertical-vector): Doc fixes.
9427 (org-table-recalculate): Remove unused argument to `message'.
9428
9429 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
9430
9431 * textmodes/org.el (org-table-column-names)
9432 (org-table-column-name-regexp)
9433 (org-table-named-field-locations): New variables.
9434 (org-archive-subtree): Protect `this-command' when calling
9435 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
9436 the kill buffer.
9437 (org-complete): Remove fixed-formula completion.
9438 (org-edit-formulas-map): New variable.
9439 (org-table-edit-formulas): New command.
9440 (org-finish-edit-formulas, org-abort-edit-formulas)
9441 (org-show-variable, org-table-get-vertical-vector): New functions.
9442 (org-table-maybe-eval-formula): Handle `:=' fields.
9443 (org-table-get-stored-formulas, org-table-store-formulas)
9444 (org-table-get-formula, org-table-modify-formulas)
9445 (org-table-replace-in-formulas): Handle named field formulas.
9446 (org-table-get-specials): Store locations of named fields.
9447
9448 2005-07-19 Juri Linkov <juri@jurta.org>
9449
9450 * progmodes/grep.el (grep-regexp-alist)
9451 (grep-mode-font-lock-keywords, grep-process-setup):
9452 Use default GNU grep match color "01;31m" instead of "01;41m".
9453 (grep-regexp-alist, grep-mode-font-lock-keywords):
9454 Use `\\[[0-9]*m' instead of `\\[00m'.
9455 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
9456 sgr_start where its handling is more important. Use the real
9457 length of sgr_start instead of constant 8.
9458 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
9459 specially. Delete all remaining escape sequences.
9460 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
9461 (grep-regexp-alist): Make hyperlink only for binary file name
9462 instead of the whole line.
9463 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
9464 (grep-mode): Add autoload.
9465
9466 * emacs-lisp/find-func.el (find-function-regexp):
9467 Add `define-compilation-mode'.
9468
9469 2005-07-19 Juri Linkov <juri@jurta.org>
9470
9471 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
9472 (compare-windows-sync-string-size, compare-windows-recenter)
9473 (compare-windows-highlight, compare-windows): Add version 22.1.
9474 (compare-windows) <defface>: Inherit from lazy-highlight instead
9475 of duplicating its default value.
9476
9477 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
9478 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
9479
9480 * descr-text.el (describe-char): Create link buttons for `charset'
9481 and `code point'. Add the current input method name with a link
9482 button to `to input' field. Print face names of display table
9483 characters in `The display table entry is displayed by' section
9484 instead of printing face-id in the `display' field.
9485 Guess hardcoded faces and create a link button for them.
9486 Skip empty fields when calculating max-width.
9487 Treat `widget-create' specially while inserting strings from the
9488 collected field list.
9489 (describe-char-after): Made obsolete in version 22.1, not 21.5.
9490
9491 * diff-mode.el (diff-file-header): Change foreground color from
9492 yellow to green on light backgrounds.
9493 (diff-context): Inherit from `shadow' only for color/grayscale
9494 with more than 88 colors.
9495 (diff-indicator-removed, diff-indicator-added)
9496 (diff-indicator-changed): New faces.
9497 (diff-font-lock-keywords): Use new faces. Regroup rules.
9498 Add "^---$" for `normal' diff format. Fontify `#' lines with
9499 font-lock-comment-delimiter-face and font-lock-comment-face.
9500 Add `#' to ^[^...] in the rule for `diff-context-face'.
9501
9502 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
9503 a button-like box. Inherit from `highlight' on low colors.
9504 (shadow): Use shades of gray only for color/grayscale with
9505 more than 88 colors. Use green for light backgrounds with
9506 8 colors, and yellow for dark backgrounds with 8 colors.
9507
9508 * font-lock.el (font-lock-regexp-grouping-backslash):
9509 Don't inherit from escape-glyph (use bold for all cases).
9510
9511 * info.el (info-xref-visited): Use light foreground color `violet'
9512 for dark backgrounds instead of dark color `magenta3'.
9513 (info-title-1): Use `yellow' color for dark backgrounds.
9514
9515 * isearch.el (isearch): Use not-too-dark magenta3 instead of
9516 too-light magenta2.
9517
9518 * replace.el (match): Use slightly more light RoyalBlue3 instead
9519 of dark RoyalBlue4.
9520
9521 * wid-edit.el (widget-inactive): Inherit from `shadow'.
9522
9523 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
9524
9525 * novice.el (disabled-command-hook): Declare it with
9526 `define-obsolete-variable-alias'.
9527
9528 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
9529 (desktop-buffer-misc-functions, desktop-buffer-handlers)
9530 (desktop-load-default): Add release to obsolescence info.
9531 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
9532 (desktop-append-buffer-args, desktop-read):
9533 Fix typos in docstrings.
9534 (desktop-kill): Fix typo in message.
9535 (desktop-save): Doc fix.
9536
9537 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
9538
9539 * viper-cmd.el (viper-escape-to-state): Bug fix.
9540 (viper-envelop-ESC-key): Change the definition of fast
9541 keysequence so it'll work with keyboard macros.
9542
9543 * ediff.el (ediff-patch-buffer): Change the docstring.
9544
9545 2005-07-19 Kenichi Handa <handa@m17n.org>
9546
9547 * international/mule-cmds.el (select-safe-coding-system): Try to
9548 use an auto-coding (if any) before anything else. If the found
9549 auto-coding is invalid, show a warning message.
9550
9551 * international/mule.el (find-auto-coding): New function created
9552 by modifying the body of set-auto-coding.
9553 (set-auto-coding): Use find-auto-coding to find a coding.
9554
9555 2005-07-18 Richard M. Stallman <rms@gnu.org>
9556
9557 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
9558 not isearch-mode-end-hook-error.
9559 (allout-before-change-protect): Fix error message.
9560
9561 2005-07-18 Juri Linkov <juri@jurta.org>
9562
9563 * allout.el (allout-mode):
9564 * calculator.el (calculator-copy):
9565 * custom.el (custom-known-themes):
9566 * dired.el (dired-desktop-buffer-misc-data)
9567 (dired-restore-desktop-buffer):
9568 * dired-x.el (dired-omit-marker-char):
9569 * files.el (basic-save-buffer):
9570 * font-core.el (font-lock-mode):
9571 * calendar/calendar.el (calendar-goto-hebrew-date)
9572 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
9573 (calendar-goto-persian-date):
9574 * language/ethio-util.el (ethio-sera-to-fidel-region):
9575 * textmodes/picture.el (picture-mode):
9576 Delete duplicate duplicate words.
9577
9578 2005-07-18 Juri Linkov <juri@jurta.org>
9579
9580 * isearch.el (isearch-mode-map): Remove key bindings for regexp
9581 chars * ? } |.
9582 (isearch-fallback): Don't call `isearch-process-search-char'.
9583 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
9584 (isearch-process-search-char): Call `isearch-fallback' for regexp
9585 chars * ? } |.
9586 (isearch-return-char): Make obsolete with `make-obsolete' instead
9587 of simply documenting it as obsolete in the docstring.
9588 (isearch-fallback): Refill docstring.
9589
9590 * international/isearch-x.el
9591 (isearch-process-search-multibyte-characters): Remove unneeded
9592 `concat'. Add intermediate values to `junk-hist' instead of
9593 `minibuffer-history'. Test the length of `str'.
9594
9595 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
9596
9597 * allout.el (allout-resolve-xref): Fix typos in error strings.
9598 (allout-before-change-protect): Remove unneeded `concat'.
9599
9600 * array.el (array-mode, array-reconfigure-rows)
9601 (untabify-backward): Fix typos in docstrings.
9602 (array-reconfigure-rows): Use `insert-buffer-substring', not
9603 `insert-buffer'.
9604
9605 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
9606 * progmodes/ada-mode.el (ada-make-body):
9607 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
9608
9609 * dired.el (dired-log):
9610 * tar-mode.el (tar-subfile-save-buffer):
9611 * play/zone.el (zone-pgm-stress-destress):
9612 Use `insert-buffer-substring', not `insert-buffer'.
9613
9614 2005-07-17 Simon Josefsson <jas@extundo.com>
9615
9616 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
9617
9618 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
9619
9620 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
9621 Add plain auth method.
9622 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
9623
9624 2005-07-17 Kim F. Storm <storm@cua.dk>
9625
9626 * ido.el (dired-other-window): Add ido property.
9627
9628 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
9629
9630 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
9631 Fix typo in docstring.
9632 (byte-compile-interactive-only-functions): Add `insert-buffer' and
9633 `insert-file-literally'.
9634
9635 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
9636 info and delete redundant message. Doc fix.
9637 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
9638 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
9639
9640 2005-07-16 Richard M. Stallman <rms@gnu.org>
9641
9642 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
9643 (byte-compile-and): Use byte-compile-and-recursion.
9644 (byte-compile-or-recursion): New function.
9645 (byte-compile-or): Use that.
9646 (byte-compile-if): Guard the else-clause too.
9647 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
9648
9649 * isearch.el (isearch-mode-end-hook-quit): New variable.
9650 (isearch-done): Bind it.
9651 (isearch-mode-end-hook): Doc fix.
9652
9653 * allout.el (allout-isearch-did-quit): Variable deleted.
9654 (allout-real-isearch-abort): Function name no longer used.
9655 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
9656 (allout-isearch-rectification): isearch-mode always exists.
9657 Don't set allout-isearch-did-quit.
9658 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
9659 allout-isearch-did-quit.
9660 (allout-enwrap-isearch): Just add the hook.
9661 (allout-isearch-abort): Function deleted.
9662 (allout-pre-command-business): Avoid warning.
9663
9664 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
9665 Correctly avoid warnings.
9666 (pascal-outline): Likewise.
9667
9668 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
9669
9670 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
9671
9672 * play/tetris.el (tetris-mode): Avoid warning.
9673
9674 * play/snake.el (snake-mode): Avoid warning.
9675
9676 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
9677 (gamegrid-set-display-table): Avoid warning.
9678 (gamegrid-set-timer): Likewise.
9679 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
9680 (gamegrid-add-score-with-update-game-score-1): Take FILE
9681 as argument.
9682 (gamegrid-add-score-with-update-game-score): Pass that argument.
9683 Rename have-shared-game-dir to gamegrid-shared-game-dir.
9684
9685 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
9686
9687 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
9688 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
9689
9690 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
9691 and insert-file.
9692
9693 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
9694 (sc-ask): Avoid warnings.
9695
9696 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
9697 (eshell-hist-initialize): Use that var the natural way.
9698
9699 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
9700
9701 * emacs-lisp/re-builder.el (reb-cook-regexp):
9702 Avoid warning calling lre-compile-string.
9703 (reb-color-display-p): Avoid warning.
9704
9705 * calculator.el (calculator-last-input): Guard uses
9706 of event-key and key-press-event-p.
9707 (event-key, key-press-event-p): Delete definitions.
9708
9709 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
9710 (find-gc-source-directory, find-gc-subrs-callers)
9711 (find-gc-noreturn-list, find-gc-source-files)
9712 (find-gc-subrs-called): Vars renamed and defvar'd.
9713
9714 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
9715 (checkdoc-overlay-put, checkdoc-delete-overlay)
9716 (checkdoc-overlay-start, checkdoc-overlay-end)
9717 (checkdoc-mode-line-update, checkdoc-char=):
9718 Define such that compiler knows they are defined.
9719 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
9720 (checkdoc-read-event): Delete. Use read-event directly.
9721
9722 * whitespace.el (whitespace-make-overlay)
9723 (whitespace-overlay-put, whitespace-delete-overlay)
9724 (whitespace-overlay-start, whitespace-overlay-end):
9725 Define such that compiler knows they are defined.
9726 (whitespace): Move conditional inside.
9727
9728 * tempo.el (tempo-insert-template): Suppress warning.
9729
9730 * ediff-diff.el (longlines-mode): Add defvar.
9731
9732 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
9733
9734 * server.el: Bind "C-x #" in a way that works even if C-x is
9735 redefined to a command key, not a prefix key.
9736
9737 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
9738
9739 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
9740 cl-make-type-test till execution time.
9741
9742 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
9743
9744 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
9745 arg ARG and use it.
9746
9747 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
9748
9749 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
9750
9751 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
9752
9753 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
9754 a defcustom with two :set or :type keywords.
9755
9756 2005-07-15 Richard M. Stallman <rms@gnu.org>
9757
9758 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
9759 Don't give ^M comment-end syntax.
9760
9761 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
9762
9763 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
9764 Don't consider gdbmi (gdb-mi.el has its own update functions).
9765 (gdb-var-delete): Make it work for gdbmi as well.
9766 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
9767
9768 * progmodes/gud.el (etags, sdb): Only require etags when needed.
9769 (gud-speedbar-menu-items): Correct logic for enabling items.
9770
9771 2005-07-15 Kim F. Storm <storm@cua.dk>
9772
9773 * ido.el: Fix commentary.
9774 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
9775 Use with-no-warnings around ffap-guesser.
9776 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
9777 Let bind minibuffer-completing-file-name to t.
9778
9779 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
9780
9781 * startup.el (site-run-file, keyboard-type): Doc fixes.
9782 (command-line): Check for "--basic-display" argument; also for
9783 "--quick", not "--bare-bones" (which was renamed).
9784 (fancy-splash-text): Add missing item "Getting New Versions".
9785 (normal-splash-screen): Fix typos and improve consistency with
9786 `fancy-splash-text'. Update copyright year.
9787
9788 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
9789 valid binding for `help-char'.
9790
9791 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
9792
9793 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
9794
9795 * term.el (term-mode): Disable cua-mode for term buffers.
9796
9797 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
9798
9799 * add-log.el (add-log-mailing-address, change-log-merge):
9800 Doc fixes.
9801 (change-log-get-method-definition): Fix typo in docstring.
9802
9803 2005-07-14 Kim F. Storm <storm@cua.dk>
9804
9805 * emulation/cua-base.el:
9806 (cua--pre-command-handler-1, cua--pre-command-handler)
9807 (cua--post-command-handler-1, cua--post-command-handler):
9808 Split in two. Check (buffer local) value of cua-mode.
9809 (cua-selection-mode): New command.
9810
9811 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
9812
9813 * custom.el (custom-initialize-safe-set)
9814 (custom-initialize-safe-default): Doc fixes.
9815
9816 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
9817 and simplify :init-value again.
9818
9819 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
9820 and simplify :init-value again. Delete autoload.
9821
9822 * startup.el (command-line): Use `custom-reevaluate-setting' again
9823 for tooltip-mode.
9824
9825 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
9826 a defcustom with two :initialize keywords.
9827
9828 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
9829
9830 * allout.el (my-mark-marker, allout-isearch-prior-pos)
9831 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
9832 (allout-post-command-business, allout-flag-region)
9833 (isearch-reenable-font-lock, allout-yank)
9834 (allout-insert-latex-header, allout-insert-latex-trailer)
9835 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
9836 (allout-latex-verb-quote): Fix typos in docstrings.
9837 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
9838 (allout-unprotected, allout-prefix-data):
9839 Improve argument/docstring consistency.
9840 (allout-chart-subtree): Fix argument spec.
9841 (allout-open-topic): Rename `use_sib_bullet' argument to
9842 `use-sib-bullet'. Doc fix.
9843
9844 * whitespace.el (whitespace-check-buffer-leading)
9845 (whitespace-check-buffer-trailing)
9846 (whitespace-check-buffer-indent)
9847 (whitespace-check-buffer-spacetab)
9848 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
9849 (whitespace-check-leading-whitespace)
9850 (whitespace-check-trailing-whitespace)
9851 (whitespace-check-spacetab-whitespace)
9852 (whitespace-check-indent-whitespace)
9853 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
9854 (whitespace-modes): Fix typos in docstrings.
9855 (defgroup, defcustom): Doc fixes.
9856
9857 * winner.el (winner-mode, winner-boring-buffers)
9858 (winner-pending-undo-ring): Doc fixes.
9859 (winner-ring): Remove unneeded `progn'.
9860 (winner-equal): `defsubst' it.
9861 (winner-redo): Fix message.
9862
9863 2005-07-13 Kim F. Storm <storm@cua.dk>
9864
9865 * simple.el (line-move-1): Always use vertical-motion to
9866 do the last (or only) line move to ensure some movement.
9867 Undo 2005-06-23 change--don't check for overlays.
9868
9869 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9870
9871 * term/mac-win.el (ccl-encode-mac-roman-font)
9872 (ccl-encode-mac-centraleurroman-font)
9873 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
9874 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
9875 Change charset-id boundary of dimension to ?\xef.
9876 (mac-char-fontspec-list): New constant.
9877 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
9878 argument. Nil uses itself as family in font-spec. Previous
9879 behavior for nil is now provided by non-nil non-string argument.
9880 All callers changed. Add font-specs for Mac fonts to
9881 "fontset-default" unless iso8859-1 fonts are installed.
9882
9883 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
9884
9885 * progmodes/sh-script.el (sh-get-indent-info): Only indent
9886 a continuation line if the \ is preceded by SPC or TAB.
9887 (sh-get-indent-info): Simplify.
9888 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
9889 Use with-current-buffer.
9890
9891 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
9892 when the matched text is empty.
9893
9894 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
9895
9896 * startup.el (command-line): Revert to previous handling of
9897 tooltip-mode. Explain in comment why the complexity is needed.
9898
9899 * tooltip.el (tooltip-mode): Revert to previous implementation of
9900 its defcustom.
9901
9902 * frame.el (blink-cursor-mode): Revert to previous implementation
9903 of its defcustom. Update comment.
9904
9905 2005-07-12 Lars Hansen <larsh@soem.dk>
9906
9907 * desktop.el: Update e-mail address.
9908
9909 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9910
9911 * term/mac-win.el (mac-services-mail-selection)
9912 (mac-services-mail-to): New functions.
9913 (mac-application-menu-map): Bind them.
9914
9915 2005-07-12 wulei <milton@wulei.net> (tiny change)
9916
9917 * progmodes/gdb-ui.el: Add note about buffering with Windows.
9918
9919 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
9920
9921 * custom.el (custom-reevaluate-setting): Doc fix.
9922
9923 2005-07-11 Jay Belanger <belanger@truman.edu>
9924
9925 * calc/calc.el (calc-embedded-announce-formula-alist)
9926 (calc-embedded-open-close-plain-alist)
9927 (calc-embedded-open-close-mode-alist): Add checks for additional
9928 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
9929
9930 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
9931
9932 * custom.el (custom-enable-theme): Don't add theme to
9933 `custom-enabled-themes' with `push' because there is no
9934 setf-method for `delq'.
9935
9936 2005-07-11 Richard M. Stallman <rms@gnu.org>
9937
9938 * custom.el (custom-declare-variable): Doc fix.
9939
9940 * dired-aux.el (dired-compare-directories): Remove "." and ".."
9941 from the alists.
9942
9943 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
9944 Do nothing if edebug-active.
9945
9946 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
9947 (edebug-display): Do it here instead.
9948
9949 2005-07-10 Richard M. Stallman <rms@gnu.org>
9950
9951 * cus-face.el (custom-theme-set-faces): Make it work.
9952 (custom-reset-faces): Doc fix.
9953 (custom-theme-reset-internal-face, custom-theme-face-value):
9954 Functions deleted.
9955
9956 * custom.el (custom-push-theme): Maintain list of the settings
9957 of a given theme in its theme-settings property.
9958 Maintain position of old settings in the theme-value
9959 or theme-face property.
9960 (custom-enabled-themes): New variable.
9961 (custom-theme-enabled-p): New function.
9962 (provide-theme): Update custom-enabled-themes.
9963 Disable and reenable the `user' theme.
9964 (require-theme): Doc fix.
9965 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
9966 (custom-theme-value, custom-theme-variable-value): Likewise.
9967 (custom-theme-reset-internal): Likewise.
9968 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
9969 (custom-enable-theme, custom-disable-theme): New functions.
9970 (custom-variable-theme-value, custom-face-theme-value): Likewise.
9971 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
9972 (custom-theme-reset-variables): Simplify.
9973 (deftheme, custom-declare-theme, custom-make-theme-feature):
9974 Definitions moved.
9975
9976 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
9977
9978 * longlines.el (longlines-show-region)
9979 (longlines-unshow-hard-newlines): Recognize hard newlines by
9980 non-nil hard property, instead of t.
9981
9982 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
9983
9984 * viper-cmd.el (viper--key-maps): New variable.
9985 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
9986 emulation-mode-map-alists.
9987 (viper-envelop-ESC-key): Use viper-subseq.
9988 (viper-search-forward/backward/next): Disable debug-on-error.
9989
9990 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
9991 (viper-ESC-key): New defcustoms.
9992
9993 * viper-macs.el (ex-map-read-args): Use viper-subseq.
9994
9995 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
9996 (viper-subseq): Copy of subseq from cl.el.
9997
9998 * viper.el (viper-go-away, viper-set-hooks): Use
9999 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
10000
10001 * viper-mous.el (viper-current-frame-saved): Use defvar.
10002
10003 * viper-init.el: Get rid of -face in face names.
10004
10005 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
10006 Make it work with longlines mode
10007
10008 * ediff-mult.el (ediff-meta-mode-hook): New variable.
10009
10010 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
10011
10012 * ediff-init.el: Get rid of -face in face names.
10013
10014 2005-07-10 Richard M. Stallman <rms@gnu.org>
10015
10016 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
10017 and with-timeout-unsuspend.
10018
10019 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
10020 and with-timeout-unsuspend.
10021
10022 * emacs-lisp/timer.el (with-timeout-timers): New variable.
10023 (with-timeout): Bind that variable to record timers.
10024 (with-timeout-suspend, with-timeout-unsuspend): New functions.
10025
10026 * emacs-lisp/debug.el (debug-help-follow): New function.
10027 (debugger-mode-map): Use that instead of help-follow.
10028 (debugger-setup-buffer): Use eval-buffer-list
10029 to handle eval-buffer frames.
10030
10031 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
10032
10033 * timezone.el (timezone-parse-date): Change first regexp
10034 so it will not mistakenly match dates with no time zone.
10035
10036 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
10037
10038 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
10039
10040 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
10041
10042 * custom.el (custom-initialize-safe-set)
10043 (custom-initialize-safe-default): New functions.
10044
10045 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
10046 and simplify :init-value.
10047
10048 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
10049 and simplify :init-value. Delete obsolete comment.
10050
10051 * startup.el (command-line): Use `custom-reevaluate-setting' to
10052 handle `tooltip-mode'. Delete obsolete comment.
10053
10054 * files.el (set-visited-file-name): Avoid calling
10055 `file-name-nondirectory' with a nil argument.
10056
10057 2005-07-09 Richard M. Stallman <rms@gnu.org>
10058
10059 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
10060 was called with nil for the buffer, handle the read position right.
10061 Handle read position for eval-region, too.
10062
10063 2005-07-09 Juri Linkov <juri@jurta.org>
10064
10065 * fringe.el (fringe-mode): Add period in docstring.
10066 (fringe-query-style): Build prompt depending on `all-frames' arg.
10067
10068 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
10069 to not create links to unrelated functions in the Help buffer.
10070
10071 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
10072 Doc fix.
10073
10074 * simple.el (next-error-hook): New variable.
10075 (next-error): Use it. Doc fix.
10076
10077 * textmodes/ispell.el (ispell-command-loop): Add current
10078 dictionary name and program name to mode-line-format.
10079 (ispell-region, ispell-process-line): Add current dictionary name
10080 and program name to messages.
10081
10082 2005-07-08 Jay Belanger <belanger@truman.edu>
10083
10084 * calc/calc.el (calc-embedded-announce-formula-alist)
10085 (calc-embedded-open-close-formula-alist)
10086 (calc-embedded-open-close-word-alist)
10087 (calc-embedded-open-close-plain-alist)
10088 (calc-embedded-open-close-new-formula-alist)
10089 (calc-embedded-open-close-mode-alist)
10090 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
10091 (calc-embedded-mode-hook): New variables.
10092
10093 * calc/calc-embed.el (calc-embedded-firsttime)
10094 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
10095 New variables.
10096 (calc-do-embedded): Use calc-embedded-firsttime,
10097 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
10098 determine whether or not to run hooks.
10099 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
10100 calc-embedded-firsttime-formula appropriately.
10101 Set calc-embedded delimiter variables according to mode.
10102
10103 2005-07-08 Richard M. Stallman <rms@gnu.org>
10104
10105 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
10106 Check for "emacs", etc., as entire symbol, not just as word.
10107 (checkdoc-file-comments-engine): Use regexp-quote on FN.
10108
10109 * files.el (set-visited-file-name): Report the error
10110 for "empty filename" earlier.
10111 (kill-some-buffers): Ignore buffers already dead.
10112
10113 * fringe.el (fringe-mode): Doc fix.
10114
10115 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
10116 Check for (featurep 'xemacs) and turn off warnings in what it guards.
10117 Use unwind-protect to ensure byte-compile-unresolved-functions
10118 is updated.
10119
10120 * whitespace.el (whitespace-buffer-leading-cleanup):
10121 Simplify w/ skip-chars-forward.
10122 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
10123
10124 * mail/rmail.el (rmail-only-expunge): Fix paren error.
10125 Unconditionally try to leave point at the same old place.
10126
10127 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
10128
10129 * comint.el (comint-postoutput-scroll-to-bottom)
10130 (comint-show-maximum-output): Take scroll-margin into consideration.
10131
10132 2005-07-08 Kim F. Storm <storm@cua.dk>
10133
10134 * ido.el (ido-use-filename-at-point): New choice `guess'.
10135 (ido-file-internal): Try ffap-guesser if selected.
10136
10137 * ido.el (ido-before-fallback-functions): New hook.
10138 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
10139 (ido-read-file-name): Run it.
10140
10141 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
10142
10143 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
10144 strings rather than a list of symbols to the completion function.
10145
10146 2005-07-07 Jay Belanger <belanger@truman.edu>
10147
10148 * calc/calc-units.el (math-apply-units): Change the places in
10149 which units are simplified.
10150
10151 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
10152
10153 * cus-edit.el (customize-option, customize-option-other-window):
10154 Make them handle aliases.
10155
10156 * custom.el (custom-variable-p): Make it recursively follow
10157 aliases. Mention that in the docstring.
10158
10159 2005-07-07 Richard M. Stallman <rms@gnu.org>
10160
10161 * cus-start.el (exec-path): Use `directory' instead of `file'.
10162 Fix tag for nil.
10163
10164 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
10165
10166 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
10167 when called non-interactively. Doc fix.
10168
10169 2005-07-07 Lute Kamstra <lute@gnu.org>
10170
10171 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
10172 new address as well.
10173
10174 2005-07-07 Kenichi Handa <handa@m17n.org>
10175
10176 * international/mule.el (make-coding-system):
10177 Describe `ascii-incompatible' property in the docstring.
10178 (set-file-name-coding-system): Signal an error if coding-system is
10179 ascii-incompatible.
10180 (set-keyboard-coding-system): Likewise.
10181
10182 * international/mule-cmds.el (set-default-coding-systems):
10183 Don't set default-file-name-coding-system and
10184 default-keyboard-coding-system if coding-system is ASCII-incompatible.
10185
10186 * international/utf-16.el: Declare that all UTF-16-based coding
10187 systems are ASCII-incompatible.
10188
10189 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
10190
10191 * progmodes/gud.el: Require font-lock for displaying errors.
10192 Used by gdb-ui.el.
10193
10194 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
10195
10196 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
10197 values for the pattern lists which are `read'able but not
10198 `append'able (like symbols).
10199
10200 2005-07-06 Richard M. Stallman <rms@gnu.org>
10201
10202 * progmodes/flymake.el (flymake-float-time): Instead of
10203 with-no-warnings, test for xemacs.
10204 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
10205 to avoid warning.
10206
10207 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
10208
10209 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
10210
10211 2005-07-05 Lute Kamstra <lute@gnu.org>
10212
10213 * battery.el: Add support for Darwin (with much debugging help
10214 from Samuel Lauber <sam124@operamail.com>).
10215 (battery-status-function, battery-echo-area-format)
10216 (battery-mode-line-format): Add support for pmset on Darwin.
10217 (battery-load-low, battery-load-critical): New user options.
10218 (battery-pmset): New function.
10219
10220 2005-07-05 Lute Kamstra <lute@gnu.org>
10221
10222 Update FSF's address in GPL notices.
10223
10224 * textmodes/page-ext.el: Update FSF's address.
10225
10226 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10227
10228 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
10229 filling from using prefix when filling a single-line docstring.
10230
10231 * progmodes/flymake.el: Remove useless eval-when-compile.
10232
10233 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
10234
10235 2005-07-04 Richard M. Stallman <rms@gnu.org>
10236
10237 * textmodes/org.el (org-file-apps-defaults-gnu):
10238 Rename from org-file-apps-defaults-linux.
10239 (org-default-apps): Don't test system-type for `linux'.
10240 (org-file-apps): Doc fix.
10241
10242 2005-07-04 David Ponce <david@dponce.com>
10243
10244 * tree-widget.el: Improve header Commentary section.
10245 (tree-widget) [defgroup]
10246 (tree-widget-image-enable, tree-widget-themes-directory)
10247 (tree-widget-theme, tree-widget-image-properties-emacs)
10248 (tree-widget-image-properties-xemacs, tree-widget-create-image)
10249 (tree-widget-image-formats, tree-widget-control)
10250 (tree-widget-empty-control, tree-widget-leaf-control
10251 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
10252 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
10253 (tree-widget-keep, tree-widget-after-toggle-functions)
10254 (tree-widget-open-node, tree-widget-close-node): Doc fix.
10255 (tree-widget-open-control, tree-widget-close-control): Fix doc and
10256 :help-echo message.
10257 (tree-widget-set-theme): Doc fix. Use `string-equal'.
10258 (tree-widget-image-properties): Doc fix. Clearer implementation.
10259 (tree-widget--cursors): New constant.
10260 (tree-widget-lookup-image): New function split from
10261 `tree-widget-find-image'. Clearer implementation.
10262 (tree-widget-find-image): Use it.
10263 (tree-widget-button-keymap): Use `set-keymap-parent'.
10264 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
10265 Define the sub-widgets here.
10266 (tree-widget-node): Check that :node is not a tree-widget.
10267 (tree-widget-get-super, tree-widget-open-control)
10268 (tree-widget-close-control, tree-widget-empty-control)
10269 (tree-widget-leaf-control, tree-widget-guide)
10270 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
10271 (tree-widget-no-handle, tree-widget-value-delete)
10272 (tree-widget-map): Remove.
10273 (tree-widget-children-value-save): Doc fix. Simplified.
10274 (tree-widget-value-create): Update according to previous changes.
10275
10276 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
10277
10278 * textmodes/org.el: Leading space replaced by TABS.
10279 (org-recalc-marks, org-table-rotate-recalc-marks)
10280 (org-table-get-specials): Treat "^" and "_" marks.
10281 (org-table-justify-field-maybe): Optional argument NEW.
10282 (org-table-eval-formula): Parsing of the format simplified.
10283 New modes C,I. Honor the %= parameter in the current table.
10284 Avoid unnecessary re-align by using the NEW argument to
10285 `org-table-justify-field-maybe'.
10286 (org-calc-default-modes): Default for date-format mimicks org-mode.
10287 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
10288
10289 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
10290
10291 * cus-face.el (custom-theme-set-faces): Make it handle face
10292 aliases whose alias declarations are pre- or autoloaded.
10293
10294 2005-07-04 Juri Linkov <juri@jurta.org>
10295
10296 * faces.el (read-face-name): Put the code for getting a face name
10297 from the buffer before adding the faces from the `face' property.
10298 Use `completing-read-multiple' instead of `completing-read'.
10299 Require `crm'. Add default value and post-process the returned
10300 list of faces.
10301
10302 * emacs-lisp/crm.el (crm-find-current-element)
10303 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
10304
10305 * emacs-lisp/lisp-mode.el (eval-defun-1):
10306 * emacs-lisp/edebug.el (edebug-eval-defun):
10307 Remove unnecessary quotes.
10308
10309 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
10310
10311 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
10312 (prolog-indent-level): Fix typo in docstring.
10313
10314 * info.el (Info-history, Info-history-forward)
10315 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
10316
10317 * add-log.el (add-change-log-entry):
10318 * comint.el (comint-dynamic-list-input-ring)
10319 (comint-dynamic-list-completions):
10320 * dabbrev.el (dabbrev-expand):
10321 * delim-col.el (delimit-columns-rectangle-line):
10322 * diff-mode.el (diff-context->unified, diff-reverse-direction)
10323 (diff-unified->context):
10324 * ediff-init.el (ediff-abbrev-jobname):
10325 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
10326 (ediff-replace-session-activity-marker-in-meta-buffer):
10327 * info.el (Info-summary):
10328 * lpr.el (printify-region):
10329 * printing.el (pr-create-interface):
10330 * ps-print.el (ps-print-quote):
10331 * ses.el (ses-column-widths, ses-print-cell)
10332 (ses-adjust-print-width, ses-center):
10333 * shell.el (shell-file-name-quote-list):
10334 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
10335 (strokes-fill-current-buffer-with-whitespace)
10336 (strokes-xpm-for-stroke, strokes-list-strokes)
10337 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
10338 * term.el (term-dynamic-list-input-ring)
10339 (term-dynamic-list-completions):
10340 * calc/calc.el (math-format-stack-value):
10341 * emacs-lisp/edebug.el (edebug-display-freq-count):
10342 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
10343 (delphi-new-comment-line):
10344 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
10345 * progmodes/executable.el (executable-set-magic):
10346 * progmodes/python.el (inferior-python-mode):
10347 * progmodes/scheme.el (scheme-mode-syntax-table):
10348 * progmodes/sh-script.el (sh-maybe-here-document):
10349 * progmodes/sql.el (sql-copy-column):
10350 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
10351 * textmodes/bibtex.el (bibtex-mode):
10352 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
10353 (sgml-auto-attributes):
10354 * textmodes/table.el (table-insert, table-shorten-cell)
10355 (table--generate-source-scan-lines, table-delete-row)
10356 (*table--cell-delete-char, table--spacify-frame)
10357 (table--horizontally-shift-above-and-below)
10358 (table--cell-insert-char, table--cell-blank-str)
10359 (table--fill-region-strictly):
10360 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
10361 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
10362
10363 * add-log.el (change-log):
10364 * apropos.el (apropos):
10365 * comint.el (comint-completion, comint-source):
10366 * dabbrev.el (dabbrev):
10367 * delim-col.el (columns):
10368 * diff-mode.el (diff-mode):
10369 * ediff.el (ediff):
10370 * ediff-diff.el (ediff-diff):
10371 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
10372 * ediff-mult.el (ediff-mult):
10373 * ediff-ptch.el (ediff-ptch):
10374 * ediff-wind.el (ediff-window):
10375 * facemenu.el (facemenu):
10376 * indent.el (indent):
10377 * info.el (info):
10378 * jka-cmpr-hook.el (compression, jka-compr):
10379 * lpr.el (lpr):
10380 * outline.el (outlines):
10381 * pcmpl-cvs.el (pcmpl-cvs):
10382 * pcmpl-rpm.el (pcmpl-rpm):
10383 * printing.el (printing):
10384 * ps-print.el (postscript, ps-print, ps-print-horizontal)
10385 (ps-print-vertical, ps-print-headers, ps-print-font)
10386 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
10387 (ps-print-background, ps-print-printer, ps-print-page)
10388 (ps-print-miscellany):
10389 * ses.el (ses):
10390 * shell.el (shell, shell-directories, shell-faces):
10391 * startup.el (initialization):
10392 * strokes.el (strokes):
10393 * term.el (term):
10394 * uniquify.el (uniquify):
10395 * w32-vars.el (w32):
10396 * calc/calc.el (calc):
10397 * emacs-lisp/bytecomp.el (bytecomp):
10398 * emacs-lisp/cl-indent.el (lisp-indent):
10399 * emacs-lisp/edebug.el (edebug):
10400 * emacs-lisp/elp.el (elp):
10401 * emacs-lisp/testcover.el (testcover):
10402 * emacs-lisp/trace.el (trace):
10403 * emulation/viper-ex.el (viper-ex):
10404 * emulation/viper-mous.el (viper-mouse):
10405 * mail/mailalias.el (mailalias):
10406 * mail/supercite.el (supercite, supercite-frames)
10407 (supercite-attr, supercite-cite, supercite-hooks):
10408 * net/rcompile.el (remote-compile):
10409 * net/rlogin.el (rlogin):
10410 * obsolete/ooutline.el (outlines):
10411 * progmodes/delphi.el (delphi):
10412 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
10413 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
10414 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
10415 (ebnf-optimization):
10416 * progmodes/etags.el (etags):
10417 * progmodes/executable.el (executable):
10418 * progmodes/idlwave.el (idlwave):
10419 * progmodes/pascal.el (pascal):
10420 * progmodes/prolog.el (prolog):
10421 * progmodes/python.el (python):
10422 * progmodes/scheme.el (scheme):
10423 * progmodes/sh-script.el (sh, sh-script):
10424 * progmodes/sql.el (SQL):
10425 * progmodes/tcl.el (tcl):
10426 * textmodes/bibtex.el (bibtex, bibtex-autokey):
10427 * textmodes/enriched.el (enriched):
10428 * textmodes/makeinfo.el (makeinfo):
10429 * textmodes/sgml-mode.el (sgml):
10430 * textmodes/table.el (table-hooks):
10431 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
10432 * textmodes/texinfo.el (texinfo):
10433 * textmodes/two-column.el (two-column):
10434 Finish `defgroup' description with period.
10435
10436 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
10437 * eshell/esh-var.el (eshell-var):
10438 * progmodes/vhdl-mode.el (vhdl-testbench):
10439 * textmodes/org.el (org): Fix typos in docstrings.
10440
10441 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
10442 consistency.
10443
10444 * progmodes/flymake.el (flymake-find-file): Remove.
10445 (flymake-float-time): Use `with-no-warnings'.
10446 (flymake-check-start-time, flymake-check-was-interrupted)
10447 (flymake-err-info, flymake-is-running, flymake-last-change-time)
10448 (flymake-new-err-info): `defvar' at compile time.
10449
10450 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
10451
10452 * replace.el (occur-hook): Doc fix.
10453 (occur-1): Don't call `occur-hook' if there are no matches.
10454
10455 2005-07-03 Richard M. Stallman <rms@gnu.org>
10456
10457 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
10458 global-map, save the same map.
10459 (global-map): Don't alter it at top level.
10460 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
10461 Then alter it here instead.
10462 (tpu-edt-off): Set global-map to the saved one.
10463
10464 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
10465 All references simplified.
10466 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
10467 (zmacs-regions): Add defvar.
10468 (repeat-complex-command-map): Everything about that deleted.
10469
10470 * textmodes/artist.el (artist-key-is-drawing)
10471 (artist-key-endpoint1, artist-key-poly-point-list)
10472 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
10473 (artist-key-compl-table, artist-rb-save-data)
10474 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
10475 Don't put them in eval-when-compile.
10476 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
10477
10478 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
10479 Use with-no-warnings.
10480
10481 * net/browse-url.el (dos-windows-version): Add defvar.
10482
10483 * mail/supercite.el (filladapt-prefix-table): Add defvar.
10484
10485 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
10486 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
10487 (rmail-new-summary-line-count): Rename from new-summary-line-count.
10488 Add defvar.
10489 (rmail-summary-beginning-of-message): Use with-no-warnings.
10490 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
10491
10492 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
10493 Use with-no-warnings.
10494
10495 * emulation/vi.el (vi-mark-region): Use c-mark-function.
10496 (c-mark-function): Add point-moving-unit property.
10497 (vi-goto-line): Use with-no-warnings.
10498
10499 * emulation/edt.el (edt-last-copied-word): Add defvar.
10500 (zmacs-region-stays): Likewise.
10501 (edt-mark-section-wisely): Use c-mark-function for C.
10502 Use makr-defun for Fortran.
10503 (time-string): defvar deleted.
10504 (edt-display-the-time): Don't set time-string.
10505
10506 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
10507
10508 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
10509 Don't warn when name is not constant
10510 or for defining the group `emacs'.
10511
10512 * tooltip.el (gud-tooltip-mode): Add defvar.
10513
10514 * startup.el (default-frame-background-mode): Add defvar.
10515
10516 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
10517
10518 * info.el (tool-bar-map): Add defvar.
10519
10520 * dired.el (dnd-protocol-alist): Add defvar.
10521
10522 * dired-aux.el (dired-query): Display question with answer, when
10523 the user answers.
10524
10525 * custom.el (custom-add-option): Doc fix.
10526
10527 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
10528
10529 2005-07-03 Eli Zaretskii <eliz@gnu.org>
10530
10531 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
10532 bogus name from the last change.
10533
10534 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
10535
10536 * custom.el (custom-declare-variable): Fix typos in comment.
10537 (custom-known-themes): Doc fix.
10538 (custom-theme-directory): New defcustom.
10539 (require-theme): Make it check `custom-theme-directory'.
10540
10541 * cus-theme.el (custom-new-theme-mode): New function.
10542 (custom-theme-name, custom-theme-variables, custom-theme-faces)
10543 (custom-theme-description): Add compiler defvars.
10544 (customize-create-theme): Add doc to the "*New Custom Theme*"
10545 buffer. Use `custom-new-theme-mode'.
10546 (custom-theme-write): Put the created buffer in emacs-lisp-mode
10547 and save it to the `custom-theme-directory'. Make this the
10548 default directory of the buffer.
10549
10550 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
10551
10552 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
10553 Fix unbalanced parentheses.
10554
10555 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
10556
10557 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
10558 into flymake-mode and delegate to flymake-mode.
10559
10560 * find-file.el (ff-which-function-are-we-in): Clean up.
10561
10562 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
10563
10564 * replace.el (occur-rename-buffer): Fix docstring.
10565
10566 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
10567 (edt-last-copied-word, edt-learn-macro-count)
10568 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
10569 (edt-rect-start-point, edt-user-global-map, rect-start-point)
10570 (time-string, zmacs-region-stays):
10571 * emulation/edt-mapper.el (edt-save-function-key-map)
10572 (EDT-key-name): `defvar' to silence the byte-compiler.
10573
10574 2005-07-02 Martin Rudalics <rudalics@gmx.at> (tiny change)
10575
10576 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
10577 font-lock-regexp-backslash. Doc fix.
10578 (font-lock-regexp-backslash-grouping-construct): Rename from
10579 font-lock-regexp-backslash-construct. Doc fix.
10580 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
10581 grouping constructs.
10582
10583 2005-07-02 Eli Zaretskii <eliz@gnu.org>
10584
10585 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
10586 updating all the prerequisites.
10587
10588 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
10589
10590 * textmodes/org.el (org-agenda-start-on-weekday)
10591 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
10592 (org-agenda-use-time-grid, org-archive-location)
10593 (org-allow-space-in-links, org-usenet-links-prefer-google)
10594 (org-enable-table-editor, org-export-default-language)
10595 (org-export-html-show-new-buffer, org-fill-paragraph)
10596 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
10597 (org-goto-quit, org-occur, org-eval-in-calendar)
10598 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
10599 (org-agenda-diary-entry, org-remember-help)
10600 (org-table-convert-region, org-at-table-p)
10601 (org-table-move-row-down, org-table-move-row-up)
10602 (org-table-copy-region, org-table-toggle-vline-visibility)
10603 (org-table-get-stored-formulas, org-table-get-specials)
10604 (org-recalc-commands, org-table-eval-formula)
10605 (org-table-formula-substitute-names, orgtbl-make-binding)
10606 (org-format-org-table-html, org-format-table-table-html)
10607 (org-format-table-table-html-using-table-generate-source)
10608 (org-customize): Fix typos in docstrings.
10609 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
10610 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
10611 (org-back-to-heading): Doc fixes.
10612 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
10613 (org-agenda-change-all-lines, org-get-header):
10614 Improve argument/docstring consistency.
10615 (orgtbl-error): Fix error message.
10616
10617 * progmodes/flymake.el (flymake-find-possible-master-files)
10618 (flymake-master-file-compare, flymake-get-line-err-count)
10619 (flymake-highlight-line, flymake-gui-warnings-enabled):
10620 Fix typos in docstrings.
10621 (flymake-parse-line, flymake-get-project-include-dirs-function)
10622 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
10623 Doc fixes.
10624 (flymake-get-project-include-dirs-function)
10625 (flymake-make-err-menu-data):
10626 Improve argument/docstring consistency.
10627
10628 2005-07-01 Lute Kamstra <lute@gnu.org>
10629
10630 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
10631 Catch errors with ignore-errors. Use temporary buffer.
10632 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
10633
10634 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
10635 background color faces.
10636 (facemenu-set-foreground, facemenu-set-background):
10637 Use facemenu-set-face-from-menu.
10638 (facemenu-set-face-from-menu): Treat face names that start with
10639 "fg:" or "bg:" as special.
10640 (facemenu-add-new-color): Don't create faces. Simplify.
10641
10642 2005-06-30 Richard M. Stallman <rms@gnu.org>
10643
10644 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
10645 (crm-find-current-element): Likewise.
10646
10647 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
10648
10649 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
10650
10651 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
10652
10653 * arc-mode.el (archive-extract): Make it work as a mouse binding.
10654 (archive-mouse-extract): Make it an obsolete alias.
10655 (archive-mode-map): Don't use archive-mouse-extract any more.
10656 (archive-mode, archive-extract): write-contents-hooks ->
10657 write-contents-functions.
10658 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
10659 first arg.
10660 (archive-rename-entry): Update the call.
10661 (archive-zip-summarize): Remove unused var `method'.
10662 (archive-lzh-summarize): Remove unused var `creator'.
10663
10664 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
10665 dedicated frame upon exit.
10666
10667 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
10668 (archive-zip-extract, archive-zip-expunge)
10669 (archive-zip-update, archive-zip-update-case): Use executable-find.
10670 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
10671 Use restore-buffer-modified-p.
10672 (archive-extract, archive-add-new-member, archive-write-file-member):
10673 Use with-current-buffer.
10674 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
10675
10676 2005-06-30 Andreas Schwab <schwab@suse.de>
10677
10678 * progmodes/gud.el (gud-filter): Remove unneeded progn.
10679
10680 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
10681
10682 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
10683
10684 2005-06-30 Juri Linkov <juri@jurta.org>
10685
10686 * faces.el (vertical-border): Inherit from mode-line-inactive
10687 only on tty.
10688
10689 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
10690
10691 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
10692 example, -NLINES in the `occur' docstring).
10693
10694 * replace.el (occur-1): When no matches are found, do not set the
10695 `buffer-read-only' and modified flags for the occur buffer,
10696 because it is deleted.
10697
10698 * emulation/cua-base.el (cua-check-pending-input)
10699 (cua-repeat-replace-region, cua-mode, cua-debug)
10700 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
10701 Fix typos in docstrings.
10702
10703 * emulation/cua-gmrk.el (cua-toggle-global-mark)
10704 (cua-cut-region-to-global-mark)
10705 (cua--cut-rectangle-to-global-mark):
10706 Remove period from end of messages.
10707
10708 * emulation/cua-rect.el (cua-do-rectangle-padding):
10709 Remove period from end of messages.
10710 (cua--rectangle-seq-format): Fix typo in docstring.
10711 (cua-sequence-rectangle, cua-fill-char-rectangle):
10712 Improve argument/docstring consistency.
10713
10714 2005-06-29 Juri Linkov <juri@jurta.org>
10715
10716 * faces.el (default-frame-background-mode): New internal variable.
10717 (frame-set-background-mode): Use it.
10718
10719 * startup.el (normal-top-level): Set default-frame-background-mode
10720 instead of frame-background-mode. Before setting it, test for its
10721 nil value. Remove tests for frame-background-mode and frame
10722 parameter `reverse'. Add test for "unspecified-fg".
10723
10724 * term/xterm.el (xterm-rxvt-set-background-mode):
10725 * term/rxvt.el (rxvt-set-background-mode):
10726 Set default-frame-background-mode instead of frame-background-mode.
10727
10728 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
10729
10730 * simple.el (set-variable): Warn about obsolete user variables.
10731
10732 * imenu.el (imenu--completion-buffer):
10733 * mouse.el (mouse-buffer-menu-alist):
10734 * msb.el (msb-invisible-buffer-p):
10735 * calendar/diary-lib.el (diary-header-line-format):
10736 * emacs-lisp/pp.el (pp-buffer):
10737 * progmodes/cperl-mode.el (cperl-do-auto-fill):
10738 * textmodes/picture.el (picture-replace-match):
10739 Change space constants followed by a sexp to "?\s ".
10740
10741 * play/decipher.el (decipher-loop-with-breaks):
10742 * textmodes/texinfo.el (texinfo-insert-@item): Change space
10743 constants "protected" from end of line by a comment to "?\s".
10744
10745 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
10746
10747 * font-lock.el (save-buffer-state): Use `declare'.
10748
10749 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
10750 reset the syntax-table to cperl-mode-syntax-table.
10751 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
10752 "foo_print_bar" is not matched as a reserved keyword.
10753
10754 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
10755
10756 * textmodes/org.el (orgtbl-setup): New function, for delayed
10757 setup for the orgtbl commands.
10758 (org-calc-default-modes): New option.
10759 (orgtbl-make-binding): Use `defun' to get better help display.
10760 (org-diary): Call `org-compile-prefix-format'.
10761 (org-table-formula-substitute-names): New function.
10762 (org-agenda-day-view, org-agenda-week-view): New commands.
10763 (org-agenda-toggle-week-view): Command removed.
10764 (org-tbl-menu): Split off from org-org-menu.
10765 (org-mode): Move removal of outline-mode menus to here.
10766 (org-table-formula-debug): New option.
10767 (org-table-insert-row): Keep first field if just "#" or "*".
10768 (org-mode): Paragraph regexps fixed.
10769 (org-table-recalculate-regexp): New constant.
10770 (org-table-justify-field-maybe): Avoid replace if not necessary.
10771 (org-copy-special, org-cut-special): Use `call-interactively'.
10772 (org-table-copy-region): Take region from `interactive' call.
10773 (org-trim): Return string even if no match.
10774 (org-formula): New face.
10775 (org-set-font-lock-defaults): No longer highlight "FIXME".
10776 But highlight formula-related fields in table.
10777 (org-table-p): Use regexp, not fontification.
10778 (org-table-align): Handle white space at end of line.
10779 (org-table-formula-evaluate-inline): New option.
10780 (org-mode): Auto-wrapping in comment lines turned off.
10781 (org-table-copy-down): Evaluate only in copied field, not in
10782 destination.
10783 (org-table-current-formula): Variable removed.
10784 (org-table-store-formulas, org-table-get-stored-formulas)
10785 (org-table-modify-formulas, org-table-replace-in-formulas)
10786 (org-table-maybe-eval-formula): New functions.
10787 (org-table-get-formula): Modify to use stored formulas.
10788 (org-table-insert-column, org-table-delete-column)
10789 (org-table-move-column): Call `org-table-modify-formulas'.
10790 (org-complete): Add completion for keyword formulas.
10791 (orgtbl-mode): Pull orgtbl-mode-map to start of
10792 minor-mode-map-alist.
10793
10794 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
10795
10796 * progmodes/python.el (python-check): Require `compile' before
10797 modifying its variables.
10798
10799 * newcomment.el (comment-indent-default): Don't get fooled by an early
10800 end of buffer.
10801
10802 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10803
10804 * ps-print.el (ps-print-version): Fix version number.
10805
10806 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
10807
10808 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
10809
10810 2005-06-28 Richard M. Stallman <rms@gnu.org>
10811
10812 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
10813 (flyspell-local-mouse-map): Declaration deleted.
10814 (flyspell-mouse-map): Bind only mouse-2.
10815 (flyspell-mode-map): Don't test flyspell-use-local-map.
10816 (flyspell-overlay-keymap-property-name): Var deleted.
10817 (flyspell-mode-on): Don't make local bindings for
10818 flyspell-mouse-map and flyspell-mode-map.
10819 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
10820
10821 * textmodes/ispell.el (ispell-word): Do not ignore short words.
10822
10823 * progmodes/compile.el (compilation-next-error-function):
10824 Don't switch buffers; operate on the current buffer.
10825
10826 * progmodes/compile.el (compilation-error-file-name)
10827 (compilation-warning-file-name, compilation-info-file-name)
10828 (compilation-line-number, compilation-column-number): New faces.
10829 (compilation-error-face, compilation-warning-face)
10830 (compilation-info-face, compilation-line-face)
10831 (compilation-column-face): Use them.
10832
10833 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
10834
10835 * comint.el (comint-password-prompt-regexp): Accept ", try again".
10836
10837 * bindings.el (global-map): Bind insertchar and its variants.
10838
10839 2005-06-27 Richard M. Stallman <rms@gnu.org>
10840
10841 * textmodes/artist.el (artist-text-overwrite)
10842 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
10843
10844 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
10845
10846 * ps-print.el: It was not working the page selection for printing.
10847 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
10848 (ps-print-version): New version 6.6.7.
10849 (ps-end-sheet): New fun.
10850 (ps-header-sheet, ps-end-job): Call it.
10851
10852 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
10853
10854 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
10855
10856 2005-06-27 Lute Kamstra <lute@gnu.org>
10857
10858 * facemenu.el (facemenu-unlisted-faces): Add foreground and
10859 background color faces.
10860 (facemenu-get-face): Delete function.
10861 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
10862 (facemenu-add-new-color): Make second argument mandatory.
10863 Create the appropriate face and return it. Simplify.
10864 (facemenu-set-foreground, facemenu-set-background): Don't check if
10865 color is defined. Use return value of facemenu-add-new-color.
10866
10867 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
10868
10869 * progmodes/gud.el (gud-filter): Add missing argument to
10870 with-selected-window.
10871
10872 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
10873
10874 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
10875 a :require to the defcustom.
10876
10877 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
10878 defcustoms corresponding to minor modes.
10879
10880 2005-06-26 David Ponce <david@dponce.com>
10881
10882 * recentf.el: Require tree-widget instead of wid-edit.
10883 (recentf-filename-handler): Fix widget :type.
10884 (recentf-cancel-dialog, recentf-open-more-files)
10885 (recentf-open-files-action): Doc fix.
10886 (recentf-dialog-goto-first): New function.
10887 (recentf-dialog-mode-map): Set parent keymap first.
10888 (recentf-dialog-mode): Define with define-derived-mode.
10889 Don't display continuation lines in dialogs.
10890 (recentf-edit-list): Rename from recentf-edit-selected-items.
10891 (recentf-edit-list-select): Rename from recentf-edit-list-action.
10892 Simplify.
10893 (recentf-edit-list-validate): New function.
10894 (recentf-edit-list): Update accordingly.
10895 (recentf-open-files-item-shift): Remove.
10896 (recentf-open-files-item): Convert menu elements into tree and
10897 link widgets. Don't create the widgets.
10898 (recentf-open-files): Update accordingly.
10899 (recentf-save-list): Untabify.
10900
10901 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
10902
10903 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
10904 (keep-lines): Add INTERACTIVE arg. Never delete lines only
10905 partially contained in the active region. Do not take active
10906 region into account when called from Lisp, unless INTERACTIVE arg
10907 is non-nil. Use `forward-line' instead of `beginning-of-line' to
10908 avoid trouble with fields. Make marker point nowhere when no
10909 longer used. Always return nil. Doc fix.
10910 (flush-lines): Add INTERACTIVE arg. Do not take active region
10911 into account when called from Lisp, unless INTERACTIVE arg is
10912 non-nil. Use `forward-line' instead of `beginning-of-line' to
10913 avoid trouble with fields. Make marker point nowhere when no
10914 longer used. Always return nil. Doc fix.
10915 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
10916 interchangeable. Do not take active region into account when
10917 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
10918 message in echo area when called from Lisp, unless INTERACTIVE arg
10919 is non-nil. Avoid saying "1 occurrences". Do not use markers.
10920 Return the number of matches. Doc fix.
10921 (occur): Doc fix.
10922 (perform-replace): Make comment follow double space convention for
10923 the sake of `outline-minor-mode'.
10924
10925 * faces.el (facep): Doc fix.
10926
10927 2005-06-25 Richard M. Stallman <rms@gnu.org>
10928
10929 * facemenu.el (facemenu-enable-faces-p): New function.
10930 (facemenu-background-menu, facemenu-foreground-menu)
10931 (facemenu-face-menu): Add menu-enable property.
10932
10933 * jka-compr.el (jka-compr-insert-file-contents):
10934 Special handling if cannot find the uncompression program.
10935
10936 * cus-face.el (custom-face-attributes): Add autoload.
10937
10938 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10939 Bind comment-indent-function locally.
10940
10941 * window.el (save-selected-window): Use save-current-buffer.
10942
10943 * subr.el (with-selected-window): Use save-current-buffer.
10944
10945 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
10946 and with-current-buffer.
10947
10948 2005-06-24 Richard M. Stallman <rms@gnu.org>
10949
10950 * simple.el (line-move-1): Fix previous change.
10951
10952 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
10953
10954 * replace.el (occur-1): Set `buffer-read-only' and the
10955 buffer-modified flag before running `occur-hook' to protect
10956 against unintentional buffer switches that can lead to data loss.
10957
10958 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
10959
10960 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
10961 (gud-gdb-marker-filter): Use font-lock-warning-face for any
10962 initial error.
10963
10964 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
10965 after fresh input.
10966 (gdb-var-create-handler): Put name of expression in quotes.
10967
10968 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
10969
10970 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
10971 elements of RING in order, and without bogus nil elements.
10972
10973 2005-06-23 Richard M. Stallman <rms@gnu.org>
10974
10975 * simple.el (set-variable): Args renamed; doc fix.
10976 (line-move-1): When there are overlays around, use vertical-motion.
10977
10978 * faces.el (escape-glyph): Use brown against light background.
10979 (nobreak-space): Rename from no-break-space.
10980 Fix previous change.
10981
10982 * dired-aux.el (dired-do-copy): Fix arg prompt.
10983
10984 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
10985
10986 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
10987
10988 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
10989 rather than "Distributor".
10990
10991 2005-06-23 Lute Kamstra <lute@gnu.org>
10992
10993 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
10994 (debug-on-entry): Use it. New interactive declaration that uses
10995 function-called-at-point.
10996
10997 2005-06-23 Kim F. Storm <storm@cua.dk>
10998
10999 * subr.el (save-match-data): Add comment about using evaporate arg
11000 to set-match-data.
11001
11002 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
11003
11004 * cus-edit.el (customize-face)
11005 (customize-face-other-window): Handle face aliases.
11006
11007 * faces.el (face-documentation, set-face-attribute)
11008 (face-spec-set): Handle face aliases.
11009
11010 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
11011
11012 * help-mode.el (help-make-xrefs): If a symbol representing a face
11013 name is not followed by the word "face", it could still be a
11014 function or variable name, so don't bypass other checks.
11015
11016 2005-06-22 Juri Linkov <juri@jurta.org>
11017
11018 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
11019 Replace aliased functions with calls where second arg `inherit' is t.
11020
11021 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
11022
11023 * progmodes/gdb-ui.el (gdb-error): New variable.
11024 (gdb-error): New function.
11025 (gdb-annotation-rules): Act on error-begin and error annotations.
11026 (gdb-concat-output): Use font-lock-warning-face for errors.
11027
11028 2005-06-22 Miles Bader <miles@gnu.org>
11029
11030 * bindings.el (propertized-buffer-identification): Use renamed
11031 `Buffer-menu-buffer' face.
11032
11033 * faces.el (vertical-border): Rename from `vertical-divider'.
11034 (escape-glyph): Change dark-background color back to `cyan'.
11035
11036 2005-06-21 Juri Linkov <juri@jurta.org>
11037
11038 * faces.el (face-user-default-spec): Try getting `customized-face'
11039 prior to `saved-face'.
11040 (frame-background-mode): Refill docstring.
11041
11042 * emacs-lisp/lisp-mode.el (eval-defun-1):
11043 * emacs-lisp/edebug.el (edebug-eval-defun):
11044 Set `saved-face' temporarily to nil before calling form.
11045 Set `customized-face' to the new spec after that.
11046
11047 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
11048
11049 * subr.el (1value, lambda, key-substitution-in-progress):
11050 Doc fixes.
11051
11052 * autoinsert.el (auto-insert-alist):
11053 * ses.el (ses-call-printer):
11054 * subr.el (noreturn):
11055 * emacs-lisp/lisp.el (check-parens):
11056 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
11057 * net/browse-url.el (browse-url-mosaic):
11058 * progmodes/cc-defs.el (c-safe-scan-lists):
11059 * progmodes/ebnf-abn.el (ebnf-abn-lex):
11060 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
11061 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
11062 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
11063 * progmodes/ebnf-iso.el (ebnf-iso-lex):
11064 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
11065
11066 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
11067
11068 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
11069
11070 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
11071
11072 * calendar/appt.el (appt-make-list): Activate the package, if
11073 not already active (for backwards compatibility).
11074
11075 2005-06-20 Kim F. Storm <storm@cua.dk>
11076
11077 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
11078
11079 2005-06-20 Miles Bader <miles@gnu.org>
11080
11081 * faces.el (vertical-divider): New face.
11082
11083 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
11084
11085 * simple.el (kill-whole-line): Doc fix.
11086 (next-error-buffer-p, next-error-find-buffer)
11087 (clone-indirect-buffer): Fix typos in docstrings.
11088 (comment-line-break-function): Doc fix: don't say variable
11089 is automatically buffer-local (it isn't).
11090
11091 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
11092
11093 * net/tramp-ftp.el (top):
11094 * net/tramp-smb.el (top):
11095 * net/tramp-util.el (top):
11096 * net/tramp-uu.el (top):
11097 * net/tramp-vc.el (top):
11098 * net/tramp.el (top): Revert copyright years back to original
11099 ones. Tramp has a life outside GNU Emacs.
11100
11101 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
11102
11103 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
11104
11105 2005-06-18 Juri Linkov <juri@jurta.org>
11106
11107 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
11108 end of first regexp to limit the match to the position between
11109 line number and source line with same separator character as used
11110 between file name and line number. In the second regexp limit
11111 mouse-face area to file name and line number by adding new group
11112 for them and referring it in HYPERLINK arg.
11113 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
11114 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
11115 previous line where grep markers may be already removed.
11116
11117 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
11118
11119 * progmodes/ps-mode.el: Update version and maintainer's email address.
11120
11121 2005-06-18 Steve Youngs <steve@xemacs.org>
11122
11123 * net/browse-url.el (browse-url-browser-function)
11124 (browse-url-default-browser): Add firefox.
11125 (browse-url-firefox-program, browse-url-firefox-arguments)
11126 (browse-url-firefox-startup-arguments)
11127 (browse-url-firefox-new-window-is-tab): New defcustoms.
11128 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
11129
11130 2005-06-17 Richard M. Stallman <rms@gnu.org>
11131
11132 * startup.el (command-line): Warn if specified user name has
11133 no home directory.
11134
11135 * term.el (term-get-old-input, term-input-filter, term-input-sender)
11136 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
11137
11138 * longlines.el (longlines-mode, longlines-show-hard-newlines):
11139 Doc fixes.
11140
11141 * faces.el (underline): Try bold if terminal doesn't support underline.
11142
11143 * mail/sendmail.el (mail-setup-with-from): New variable.
11144 (mail-insert-from-field): New function.
11145 (sendmail-send-it): Call it.
11146 (mail-setup): Optionally call it here.
11147
11148 * term/linux.el: Call tty-no-underline.
11149
11150 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
11151
11152 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
11153
11154 2005-06-17 Miles Bader <miles@gnu.org>
11155
11156 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
11157 (ediff-current-diff-C, ediff-current-diff-Ancestor)
11158 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
11159 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
11160 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
11161 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
11162 Remove "-face" suffix from face names.
11163 (ediff-current-diff-face-A, ediff-current-diff-face-B)
11164 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
11165 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
11166 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
11167 (ediff-even-diff-face-A, ediff-even-diff-face-B)
11168 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
11169 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
11170 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
11171 New backward-compatibility aliases for renamed faces.
11172 (ediff-current-diff-face-A, ediff-current-diff-face-B)
11173 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
11174 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
11175 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
11176 (ediff-even-diff-face-A, ediff-even-diff-face-B)
11177 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
11178 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
11179 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
11180 Use renamed ediff faces.
11181
11182 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
11183 Remove "-face" suffix from face names.
11184 (eshell-test-ok-face, eshell-test-failed-face):
11185 New backward-compatibility aliases for renamed faces.
11186 (eshell-run-test): Use renamed eshell-test faces.
11187
11188 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
11189 face name.
11190 (eshell-prompt-face): New backward-compatibility alias for renamed
11191 face.
11192 (eshell-emit-prompt): Use renamed eshell-prompt face.
11193
11194 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
11195 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
11196 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
11197 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
11198 Remove "-face" suffix from face names.
11199 (eshell-ls-directory-face, eshell-ls-symlink-face)
11200 (eshell-ls-executable-face, eshell-ls-readonly-face)
11201 (eshell-ls-unreadable-face, eshell-ls-special-face)
11202 (eshell-ls-missing-face, eshell-ls-archive-face)
11203 (eshell-ls-backup-face, eshell-ls-product-face)
11204 (eshell-ls-clutter-face):
11205 New backward-compatibility aliases for renamed faces.
11206 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
11207
11208 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
11209 Remove "-face" suffix from face name.
11210 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
11211 instead of literal face.
11212
11213 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
11214
11215 * emacs-lisp/warnings.el (display-warning, lwarn)
11216 (warning-minimum-log-level): Doc fixes.
11217 (warning-minimum-level, warning-minimum-log-level):
11218 Add :debug to :type choices.
11219
11220 * progmodes/ada-mode.el (ada-format-paramlist)
11221 (ada-get-indent-case, ada-check-matching-start)
11222 (ada-check-defun-name, ada-goto-matching-decl-start)
11223 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
11224 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
11225 (ada-make-subprogram-body): Follow error conventions.
11226 (ada-case-exception-file, ada-indent-comment-as-code)
11227 (ada-indent-handle-comment-special, ada-indent-renames)
11228 (ada-indent-return, ada-search-directories-internal)
11229 (ada-tab-policy, ada-case-exception-substring)
11230 (ada-other-file-alist, ada-matching-start-re)
11231 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
11232 (ada-imenu-generic-expression, ada-compile-goto-error)
11233 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
11234 (ada-popup-menu, ada-add-extensions, ada-mode)
11235 (ada-region-selected, ada-create-case-exception)
11236 (ada-create-case-exception-substring, ada-after-keyword-p)
11237 (ada-activate-keys-for-case, ada-adjust-case-region)
11238 (ada-adjust-case-buffer, ada-format-paramlist)
11239 (ada-scan-paramlist, ada-insert-paramlist)
11240 (ada-indent-newline-indent)
11241 (ada-indent-newline-indent-conditional)
11242 (ada-justified-indent-current, ada-goto-previous-word)
11243 (ada-indent-current, ada-get-indent-open-paren)
11244 (ada-get-indent-paramlist, ada-get-indent-end)
11245 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
11246 (ada-get-indent-block-start, ada-get-indent-subprog)
11247 (ada-get-indent-noindent, ada-get-indent-label)
11248 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
11249 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
11250 (ada-goto-stmt-end, ada-goto-next-word)
11251 (ada-check-matching-start, ada-check-defun-name)
11252 (ada-goto-matching-decl-start, ada-goto-matching-start)
11253 (ada-goto-matching-end, ada-search-ignore-string-comment)
11254 (ada-in-decl-p, ada-looking-at-semi-or)
11255 (ada-looking-at-semi-private, ada-in-paramlist-p)
11256 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
11257 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
11258 (ada-next-procedure, ada-previous-procedure, ada-next-package)
11259 (ada-previous-package, ada-create-menu)
11260 (ada-fill-comment-paragraph-justify)
11261 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
11262 (ada-other-file-name, ada-last-which-function-line)
11263 (ada-last-which-function-subprog, ada-which-function)
11264 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
11265 (ada-gen-treat-proc, ada-check-emacs-version)
11266 (ada-continuation-indent, ada-align-region-separate):
11267 Fix typos in docstrings.
11268 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
11269
11270 2005-06-16 Lute Kamstra <lute@gnu.org>
11271
11272 * simple.el (fundamental-mode): Run after-change-major-mode-hook
11273 conditionally.
11274
11275 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
11276
11277 * comint.el (comint-replace-by-expanded-filename)
11278 (comint-prompt-regexp, comint-delimiter-argument-list)
11279 (comint-preinput-scroll-to-bottom):
11280 * info.el (Info-hide-cookies-node):
11281 * ls-lisp.el (ls-lisp-classify):
11282 * find-file.el (ff-search-directories, ff-special-constructs)
11283 (ff-find-other-file):
11284 * font-lock.el (font-lock-keywords):
11285 * shell.el (shell-prompt-pattern)
11286 (shell-dynamic-complete-functions, shell-mode)
11287 (shell-delimiter-argument-list):
11288 * term.el (term-replace-by-expanded-filename)
11289 (term-prompt-regexp, term-delimiter-argument-list):
11290 * woman.el (woman-ignore, woman0-if):
11291 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
11292 * emacs-lisp/elint.el (elint-init-env):
11293 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
11294 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
11295 * language/ethio-util.el (ethio-tilde-escape)
11296 (ethio-use-three-dot-question):
11297 * net/zone-mode.el (zone-mode-load-time-setup):
11298 * progmodes/cc-align.el (c-lineup-argcont):
11299 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
11300 * progmodes/cperl-mode.el (cperl-set-style-back):
11301 * progmodes/inf-lisp.el (inferior-lisp-prompt):
11302 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
11303 Fix spellings in docstrings.
11304
11305 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
11306 * progmodes/modula2.el (m2-for): Fix spellings.
11307
11308 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
11309
11310 * simple.el (undo-more): Don't use `format' on `error' arguments.
11311 Improve argument/docstring consistency.
11312 (pending-undo-list): Doc fix.
11313
11314 * smerge-mode.el (smerge-ensure-match):
11315 * emulation/vip.el (vip-ex):
11316 * net/zone-mode.el (zone-mode-update-serial):
11317 * progmodes/idlwave.el (idlwave-complete):
11318 * progmodes/vhdl-mode.el (vhdl-visit-file)
11319 (vhdl-compose-wire-components):
11320 Don't use `format' on `error' arguments.
11321
11322 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
11323 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
11324 (tooltip-help-tips): Fix typos in docstrings.
11325
11326 2005-06-16 David Ponce <david@dponce.com>
11327
11328 * tree-widget.el (tree-widget-value-create): Simplify last change.
11329
11330 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
11331
11332 * ido.el (ido-incomplete-regexp): New variable.
11333 (ido-set-matches-1): Handle invalid-regexp error and set
11334 ido-incomplete-regexp.
11335 (ido-incomplete-regexp): New face.
11336 (ido-completions): Use it.
11337 (ido-complete, ido-exit-minibuffer, ido-completions):
11338 Handle incomplete regexps.
11339 (ido-completions): Add check for complete match when entering a regexp.
11340
11341 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
11342
11343 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
11344
11345 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11346
11347 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
11348 by field delimiters.
11349
11350 2005-06-15 David Ponce <david@dponce.com>
11351
11352 * tree-widget.el: eval-and-compile inlined functions so they will
11353 be available at run-time too.
11354 (tree-widget-super-format-handler)
11355 (tree-widget-format-handler): Remove.
11356 (tree-widget-value-create): Handle the :indent property.
11357
11358 2005-06-15 Miles Bader <miles@gnu.org>
11359
11360 * progmodes/which-func.el (which-func): Only inherit
11361 `font-lock-function-name-face' when that makes sense against the
11362 default mode-line face, otherwise set the face color explicitly.
11363
11364 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
11365 faces instead of (non-existent) variables.
11366
11367 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
11368
11369 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
11370 (iswitchb-get-matched-buffers): Likewise. Simplify.
11371
11372 2005-06-14 Miles Bader <miles@gnu.org>
11373
11374 * progmodes/ld-script.el (ld-script-location-counter):
11375 Remove "-face" suffix from face name.
11376 (ld-script-location-counter-face):
11377 New backward-compatibility alias for renamed face.
11378 (ld-script-location-counter-face): Use renamed face.
11379
11380 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
11381 (cperl-hash): Remove "-face" suffix from face names.
11382 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
11383 New backward-compatibility aliases for renamed faces.
11384 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
11385 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
11386
11387 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
11388 name.
11389 (which-func-face): New backward-compatibility alias for renamed face.
11390 (which-func-format): Use renamed which-func face.
11391
11392 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
11393 (vhdl-function, vhdl-directive, vhdl-reserved-word)
11394 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
11395 names.
11396 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
11397 (vhdl-speedbar-configuration, vhdl-speedbar-package)
11398 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
11399 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
11400 (vhdl-speedbar-architecture-selected)
11401 (vhdl-speedbar-configuration-selected)
11402 (vhdl-speedbar-package-selected)
11403 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
11404 names.
11405 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
11406 Use renamed faces.
11407 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
11408 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
11409 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
11410 Use renamed faces.
11411 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
11412 names.
11413 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
11414 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
11415 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
11416 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
11417 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
11418 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
11419
11420 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
11421 face name.
11422 (sh-heredoc-face): New backward-compatibility alias for renamed face.
11423 (sh-heredoc-face): Use renamed sh-heredoc face.
11424
11425 * progmodes/idlw-help.el (idlwave-help-link):
11426 Remove "-face" suffix from face name.
11427 (idlwave-help-link-face):
11428 New backward-compatibility alias for renamed face.
11429 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
11430
11431 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
11432 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
11433 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
11434 New backward-compatibility aliases for renamed faces.
11435 (idlwave-shell-disabled-breakpoint-face)
11436 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
11437
11438 * progmodes/flymake.el (flymake-errline, flymake-warnline):
11439 Remove "-face" suffix from face names.
11440 (flymake-errline-face, flymake-warnline-face):
11441 New backward-compatibility aliases for renamed faces.
11442 (flymake-highlight-line): Use renamed flymake faces.
11443
11444 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
11445 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
11446 (ebrowse-member-class, ebrowse-progress):
11447 Remove "-face" suffix from face names.
11448 (ebrowse-tree-mark-face, ebrowse-root-class-face)
11449 (ebrowse-file-name-face, ebrowse-default-face)
11450 (ebrowse-member-attribute-face, ebrowse-member-class-face)
11451 (ebrowse-progress-face):
11452 New backward-compatibility aliases for renamed faces.
11453 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
11454 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
11455 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
11456 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
11457
11458 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
11459 antlr-syntax)
11460 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
11461 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
11462 names.
11463 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
11464 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
11465 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
11466 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
11467 backward-compatibility aliases for renamed faces.
11468 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
11469 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
11470 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
11471 remove "font-lock-". Use renamed antlr-mode faces.
11472 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
11473 literal face-names with face variable references.
11474
11475 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
11476 face name.
11477 (Buffer-menu-buffer-face): New backward-compatibility alias for
11478 renamed face.
11479 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
11480
11481 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
11482
11483 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
11484 Eliminate "-face" suffix.
11485 (makefile-targets): Inherit from font-lock-function-name-face and
11486 eliminate "-face" suffix.
11487 (makefile-shell): Remove attributes and eliminate "-face" suffix.
11488 (makefile-*-font-lock-keywords): Append makefile-targets in rule
11489 actions, instead of prepending, to make it less visible.
11490 (makefile-previous-dependency, makefile-match-dependency):
11491 Don't match a target on a continuation line.
11492
11493 * files.el (auto-mode-alist): Put Makefile in gmake mode.
11494
11495 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
11496
11497 * progmodes/gdb-ui.el (menu): Re-order menu items.
11498 (gdb-tooltip-print): Respect tooltip-use-echo-area.
11499
11500 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
11501 Define in tooltip.el.
11502 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
11503 (gud-tooltip-tips): Respect tooltip-use-echo-area and
11504 gud-tooltip-echo-area.
11505
11506 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
11507 backward compatibility and make obsolete.
11508 (tooltip-help-tips): Use tooltip-use-echo-area.
11509 (tooltip-show-help-function): Rename to...
11510 (tooltip-show-help): ...this, because it is a function.
11511 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
11512
11513 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
11514
11515 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
11516 (edebug-print-length, edebug-print-level, edebug-print-circle)
11517 (edebug-modify-breakpoint, edebug-eval-last-sexp)
11518 (edebug-eval-print-last-sexp): Doc fixes.
11519
11520 2005-06-14 Kim F. Storm <storm@cua.dk>
11521
11522 * ido.el (ido-mode): Make a new keymap every time we enable ido,
11523 as the coverage buffer/file/both may change.
11524
11525 2005-06-14 Lute Kamstra <lute@gnu.org>
11526
11527 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
11528 and run-mode-hooks. Simplify.
11529
11530 * mail/rmailedit.el (rmail-edit-mode):
11531 * progmodes/octave-inf.el (inferior-octave-mode):
11532 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
11533
11534 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
11535 and run-mode-hooks.
11536 (recentf-edit-list, recentf-open-files): Don't call
11537 kill-all-local-variables directly.
11538
11539 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
11540
11541 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
11542
11543 * emacs-lisp/byte-run.el (make-obsolete)
11544 (define-obsolete-function-alias): Rename arguments FUNCTION and
11545 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
11546 (make-obsolete-variable, define-obsolete-variable-alias):
11547 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
11548 respectively.
11549
11550 * isearchb.el (isearchb-activate):
11551 * pcvs.el (cvs-mode):
11552 * ses.el (ses-load):
11553 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
11554 * net/tramp.el (tramp-find-file-exists-command)
11555 (tramp-find-shell):
11556 * progmodes/ada-mode.el (ada-create-case-exception)
11557 (ada-create-case-exception-substring, ada-make-subprogram-body):
11558 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
11559 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
11560 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
11561 * textmodes/org.el (org-promote, org-evaluate-time-range)
11562 (org-agenda-next-date-line, org-agenda-previous-date-line)
11563 (org-agenda-error, org-open-at-point, org-table-move-row)
11564 (org-format-table-table-html-using-table-generate-source)
11565 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
11566 * textmodes/reftex.el (reftex-access-scan-info):
11567 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
11568 (reftex-toc-promote-prepare): Follow error conventions.
11569
11570 * diff-mode.el (diff-mode): Fix typo in docstring.
11571
11572 * forms.el (forms--intuit-from-file): Fix reference to
11573 `forms-number-of-fields' in error message.
11574 (forms-print): Fix quoting in error message.
11575
11576 * forms.el (forms-mode):
11577 * emulation/vi.el (vi-goto-insert-state):
11578 * progmodes/flymake.el (flymake-new-err-info)
11579 (flymake-start-syntax-check-for-current-buffer)
11580 (flymake-simple-cleanup):
11581 * eshell/esh-var.el (eshell/export):
11582 * progmodes/gud.el (xdb):
11583 * textmodes/flyspell.el (flyspell-incorrect-hook)
11584 (flyspell-maybe-correct-transposition)
11585 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
11586
11587 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
11588
11589 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
11590 minibuffer prompt.
11591
11592 2005-06-13 Kim F. Storm <storm@cua.dk>
11593
11594 * subr.el (add-to-ordered-list): New defun.
11595
11596 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
11597 add cua--keymap-alist to emulation-mode-map-alists.
11598
11599 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
11600
11601 * subr.el (complete-in-turn): New macro.
11602 (dynamic-completion-table, lazy-completion-table): Add debug info.
11603
11604 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
11605 in preference to face aliases.
11606
11607 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
11608 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
11609 Remove unused vars `start' and `firstline'.
11610 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
11611 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
11612
11613 2005-06-13 Eli Zaretskii <eliz@gnu.org>
11614
11615 * cus-start.el (all): Don't complain about missing GTK-related
11616 variables, unless either `gtk' is boundp or this isn't a
11617 `windows-nt' build.
11618
11619 2005-06-13 Lute Kamstra <lute@gnu.org>
11620
11621 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
11622 run-mode-hooks.
11623
11624 * ediff-mult.el (ediff-meta-mode):
11625 * ediff-util.el (ediff-mode): Use run-mode-hooks.
11626
11627 * ledit.el (ledit-mode): Use delay-mode-hooks.
11628
11629 * woman.el (woman-mode-line-format): Delete constant.
11630 (woman-mode-map): Initialize it properly.
11631 (woman-mode): Set mode-class property to special.
11632 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
11633 Set major-mode and mode-name. Don't set mode-line-format directly.
11634 (Man-getpage-in-background): Don't reference woman-mode-line-format.
11635
11636 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
11637 string argument obsolete.
11638
11639 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
11640
11641 * textmodes/org.el (org-CUA-compatible): New option.
11642 (org-disputed-keys): New variable.
11643 (org-key): New function.
11644 (orgtbl-make-binding): Add docstring to the created function.
11645 (org-mode): Set paragraph start/separate regexps.
11646 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
11647 (org-archive-location, org-archive-mark-done)
11648 (org-archive-stamp-time): New options.
11649 (org-archive-subtree): New command.
11650 (org-fill-paragraph): New function.
11651 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
11652 (org-fake-empty-table-line): Function removed.
11653 (org-format-org-table-html): Do not create empty table lines at
11654 separator lines. Improved table header treatment.
11655 (org-link-format): New option.
11656 (org-make-link): New function.
11657 (org-insert-link, org-store-link): Use org-make-link.
11658 (org-open-file): Quote file name for shell command, to allow
11659 spaces in file names.
11660 (org-link-regexp): Fix bug with mailto link.
11661 (org-link-maybe-angles-regexp, org-protected-link-regexp):
11662 New constants.
11663 (org-export-as-html): Deal with the optional angles around a link.
11664 Better treatment of file: links.
11665 (org-open-at-point): Replace @{ and @} with < and >.
11666 (org-run-mode-hooks): Function removed.
11667 (org-agenda-mode): No longer use `org-run-mode-hooks'.
11668
11669 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
11670
11671 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
11672 MI command -data-list-register-values.
11673 (gdb-post-prompt): Indent properly.
11674
11675 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
11676
11677 * hilit-chg.el (highlight-changes-colors): Rename from
11678 `highlight-changes-colours'.
11679 (highlight-changes-colours): Keep as obsolete alias.
11680 (highlight-changes-face-list): Doc fix.
11681 (hilit-chg-make-list): Use `highlight-changes-colors'.
11682
11683 2005-06-12 Mark A. Hershberger <mah@everybody.org>
11684
11685 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
11686 defun-prompt-regexp.
11687
11688 2005-06-12 Eli Zaretskii <eliz@gnu.org>
11689
11690 * loadup.el: Don't say we are dumping under 2 names on windows-nt
11691 and cygwin.
11692
11693 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
11694 Don't use an old loaddefs.el, as in Makefile.in.
11695
11696 2005-06-12 Lute Kamstra <lute@gnu.org>
11697
11698 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
11699
11700 * man.el (Man-mode-map): Initialize it properly.
11701 (Man-mode): Set mode-class property to special.
11702
11703 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
11704
11705 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
11706
11707 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
11708 A newline is needed in the docstring there.
11709
11710 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
11711 Doc fixes.
11712
11713 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11714
11715 * printing.el: Doc fix. The menubar is no more changed when printing
11716 is loaded, it only changes when pr-menu-bind or pr-update-menus is
11717 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
11718 (pr-version): New version number (6.8.4).
11719 (pr-menu-bind): New command.
11720 (pr-update-menus): Docstring and code fix.
11721 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
11722 Docstring fix.
11723 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
11724 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
11725
11726 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
11727
11728 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
11729 "Returns" to "return", document useful return values, etc.
11730
11731 2005-06-11 Alan Mackenzie <acm@muc.de>
11732
11733 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
11734 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
11735 (adaptive-file-function): Minor amendment to doc-string.
11736
11737 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
11738
11739 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
11740 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
11741 Fix :type--it is `integer', not `string'.
11742
11743 * faces.el (modeline-highlight): Rename from (the erroneous)
11744 `modeline-higilight'.
11745
11746 2005-06-11 Lute Kamstra <lute@gnu.org>
11747
11748 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
11749 lisp-interaction-mode-map but make it the parent.
11750 (edebug-eval-mode): Use define-derived-mode.
11751
11752 2005-06-11 Andreas Schwab <schwab@suse.de>
11753
11754 * bindings.el: Add binding of `ESC functionkey' for every
11755 `M-functionkey'.
11756 * hexl.el (hexl-mode-map): Likewise.
11757
11758 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
11759
11760 * progmodes/compile.el (compilation-error-regexp-alist-alist)
11761 [msft]: update regexp for newer msft compilers.
11762
11763 2005-06-10 Mark A. Hershberger <mah@everybody.org>
11764
11765 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
11766 ATTLIST portions of included DTDs.
11767 (xml-parse-dtd): Eliminate use of inefficient match-data.
11768
11769 2005-06-10 Miles Bader <miles@gnu.org>
11770
11771 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
11772 (mpuz-text): Remove "-face" suffix from face names.
11773 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
11774 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
11775 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
11776
11777 * play/gomoku.el (gomoku-O, gomoku-X):
11778 Remove "-face" suffix from face names.
11779 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
11780 New backward-compatibility aliases for renamed faces.
11781 (gomoku-font-lock-keywords): Use renamed gomoku faces.
11782
11783 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
11784
11785 * thumbs.el: Fixes for changes of 2005-06-09.
11786 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
11787 as a directory.
11788 (thumbs-thumbname): Remove directory separator from format string;
11789 `thumbs-thumbsdir' now returns a valid directory name.
11790 (thumbs-temp-dir): New defsubst.
11791 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
11792 Use it.
11793
11794 * cus-edit.el (minibuffer):
11795 * files.el (make-backup-file-name-function):
11796 * filesets.el (filesets-external-viewers):
11797 * hilit-chg.el (highlight-changes-colours)
11798 (highlight-changes-face-list, highlight-changes-rotate-faces):
11799 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
11800 * kmacro.el (kmacro-call-macro):
11801 * log-edit.el (log-edit-changelog-full-paragraphs):
11802 * mouse.el (mouse-1-click-follows-link):
11803 * skeleton.el (skeleton-autowrap):
11804 * subr.el (insert-for-yank-1):
11805 * tempo.el (tempo-insert-region):
11806 * terminal.el (terminal-emulator):
11807 * time.el (display-time-mail-face):
11808 * vc.el (vc-annotate):
11809 * vcursor.el (vcursor-copy-line):
11810 * woman.el (woman-bold-headings, woman-ignore)
11811 (woman-default-faces, woman-monochrome-faces):
11812 * calendar/todo-mode.el (todo-insert-threshold):
11813 * emulation/pc-select.el (pc-select-selection-keys-only)
11814 (pc-selection-mode):
11815 * emulation/vip.el (vip-find-char-forward):
11816 * emulation/viper-cmd.el (viper-find-char-forward):
11817 * international/mule-cmds.el
11818 (select-safe-coding-system-accept-default-p)
11819 (input-method-exit-on-invalid-key):
11820 * international/mule-diag.el (describe-coding-system):
11821 * international/ucs-tables.el (unify-8859-on-encoding-mode):
11822 * net/browse-url.el (browse-url-xterm-program):
11823 * obsolete/lazy-lock.el (lazy-lock-mode):
11824 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
11825 (cperl-mode):
11826 * progmodes/cpp.el (cpp-face-light-name-list)
11827 (cpp-face-dark-name-list):
11828 * progmodes/delphi.el (delphi-newline-always-indents):
11829 Fix spellings in docstrings.
11830
11831 * ido.el (ido-mode, ido-file-extensions-order)
11832 (ido-default-file-method, ido-default-buffer-method)
11833 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
11834 (ido-decorations, ido-read-file-name-as-directory-commands)
11835 (ido-read-file-name-non-ido, ido-work-directory-list)
11836 (ido-ignore-item-temp-list, ido-current-directory)
11837 (ido-magic-forward-char, ido-enter-find-file)
11838 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
11839 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
11840
11841 2005-06-10 Lute Kamstra <lute@gnu.org>
11842
11843 * play/dunnet.el (dun-mode): Use define-derived-mode.
11844 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
11845 obsolete alias.
11846
11847 * play/doctor.el (doctor-mode-map): Remove defvar.
11848 (doctor-mode): Use define-derived-mode.
11849
11850 * mail/mspools.el (mspools-mode):
11851 * net/eudc-hotlist.el (eudc-hotlist-mode):
11852 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
11853
11854 2005-06-10 Miles Bader <miles@gnu.org>
11855
11856 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
11857 Remove "-face" suffix from face names.
11858 (flyspell-incorrect-face, flyspell-duplicate-face):
11859 New backward-compatibility aliases for renamed faces.
11860 (flyspell-mode-on, make-flyspell-overlay)
11861 (flyspell-highlight-incorrect-region)
11862 (flyspell-highlight-duplicate-region)
11863 (flyspell-display-next-corrections)
11864 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
11865
11866 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
11867 from face name.
11868 (texinfo-heading-face): New backward-compatibility alias for
11869 renamed face.
11870 (texinfo-heading-face): Use renamed texinfo-heading face.
11871
11872 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
11873 suffix from face names.
11874 (tex-math-face, tex-verbatim-face):
11875 New backward-compatibility aliases for renamed faces.
11876 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
11877 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
11878 literal face name.
11879
11880 * textmodes/table.el (table-cell): Remove "-face" suffix from face
11881 name.
11882 (table-cell-face): New backward-compatibility alias for renamed face.
11883 (table--put-cell-face-property, table--update-cell-face):
11884 Use renamed table-cell face.
11885
11886 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
11887 from face name.
11888 (sgml-namespace-face): New backward-compatibility alias for
11889 renamed face.
11890 (sgml-namespace-face): Use renamed sgml-namespace face.
11891
11892 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
11893 (org-level-4, org-level-5, org-level-6, org-level-7)
11894 (org-level-8, org-warning, org-headline-done)
11895 (org-deadline-announce, org-scheduled-today)
11896 (org-scheduled-previously, org-link, org-done, org-table)
11897 (org-time-grid): Remove "-face" suffix from face names.
11898 (org-level-1-face, org-level-2-face, org-level-3-face)
11899 (org-level-4-face, org-level-5-face, org-level-6-face)
11900 (org-level-7-face, org-level-8-face, org-warning-face)
11901 (org-headline-done-face, org-deadline-announce-face)
11902 (org-scheduled-today-face, org-scheduled-previously-face)
11903 (org-link-face, org-done-face, org-table-face)
11904 (org-time-grid-face):
11905 New backward-compatibility aliases for renamed faces.
11906 (org-level-faces, org-set-font-lock-defaults, org-timeline)
11907 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
11908 (org-agenda-get-timestamps, org-agenda-get-scheduled)
11909 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
11910
11911 * emulation/viper-init.el (viper-search, viper-replace-overlay)
11912 (viper-minibuffer-emacs, viper-minibuffer-insert)
11913 (viper-minibuffer-vi): Remove "-face" suffix from face names.
11914 (viper-search-face, viper-replace-overlay-face)
11915 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
11916 (viper-minibuffer-vi-face):
11917 New backward-compatibility aliases for renamed faces.
11918 (viper-search-face, viper-replace-overlay-face)
11919 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
11920 (viper-minibuffer-vi-face): Use renamed viper faces.
11921
11922 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
11923 Remove "-face" suffix from face names.
11924 (testcover-nohits-face, testcover-1value-face):
11925 New backward-compatibility aliases for renamed faces.
11926 (testcover-mark): Use renamed testcover faces.
11927
11928 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
11929 face name.
11930 (diary-button-face): New backward-compatibility alias for renamed face.
11931 (diary-entry): Use renamed diary-button face.
11932
11933 * calendar/calendar.el (diary, calendar-today, holiday)
11934 (mark-visible-calendar-date): Remove "-face" suffix from face names.
11935 (diary-face, calendar-today-face, holiday-face):
11936 New backward-compatibility aliases for renamed faces.
11937 (eval-after-load "facemenu", diary-entry-marker)
11938 (calendar-today-marker, calendar-holiday-marker, diary-face):
11939 Use renamed calendar faces.
11940
11941 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
11942 (compare-windows-face): New backward-compatibility alias for
11943 renamed face.
11944 (compare-windows-highlight): Use renamed compare-windows face.
11945
11946 * strokes.el (strokes-char): Remove "-face" suffix from face name.
11947 (strokes-char-face): New backward-compatibility alias for renamed face.
11948 (strokes-encode-buffer): Use renamed strokes-char face.
11949
11950 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
11951 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
11952 Remove "-face" suffix from face names.
11953 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
11954 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
11955 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
11956 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
11957 Use renamed pcvs faces.
11958 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
11959 * pcvs-defs.el (cvs-mode-map): Likewise.
11960 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
11961
11962 * info.el (info-title-1, info-title-2, info-title-3)
11963 (info-title-4): Remove "-face" suffix from and downcase face names.
11964 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
11965 (Info-title-4-face):
11966 New backward-compatibility aliases for renamed faces.
11967 (Info-fontify-node): Use renamed info faces.
11968
11969 * hilit-chg.el (highlight-changes, highlight-changes-delete):
11970 Remove "-face" suffix from face names.
11971 (highlight-changes-face, highlight-changes-delete-face):
11972 New backward-compatibility aliases for renamed faces.
11973 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
11974 (hilit-chg-make-list): Use renamed highlight-changes faces.
11975
11976 * generic-x.el (show-tabs-tab, show-tabs-space):
11977 Remove "-face" suffix from face names.
11978 (show-tabs-tab-face, show-tabs-space-face):
11979 New backward-compatibility aliases for renamed faces.
11980 (show-tabs-generic-mode-font-lock-defaults-1)
11981 (show-tabs-generic-mode-font-lock-defaults-2):
11982 Use renamed show-tabs faces.
11983
11984 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
11985 (smerge-markers): Remove "-face" suffix from face names.
11986 (smerge-mine-face, smerge-other-face, smerge-base-face)
11987 (smerge-markers-face):
11988 New backward-compatibility aliases for renamed faces.
11989 (smerge-mine-face, smerge-other-face, smerge-base-face)
11990 (smerge-markers-face): Use renamed smerge faces.
11991
11992 * log-view.el (log-view-file, log-view-message): Remove "-face"
11993 suffix from face names.
11994 (log-view-file-face, log-view-message-face):
11995 New backward-compatibility aliases for renamed faces.
11996 (log-view-file-face, log-view-message-face): Use renamed log-view
11997 faces.
11998
11999 * paren.el (show-paren-match, show-paren-mismatch):
12000 Remove "-face" suffix from face names.
12001 (show-paren-match-face, show-paren-mismatch-face):
12002 New backward-compatibility aliases for renamed faces.
12003 (show-paren-function): Use renamed show-paren faces.
12004
12005 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
12006 (ruler-mode-margins, ruler-mode-fringes)
12007 (ruler-mode-column-number, ruler-mode-fill-column)
12008 (ruler-mode-comment-column, ruler-mode-goal-column)
12009 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
12010 suffix from face names.
12011 (ruler-mode-default-face, ruler-mode-pad-face)
12012 (ruler-mode-margins-face, ruler-mode-fringes-face)
12013 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
12014 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
12015 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
12016 New backward-compatibility aliases for renamed faces.
12017 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
12018 (ruler-mode-column-number, ruler-mode-fill-column)
12019 (ruler-mode-comment-column, ruler-mode-goal-column)
12020 (ruler-mode-tab-stop, ruler-mode-current-column)
12021 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
12022 faces.
12023
12024 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
12025 face name.
12026 (whitespace-highlight-the-space): Use renamed face.
12027 (whitespace-highlight-face): New backward-compatibility alias for
12028 renamed face.
12029
12030 * woman.el (woman-italic, woman-bold, woman-unknown)
12031 (woman-addition, woman-symbol-face):
12032 Remove "-face" suffix from face names.
12033 (woman-italic-face, woman-bold-face, woman-unknown-face)
12034 (woman-addition-face):
12035 New backward-compatibility aliases for renamed faces.
12036 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
12037 (woman-decode-region, woman-replace-match)
12038 (woman-display-extended-fonts, woman-special-characters)
12039 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
12040 Use renamed woman faces.
12041
12042 * longlines.el (longlines-visible-face): Face removed.
12043
12044 * diff-mode.el (diff-header, diff-file-header, diff-index)
12045 (diff-hunk-header, diff-removed, diff-added, diff-changed)
12046 (diff-function, diff-context, diff-nonexistent): Remove "-face"
12047 suffix from face names.
12048 (diff-header-face, diff-file-header-face, diff-index-face)
12049 (diff-hunk-header-face, diff-removed-face, diff-added-face)
12050 (diff-changed-face, diff-function-face, diff-context-face)
12051 (diff-nonexistent-face): New backward-compatibility aliases for
12052 renamed faces.
12053 (diff-header-face, diff-file-header-face)
12054 (diff-index, diff-index-face, diff-hunk-header)
12055 (diff-hunk-header-face, diff-removed, diff-removed-face)
12056 (diff-added, diff-added-face, diff-changed-face, diff-function)
12057 (diff-function-face, diff-context-face, diff-nonexistent)
12058 (diff-nonexistent-face): Use renamed diff-mode faces.
12059
12060 * progmodes/compile.el (compilation-warning-face)
12061 (compilation-info-face): Remove "-face" suffix from face names.
12062 (compilation-warning-face, compilation-info-face):
12063 New backward-compatibility aliases for renamed faces.
12064 (compilation-warning-face, compilation-info-face):
12065 Use renamed compilation faces.
12066
12067 * add-log.el (change-log-date, change-log-name)
12068 (change-log-email, change-log-file, change-log-list)
12069 (change-log-conditionals, change-log-function)
12070 (change-log-acknowledgement): Remove "-face" suffix from face names.
12071 (change-log-date-face, change-log-name-face)
12072 (change-log-email-face, change-log-file-face)
12073 (change-log-list-face, change-log-conditionals-face)
12074 (change-log-function-face, change-log-acknowledgement-face):
12075 New backward-compatibility aliases for renamed faces.
12076 (change-log-font-lock-keywords): Use renamed change-log faces.
12077
12078 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
12079 (custom-set, custom-changed, custom-saved, custom-button)
12080 (custom-button-pressed, custom-documentation, custom-state)
12081 (custom-comment, custom-comment-tag, custom-variable-tag)
12082 (custom-variable-button, custom-face-tag, custom-group-tag-1)
12083 (custom-group-tag): Remove "-face" suffix from face names.
12084 (custom-magic-alist, custom-magic-value-create)
12085 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
12086 (custom-invalid-face, custom-rogue-face, custom-modified-face)
12087 (custom-set-face, custom-changed-face, custom-saved-face)
12088 (custom-button-face, custom-button-pressed-face)
12089 (custom-documentation-face, custom-state-face)
12090 (custom-comment-face, custom-comment-tag-face)
12091 (custom-variable-tag-face, custom-variable-button-face)
12092 (custom-face-tag-face, custom-group-tag-face-1)
12093 (custom-group-tag-face):
12094 New backward-compatibility aliases for renamed faces.
12095
12096 * wid-edit.el (widget-documentation, widget-button)
12097 (widget-field, widget-single-line-field, widget-inactive)
12098 (widget-button-pressed): "-face" suffix removed from face names.
12099 (widget-documentation-face, widget-button-face)
12100 (widget-field-face, widget-single-line-field-face)
12101 (widget-inactive-face, widget-button-pressed-face):
12102 New backward-compatibility aliases for renamed faces.
12103 (widget-documentation-face, widget-button-face)
12104 (widget-button-pressed-face, widget-specify-field)
12105 (widget-specify-inactive): Use renamed widget faces.
12106
12107 2005-06-10 Kenichi Handa <handa@m17n.org>
12108
12109 * term/x-win.el (x-clipboard-yank): Remove condition-case
12110 wrapping.
12111
12112 2005-06-11 Kenichi Handa <handa@m17n.org>
12113
12114 * add-log.el (change-log-font-lock-keywords): Make the regexp for
12115 date lines stricter.
12116
12117 2005-06-10 Zhang Wei <id.brep@gmail.com> (tiny change)
12118
12119 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
12120 of x-get-selection.
12121
12122 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
12123
12124 * comint.el (comint-mode, comint-snapshot-last-prompt):
12125 * frame.el (frame-current-scroll-bars):
12126 * term.el (term-mode, term-check-proc, term-input-sender)
12127 (term-simple-send, term-extract-string, term-word)
12128 (term-match-partial-filename):
12129 * window.el (window-current-scroll-bars):
12130 * emulation/cua-base.el (cua-normal-cursor-color)
12131 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
12132 (cua-global-mark-cursor-color):
12133 * mail/undigest.el (rmail-forward-separator-regex):
12134 Fix typos in docstrings.
12135
12136 * comint.el (comint-check-proc, make-comint-in-buffer)
12137 (comint-source-default): Doc fixes.
12138
12139 * term.el (term-send-string): Improve argument/docstring consistency.
12140
12141 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
12142
12143 * comint.el (comint-send-input): Bind `inhibit-read-only' around
12144 call to `delete-region'.
12145 (comint-mode-hook): Do not enable Font Lock by default.
12146
12147 2005-06-09 Lute Kamstra <lute@gnu.org>
12148
12149 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
12150 could be void.
12151
12152 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
12153
12154 * emacs-lisp/debug.el (debugger-will-be-back): New var.
12155 (debug): Use it.
12156 (debugger-step-through, debugger-continue, debugger-jump)
12157 (debugger-return-value): Set it when needed.
12158 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
12159 Use inhibit-read-only.
12160
12161 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
12162
12163 * window.el (shrink-window-if-larger-than-buffer)
12164 (window-size-fixed): Fix typo in docstring.
12165
12166 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
12167 thumbnails directory on loading.
12168 (thumbs-conversion-program): Use `eq' to check the system type,
12169 not `equal'.
12170 (thumbs-temp-dir): Initialize to `temporary-file-directory',
12171 not "/tmp". Fix docstring.
12172 (thumbs-thumbsdir): New function to return the thumbnails
12173 directory, creating it if needed.
12174 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
12175 (thumbs-temp-file): Delete variable and make it into a function.
12176 (thumbs-resize-image, thumbs-modify-image): Use it.
12177 (thumbs-kill-buffer): Simplify.
12178 (thumbs-gensym): Defalias or duplicate CL `gensym'.
12179 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
12180 docstrings.
12181
12182 2005-06-09 Kim F. Storm <storm@cua.dk>
12183
12184 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
12185 set-match-data to free markers in match-data.
12186
12187 * replace.el (replace-match-data): Pass RESEAT arg `t' to
12188 match-data to unchain markers in match-data.
12189
12190 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
12191
12192 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
12193 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
12194 unnecessary now.
12195
12196 2005-06-08 Richard M. Stallman <rms@gnu.org>
12197
12198 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
12199 give the variable a doc string that doesn't say don't set it directly.
12200
12201 * textmodes/ispell.el (ispell-check-version):
12202 Use match-string-no-properties.
12203 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
12204 (ispell-buffer-local-words): Likewise.
12205
12206 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
12207 except on terminals with enough colors to really display it.
12208 (makefile-dependency-regex): Delete spurious `bb'.
12209
12210 * faces.el (escape-glyph): Use blue once again in last case.
12211 (no-break-space): Redefine so that it isn't invisible on a tty.
12212
12213 2005-06-08 Kim F. Storm <storm@cua.dk>
12214
12215 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
12216 also when reading directory name.
12217
12218 2005-06-08 Lute Kamstra <lute@gnu.org>
12219
12220 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
12221 (flyspell-mode-line-string): Remove autoload cookie.
12222 (flyspell-mode): Remove defvar.
12223
12224 2005-06-07 Lute Kamstra <lute@gnu.org>
12225
12226 * textmodes/org.el (org-run-mode-hooks): New function.
12227 (org-agenda-mode): Use it.
12228
12229 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
12230
12231 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
12232
12233 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
12234
12235 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
12236
12237 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
12238
12239 * font-lock.el (font-lock-add-keywords): Doc fix.
12240
12241 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
12242
12243 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
12244 (tex-compile-default): In the absence of any history, use the order in
12245 tex-compile-alist to choose the preferred command.
12246 (tex-compile-commands): Reorder a bit.
12247
12248 * textmodes/flyspell.el (flyspell-auto-correct-binding)
12249 (flyspell-incorrect-face, flyspell-duplicate-face):
12250 Use (X)Emacs-agnostic code.
12251 (flyspell-mode-map): Don't overwrite at each load. Remove code
12252 redundant with the subsequent add-minor-mode. Merge Emacs and
12253 XEmacs code.
12254 (flyspell-word): Minor simplification.
12255 (flyspell-math-tex-command-p): Quieten the byte-compiler.
12256 (flyspell-external-point-words): Remove unused vars `size' and `start'.
12257 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
12258 Merge the corresponding Emacs code.
12259 (flyspell-correct-word, flyspell-xemacs-popup):
12260 Use flyspell-do-correct.
12261
12262 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
12263 a dedicated window.
12264
12265 * international/latexenc.el (latexenc-find-file-coding-system):
12266 Undo part of last patch, to turn off a compiler warning.
12267
12268 2005-06-06 Juri Linkov <juri@jurta.org>
12269
12270 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
12271 Rename `tmm-inactive-face' to `tmm-inactive'.
12272
12273 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
12274
12275 * iswitchb.el: Rename faces.
12276
12277 2005-06-06 Kim F. Storm <storm@cua.dk>
12278
12279 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
12280 (cua-global-mark): Remove -face suffix from face names.
12281
12282 * emulation/cua-gmrk.el (cua--init-global-mark):
12283 Remove cua-global-mark face setup.
12284
12285 2005-06-06 Richard M. Stallman <rms@gnu.org>
12286
12287 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
12288 just like other allowed characters.
12289 (makefile-match-dependency): Exclude leading and training whitespace
12290 from the range of regexp subexp 1.
12291 (makefile-macroassign-regex): Don't try to match the body,
12292 just the name of the macro being defined.
12293
12294 * info.el (Info-read-node-name-2): New function.
12295 (Info-read-node-name-1): Use that.
12296 Add a completion-base-size-function property.
12297
12298 * simple.el (completion-setup-function): Look for
12299 completion-base-size-function property of minibuffer-completion-table.
12300
12301 * files.el (locate-file-completion): Doc fix.
12302
12303 * printing.el: Don't call pr-update-menus; user must do that.
12304
12305 * emacs-lisp/debug.el (debugger-window): New variable.
12306 (debug): Use debugger-window if it is set and still alive.
12307 Record debugger-window for next entry.
12308
12309 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
12310
12311 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
12312
12313 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
12314 (hack-one-local-variable, hack-local-variables)
12315 (hack-local-variables-prop-line): Pass that arg.
12316
12317 2005-06-06 Kim F. Storm <storm@cua.dk>
12318
12319 * ido.el (ido-first-match, ido-only-match, ido-subdir)
12320 (ido-indicator): Remove -face suffix from face names.
12321
12322 2005-06-06 Juri Linkov <juri@jurta.org>
12323
12324 * font-lock.el (font-lock-regexp-backslash)
12325 (font-lock-regexp-backslash-construct): New faces.
12326 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
12327 after `('. Add `while-no-input' to control structures.
12328
12329 * faces.el (no-break-space, shadow): New faces.
12330 (escape-glyph): Use less loud colors pink2 and red4.
12331
12332 * diff-mode.el (diff-context-face)
12333 * dired.el (dired-ignored)
12334 * rfn-eshadow.el (file-name-shadow)
12335 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
12336
12337 * info.el (Info-title-1-face): Use green instead of yellow because
12338 bold yellow is not readable on light backgrounds.
12339
12340 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
12341 before selecting the desired mode to not spend time fontifying
12342 old contents.
12343
12344 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
12345
12346 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
12347 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
12348
12349 * ps-print.el (ps-default-fg, ps-default-bg):
12350 Fix typos in docstrings.
12351
12352 * isearchb.el (isearchb): Don't pass a spurious second argument to
12353 `iswitchb-completions'.
12354
12355 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
12356
12357 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
12358 to preserve point.
12359 (gdb-find-file-hook): Add doc string.
12360
12361 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
12362 C dereferenced pointer expression.
12363 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
12364
12365 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
12366
12367 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
12368 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
12369 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
12370 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
12371 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
12372 Make background transparent.
12373
12374 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
12375
12376 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
12377 (font-lock-remove-keywords): Doc fix.
12378 (font-lock-mode-major-mode): Compiler defvar.
12379 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
12380
12381 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
12382 (font-lock-mode): Update `font-lock-mode-major-mode'.
12383 (font-lock-set-defaults): Compiler defvar.
12384 (font-lock-default-function): Take `font-lock-mode-major-mode'
12385 into account.
12386
12387 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
12388 keep track of which major mode it enabled the minor mode for.
12389 Use find-file-hook again. Update docstring.
12390
12391 * simple.el (eval-expression-print-level)
12392 (eval-expression-print-length, eval-expression-debug-on-error):
12393 Doc fixes.
12394
12395 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
12396
12397 * iswitchb.el (iswitchb-single-match-face)
12398 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
12399 (iswitchb-invalid-regexp-face): New faces.
12400 (iswitchb-completions): Use them.
12401 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
12402 now marked as an obsolete alias.
12403 (iswitchb-read-buffer): Remove check for bound font variables.
12404 (iswitchb-invalid-regexp): New free variable.
12405 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
12406 set iswitchb-invalid-regexp.
12407 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
12408 invalid regexps.
12409 (iswitchb-completions): Add check for complete match when entering
12410 a regexp.
12411 (iswitchb-completions): Remove require-match argument.
12412 (iswitchb-exhibit): Fix caller.
12413 (iswitchb-common-match-inserted): New variable.
12414 (iswitchb-complete, iswitchb-completion-help): Use it.
12415
12416 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
12417
12418 * url-http.el (url-http-chunked-encoding-after-change-function):
12419 Use `url-http-debug' instead of `message'.
12420
12421 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
12422
12423 * url-http.el (url-http-parse-headers): Pass redirected URL as a
12424 callback argument.
12425
12426 2005-06-04 Kim F. Storm <storm@cua.dk>
12427
12428 * simple.el (line-move): Only call sit-for when moving backwards.
12429
12430 * ido.el (ido-make-merged-file-list-1): New defun split from
12431 ido-make-merged-file-list.
12432 (ido-make-merged-file-list): Bind throw-on-input around call to
12433 ido-make-merged-file-list-1. Return input-pending-p if
12434 interrupted by more input available.
12435 (ido-read-internal): Handle input-pending-p return value from
12436 ido-make-merged-file-list.
12437
12438 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
12439
12440 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
12441 compatibility code.
12442
12443 * international/latexenc.el (latexenc-find-file-coding-system):
12444 Don't inherit the EOL part of the coding-system from the
12445 tex-main buffer. Fit within 80 columns.
12446
12447 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
12448
12449 * tmm.el (tmm-inactive-face): New face.
12450 (tmm-remove-inactive-mouse-face): New function.
12451 (tmm-prompt, tmm-add-one-shortcut)
12452 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
12453 but not selectable.
12454
12455 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
12456
12457 * faces.el (face-equal): Improve argument/docstring consistency.
12458
12459 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
12460
12461 * progmodes/make-mode.el (makefile-targets-face)
12462 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
12463 (makefile-bsdmake-dependency-regex)
12464 (makefile-makepp-rule-action-regex)
12465 (makefile-bsdmake-rule-action-regex): New constants.
12466 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
12467
12468 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12469 Allow (...) within `...' for makepp messages.
12470
12471 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
12472
12473 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
12474
12475 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
12476 "." files are deleted from all file lists before comparison.
12477
12478 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
12479 (viper-ESC-key): Made them customizable.
12480
12481 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
12482
12483 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
12484
12485 * autorevert.el (auto-revert-buffers): Use save-match-data.
12486
12487 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12488
12489 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
12490 menu items with a nil command binding.
12491
12492 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
12493
12494 * emacs-lisp/cl-macs.el (defsetf):
12495 Improve argument/docstring consistency.
12496
12497 * faces.el (list-faces-display): Improve the formatting by
12498 computing the maximum length required for any face-name (reworked
12499 patch of 1999-01-11, accidentally deleted on 1999-07-21).
12500 (internal-find-face): Remove redundant info in docstring.
12501
12502 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
12503
12504 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
12505 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
12506 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
12507 (gdb-assembler-custom): Improve regexps.
12508 (def-gdb-auto-update-handler): Use window point to preserve point.
12509
12510 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12511
12512 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
12513
12514 2005-05-31 Jay Belanger <belanger@truman.edu>
12515
12516 * calc/calc-embed.el (calc-embedded-word): Change argument passed
12517 to calc-embedded.
12518 (calc-embedded-make-info): Have plain prefix argument select
12519 entire line.
12520
12521 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
12522
12523 * faces.el (list-faces-display): Signal error if passed a regexp
12524 that matches no face name.
12525
12526 * simple.el (filter-buffer-substring): Fix typo in docstring.
12527
12528 2005-05-31 Richard M. Stallman <rms@gnu.org>
12529
12530 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
12531 (vhdl-emacs-21): Doc fix.
12532 (vhdl-mode): Unconditionally set comment-padding.
12533 (vhdl-fixup-whitespace-region): Insert spaces only where
12534 there are none.
12535 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
12536
12537 2005-05-30 John Wiegley <johnw@newartisans.com>
12538
12539 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
12540 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
12541 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
12542 `directory-sep-char' to ?/, and all uses of `string-to-int' to
12543 `string-to-number'.
12544
12545 2005-05-30 Jay Belanger <belanger@truman.edu>
12546
12547 * calc/calc.el (calc-bug-address): Fix docstring.
12548 (calc-window-hook, calc-trail-window-hook): New variables.
12549 (calc-trail-display): Restore use of calc-trail-window-hook.
12550 (calc): Restore use of calc-window-hook.
12551
12552 2005-05-31 Masatake YAMATO <jet@gyve.org>
12553
12554 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
12555
12556 * help-fns.el (help-C-file-name): Add autoload mark for
12557 `find-function-noselect'.
12558
12559 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12560
12561 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
12562 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
12563
12564 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
12565
12566 * calendar/diary-lib.el (mark-included-diary-files): Only kill
12567 included diary buffer if it was not already being visited.
12568 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
12569
12570 * calendar/icalendar.el (top-level): Do not require appt.
12571
12572 * mail/supercite.el (sc-select-attribution): Only use a list
12573 element from sc-attrib-selection-list if it returns a string.
12574 Reported by Davide G. M. Salvetti <salve@debian.org>.
12575
12576 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
12577
12578 * thumbs.el (thumbs-thumbname): The resulting thumbname now
12579 includes a hash value to improve its uniqueness, and has a ".jpg"
12580 extension. Also, it is now a valid filename on all systems.
12581 (thumbs-make-thumb): Use `let', not `let*'.
12582 (thumbs-show-thumbs-list): Check for JPEG availability.
12583
12584 2005-05-30 Richard M. Stallman <rms@gnu.org>
12585
12586 * filesets.el (filesets-menu-ensure-use-cached):
12587 Prevent warning when emacs-version>= is undefined.
12588
12589 * printing.el (pr-interactive-n-up): Use string-to-number.
12590
12591 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
12592
12593 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
12594 Warn only when name to be defined is quoted.
12595
12596 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
12597
12598 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
12599 Make regexp more robust.
12600 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
12601 Force regeneration of disassembly.
12602
12603 2005-05-29 Jay Belanger <belanger@truman.edu>
12604
12605 * calc/calc.el (calc-user-invocation): Check if
12606 calc-invocation-macro is non-nil.
12607
12608 2005-05-29 Juri Linkov <juri@jurta.org>
12609
12610 * add-log.el (change-log-font-lock-keywords):
12611 Add `+' to e-mail regexp to accept mail address with keywords.
12612
12613 * man.el (Man-name-regexp): Add `:' to accept qualified names.
12614
12615 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
12616
12617 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
12618
12619 * ielm.el (inferior-emacs-lisp-mode): Ditto.
12620
12621 2005-05-29 Richard M. Stallman <rms@gnu.org>
12622
12623 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
12624 Undo the change that moves to end of the current word.
12625
12626 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
12627
12628 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
12629 Throw error when count <= 0 to ensure input is a number.
12630 (gdb-read-memory-custom): Pick up address from buffer.
12631 (gdb-memory-mode): Allow user to increment and decrement
12632 memory address from header line.
12633
12634 2005-05-29 Richard M. Stallman <rms@gnu.org>
12635
12636 * flyspell.el (flyspell-version): Function deleted.
12637 (flyspell-auto-correct-previous-hook): Doc fix.
12638
12639 * jit-lock.el (jit-lock-function, jit-lock-after-change):
12640 Do nothing if memory is full.
12641
12642 * font-lock.el (font-lock-fontify-syntactically-region):
12643 Pass t for GREEDY to looking-back.
12644
12645 * saveplace.el (save-place-alist-to-file): Write the file
12646 using write-region.
12647
12648 * subr.el (looking-back): New argument GREEDY.
12649
12650 * progmodes/compile.el (compilation-start): Set the mode
12651 before inserting the initial text.
12652
12653 * progmodes/which-func.el (which-func-update-1): Turn the mode
12654 off in case of error by setting which-func-mode.
12655
12656 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
12657
12658 * flyspell.el (flyspell-auto-correct-previous-word):
12659 Narrow down to what's on the screen, and recenter overlays
12660 at the end of the next word.
12661
12662 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
12663
12664 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
12665 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
12666 (flyspell-abbrev-p): Default to nil.
12667 (flyspell-use-global-abbrev-table-p): Doc fix.
12668 (flyspell-large-region): Allow nil as value.
12669 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
12670
12671 (mail-mode-flyspell-verify): More robust handling
12672 of `mail-header-separator'. More efficient signature detection.
12673 Allow for regexp metacharacters in message-header-separator.
12674 Adding `To' not to be checked in mail-mode-flyspell-verify.
12675
12676 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
12677 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
12678 Bind flyspell-auto-correct-binding.
12679 Bind C-. and C-, .
12680 (flyspell-mode-map): Likewise.
12681 (flyspell-mode): Doc fix.
12682 (flyspell-accept-buffer-local-defs): Preserve current buffer.
12683 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
12684 (flyspell-word-cache-result): New var, always local.
12685 (flyspell-check-pre-word-p): Doc fix.
12686 (flyspell-check-changed-word-p): Handle spc like newline.
12687 (flyspell-post-command-hook): Set flyspell-word-cache-result.
12688 (flyspell-word-search-backward, flyspell-word-search-forward):
12689 New functions.
12690 (flyspell-word): Return t if nothing to check.
12691 When parsing TeX code, check for after } or \.
12692 Use flyspell-word-search-backward to find previous word.
12693 Return nil if duplicated word.
12694 For word already checked, return same value as last time.
12695 Set flyspell-word-cache-result after checking.
12696 Don't clobber the return value.
12697 (flyspell-get-word): Major rewrite.
12698 (flyspell-external-point-words): New locals pword, pcount.
12699 Fix size used in progress message.
12700 Find the proper corresponding word in flyspell-large-region-buffer.
12701 (flyspell-region): Check for flyspell-large-region = nil.
12702 (flyspell-highlight-incorrect-region): Clean up overlays in region.
12703 (flyspell-auto-correct-word): Check that WORD is a cons.
12704 (flyspell-correct-word): Likewise.
12705
12706 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
12707
12708 * progmodes/make-mode.el (makefile-rule-action-regex)
12709 (makefile-macroassign-regex, makefile-makepp-mode)
12710 (makefile-bsdmake-mode): Continuation lines may be empty.
12711 Reported by Joshua Varner.
12712 (makefile-makepp-font-lock-keywords): Add $(stem).
12713
12714 2005-05-28 Karl Berry <karl@gnu.org>
12715
12716 * textmodes/tex-mode.el: Now that tex-send-command calls
12717 shell-quote-argument (2005-03-31 change), remove all calls to
12718 shell-quote-argument; they all end up invoking tex-send-command.
12719 The double quoting loses on filenames with non-safe characters,
12720 such as "@". Reported by Frederik Fouvry.
12721
12722 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
12723
12724 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
12725 about preserving point.
12726
12727 2005-05-27 Jay Belanger <belanger@truman.edu>
12728
12729 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
12730 Info-goto-node.
12731
12732 * calc/calc-embed.el (calc-embed-arg): New variable.
12733 (calc-do-embedded-activate, calc-embedded-activate-formula)
12734 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
12735 variable by new variable.
12736 (calc-embedded-make-info): Replace undeclared variable by new
12737 variable. When selecting region with positive prefix
12738 argument, use end of previous line instead of beginning of line.
12739
12740 * calc/calc-aent.el (calc-arg-values): Declare it.
12741
12742 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
12743 Declare them.
12744
12745 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
12746
12747 * calc/calc.el (calc-alg-map): Declare it.
12748
12749 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
12750
12751 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
12752
12753 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
12754 (gdb-registers-buffer, toggle-gdb-all-registers):
12755 Toggle display of floating point registers.
12756 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
12757
12758 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
12759 (toggle-gud-tooltip-dereference):
12760 Rename from gud-toggle-tooltip-dereference.
12761
12762 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
12763
12764 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
12765
12766 2005-05-27 Jay Belanger <belanger@truman.edu>
12767
12768 * calc/calc-prog.el (calc-kbd-report): Remove.
12769 (calc-kbd-query): Rewrite.
12770
12771 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
12772
12773 * image.el (image-library-alist): Move to image.c.
12774 (image-type-available-p): Doc fix.
12775
12776 2005-05-27 Lute Kamstra <lute@gnu.org>
12777
12778 * calc/calc.el (calc):
12779 * outline.el (outline-1, outline-2, outline-3, outline-4)
12780 (outline-5, outline-6, outline-7, outline-8):
12781 * textmodes/dns-mode.el (dns-mode):
12782 * textmodes/sgml-mode.el (sgml-namespace-face):
12783 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
12784 (tex-verbatim-face, tex-use-reftex):
12785 * textmodes/texinfo.el (texinfo-heading-face):
12786 Specify customization group.
12787
12788 * longlines.el: Don't require easy-mmode.
12789 (longlines-visible-face): Specify customization group.
12790
12791 2005-05-27 Kenichi Handa <handa@m17n.org>
12792
12793 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
12794 encoding table of windows-1251.
12795
12796 * international/ucs-tables.el (ucs-set-table-for-input):
12797 If translation-table-for-input of a coding system is a symbol, get
12798 its translation-table property.
12799
12800 * international/code-pages.el: Don't register a coding system into
12801 non-iso-charset-alist more than once.
12802 (cp-make-coding-system): Likewise.
12803
12804 2005-05-26 John Wiegley <johnw@newartisans.com>
12805
12806 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
12807 `eshell-resume-eval' is wrapped in a list, it indicates that the
12808 command was run asynchronously. In that case, unwrap the value
12809 before checking the delimiter value.
12810
12811 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
12812 character before a space at the end of a line is \, assume the space
12813 is part of the last argument rather than a final argument separator.
12814
12815 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
12816 is in use, and the target is `t' or `nil' (which are the most common
12817 values), don't assume that the symbol target is a buffer.
12818
12819 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
12820
12821 * calendar/calendar.el (calendar-mode-line-format):
12822 Use mode-line-highlight as mouse-face.
12823
12824 * time.el (display-time-string-forms, display-time-update):
12825 Use mode-line-highlight as mouse-face.
12826
12827 2005-05-26 Jay Belanger <belanger@truman.edu>
12828
12829 * calc/calc.el (calc-language-alist): Remove extra defvar.
12830
12831 2005-05-26 Lute Kamstra <lute@gnu.org>
12832
12833 * arc-mode.el (archive-mode):
12834 * bookmark.el (bookmark-read-annotation-mode)
12835 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
12836 * bs.el (bs-mode):
12837 * calc/calc-yank.el (calc-edit-mode):
12838 * calc/calc.el (calc-mode, calc-trail-mode):
12839 * calculator.el (calculator-mode):
12840 * chistory.el (command-history-mode):
12841 * comint.el:
12842 * cus-edit.el (custom-mode):
12843 * descr-text.el (describe-text-mode):
12844 * ebuff-menu.el (Electric-buffer-menu-mode):
12845 * ediff-util.el (ediff-mode):
12846 * emacs-lisp/re-builder.el (reb-mode):
12847 * emulation/vi.el (vi-mode-setup):
12848 * emulation/ws-mode.el (wordstar-mode):
12849 * eshell/esh-mode.el (eshell-mode):
12850 * forms.el (forms-mode):
12851 * help-mode.el (help-mode):
12852 * hexl.el (hexl-mode):
12853 * ibuffer.el (ibuffer-mode):
12854 * ielm.el (inferior-emacs-lisp-mode):
12855 * info.el (Info-mode, Info-edit-mode):
12856 * international/swedish.el:
12857 * ledit.el (ledit-from-lisp-mode):
12858 * locate.el (locate-mode):
12859 * mail/rmail.el (rmail-mode):
12860 * mail/rmailedit.el (rmail-edit-mode):
12861 * mail/rmailsum.el (rmail-summary-mode):
12862 * mail/supercite.el (sc-electric-mode):
12863 * net/eudc.el (eudc-mode):
12864 * net/quickurl.el (quickurl-list-mode):
12865 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
12866 * obsolete/ooutline.el (outline-mode):
12867 * obsolete/options.el (Edit-options-mode):
12868 * obsolete/rnews.el (news-mode):
12869 * obsolete/rnewspost.el (news-reply-mode):
12870 * play/5x5.el (5x5-mode):
12871 * play/decipher.el (decipher-mode, decipher-stats-mode):
12872 * play/gomoku.el (gomoku-mode):
12873 * play/snake.el (snake-mode):
12874 * play/solitaire.el (solitaire-mode):
12875 * play/tetris.el (tetris-mode):
12876 * progmodes/ada-mode.el (ada-mode):
12877 * progmodes/antlr-mode.el (antlr-mode):
12878 * progmodes/autoconf.el (autoconf-mode):
12879 * progmodes/dcl-mode.el (dcl-mode):
12880 * progmodes/delphi.el (delphi-mode):
12881 * progmodes/ebrowse.el (ebrowse-tree-mode)
12882 (ebrowse-electric-list-mode, ebrowse-member-mode)
12883 (ebrowse-electric-position-mode):
12884 * progmodes/f90.el (f90-mode):
12885 * progmodes/fortran.el (fortran-mode):
12886 * progmodes/icon.el (icon-mode):
12887 * progmodes/idlw-help.el (idlwave-help-mode):
12888 * progmodes/idlw-shell.el (idlwave-shell-mode):
12889 * progmodes/idlwave.el (idlwave-mode):
12890 * progmodes/inf-lisp.el (inferior-lisp-mode):
12891 * progmodes/m4-mode.el (m4-mode):
12892 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
12893 * progmodes/modula2.el (modula-2-mode):
12894 * progmodes/octave-inf.el (inferior-octave-mode):
12895 * progmodes/octave-mod.el (octave-mode):
12896 * progmodes/pascal.el (pascal-mode):
12897 * progmodes/sh-script.el (sh-mode):
12898 * progmodes/sql.el (sql-mode, sql-interactive-mode):
12899 * progmodes/vhdl-mode.el (vhdl-mode):
12900 * progmodes/xscheme.el (scheme-interaction-mode):
12901 * replace.el (occur-mode):
12902 * ses.el (ses-mode):
12903 * simple.el (completion-list-mode):
12904 * skeleton.el:
12905 * speedbar.el (speedbar-mode):
12906 * term.el (term-mode):
12907 * terminal.el (terminal-edit-mode):
12908 * textmodes/reftex-index.el (reftex-index-mode)
12909 (reftex-index-phrases-mode):
12910 * textmodes/reftex-sel.el (reftex-select-label-mode)
12911 (reftex-select-bib-mode):
12912 * textmodes/reftex-toc.el (reftex-toc-mode):
12913 * wdired.el (wdired-change-to-wdired-mode):
12914 * wid-browse.el (widget-browse-mode):
12915 Use run-mode-hooks.
12916
12917 * array.el (array-mode):
12918 * calendar/todo-mode.el (todo-mode):
12919 * man.el (Man-mode):
12920 * play/landmark.el (lm-mode):
12921 * play/mpuz.el (mpuz-mode):
12922 Use kill-all-local-variables and run-mode-hooks.
12923
12924 * subr.el (delay-mode-hooks): Specify indentation.
12925
12926 2005-05-26 Mark A. Hershberger <mah@everybody.org>
12927
12928 * xml.el (xml-substitute-special): Don't die for undefined xml
12929 entities.
12930
12931 2005-05-26 Jay Belanger <belanger@truman.edu>
12932
12933 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
12934 of nil.
12935
12936 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
12937
12938 * progmodes/gdb-ui.el (gdb-frame-address):
12939 Rename from gdb-current-address.
12940 (gdb-previous-frame-address): Rename from gdb-previous-address.
12941 (gdb-selected-frame): Rename from gdb-current-frame.
12942 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
12943 (gdb-frame-number): Rename from gdb-current-stack-level.
12944 (gdb-ann3): Match new mode-name for disassembly buffer.
12945 Extend initialization of variables.
12946 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
12947 (gdb-memory-mode): Use mouse-face in header line.
12948 (gdb-assembler-buffer-name): Call it disassembly and give frame
12949 in mode line.
12950 (gdb-source-spec-regexp, gdb-assembler-custom)
12951 (gdb-invalidate-assembler, gdb-frame-handler):
12952 Make robust to leading zeroes in address format.
12953
12954 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
12955
12956 * textmodes/org.el (org-mode): Use `define-derived-mode' to
12957 define `org-mode'.
12958 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
12959
12960 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
12961
12962 * log-edit.el (log-edit-changelog-entries): Distinguish between
12963 filenames like xfns.c and fns.c.
12964
12965 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
12966
12967 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
12968 point after reverting.
12969 (Buffer-menu-make-sort-button): Handle the case where
12970 `Buffer-menu-use-header-line' is nil.
12971
12972 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
12973
12974 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
12975 New funcs. In minibuffer-local-completion-map bind `]', `/'
12976 and `:' to them.
12977
12978 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
12979
12980 * startup.el (normal-top-level): Allow modification of load-path while
12981 we're iterating over it.
12982
12983 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
12984
12985 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
12986 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
12987 (thumbs-resize-interactive, thumbs-insert-image)
12988 (thumbs-insert-thumb, thumbs-dired-show-marked)
12989 (thumbs-find-image-at-point, thumbs-delete-images)
12990 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
12991 (thumbs-increment-image-size, thumbs-decrement-image-size):
12992 Fix typos in docstrings.
12993
12994 2005-05-24 Andre Spiegel <spiegel@gnu.org>
12995
12996 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
12997 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
12998 (cperl-mode): Use them.
12999
13000 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
13001
13002 * window.el (quit-window, shrink-window-if-larger-than-buffer):
13003 Doc fixes.
13004
13005 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
13006
13007 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
13008 Bind C-d to gdb-inferior-io-eof.
13009
13010 * dired.el (dired-dnd-popup-notice): Use message-box.
13011
13012 2005-05-23 Masatake YAMATO <jet@gyve.org>
13013
13014 * bindings.el (mode-line-major-mode-keymap):
13015 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
13016
13017 * faces.el (mode-line-highlight): New face.
13018
13019 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
13020 as mouse-face.
13021
13022 * bindings.el (top-level, help-echo, mode-line-modified)
13023 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
13024 as mouse-face.
13025
13026 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
13027
13028 * progmodes/cc-engine.el (c-guess-basic-syntax):
13029 Remove spurious call to `zerop'.
13030
13031 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
13032
13033 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
13034
13035 CC Mode update to 5.30.10:
13036
13037 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
13038 could go past the limit in decoration level 2, thereby causing
13039 errors during interactive fontification.
13040
13041 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
13042 the file is evaluated interactively.
13043
13044 * cc-engine.el (c-guess-basic-syntax): Handle operator
13045 declarations somewhat better in C++.
13046
13047 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
13048 make use of `run-mode-hooks' which has been added in Emacs 21.1.
13049 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
13050 (awk-mode): Use it.
13051 (make-local-hook): Suppress warning about obsoleteness.
13052
13053 * cc-engine.el, cc-align.el, cc-cmds.el
13054 (c-append-backslashes-forward, c-delete-backslashes-forward)
13055 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
13056 Compensate for return value from `forward-line' when it has moved
13057 but not to a different line due to eob.
13058
13059 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
13060 `objc-method-intro' and `objc-method-args-cont'.
13061
13062 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
13063
13064 CC Mode update to 5.30.10:
13065
13066 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
13067 in the copyright statement. Incidentally, change "along with GNU
13068 Emacs" to "along with this program" where it occurs.
13069
13070 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
13071 so that it is interactive, hence can be found by M-x awk-mode
13072 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
13073 <gmorris+emacs@ast.cam.ac.uk>.
13074
13075 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
13076 Mode's regexps.
13077
13078 2005-05-23 Kevin Ryde <user42@zip.com.au>
13079
13080 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
13081 c-parse-state, to avoid a lisp error (on bad code).
13082
13083 2005-05-23 Lute Kamstra <lute@gnu.org>
13084
13085 * subr.el (font-lock-defaults): Remove defvar as it's already
13086 defined in font-core.el.
13087
13088 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
13089
13090 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
13091
13092 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
13093 more general and work when GDB variable "print pretty" is on,
13094 as with Emacs, for example.
13095
13096 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
13097
13098 * font-core.el: Update comment.
13099
13100 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
13101 Use `after-change-major-mode-hook' instead of `find-file-hook'.
13102
13103 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
13104
13105 2005-05-22 Eli Zaretskii <eliz@gnu.org>
13106
13107 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
13108 and `yank-handler' in the doc strings.
13109
13110 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
13111
13112 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
13113
13114 2005-05-22 Richard M. Stallman <rms@gnu.org>
13115
13116 * help.el (describe-key): Move print-help-return-message call
13117 out of conditional.
13118
13119 * progmodes/etags.el (list-tags): Use with-no-warnings.
13120
13121 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
13122 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
13123 (starttls-extra-args, starttls-extra-arguments): Add defvars.
13124
13125 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
13126
13127 * language/viet-util.el (viet-viscii-nonascii-translation-table):
13128 Add defvar.
13129
13130 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
13131 Use defvar, not defconst.
13132
13133 * hexl.el (hexl-follow-line): Use with-no-warnings.
13134
13135 * emulation/tpu-extras.el: Use write-file-functions instead of
13136 write-file-hooks.
13137
13138 * dired.el (dired-font-lock-keywords): Fontify files with junk
13139 extensions even if marked by -F.
13140
13141 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
13142
13143 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
13144 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
13145 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
13146 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
13147 (concatenate, list-length, get*, getf, cl-remprop):
13148 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
13149 (etypecase, progv, lexical-let, lexical-let*)
13150 (multiple-value-bind, multiple-value-setq, shiftf):
13151 Improve argument/docstring consistency.
13152
13153 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
13154
13155 2005-05-22 Andre Spiegel <spiegel@gnu.org>
13156
13157 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
13158 doesn't exist.
13159
13160 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
13161 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
13162
13163 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
13164
13165 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
13166 already deleted variables: auto-fill-hook, blink-paren-hook,
13167 lisp-indent-hook, inhibit-local-variables, unread-command-event,
13168 suspend-hooks, comment-indent-hook, meta-flag,
13169 before-change-function, after-change-function,
13170 font-lock-doc-string-face.
13171
13172 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
13173
13174 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
13175
13176 2005-05-21 Eli Zaretskii <eliz@gnu.org>
13177
13178 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
13179 rmail-dont-reply-to.
13180
13181 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
13182
13183 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
13184 literal blank when splitting new-header-values.
13185
13186 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
13187
13188 * calendar/cal-menu.el (cal-menu-update): Add separator as a
13189 string so that tmm doesn't create a completion entry for it.
13190
13191 * textmodes/table.el (table-disable-menu): Ditto.
13192
13193 2005-05-21 Richard M. Stallman <rms@gnu.org>
13194
13195 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
13196
13197 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
13198
13199 * net/rcompile.el (remote-compile): Use compilation-start.
13200
13201 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
13202
13203 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
13204
13205 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
13206 Default to makefile-bsdmake-mode on BSD systems.
13207
13208 * imenu.el (imenu-generic-expression, imenu--generic-function'):
13209 REGEXP may also be a search function now. The part of doc-string
13210 for describing the structure was 95% identical to that of
13211 `imenu--generic-function'. Unify it there.
13212
13213 * progmodes/make-mode.el (makefile-imenu-generic-expression):
13214 Use function to find dependencies, because regexp alone is so complex,
13215 it easily goes into an endless loop.
13216 (makefile-makepp-mode): Also add submenu for Perl functions
13217 defined in the makefile.
13218 (makefile-bsdmake-mode): Special imenu-generic-expression no
13219 longer needed, due to function call.
13220 (makefile-match-dependency): Take BOUND into account when checking
13221 if we're through.
13222
13223 2005-05-20 Jay Belanger <belanger@truman.edu>
13224
13225 * calc/calc-units.el (calc-invalidate-units-table):
13226 Use inhibit-read-only.
13227 (math-build-units-table-buffer): Use view-mode.
13228
13229 2005-05-20 David Kastrup <dak@gnu.org>
13230
13231 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
13232 easy-menu-add is not a nop on Emacs; and clarify when to call it.
13233
13234 2005-05-20 Lute Kamstra <lute@gnu.org>
13235
13236 * diff-mode.el (diff-header-face, diff-file-header-face)
13237 (diff-index-face, diff-hunk-header-face, diff-removed-face)
13238 (diff-added-face, diff-changed-face, diff-function-face)
13239 (diff-context-face, diff-nonexistent-face): Put them in the
13240 diff-mode customization group.
13241
13242 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
13243
13244 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
13245
13246 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
13247
13248 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
13249 Minor regexp-optimization.
13250
13251 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
13252
13253 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
13254 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
13255 (org-agenda-add-time-grid-maybe): New function.
13256 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
13257 (org-table-create): `dotimes' instead of `mapcar'.
13258 (org-xor): Simplify implementation.
13259 (org-agenda): `inhibit-redisplay' turned on.
13260 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
13261 a consistent line after a state change.
13262 (org-agenda-remove-times-when-in-prefix): New option.
13263 (org-prefix-has-time): New variable.
13264 (org-parse-time-string): Optional argument NODEFAULT.
13265 (org-format-agenda-item): Parse items for time-of-day
13266 specifications and move these into the prefix if possible.
13267 (org-agenda-priority): Get current heading, not previous heading
13268 during agenda remote editing.
13269
13270 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
13271
13272 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
13273 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
13274 (remove-duplicates, delete-duplicates, substitute)
13275 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
13276 (nsubstitute-if-not, find, find-if, find-if-not, position)
13277 (position-if, position-if-not, count, count-if, count-if-not)
13278 (mismatch, search, sort*, stable-sort, merge, member*)
13279 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
13280 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
13281 (intersection, nintersection, set-difference, nset-difference)
13282 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
13283 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
13284 (nsublis, tree-equal): Improve argument/docstring consistency.
13285
13286 * subr.el (send-string, send-region): Remove obsolescence declaration.
13287 (window-dot, set-window-dot, read-input, show-buffer)
13288 (eval-current-buffer, string-to-int):
13289 Add release number to obsolescence declarations.
13290
13291 2005-05-19 Kim F. Storm <storm@cua.dk>
13292
13293 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
13294 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
13295
13296 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
13297
13298 * faces.el (list-faces-display): Make back button respect optional
13299 regexp arg.
13300
13301 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
13302
13303 * calculator.el (calculator-radix-grouping-mode)
13304 (calculator-radix-grouping-digits, calculator-displayer)
13305 (calculator-radix-grouping-separator, calculator-copy-displayer):
13306 * dabbrev.el (dabbrev-search-these-buffers-only):
13307 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
13308 (diff-advance-after-apply-hunk, diff-mode-hook)
13309 (diff-minor-mode-prefix):
13310 * imenu.el (imenu-use-popup-menu):
13311 * jit-lock.el (jit-lock-context-time):
13312 * newcomment.el (comment-fill-column, comment-column)
13313 (comment-style, comment-padding, comment-multi-line)
13314 (comment-empty-lines, comment-auto-fill-only-comments):
13315 * reveal.el (reveal-around-mark):
13316 * uniquify.el (uniquify-buffer-name-style)
13317 (uniquify-after-kill-buffer-p)
13318 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
13319 (uniquify-min-dir-content, uniquify-separator)
13320 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
13321 * w32-vars.el (w32-fixed-font-alist):
13322 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
13323 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
13324 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
13325 * progmodes/perl-mode.el (perl-indent-level)
13326 (perl-continued-statement-offset, perl-continued-brace-offset)
13327 (perl-brace-offset, perl-brace-imaginary-offset)
13328 (perl-label-offset, perl-indent-continued-arguments)
13329 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
13330 * progmodes/tcl.el (tcl-indent-level)
13331 (tcl-continued-indent-level, tcl-auto-newline)
13332 (tcl-tab-always-indent, tcl-electric-hash-style)
13333 (tcl-help-directory-list, tcl-use-smart-word-finder)
13334 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
13335 (inferior-tcl-source-command):
13336 * textmodes/fill.el (enable-kinsoku):
13337 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
13338 * textmodes/table.el (table-yank-handler):
13339 Specify missing group (and type, if simple) in defcustom.
13340
13341 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
13342
13343 * progmodes/compile.el (compilation-finish-function): Fix defvar.
13344
13345 2005-05-19 Richard M. Stallman <rms@gnu.org>
13346
13347 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
13348
13349 * subr.el (event-basic-type): Don't get an error.
13350 (left-fringe-p): Function deleted.
13351
13352 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
13353 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
13354
13355 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
13356 in recursive copy.
13357
13358 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
13359
13360 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
13361
13362 * emacs-lisp/bytecomp.el
13363 (byte-compile-file-form-custom-declare-variable):
13364 Call byte-compile-nogroup-warn if appropriate.
13365
13366 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
13367 (compilation-set-window): Don't call left-fringe-p; do it directly.
13368
13369 2005-05-19 Jay Belanger <belanger@truman.edu>
13370
13371 * calc/calc-graph.el (calc-graph-format-data): Make sure
13372 var-PlotRejects is bound before trying to check its value.
13373
13374 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
13375
13376 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
13377 definition of this variable from reftex-global.el to reftex.el,
13378 because it is needed in the menu.
13379
13380 2005-05-19 Lute Kamstra <lute@gnu.org>
13381
13382 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
13383 years are fixed. Don't insert a space after a dash.
13384
13385 2005-05-19 Kim F. Storm <storm@cua.dk>
13386
13387 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
13388
13389 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
13390
13391 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
13392 strings, because (eq ... ?\\) is fairly frequent.
13393
13394 * progmodes/make-mode.el (makefile-add-this-line-targets):
13395 Simplify and integrate into `makefile-pickup-targets'.
13396 (makefile-add-this-line-macro): Simplify and integrate into
13397 `makefile-pickup-macros.
13398 (makefile-pickup-filenames-as-targets): Simplify.
13399 (makefile-previous-dependency, makefile-match-dependency):
13400 Don't stumble over `::'.
13401
13402 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
13403
13404 * subr.el (post-command-idle-hook, post-command-idle-delay):
13405 Remove obsoletion of post-command-idle-hook and
13406 post-command-idle-delay.
13407
13408 * faces.el (list-faces-display): Provide button when describe-face
13409 is called to take user back to the list of faces.
13410
13411 * help-fns.el (describe-variable): Remove hyperlinks in a
13412 variable's value as these are quite frequently inappropriate.
13413
13414 * follow.el (follow-submit-feedback, follow-mode):
13415 Remove references to post-command-idle-hook.
13416
13417 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
13418
13419 * progmodes/make-mode.el (makefile-previous-dependency)
13420 (makefile-match-dependency): Check for := (and in bsd mode also
13421 !=) to give a better result, even when font-lock is not on.
13422
13423 2005-05-18 Jay Belanger <belanger@truman.edu>
13424
13425 * calc/calc-help.el (calc-s-prefix-help):
13426 Add `calc-copy-special-constant' to help string.
13427
13428 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
13429
13430 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
13431
13432 2005-05-18 Jay Belanger <belanger@truman.edu>
13433
13434 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
13435 in linear factors are in proper order.
13436
13437 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
13438
13439 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
13440 Support for jurabib.
13441
13442 * textmodes/reftex.el (featurep): Define aliases for overlay
13443 commands, for XEmacs compatibility, and use these aliases in
13444 overlay initializations.
13445 (reftex-highlight): Use `reftex-move-overlay'.
13446 (reftex-unhighlight): Use `reftex-delete-overlay'.
13447 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
13448 (reftex-access-search-path): Use `reftex-uniquify' instead of
13449 `reftex-uniq'
13450
13451 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
13452 `before-string' property modification enables for Emacs as well.
13453 (reftex-select-item): Use `reftex-delete-overlay'.
13454 (reftex-select-mark): Use `reftex-make-overlay' and
13455 `reftex-overlay-put'.
13456 (reftex-select-unmark): Use `reftex-delete-overlay' and
13457 `reftex-overlay-put'.
13458
13459 2005-05-18 Lute Kamstra <lute@gnu.org>
13460
13461 * emacs-lisp/lisp.el (check-parens): Fix docstring.
13462
13463 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
13464
13465 * add-log.el (add-change-log-entry):
13466 * array.el (array-make-template, array-reconfigure-rows)
13467 (array-init-max-row, array-init-max-column)
13468 (array-init-columns-per-line, array-init-field-width):
13469 * replace.el (replace-match-maybe-edit, perform-replace):
13470 * textmodes/spell.el (spell-region):
13471 Replace `read-input' by `read-string'.
13472
13473 * forms.el (forms-mode):
13474 * finder.el (finder-compile-keywords):
13475 * shadowfile.el (shadow-read-files):
13476 Replace `eval-current-buffer' by `eval-buffer'.
13477
13478 * terminal.el (te-pass-through):
13479 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
13480 (ange-ftp-raw-send-cmd):
13481 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
13482 (send-process-next-char, telnet-initial-filter, telnet):
13483 Replace `send-string' by `process-send-string'.
13484
13485 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
13486 (prolog-consult-region): Replace `send-string' by
13487 `process-send-string'; replace `send-region' by `process-send-region'.
13488
13489 * progmodes/delphi.el (delphi-log-msg):
13490 Replace `set-window-dot' by `set-window-point'.
13491
13492 * subr.el (window-dot, set-window-dot, read-input, send-string)
13493 (send-region, show-buffer, eval-current-buffer):
13494 Make really obsolete, as the comment says.
13495
13496 2005-05-17 Kim F. Storm <storm@cua.dk>
13497
13498 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
13499 (cua--init-keymaps): Bind C-return instead of S-return to set
13500 rectangle mark.
13501
13502 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
13503 instead of S-return to toggle/clear rectangle mark.
13504
13505 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
13506
13507 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
13508 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
13509 Also fontify plain strings assigned to variables, mostly so that a
13510 colon has a face and is thus not taken as a dependency separator.
13511 (makefile-previous-dependency): Inline the new matcher, because it
13512 is too complex to work in both directions.
13513 (makefile-match-dependency): Eliminate `backward' arg (see above).
13514 Completely reimplemented so as to not sometimes go into an endless
13515 loop. It should also be more efficient, because first it only
13516 searches for `:', instead of applying the very complex regexp.
13517 (makefile-mode): Cancel `font-lock-support-mode', because blocks
13518 to be fontified in one piece can be too long for JIT.
13519 Makefiles are never *that* big.
13520
13521 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
13522
13523 * dired.el (dired-mode): Simplify.
13524
13525 2005-05-17 Lute Kamstra <lute@gnu.org>
13526
13527 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
13528 defcustom for the mode hook variable.
13529
13530 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
13531 Emacs Lisp Reference Manual.
13532
13533 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
13534
13535 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
13536 (evenp, list*):
13537 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
13538 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
13539
13540 * net/tramp-smb.el (tramp-smb-open-connection):
13541 Pass `tramp-chunksize' as fifth (required) argument.
13542
13543 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
13544
13545 * font-lock.el (lisp-font-lock-keywords-1):
13546 Set `font-lock-negation-char-face' for [^...] char group.
13547 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
13548
13549 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
13550 a var, and refine it to mask one more level of nested vars.
13551 (makefile-rule-action-regex): Turn it into a var, and refine it so
13552 it recognizes backslashed continuation lines as belonging to the
13553 same command.
13554 (makefile-macroassign-regex): Refine it so it recognizes
13555 backslashed continuation lines as belonging to the same command.
13556 (makefile-var-use-regex): Don't look at the next char, because it
13557 might be the same one to be skipped by the initial [^$], leading
13558 to an overlooked variable use.
13559 (makefile-make-font-lock-keywords): Remove two parameters, which
13560 are now variables that some of the modes set locally.
13561 Handle dependency and rule action matching through functions, because
13562 regexps alone match too often. Dependency matching now comes
13563 last, so it can check, whether a colon already matched something else.
13564 (makefile-mode): Inform that font-lock improves makefile parsing
13565 capabilities.
13566 (makefile-match-dependency, makefile-match-action): New functions.
13567
13568 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
13569
13570 * emacs-lisp/cl-extra.el (equalp): Doc fix.
13571
13572 * align.el (align-regexp):
13573 * ansi-color.el (ansi-color-get-face):
13574 * array.el (array-reconfigure-rows, array-init-max-row)
13575 (array-init-max-column, array-init-columns-per-line)
13576 (array-init-field-width):
13577 * dired-aux.el (dired-trample-file-versions):
13578 * dired-x.el (dired-mark-sexp):
13579 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
13580 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
13581 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
13582 * faces.el (face-read-integer):
13583 * files.el (backup-extract-version, insert-directory):
13584 * hexl.el (hexl-insert-decimal-char):
13585 * server.el (server-process-filter):
13586 * shell.el (shell-extract-num):
13587 * startup.el (command-line-1):
13588 * term.el (term-command-hook):
13589 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
13590 (time-stamp-do-number):
13591 * time.el (display-time-update):
13592 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
13593 (timezone-fix-time):
13594 * vms-patch.el (vms-suspend-resume-hook):
13595 * calendar/appt.el (appt-convert-time):
13596 * calendar/cal-bahai.el (mark-bahai-diary-entries):
13597 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
13598 * calendar/cal-islam.el (mark-islamic-diary-entries):
13599 * calendar/calendar.el (calendar-cursor-to-date)
13600 (calendar-star-date):
13601 * calendar/diary-lib.el (diary-attrtype-convert)
13602 (mark-diary-entries, diary-entry-time):
13603 * calendar/solar.el (solar-get-number):
13604 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
13605 * emacs-lisp/re-builder.el (reb-display-subexp):
13606 * emulation/edt.el (edt-set-scroll-margins):
13607 * emulation/tpu-extras.el (tpu-set-scroll-margins):
13608 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
13609 (vip-get-ex-count):
13610 * emulation/viper-ex.el (viper-get-ex-token)
13611 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
13612 * international/fontset.el (fontset-plain-name):
13613 * mail/feedmail.el (feedmail-look-at-queue-directory):
13614 * mail/mailalias.el (mail-get-names):
13615 * mail/rmail.el (rmail-convert-to-babyl-format):
13616 * mail/rmailsum.el (rmail-make-basic-summary-line)
13617 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
13618 (rmail-summary-goto-msg):
13619 * mail/smtpmail.el (smtpmail-read-response):
13620 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
13621 (ange-ftp-vms-add-file-entry):
13622 * play/gametree.el (gametree-looking-at-ply)
13623 (gametree-current-branch-score):
13624 * progmodes/ada-xref.el (ada-prj-find-prj-file)
13625 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
13626 * progmodes/cperl-mode.el (condition-case):
13627 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
13628 (ebrowse-set-member-buffer-column-width)
13629 (ebrowse-select-1st-to-9nth):
13630 * progmodes/etags.el (etags-snarf-tag):
13631 * progmodes/flymake.el (flymake-parse-line):
13632 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
13633 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
13634 (idlwave-shell-menu-def):
13635 * progmodes/ps-mode.el (ps-run-goto-error):
13636 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
13637 (vhdl-speedbar-contract-level):
13638 * term/mac-win.el (x-handle-numeric-switch):
13639 * term/sun-mouse.el (sun-get-frame-data):
13640 * term/w32-win.el (x-handle-numeric-switch):
13641 * term/x-win.el (x-handle-numeric-switch):
13642 * textmodes/ispell.el (ispell-parse-output):
13643 * textmodes/nroff-mode.el (nroff-outline-level):
13644 * textmodes/reftex-cite.el (reftex-bib-sort-year)
13645 (reftex-bib-sort-year-reverse, reftex-format-citation):
13646 * textmodes/reftex-parse.el (reftex-init-section-numbers)
13647 (reftex-section-number):
13648 * textmodes/texinfmt.el (texinfo-paragraphindent):
13649 Replace `string-to-int' by `string-to-number'.
13650
13651 * international/latexenc.el: Add page marker to force the "Local
13652 Variables:" string out of the last page.
13653
13654 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
13655
13656 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
13657 tooltip-change-major-mode.
13658 (gud-tooltip-print-command): Remove case where gud-minor-mode
13659 is gdb ("--fullname").
13660 (gud-tooltip-tips): Turn GUD tooltips off for this case and
13661 explain to user.
13662
13663 2005-05-16 Jay Belanger <belanger@truman.edu>
13664
13665 * calc/calc-store.el (calc-copy-special-constant): New function.
13666
13667 * calc/calc-ext.el (calc-init-extensions): Add binding for
13668 `calc-copy-special-constant'.
13669
13670 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
13671 for the `calc-copy-special-constant' command.
13672
13673 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
13674
13675 * subr.el (left-fringe-p): New function.
13676
13677 * progmodes/compile.el (compilation-setup): Set local value of
13678 overlay-arrow-string to "" always.
13679 (compilation-set-window): Left fringe then don't scroll.
13680 No left fringe then no arrow and scroll message to top.
13681 (compilation-context-lines): Adjust doc string accordingly.
13682
13683 2005-05-16 Kim F. Storm <storm@cua.dk>
13684
13685 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
13686 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
13687 (ido-wide-find-dir-or-delete-dir): New command for M-d.
13688 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
13689 (ido-read-file-name): Handle commands with ido property value
13690 equal to find-file as reading a file name, to allow C-d to enter dired.
13691 (ibuffer-find-file): Add ido property with value find-file.
13692
13693 2005-05-15 Kim F. Storm <storm@cua.dk>
13694
13695 * subr.el (open-network-stream-nowait): Remove.
13696 (open-network-stream-server): Remove.
13697
13698 2005-05-15 Richard M. Stallman <rms@gnu.org>
13699
13700 * faces.el (describe-face): Output a definition link button.
13701
13702 * help-mode.el (help-face-def): New button type.
13703
13704 * emacs-lisp/copyright.el (copyright-fix-years):
13705 Match properly if the first year is 2-digit.
13706 Don't mess up the whitespace after the years by filling.
13707
13708 * dired-aux.el (dired-mark-confirm):
13709 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
13710
13711 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
13712 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
13713 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
13714
13715 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13716 Set font-lock-comment-start-skip.
13717
13718 * font-lock.el (font-lock-comment-start-skip): New variable.
13719 (font-lock-comment-end-skip): New variable.
13720 (font-lock-fontify-syntactically-region): Use them if non-nil.
13721
13722 2005-05-15 Jay Belanger <belanger@truman.edu>
13723
13724 * calc/calc-store.el (calc-store-value): Return a string rather
13725 than display it as a message.
13726 Use calc-var-name for variable name.
13727 (calc-store-into): Add the result of calc-store-value to message.
13728 (calc-copy-variable): Add a message.
13729 (calc-store-exchange): Improve error messages.
13730 (calc-store-binary, calc-store-map): Don't reset the values of
13731 special constants.
13732
13733 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
13734
13735 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
13736 manual to docstring.
13737
13738 * files.el (hack-local-variables-confirm): Add STRING argument.
13739 Make the function handle non file visiting buffers correctly.
13740 (hack-local-variables-prop-line, hack-local-variables)
13741 (hack-one-local-variable): Use STRING arg of
13742 `hack-local-variables-confirm'.
13743
13744 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
13745
13746 Sync with Tramp 2.0.49.
13747
13748 * net/tramp.el (tramp-handle-dired-call-process)
13749 (tramp-handle-insert-directory):`insert-buffer' cannot be used
13750 because the contents of the Tramp buffer is changed before
13751 insertion (`expand-file' and alike).
13752 (tramp-handle-insert-directory): If `localname' has an empty
13753 nondirectory name, it must not be quoted.
13754 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
13755 variable `tramp-chunksize'. Change callees.
13756 (tramp-open-connection-setup-interactive-shell): Check remote host
13757 for buggy `send-process-string' implementation.
13758 Set `tramp-chunksize' if found. Reported by Michael Kifer
13759 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
13760 (tramp-handle-shell-command): `insert-buffer' cannot be used
13761 because the contents of the Tramp buffer is changed before
13762 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
13763 <frederic.bothamy@free.fr>.
13764 (tramp-set-auto-save): Actions should be done for Tramp file name
13765 handler only. Ange-FTP has its own auto-save mechanism.
13766 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
13767 (tramp-set-auto-save-file-modes): Set file modes of
13768 `buffer-auto-save-file-name' to ?\600 as fallback solution.
13769 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
13770 (tramp-bug): Remove obsolete variable.
13771 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
13772 for presence of `mml-mode'. Make it running for older Emacsen as well.
13773
13774 2005-05-14 John Paul Wallington <jpw@pobox.com>
13775
13776 * ibuf-ext.el (define-ibuffer-filter filename):
13777 If `dired-directory' is a list, use its car.
13778
13779 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
13780
13781 * ibuffer.el (define-ibuffer-column filename):
13782 If `dired-directory' is a list, use its car.
13783
13784 2005-05-14 Richard M. Stallman <rms@gnu.org>
13785
13786 * subr.el (symbol-file): Doc fix.
13787
13788 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
13789 (byte-compile-form): Call byte-compile-nogroup-warn.
13790 (byte-compile-warning-types): Doc fix.
13791
13792 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
13793
13794 * progmodes/cc-engine.el (c-literal-faces):
13795 Add font-lock-comment-delimiter-face.
13796
13797 * net/net-utils.el (dig): Use with-no-warnings.
13798
13799 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
13800 (sc-recite-frame-alist, sc-default-cite-frame)
13801 (sc-default-uncite-frame, sc-default-recite-frame)
13802 (sc-attrib-selection-list, sc-rewrite-header-list):
13803 Mark as risky-local-variable.
13804
13805 * international/ogonek.el (ogonek-jak, ogonek-how):
13806 Don't use beginning-of-buffer.
13807
13808 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
13809
13810 * calendar/solar.el (solar-data-list): Move definition up.
13811
13812 * dnd.el (dnd-protocol-alist): Add autoload.
13813
13814 * progmodes/sh-script.el: Many doc usage fixes.
13815 (sh-indent-after-do): Change default to match common styles.
13816
13817 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
13818
13819 * files.el (interpreter-mode-alist)
13820 (auto-mode-interpreter-regexp): Doc fixes.
13821
13822 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
13823
13824 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
13825
13826 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
13827
13828 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13829
13830 * dired.el (dired-mode): make-variable-buffer-local =>
13831 make-local-variable.
13832
13833 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13834
13835 * term/mac-win.el (mac-select-convert-to-string): Try coding
13836 systems in mac-script-code-coding-systems if specified one cannot
13837 encode string for `com.apple.traditional-mac-plain-text'.
13838
13839 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
13840
13841 * progmodes/make-mode.el (makefile-targets-face)
13842 (makefile-shell-face, makefile-makepp-perl-face): New faces.
13843 (makefile-dependency-regex): Fix it to not make the colon in
13844 $(var:a=b) special.
13845 (makefile-rule-action-regex): New regexp for highlighting embedded
13846 Shell strings.
13847 (makefile-macroassign-regex): Handle != for highlighting as
13848 embedded Shell strings.
13849 (makefile-var-use-regex): New const.
13850 (makefile-statements, makefile-automake-statements)
13851 (makefile-gmake-statements, makefile-makepp-statements)
13852 (makefile-bsdmake-statements): New consts.
13853 (makefile-make-font-lock-keywords): New function.
13854 (makefile-automake-font-lock-keywords)
13855 (makefile-gmake-font-lock-keywords)
13856 (makefile-makepp-font-lock-keywords)
13857 (makefile-bsdmake-font-lock-keywords): New consts.
13858 (makefile-mode-map): Add switchers between the various submodes.
13859 (makefile-mode): Document the availability of the variants.
13860 (makefile-automake-mode, makefile-gmake-mode)
13861 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
13862
13863 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
13864 new variants of makefile-mode.
13865
13866 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13867
13868 * font-lock.el (font-lock-comment-delimiter-face): Fix up
13869 the inheritance.
13870
13871 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
13872
13873 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
13874 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
13875
13876 * files.el (normal-mode): Extend the scope of the
13877 `enable-local-variables' binding to include the `set-auto-mode' call.
13878 (magic-mode-alist): Doc fix.
13879
13880 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13881
13882 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
13883 font-lock-comment-face rather than copying its setting.
13884
13885 2005-05-12 Andreas Schwab <schwab@suse.de>
13886
13887 * eshell/esh-mode.el (eshell-send-input): Doc fix.
13888
13889 2005-05-12 Lute Kamstra <lute@gnu.org>
13890
13891 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
13892 defcustom for the mode hook variable. Delete the last argument.
13893 * generic-x.el: Fix callers of define-generic-mode.
13894 (generic-x-modes): Delete group.
13895 (show-tabs-tab-face, show-tabs-space-face): Put them in the
13896 generic-x customization group.
13897
13898 2005-05-12 Kim F. Storm <storm@cua.dk>
13899
13900 * font-lock.el (font-lock-negation-char-face): Default to "off".
13901
13902 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
13903 font-lock-negation-char-face to ! in !=.
13904
13905 2005-05-12 Masatake YAMATO <jet@gyve.org>
13906
13907 * add-log.el (find-change-log): Fix typos in the docstring
13908 of function.
13909
13910 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
13911
13912 * international/latexenc.el (latexenc-find-file-coding-system):
13913 Avoid `re-search-forward' when looking for input encoding because
13914 of speed and safety. Better regular expressions for recognizing
13915 input encoding. Limit a search for TeX-master/tex-main-file to
13916 the local variable section.
13917
13918 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
13919
13920 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
13921 syntax of $ to "'" (quote).
13922
13923 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
13924
13925 * dnd.el (dnd-protocol-alist): Improve custom type.
13926
13927 * dired.el (dired-dnd-protocol-alist): New variable.
13928 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
13929 `dired-mode-hook' to the end.
13930
13931 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
13932
13933 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
13934 comment-end if comment-start-skip is not set.
13935 Obey the font-lock-comment-delimiter-face variables.
13936
13937 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
13938
13939 * files.el (executable-find): Move from executable.el. Use
13940 locate-file.
13941 * progmodes/executable.el (executable-find): Move to files.el.
13942
13943 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
13944 when trying to ensure forward progress.
13945
13946 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
13947
13948 * mouse-sel.el (mouse-sel-follow-link-p): New function.
13949 (mouse-select, mouse-select-internal, mouse-extend-internal):
13950 Use it to implement mouse-1-click-follows-link functionality.
13951
13952 2005-05-11 Richard M. Stallman <rms@gnu.org>
13953
13954 * font-lock.el (font-lock-fontify-syntactically-region):
13955 Use font-lock-comment-delimiter-face for comment delimiters.
13956
13957 2005-05-10 Jay Belanger <belanger@truman.edu>
13958
13959 * calc/calc-help.el (calc-m-prefix-help): Add mention of
13960 preserving embedded modes.
13961
13962 2005-05-10 Richard M. Stallman <rms@gnu.org>
13963
13964 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
13965
13966 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
13967 Move from ada-stmt.el.
13968 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
13969
13970 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
13971 Move to ada-mode.el.
13972 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
13973
13974 * cus-edit.el (custom-file): Call file-chase-links.
13975
13976 * files.el (read-directory-name): Fix previous change.
13977 (hack-local-variables-confirm): New function.
13978 (hack-local-variables-prop-line, hack-local-variables)
13979 (hack-one-local-variable): Use it.
13980
13981 2005-05-10 Lute Kamstra <lute@gnu.org>
13982
13983 * font-lock.el (font-lock-keywords-alist)
13984 (font-lock-removed-keywords-alist): Clarify docstrings.
13985
13986 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
13987
13988 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
13989 (gdb-source-info): Check for preprocessor info.
13990 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
13991 a macro for a function.
13992 (gdb-info-breakpoints-custom): Try to find file again if not already
13993 found (user might have used GDB dir command).
13994 (gdb-get-location): Update gdb-location-alist correctly for change
13995 to gdb-info-breakpoints-custom.
13996
13997 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
13998 (gud-tooltip-print-command): Add gdbmi case.
13999 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
14000 preprocessor info.
14001
14002 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
14003
14004 * startup.el (fancy-splash-insert): Fix typo in doc string.
14005
14006 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
14007
14008 * obsolete/float.el (string-to-float):
14009 * obsolete/hilit19.el (hilit-add-pattern):
14010 * obsolete/rnews.el (news-parse-range, news-select-message)
14011 (news-get-pruned-list-of-files): Replace `string-to-int' by
14012 `string-to-number'.
14013
14014 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
14015 `find-file-not-found-hooks'; use `add-hook'.
14016 (uncompress-while-visiting): Set `write-file-functions', not
14017 `write-file-hooks'; use `add-hook'.
14018
14019 2005-05-09 Kim F. Storm <storm@cua.dk>
14020
14021 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
14022 (cua-paste): Handle clipboard action.
14023 (cua--init-keymaps): Remap clipboard-kill-region and
14024 clipboard-kill-ring-save.
14025
14026 2005-05-08 Eli Zaretskii <eliz@gnu.org>
14027
14028 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
14029 Improve commentary.
14030
14031 * simple.el (next-error-overlay-arrow-position): Revert the change
14032 made on 2005-04-30.
14033
14034 2005-05-07 Jay Belanger <belanger@truman.edu>
14035
14036 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
14037 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
14038 `calc-sel-reselect'.
14039
14040 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
14041 Calc is in embedded mode.
14042
14043 2005-05-07 Eli Zaretskii <eliz@gnu.org>
14044
14045 * progmodes/compile.el (compilation-setup):
14046 Set overlay-arrow-string to an empty string on text terminals.
14047
14048 * textmodes/ispell.el (ispell-program-name): Try looking for
14049 "aspell" along exec-path, and if found, use it as the default
14050 speller program.
14051
14052 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
14053
14054 * international/mule.el (sgml-xml-auto-coding-function):
14055 Recognize encoding='FOO' in single quotes as well as in double quotes.
14056
14057 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
14058
14059 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
14060 as well as `interactive', so that defmacro* would recognize
14061 `declare' forms.
14062
14063 2005-05-07 Eli Zaretskii <eliz@gnu.org>
14064
14065 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
14066 Explain more about the LIGHTER arg's usage in the doc string.
14067 Add commentary to clarify what the code does. Fix the regexp that
14068 strips whitespace from LIGHTER. Quote LIGHTER before using it,
14069 since it could have characters special to regular expressions.
14070
14071 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
14072
14073 * replace.el (occur-1): Bind inhibit-read-only so that
14074 erase-buffer doesn't barf on read-only text properties (likewise
14075 for add-text-properties in occur-engine). Mark buffer as unmodified.
14076 (occur-engine): Don't set buffer-read-only here.
14077
14078 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14079
14080 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
14081 list-buffers-directory. This caused the *cvs-commit* buffer to be
14082 sometimes mistakenly reused as a *cvs* buffer.
14083
14084 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
14085
14086 * tooltip.el: Move code for GUD tooltips into gud.el.
14087 (require): CL no longer needed to compile case.
14088 (tooltip-mode): Do not toggle functions for GUD tooltips.
14089 (tooltip-gud-tips-p): Remove. Replace with minor mode
14090 gud-tooltip-mode in gud.el.
14091 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
14092 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
14093 tooltip-gud prefix with gud-tooltip and obsolete.
14094 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
14095 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
14096 (tooltip-mouse-motion): Mouse movement functions/variable.
14097 Rename in gud.el by adding gud prefix.
14098 (tooltip-gud-original-filter, tooltip-gud-dereference)
14099 (tooltip-gud-event, tooltip-toggle-gud-tips)
14100 (tooltip-gud-process-output, tooltip-gud-print-command)
14101 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
14102 gud.el by replacing tooltip-gud prefix with gud-tooltip.
14103 (gdb-tooltip-print): Move to gdb-ui.el.
14104
14105 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
14106 (require): CL needed to compile case.
14107 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
14108 tooltip-gud-tips-p. Make it a minor-mode.
14109 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
14110 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
14111 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
14112 (gud-tooltip-change-major-mode)
14113 (gud-tooltip-activate-mouse-motions-if-enabled)
14114 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
14115 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
14116 (gud-tooltip-original-filter, gud-tooltip-dereference)
14117 (gud-tooltip-event, tooltip-toggle-gud-tips)
14118 (gud-tooltip-process-output, gud-tooltip-print-command)
14119 (gud-tooltip-tips): Move from tooltip.el.
14120
14121 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
14122 (gdb-cpp-define-alist-flags): Doc fix.
14123 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
14124 gud-tooltip-mode is t.
14125
14126 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14127
14128 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
14129 evaporate if their text is deleted.
14130 (goto-address-at-point): Make it work as a mouse binding as well.
14131 (goto-address-at-mouse): Obsolete it. Update users.
14132
14133 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
14134
14135 * calendar/appt.el (top-level): No longer activate on load.
14136
14137 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
14138
14139 * calendar/cal-bahai.el (mark-bahai-diary-entries):
14140 * net/webjump.el (webjump):
14141 * progmodes/idlw-help.el (idlwave-do-context-help1)
14142 (idlwave-highlight-linked-completions):
14143 * textmodes/po.el (po-find-file-coding-system-guts):
14144 Replace `assoc-ignore-case' by `assoc-string'.
14145
14146 2005-05-06 Eli Zaretskii <eliz@gnu.org>
14147
14148 * files.el (locate-file): Doc fix.
14149
14150 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
14151 Remove the redundant test for ms-dos.
14152
14153 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
14154 look for the preprocessor with exec-suffixes. If not found in
14155 standard places, look in exec-path. Remove most of the tests that
14156 used system-type.
14157
14158 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
14159
14160 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
14161
14162 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
14163 file-name clash with jka-compr.el on 8+3 filesystems.
14164
14165 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14166
14167 * term/mac-win.el: Don't define or bind scroll bar functions if
14168 x-toolkit-scroll-bars is t.
14169 (x-select-text, x-get-selection-value): Clear
14170 x-last-selected-text-clipboard if x-select-enable-clipboard is
14171 nil.
14172 (PRIMARY): Put mac-scrap-name property.
14173 (mac-select-convert-to-file-url): New function.
14174 (public.file-url): New selection target type. Add to
14175 selection-converter-alist.
14176 (x-get-selection, x-selection-value): Handle it.
14177 (x-cut-buffer-or-selection-value): New alias.
14178
14179 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
14180
14181 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
14182 entry to avoid calling bibtex-find-entry with arg global
14183 being t. Remove arg key.
14184 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
14185 (bibtex-copy-summary-as-kill): Change accordingly.
14186
14187 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
14188
14189 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
14190 (org-agenda-date-later): Use with-current-buffer.
14191
14192 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
14193
14194 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
14195 (define-obsolete-variable-alias): Doc Fixes.
14196
14197 2005-05-06 Kim F. Storm <storm@cua.dk>
14198
14199 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
14200 vertical-motion when selective-display is active.
14201
14202 * ido.el (ido-setup-hook): New hook.
14203 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
14204 (ido-input-stack): New var.
14205 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
14206 ido-next-work-file binding to M-O.
14207 Bind M-f to ido-wide-find-file-or-pop-dir.
14208 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
14209 (ido-read-internal): Run ido-setup-hook.
14210 Catch quit in read-file-name and read-string to cancel edit.
14211 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
14212 Automatically pop-all when completing a directory name (RET).
14213 (ido-file-internal): Add with-no-warnings around ffap and dired code.
14214 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
14215 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
14216 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
14217 New functions for M-b/M-f to move among the directory components.
14218 (ido-make-merged-file-list): Catch quit to cancel merge.
14219 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
14220 (ido-completion-help): No warnings for ido-completion-buffer-full.
14221
14222 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
14223
14224 * font-lock.el (font-lock-negation-char-face): New face and variable.
14225 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
14226 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
14227 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
14228 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
14229
14230 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
14231
14232 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
14233 Fix typo in docstring.
14234
14235 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
14236 (ebrowse-print-statistics-line)
14237 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
14238
14239 * term/w32-win.el (image-library-alist): Add additional name for
14240 Xpm library.
14241
14242 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
14243
14244 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
14245 use gcc instead of cpp.
14246
14247 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
14248 (gdb-create-define-alist): Use it.
14249 (gdb-cpp-define-alist-program): Update for MS-DOS.
14250
14251 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
14252
14253 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
14254
14255 2005-05-04 Richard M. Stallman <rms@gnu.org>
14256
14257 * help.el (describe-key): No error when UNTRANSLATED is nil.
14258
14259 * simple.el (line-move-1): Fix previous change to signal errors
14260 appropriately.
14261
14262 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
14263
14264 * calendar/icalendar.el (icalendar-version): Now at 0.12.
14265 (icalendar-duration-correction): Remove.
14266 (icalendar--get-event-properties): Split result at commas.
14267 (icalendar--decode-isoduration): New optional argument
14268 DURATION-CORRECTION.
14269 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
14270 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
14271 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
14272 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
14273 (icalendar--convert-anniversary-to-ical): New functions, extracted
14274 from icalendar-export-region, with bug fixes.
14275 (icalendar-export-region): Use the above functions.
14276 (icalendar-import-buffer): Check before saving diary file.
14277 (icalendar--convert-recurring-to-diary)
14278 (icalendar--convert-non-recurring-all-day-to-diary)
14279 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
14280 extracted from icalendar--convert-ical-to-diary, with bug fixes.
14281 (icalendar--convert-ical-to-diary): Use the above functions.
14282
14283 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
14284
14285 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
14286 Remove these recent additions.
14287 (c-mode): Restore to before 2005-04-28.
14288
14289 * progmodes/cc-vars.el (cc-define-list-program): Remove this
14290 recent addition.
14291
14292 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
14293 (gdb-define-alist): New variables.
14294 (gdb-create-define-alist): New function.
14295 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
14296 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
14297 with string-to-number.
14298 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
14299
14300 * progmodes/gud.el: Replace string-to-int with string-to-number.
14301 (gud-find-file): Handle gdb-define-alist.
14302
14303 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
14304
14305 2005-05-02 Jay Belanger <belanger@truman.edu>
14306
14307 * calc/calc-aent.el (math-read-token):
14308 * calc/calc-bin.el (calc-word-size):
14309 * calc/calc-ext.el (calc-read-number-fancy):
14310 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
14311 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
14312 * calc/calc-frac.el (calc-over-notation):
14313 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
14314 (calc-graph-num-points, calc-graph-init):
14315 * calc/calc-prog.el (calc-read-parse-table-part)
14316 (calc-edit-macro-repeats):
14317 * calc/calc-yank.el (calc-do-grab-rectangle):
14318 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
14319 Replace `string-to-int' by `string-to-number'.
14320
14321 2005-05-02 Kim F. Storm <storm@cua.dk>
14322
14323 * kmacro.el: Use executing-kbd-macro-index variable.
14324
14325 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
14326
14327 * net/rlogin.el (rlogin-parse-words): Delete func.
14328 (rlogin): Use split-string, not rlogin-parse-words.
14329 Also, if there are option-like elements in the parsed args,
14330 take the host to be the first arg immediately following them.
14331 Suggested by Michael Mauger.
14332
14333 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
14334
14335 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
14336
14337 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
14338
14339 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
14340 (cc-mode-cpp-program): Rename to cc-define-list-program and
14341 move to cc-vars.el.
14342
14343 * progmodes/cc-vars.el (cc-define-list-program):
14344 Change to "gcc -E -dM -". Make customizable.
14345
14346 2005-05-02 Kim F. Storm <storm@cua.dk>
14347
14348 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
14349
14350 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
14351
14352 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
14353
14354 * international/mule-util.el (truncate-string): Remove alias and
14355 obsolete declaration.
14356
14357 * international/mule-cmds.el (update-iso-coding-systems):
14358 Remove alias and obsolete declaration.
14359
14360 * international/mule.el (coding-system-parent): Remove alias and
14361 obsolete declaration.
14362
14363 * subr.el (define-function, sref): Remove aliases and obsolete
14364 declarations.
14365 (chars-in-region): Remove obsolete declaration.
14366
14367 2005-05-01 Richard M. Stallman <rms@gnu.org>
14368
14369 * info.el (Info-mode): Set widen-automatically to nil, locally.
14370
14371 * simple.el (widen-automatically): New variable.
14372 (pop-global-mark): Obey widen-automatically.
14373
14374 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
14375
14376 * term/xterm.el (function-key-map): Call substitute-key-definition
14377 before the keymap size is increased by a lot of define-key calls.
14378
14379 2005-05-01 Richard M. Stallman <rms@gnu.org>
14380
14381 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
14382 Rename ARG to ELEMENT. Doc fix.
14383
14384 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
14385
14386 * allout.el (allout-exposure): Remove macro and obsolete declaration.
14387 Remove references to allout-exposure/change to allout-new-exposure.
14388
14389 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
14390 bytecode symbols.
14391
14392 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
14393 (compiled-function-p, focus-frame, unfocus-frame):
14394 Remove aliases and obsolete declarations.
14395 Back out inadvertent changes from previous commit.
14396
14397 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
14398
14399 * files.el (require-final-newline): Make Custom tags consistent
14400 with mode-require-final-newline.
14401 (mode-require-final-newline): Doc fix.
14402
14403 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
14404
14405 * international/latexenc.el (latexenc-find-file-coding-system):
14406 Fix regular expressions.
14407
14408 2005-05-01 David Kastrup <dak@gnu.org>
14409
14410 * international/latexenc.el (latexenc-find-file-coding-system):
14411 Fix regular expressions.
14412
14413 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
14414
14415 * subr.el (string-to-int): Make obsolete.
14416
14417 2005-04-30 Richard M. Stallman <rms@gnu.org>
14418
14419 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
14420
14421 * loadup.el: load jka-comp-hook.
14422
14423 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
14424 (jka-compr-handler): Add autoload. `put' calls moved
14425 to jka-comp-hook.el.
14426 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
14427 (jka-compr-inhibit): Autoload.
14428
14429 * jka-comp-hook.el: New file.
14430 Enable the mode by default.
14431
14432 * files.el (backup-buffer-copy): Use copy-file instead
14433 of write-region, and put back the 'excl.
14434
14435 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
14436
14437 * progmodes/flymake.el (flymake-split-string)
14438 (flymake-split-string, flymake-log, flymake-pid-to-names)
14439 (flymake-reg-names, flymake-get-source-buffer-name)
14440 (flymake-unreg-names, flymake-add-line-err-info)
14441 (flymake-add-err-info): Clarify docstrings.
14442 (flymake-popup-menu, flymake-make-emacs-menu)
14443 (flymake-make-xemacs-menu): Add docstrings.
14444 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
14445 Set variables directly throughout.
14446
14447 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
14448
14449 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
14450 exists. Initialize cc-define-alist.
14451 (c-mode): Add cc-create-define-alist locally to after-save-hook.
14452 If there is no file (Macroexpansion) don't create an alist.
14453
14454 2005-04-29 Sam Steingold <sds@gnu.org>
14455
14456 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
14457 (cc-create-define-alist): Use it instead of the hard-coded string.
14458
14459 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
14460
14461 * international/mule-conf.el (file-coding-system-alist): Fix regexp
14462 for latexenc.
14463
14464 2005-04-29 Lute Kamstra <lute@gnu.org>
14465
14466 * emacs-lisp/generic.el: Improve commentary section.
14467 (define-generic-mode): Improve docstring.
14468
14469 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
14470
14471 * textmodes/org.el (many places): Change to quiet the byte compiler.
14472 (org-prefix-format-compiled): New variable.
14473 (org-compile-prefix-format): New function.
14474 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
14475 (org-agenda-prefix-format,org-timeline-prefix-format): New options.
14476 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
14477 (org-get-entries-from-diary): Use `org-get-time-of-day' for
14478 consistency with entries from `org-mode' files.
14479 (org-get-time-of-day): Fix bug with partial matches early in a line.
14480 (org-non-link-chars): New constant.
14481 (org-link-regexp): Respect `org-non-link-chars'.
14482 (org-agenda-day-view): Remove command.
14483 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
14484 (org-follow-bbdb-link, org-store-link): Search also company field.
14485 (org-highlight-overlay): New variable.
14486 (org-highlight, org-unhighlight): New functions.
14487 (org-agenda-mode): Add pre-command-hook to remove highlight.
14488 (org-evaluate-time-range): Behavior depends upon whether time stamp
14489 contains a time or not.
14490 (org-show-subtree, org-show-entry): New functions.
14491 (org-agenda-cleanup-fancy-diary): Remove empty lines.
14492
14493 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
14494
14495 * comint.el (comint-output-filter-functions): Add autoload cookie.
14496
14497 2005-04-28 Kim F. Storm <storm@cua.dk>
14498
14499 * ido.el (ido-everywhere): Fix last change.
14500
14501 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
14502
14503 * international/latexenc.el: New file.
14504 * international/mule-conf.el (file-coding-system-alist): For .tex,
14505 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
14506
14507 2005-04-28 Lute Kamstra <lute@gnu.org>
14508
14509 * font-lock.el (font-lock-add-keywords)
14510 (font-lock-remove-keywords): Clarify docstring.
14511 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
14512 Don't start docstrings with a `*'.
14513 (font-lock-update-removed-keyword-alist): Give it a docstring.
14514
14515 * generic-x.el: Update commentary section.
14516 Only require font-lock when compiling.
14517 Define all modes conditionally.
14518 Place all generic modes in the generic-x-modes customization group.
14519 (generic-x-modes): New customization group.
14520 (generic-default-modes, generic-mswindows-modes)
14521 (generic-unix-modes, generic-other-modes): New constants.
14522 (generic-define-mswindows-modes, generic-define-unix-modes):
14523 Update docstrings. Make them obsolete.
14524 (generic-extras-enable-list): New default value. Update docstring.
14525 Improve :type. Change :set function.
14526 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
14527 Fix docstring.
14528
14529 * emacs-lisp/generic.el (generic-mode-internal):
14530 Simplify font-lock-defaults.
14531 (define-generic-mode): Fix docstring.
14532
14533 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14534
14535 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
14536 font-lock-face property to highlight matches.
14537
14538 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
14539
14540 * progmodes/cc-mode.el (cc-create-define-alist): New function.
14541 (cc-define-alist): New variable.
14542 (c-mode): Make it local and initialize it.
14543
14544 * progmodes/gdb-ui.el (gdb-active-process): New variable.
14545 (gdb-exited): New function.
14546 (gdb-annotation-rules): Use it.
14547 (gdb-starting): Set gdb-active-process to t.
14548 (gdb-stopping): Amend doc string.
14549 (gdb-reset): Set gdb-active-process to nil.
14550
14551 * tooltip.el (tooltip-gud-tips): Show the associated #define
14552 directives when a C program under GDB is not executing.
14553
14554 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
14555
14556 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
14557 font-lock-fontify-syntactic-keywords.
14558
14559 * font-lock.el (font-lock-default-fontify-region): Don't force
14560 parse-sexp-lookup-properties to nil.
14561
14562 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
14563
14564 * man.el (man-mode-syntax-table): Set up `:' to have
14565 word-constituent syntax.
14566
14567 2005-04-27 Lute Kamstra <lute@gnu.org>
14568
14569 * novice.el (disable-command): Don't add spurious newlines to the
14570 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
14571
14572 2005-04-26 Jay Belanger <belanger@truman.edu>
14573
14574 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
14575 than one window before deleting window.
14576
14577 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
14578
14579 * shell.el (shell-prompt-pattern): Doc fix.
14580 (shell-mode): Set paragraph-separate buffer locally to "\\'".
14581
14582 * comint.el (comint-prompt-regexp, comint-get-old-input)
14583 (comint-use-prompt-regexp)
14584 (comint-use-prompt-regexp-instead-of-fields)
14585 (comint-replace-by-expanded-history, comint-send-input)
14586 (comint-output-filter, comint-get-old-input-default)
14587 (comint-line-beginning-position, comint-bol, comint-show-output)
14588 (comint-backward-matching-input, comint-forward-matching-input)
14589 (comint-next-prompt, comint-previous-prompt):
14590 Rename `comint-use-prompt-regexp-instead-of-fields' to
14591 `comint-use-prompt-regexp'. Keep old name as alias and declare
14592 obsolete.
14593 (comint-use-prompt-regexp): Shorten first line of doc string.
14594
14595 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
14596 Set paragraph-separate buffer locally to "\\'".
14597
14598 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
14599 Adapt to above name change.
14600
14601 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
14602 (smbclient-prompt-regexp): Ditto.
14603
14604 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
14605
14606 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
14607
14608 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
14609 gdb-location-list.
14610 Break lines that are over 80 characters wide.
14611
14612 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
14613
14614 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
14615 New fun and var, to preserve compatibility.
14616
14617 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
14618
14619 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
14620
14621 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
14622 name to file-newer-than-file-p.
14623
14624 2005-04-26 Richard M. Stallman <rms@gnu.org>
14625
14626 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
14627
14628 * progmodes/python.el (python-mode):
14629 Use new name eldoc-documentation-function.
14630
14631 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
14632
14633 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
14634 (eldoc-documentation-function):
14635 Rename from eldoc-print-current-symbol-info-function. Calls changed.
14636
14637 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
14638
14639 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
14640
14641 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
14642
14643 * term/xterm.el (function-key-map): Fix strings for
14644 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
14645 {C,S,A,C-S}-{f1-f12}.
14646
14647 2005-04-26 Kenichi Handa <handa@m17n.org>
14648
14649 * international/mule-cmds.el (select-safe-coding-system):
14650 Fix previous change.
14651
14652 2005-04-26 Lute Kamstra <lute@gnu.org>
14653
14654 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
14655
14656 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
14657 (font-lock-comment-delimiter-face): Ditto.
14658
14659 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
14660
14661 2005-04-25 Jay Belanger <belanger@truman.edu>
14662
14663 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
14664 to t while inserting information; use help-mode.
14665
14666 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
14667
14668 * term.el (ansi-term-color-vector): Use the xterm colors.
14669 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
14670
14671 2005-04-25 Lute Kamstra <lute@gnu.org>
14672
14673 * font-core.el (font-lock-defaults): Fix docstring.
14674
14675 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
14676
14677 2005-04-25 Kenichi Handa <handa@m17n.org>
14678
14679 * international/mule-cmds.el (select-safe-coding-system):
14680 Don't check consistency with coding: spec, etc if raw-text or
14681 no-conversion was found to be safe.
14682
14683 2005-04-24 Richard M. Stallman <rms@gnu.org>
14684
14685 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
14686 citation markers at start of each line.
14687
14688 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
14689 citation markers at start of each line.
14690
14691 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
14692
14693 * files.el (mode-require-final-newline): Fix previous change.
14694 (require-final-newline): Fix type label.
14695
14696 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
14697
14698 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
14699 statement in buffer (broken by 2004-11-24 change).
14700
14701 2005-04-24 Kim F. Storm <storm@cua.dk>
14702
14703 * ido.el (ido-everywhere): Save and restore old read-buffer-function
14704 and read-file-name-function values. Don't overwrite existing
14705 non-nil values if ido-mode is enabled without ido-everywhere.
14706
14707 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
14708
14709 * files.el (mode-require-final-newline): Minor doc fix.
14710
14711 2005-04-24 Eli Zaretskii <eliz@gnu.org>
14712
14713 * subr.el (syntax-after): Doc fix.
14714 (syntax-class): If argument is nil, return nil. Mask off upper 16
14715 bits, not 8 bits.
14716
14717 * files.el (mode-require-final-newline): Doc fix.
14718 (backup-buffer-copy): Fix last change.
14719
14720 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14721
14722 * term/mac-win.el: Require select. Set selection-coding-system to
14723 mac-system-coding-system. Call menu-bar-enable-clipboard.
14724 (x-last-selected-text-clipboard, x-last-selected-text-primary)
14725 (x-select-enable-clipboard): New variables.
14726 (x-select-text, x-get-selection, x-selection-value)
14727 (x-get-selection-value, mac-select-convert-to-string)
14728 (mac-services-open-file, mac-services-open-selection)
14729 (mac-services-insert-text): New functions.
14730 (CLIPBOARD, FIND): Put mac-scrap-name property.
14731 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
14732 (public.tiff): Put mac-ostype property.
14733 (selection-converter-alist): Add entries for them.
14734 (mac-application-menu-map): New keymap.
14735 (interprogram-cut-function, interprogram-paste-function): Set to
14736 x-select-text and x-get-selection-value, respectively.
14737 (split-window-keep-point): Set to t.
14738
14739 2005-04-23 Richard M. Stallman <rms@gnu.org>
14740
14741 * files.el (read-directory-name): Always pass non-nil
14742 DEFAULT-FILENAME arg to read-file-name.
14743 (backup-buffer-copy, basic-save-buffer-2): Take care against
14744 writing thru an unexpected existing symlink.
14745 (revert-buffer): In indirect buffer, revert the base buffer.
14746 (magic-mode-alist): Doc fix.
14747 (buffer-stale-function): Doc fix.
14748 (minibuffer-with-setup-hook): Avoid warning.
14749 (mode-require-final-newline): Doc and custom fix.
14750
14751 * follow.el (follow-end-of-buffer): Use with-no-warnings.
14752
14753 * font-lock.el (font-lock-comment-face): On terminals with few colors,
14754 use the default appearance.
14755 (font-lock-comment-delimiter-face): New face, new variable.
14756
14757 * imenu.el (imenu--generic-function): The official position of a
14758 definition is the start of the line that BEG is in.
14759
14760 * midnight.el (midnight-timer): Move defvar up.
14761
14762 * mouse.el (mouse-drag-region-1): Delete some debugging code.
14763
14764 * saveplace.el (save-place-to-alist): Use with-no-warnings.
14765
14766 * startup.el (command-line): Use with-no-warnings.
14767
14768 * window.el (window-size-fixed): New defvar.
14769
14770 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
14771
14772 * mail/rmail.el (rmail-font-lock-keywords):
14773 Use font-lock-comment-delimiter-face.
14774
14775 * mail/sendmail.el (mail-font-lock-keywords):
14776 Use font-lock-comment-delimiter-face.
14777
14778 * progmodes/compile.el (next-error-highlight-timer): New defvar.
14779
14780 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
14781
14782 * progmodes/compile.el (compilation-mode-font-lock-keywords):
14783 Specify t for LAXMATCH when matching directories.
14784 Save match data around compilation-compat-error-properties form.
14785
14786 2005-04-23 David Kastrup <dak@gnu.org>
14787
14788 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
14789 Mention that the autoloaded aliases should be kept for AUCTeX.
14790
14791 2005-04-23 Andreas Schwab <schwab@suse.de>
14792
14793 * isearch.el (isearch-forward): Doc fix.
14794
14795 2005-04-23 Eli Zaretskii <eliz@gnu.org>
14796
14797 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
14798 (jit-lock-stealth-nice): Change default value to 0.5.
14799
14800 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
14801
14802 * abbrev.el (write-abbrev-file): Write table entries in
14803 alphabetical order by table name.
14804
14805 2005-04-22 Kim F. Storm <storm@cua.dk>
14806
14807 * ido.el (ido-read-internal): Fix `list' completion.
14808
14809 2005-04-22 Kenichi Handa <handa@m17n.org>
14810
14811 * recentf.el (recentf-save-file-coding-system): New variable.
14812 (recentf-save-list): Encode the file by
14813 recentf-save-file-coding-system and add coding: tag.
14814
14815 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
14816
14817 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
14818
14819 2005-04-21 Lute Kamstra <lute@gnu.org>
14820
14821 * loadhist.el (unload-feature): Don't remove a function from hooks
14822 if it is about to be restored to an autoload . Remove functions
14823 that will become unbound from auto-mode-alist. Simplify the code.
14824
14825 * subr.el (assq-delete-all): New implementation that is linear,
14826 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
14827 (rassq-delete-all): New function.
14828
14829 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
14830 Add size-indication-mode.
14831
14832 2005-04-21 Kenichi Handa <handa@m17n.org>
14833
14834 * international/mule-cmds.el: Add autoload for widget-value in
14835 eval-when-compile.
14836
14837 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
14838
14839 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
14840 Add tooltip-mode.
14841
14842 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
14843
14844 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
14845
14846 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
14847 (inferior-lisp-filter-regexp, inferior-lisp-program)
14848 (inferior-lisp-load-command, inferior-lisp-prompt)
14849 (inferior-lisp-mode-hook, lisp-source-modes)
14850 (inferior-lisp-load-hook): defvar->defcustom.
14851 (inferior-lisp-program, inferior-lisp-prompt)
14852 (inferior-lisp-load-hook): Doc fixes.
14853 (inferior-lisp-install-letter-bindings): Small change in
14854 introductory comment.
14855
14856 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
14857
14858 * vc.el (vc-annotate-color-map): Change some colors so that text
14859 using them as foreground is readable on both white and black
14860 backgrounds.
14861
14862 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14863
14864 * international/mule-conf.el (translation-table-for-input):
14865 Remove redundant declaration.
14866
14867 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
14868
14869 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
14870
14871 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
14872 (tooltip-toggle-gud-tips): New function.
14873
14874 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14875
14876 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
14877 right angle brackets.
14878
14879 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
14880
14881 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
14882
14883 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14884
14885 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
14886 Remove. Update callers to use expand-file-name instead.
14887
14888 * subr.el (syntax-class): New function.
14889
14890 * simple.el (blink-matching-open): Use it.
14891
14892 * paren.el (show-paren-function): Use it to recognize parens that are
14893 also used in 2-char comment markers.
14894
14895 2005-04-19 Lute Kamstra <lute@gnu.org>
14896
14897 * loadhist.el (unload-feature): Update for new format of
14898 load-history. Simplify the code.
14899
14900 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14901
14902 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
14903 (mac-add-charset-info): New function. Initialize variable
14904 mac-charset-info-alist using it.
14905 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
14906 for translation.
14907 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
14908 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
14909 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
14910 New CCL programs.
14911
14912 2005-04-19 Kim F. Storm <storm@cua.dk>
14913
14914 * simple.el (next-buffer, prev-buffer, next-error)
14915 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
14916 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
14917
14918 * bindings.el (next-buffer, prev-buffer, next-error)
14919 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
14920 (clone-indirect-buffer-other-window): Move bindings from simple.el.
14921 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
14922 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
14923
14924 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
14925
14926 * isearch.el (isearch-edit-string): Make the search-ring available for
14927 minibuffer history commands.
14928 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
14929 the default history commands now work just as well.
14930 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
14931
14932 2005-04-18 Kim F. Storm <storm@cua.dk>
14933
14934 * emulation/cua-base.el (cua--pre-command-handler): Add more
14935 elaborate check for shift modifier on non-window systems.
14936
14937 2005-04-18 Lars Hansen <larsh@math.ku.dk>
14938
14939 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
14940
14941 2005-04-18 Kim F. Storm <storm@cua.dk>
14942
14943 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
14944 and make it optional. Don't test tooltip-gud-echo-area here.
14945 (tooltip-gud-process-output, gdb-tooltip-print):
14946 Pass tooltip-gud-echo-area to tooltip-show.
14947 (tooltip-help-tips): Remove second optional arg to tooltip-show.
14948
14949 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14950
14951 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
14952 `display-graphic-p' may not be bound yet.
14953
14954 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
14955
14956 * startup.el (command-line): No longer enable Xterm Mouse mode by
14957 default in terminals compatible with xterm.
14958
14959 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
14960
14961 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
14962
14963 * tooltip.el (tooltip-gud-echo-area): Rename from
14964 tooltip-use-echo-area.
14965 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
14966 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
14967 area independently of where help tooltips are displayed.
14968
14969 2005-04-17 David Kastrup <dak@gnu.org>
14970
14971 * cus-theme.el (custom-theme-write-variables): Quote variables
14972 where necessary.
14973
14974 2005-04-17 Richard M. Stallman <rms@gnu.org>
14975
14976 * simple.el (yank-excluded-properties): Add follow-link to value.
14977
14978 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
14979
14980 * startup.el (fancy-splash-max-time): Just 30 seconds.
14981 (fancy-splash-delay): Just 7.
14982 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
14983
14984 * loadhist.el (unload-feature): Update for new format of load-history.
14985 Simplify the code.
14986
14987 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
14988 (rmail-font-lock-keywords): Don't fontify the text of a citation.
14989
14990 * mail/sendmail.el (mail-font-lock-keywords):
14991 Don't fontify subject text.
14992 Don't fontify the text of a citation.
14993
14994 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
14995
14996 * comint.el (comint-output-filter): Run comint-output-filter-functions
14997 with point where the user had it.
14998
14999 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
15000
15001 * international/ucs-tables.el (ucs-set-table-for-input):
15002 Disable when using unify-on-decoding.
15003
15004 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
15005
15006 * emulation/cua-base.el (cua-global-mark-face): Add special case
15007 for displays supporting a high number of colors.
15008
15009 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
15010
15011 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
15012
15013 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
15014
15015 * filesets.el (filesets-add-buffer): If user supplies a name of a
15016 non-existing fileset, create a new fileset.
15017
15018 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
15019
15020 * textmodes/org.el (org-up-heading-all): Fix bug with
15021 `outline-up-heading-all'.
15022
15023 2005-04-16 Andreas Schwab <schwab@suse.de>
15024
15025 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
15026 /etc/permissions.d/* and /etc/aliases.d/*.
15027
15028 2005-04-16 Kenichi Handa <handa@m17n.org>
15029
15030 * international/code-pages.el (cp-make-coding-system):
15031 Set `translation-table-for-input' property value to the symbol
15032 ucs-mule-to-mule-unicode, not to that value.
15033 (pt154): Escape guillemet by `\'.
15034
15035 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
15036
15037 * loadup.el: Load tooltip if x-show-tip is fboundp.
15038
15039 * startup.el (command-line): Add comment.
15040
15041 * tooltip.el (tooltip-mode): Specify correct standard value for
15042 Custom in init-value.
15043
15044 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
15045
15046 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
15047 possible.
15048
15049 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
15050
15051 * textmodes/org.el (org-agenda-date-prompt): Rename from
15052 `org-agenda-date-today'.
15053 (org-evaluate-time-range): Insert at point instead of directly
15054 after time range.
15055 (org-first-headline-recenter, org-subtree-end-visible-p)
15056 (org-optimize-window-after-visibility-change): New functions
15057 (org-agenda-post-command-hook): Don't allow point at end of line,
15058 to make sure it always hits the text properties.
15059 (org-agenda-next-date-line, org-agenda-previous-date-line):
15060 New commands.
15061 (org-set-regexps-and-options): Category may contain white space.
15062 (org-agenda-get-deadlines, org-agenda-get-scheduled):
15063 Improve marker positions.
15064 (org-agenda-new-marker): Argument POS made optional.
15065 (org-agenda-get-timestamps): Deadlines which are done are listed
15066 in org-done-face now.
15067 (org-agenda-get-todos, org-agenda-get-timestamps)
15068 (org-agenda-get-deadlines, org-agenda-get-scheduled):
15069 Set `undone-face' and `done-face' properties.
15070 (org-last-todo-state-is-todo): New variable.
15071 (org-todo): Set `org-last-todo-state-is-todo'.
15072 (org-agenda-todo): Change face according to
15073 `org-last-todo-state-is-todo'. And change other lines referring to
15074 the same entry.
15075 (org-calendar-goto-agenda): New command.
15076 (org-calendar-to-agenda-key): New option.
15077 (org-startup-folded): New allowed value `content'.
15078 (org-set-regexps-and-options): Accept new value `content' for
15079 `org-startup-folded'.
15080 (org-get-current-options): Handle new value `content' for
15081 `org-startup-folded'.
15082 (org-insert-todo-heading): New command.
15083 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
15084 interactively in empty file and option
15085 `org-insert-mode-line-in-empty-file' has been set.
15086 (org-agenda-todo,org-agenda-priority): Modify to use
15087 `org-agenda-change-all-lines'.
15088 (org-warning-face): Change color on dark background
15089
15090 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15091
15092 * international/mule-cmds.el (set-locale-environment): On Mac OS,
15093 use preferences AppleLocale and AppleLanguages, and variable
15094 mac-system-locale for default locale. On Mac OS Classic, use
15095 mac-system-coding-system for default coding systems.
15096
15097 * term/mac-win.el: Don't set file-name-coding-system.
15098 Decode variables system-name, emacs-build-system, user-login-name, and
15099 user-full-name by mac-system-coding-system on Mac OS Classic.
15100 (mac-system-coding-system): New variable.
15101
15102 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
15103
15104 * startup.el (command-line): Handle `xterm-mouse-mode' before
15105 reading init file.
15106
15107 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
15108
15109 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
15110
15111 * progmodes/sh-script.el (sh-here-document-word): Make it a
15112 defcustom. Doc fix.
15113 (sh-add): Bash uses $(( )) for arithmetic.
15114 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
15115 (sh-maybe-here-document): Remove quotes and leading whitespace
15116 from heredoc word when closing. Indent heredoc with tabs if word
15117 starts with "-".
15118
15119 2005-04-13 Richard M. Stallman <rms@gnu.org>
15120
15121 * simple.el (undo): Fix previous change.
15122
15123 * custom.el (defface): Doc fix.
15124
15125 2005-04-13 Lute Kamstra <lute@gnu.org>
15126
15127 * Makefile.in (DONTCOMPILE): Remove list.
15128 (compile, compile-always): Don't use DONTCOMPILE.
15129 (update-authors): Load the library in which batch-update-authors
15130 is defined.
15131 * makefile.w32-in (DONTCOMPILE): Remove list.
15132 (compile, compile-always): Fix comments.
15133 (update-authors): Load the library in which batch-update-authors
15134 is defined.
15135
15136 * generic-x.el (generic-mode-ini-file-find-file-hook):
15137 Rename to ini-generic-mode-find-file-hook.
15138 Keep generic-mode-ini-file-find-file-hook as an alias.
15139 (ini-generic-mode-find-file-hook): Rename from
15140 generic-mode-ini-file-find-file-hook. Fix docstring.
15141 (ini-generic-mode): Docstring change.
15142 (bat-generic-mode-run-as-comint): Silence the byte compiler.
15143
15144 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
15145 called from lisp.
15146
15147 * generic.el: Move to the emacs-lisp subdir.
15148
15149 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
15150
15151 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
15152 and C-S- function and cursor motion keys.
15153
15154 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
15155
15156 * startup.el (command-line): Enable Xterm Mouse mode by default.
15157 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
15158 for Custom. No longer show "Mouse" in mode line when enabled.
15159 Doc fix.
15160
15161 2005-04-12 Kim F. Storm <storm@cua.dk>
15162
15163 * emulation/cua-base.el (cua-rectangle-face)
15164 (cua-rectangle-noselect-face): Define face attributes here.
15165
15166 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
15167
15168 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15169
15170 * startup.el (command-line): Turn off blinking cursor if
15171 cursorBlink in resources is off or false.
15172
15173 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15174
15175 * term/mac-win.el (dnd): Require dnd.
15176 (mac-drag-n-drop): Call dnd-handle-one-url.
15177 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
15178 (kTextEncodingISOLatin2): Remove constants.
15179 (mac-script-code-coding-systems): New constant.
15180 (mac-handle-language-change): New function.
15181 (special-event-map): Bind it to `language-change' event.
15182 (mac-centraleurroman, mac-cyrillic): New coding systems.
15183 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
15184 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
15185 and mac-cyrillic-encoder to encode-mac-centraleurroman and
15186 encode-mac-cyrillic, respectively.
15187
15188 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
15189
15190 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
15191 Don't set overlay-arrow-string to "=>" as this is done
15192 globally in C now.
15193
15194 2005-04-12 Lute Kamstra <lute@gnu.org>
15195
15196 * generic-x.el (rc-generic-mode, rul-generic-mode):
15197 Fix auto-mode-alist entries.
15198 (etc-fstab-generic-mode): Tweak fontification.
15199
15200 * generic.el (generic-make-keywords-list): Fix docstring.
15201 (generic-mode-internal): Simplify generic-font-lock-keywords.
15202
15203 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
15204
15205 * whitespace.el (whitespace-buffer-leading)
15206 (whitespace-buffer-trailing): Revert the incorrect test inversion.
15207 However, fix the highlight area for the leading and
15208 trailing whitespaces to show space.
15209
15210 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
15211
15212 * whitespace.el (whitespace-version): Bump to 3.5
15213
15214 (whitespace-buffer-leading, whitespace-buffer-trailing):
15215 Invert sense of the test to highlight the whitespace.
15216
15217 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
15218
15219 * progmodes/gud.el (gud-display-line): GUD uses its own
15220 overlay arrow now so don't set overlay-arrow-string.
15221 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
15222
15223 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
15224
15225 * term.el (term-ansi-current-bold, term-ansi-current-underline)
15226 (term-ansi-current-reverse, term-ansi-current-invisible)
15227 (term-ansi-face-already-done): Change to boolean.
15228 (term-reset-terminal, term-handle-colors-array): Handle the above
15229 vars accordingly.
15230 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
15231 (term-emulate-terminal): Use the new name.
15232
15233 * faces.el (secondary-selection): Use yellow1, not yellow.
15234 (trailing-whitespace): Use red1, not red.
15235
15236 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15237
15238 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
15239 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
15240 (dired-dnd-handle-file): Call dnd-get-local-file-uri
15241
15242 * cus-edit.el (dnd): New group.
15243
15244 * term/w32-win.el (dnd): Require dnd
15245 (w32-drag-n-drop): Call dnd-handle-one-url.
15246
15247 * x-dnd.el: Require dnd.
15248 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
15249 Call dnd-handle-one-url.
15250 (x-dnd-types-alist, x-dnd-insert-utf8-text)
15251 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
15252 to dnd-insert-text.
15253 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
15254 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
15255 (x-dnd-get-local-file-name, x-dnd-open-local-file)
15256 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
15257
15258 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
15259
15260 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
15261
15262 * wdired.el: Doc fixes.
15263 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
15264 (wdired-use-dired-vertical-movement): Rename from
15265 wdired-always-move-to-filename-beginning.
15266 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
15267 (wdired-change-to-wdired-mode): Change mode name.
15268 (wdired-newline): Delete.
15269
15270 2005-04-11 Richard M. Stallman <rms@gnu.org>
15271
15272 * whitespace.el (whitespace-highlight-the-space):
15273 Don't call whitespace-unhighlight-the-space here.
15274
15275 * simple.el (undo): Record t in undo-equiv-table
15276 for the redo record made by an undo-in-region.
15277
15278 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
15279
15280 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
15281 (gdb-frame-inferior-io-buffer): New Functions to control
15282 display of separate IO buffer.
15283 (menu): Add them to menu-bar.
15284 (gdb-display-buffer): Check for buffer another frame.
15285 Protect GUD buffer.
15286 (gdb-setup-windows): Create IO buffer if not already there.
15287 (gdb-memory-mode): Remove purecopy noops.
15288
15289 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
15290
15291 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
15292 and pass to self-insert-command.
15293
15294 2005-04-11 Lute Kamstra <lute@gnu.org>
15295
15296 * generic.el: Commentary section cleanup.
15297 (generic): Delete.
15298 (generic-use-find-file-hook, generic-lines-to-scan)
15299 (generic-find-file-regexp, generic-ignore-files-regexp)
15300 (default-generic-mode, generic-mode-find-file-hook)
15301 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
15302 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
15303 (generic-use-find-file-hook, generic-lines-to-scan)
15304 (generic-find-file-regexp, generic-ignore-files-regexp)
15305 (default-generic-mode, generic-mode-find-file-hook)
15306 (generic-mode-ini-file-find-file-hook): Move from generic.el.
15307
15308 2005-04-10 Karl Fogel <kfogel@red-bean.com>
15309
15310 * bookmark.el (bookmark-write-file): Catch errors writing file.
15311 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
15312
15313 2005-04-10 Richard M. Stallman <rms@gnu.org>
15314
15315 * startup.el (fancy-splash-tail): Update copyright year.
15316 (command-line): Split part of -Q into -D.
15317 (emacs-basic-display): New defvar.
15318 (fancy-splash-text): Correct name of menu item.
15319
15320 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
15321
15322 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
15323 lines in one node.
15324
15325 * comint.el (comint-send-input): New arg ARTIFICIAL.
15326 Callers in this file changed.
15327
15328 * abbrev.el (define-abbrevs): Read system abbrevs properly.
15329
15330 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
15331
15332 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
15333
15334 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
15335 `ldap-search-internal'.
15336
15337 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
15338
15339 * files.el (set-auto-mode-1): Use line-end-position.
15340
15341 * international/latin-1.el:
15342 * international/latin-2.el:
15343 * international/latin-3.el:
15344 * international/latin-4.el:
15345 * international/latin-5.el:
15346 * international/latin-8.el:
15347 * international/latin-9.el: Give punctuation syntax to NBSP.
15348
15349 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
15350 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
15351 Use char-classes to accept non-ascii letters, accepted in some recent
15352 bibtex implementations.
15353
15354 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
15355
15356 * custom.el (custom-set-minor-mode): Any non-nil value for the
15357 variable should enable the mode when set through Custom.
15358
15359 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
15360
15361 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
15362 TAB binding so tab-always-indent is obeyed.
15363 (vhdl-minibuffer-local-map): Move initialization into declaration.
15364 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
15365 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
15366 (vhdl-hooked-abbrev): Avoid test for XEmacs.
15367 (vhdl-current-line): Use line-beginning-position.
15368 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
15369 with-output-to-temp-buffer, so the current position can be recorded.
15370
15371 2005-04-10 Masatake YAMATO <jet@gyve.org>
15372
15373 * progmodes/compile.el (compilation-error-regexp-alist-alist):
15374 Add regexp for gcov.
15375
15376 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
15377
15378 * calendar/time-date.el (time-to-seconds, seconds-to-time)
15379 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
15380 syntax which Emacs 20 doesn't support.
15381
15382 2005-04-09 Richard M. Stallman <rms@gnu.org>
15383
15384 * help.el (describe-key-briefly, describe-key):
15385 Replace strings as event types with "(any string)".
15386
15387 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
15388
15389 * arc-mode.el (archive-mode-map): Move initialization into
15390 the declaration. Override *all* bindings of `undo'.
15391 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
15392
15393 2005-04-09 Jay Belanger <belanger@truman.edu>
15394
15395 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
15396
15397 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
15398
15399 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
15400 (xterm-register-default-colors): Update color values computation
15401 to match xterm-200.
15402
15403 2005-04-09 Kenichi Handa <handa@m17n.org>
15404
15405 * international/code-pages.el (iso-latin-7): Fix the map.
15406
15407 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
15408
15409 * emacs-lisp/lisp.el (defun-prompt-regexp)
15410 (parens-require-spaces, buffer-end, end-of-defun)
15411 (insert-parentheses): Doc fixes.
15412
15413 2005-04-08 Kim F. Storm <storm@cua.dk>
15414
15415 * comint.el (comint-highlight-prompt): Fix face spec.
15416 * hi-lock.el (hi-green): Likewise.
15417
15418 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
15419
15420 * cus-edit.el (custom-modified-face):
15421 * comint.el (comint-highlight-input): Fix previous changes.
15422 * term.el (term-handle-ansi-escape): Add a comment.
15423
15424 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
15425
15426 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
15427 in the buffer and in whitespace-highlighted-space.
15428 (whitespace-unhighlight-the-space): Simplify.
15429 (whitespace-buffer): Simplify.
15430
15431 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
15432
15433 * textmodes/table.el (table-cell-face): Add special case for
15434 displays supporting a high number of colors.
15435 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
15436 (vhdl-font-lock-reserved-words-face)
15437 (vhdl-speedbar-architecture-face)
15438 (vhdl-speedbar-instantiation-face)
15439 (vhdl-speedbar-architecture-selected-face)
15440 (vhdl-speedbar-instantiation-selected-face): Likewise.
15441 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
15442 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
15443 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
15444 (ebrowse-root-class-face, ebrowse-member-attribute-face)
15445 (ebrowse-progress-face): Likewise.
15446 * progmodes/compile.el (compilation-info-face): Likewise.
15447 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
15448 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
15449 * calendar/calendar.el (diary-face): Likewise.
15450 * woman.el (woman-italic-face, woman-bold-face)
15451 (woman-unknown-face): Likewise.
15452 * wid-edit.el (widget-button-pressed-face): Likewise.
15453 * whitespace.el (whitespace-highlight-face): Likewise.
15454 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
15455 * pcvs-info.el (cvs-marked-face): Likewise.
15456 * info.el (info-xref): Likewise.
15457 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
15458 * hilit-chg.el (highlight-changes-face)
15459 (highlight-changes-delete-face): Likewise.
15460 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
15461 (hi-red-b): Likewise.
15462 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
15463 * font-lock.el (font-lock-keyword-face)
15464 (font-lock-function-name-face, font-lock-warning-face): Likewise.
15465 * cus-edit.el (custom-invalid-face, custom-modified-face)
15466 (custom-set-face, custom-changed-face, custom-variable-tag-face)
15467 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
15468 * comint.el (comint-highlight-prompt): Likewise.
15469
15470 2005-04-08 Lute Kamstra <lute@gnu.org>
15471
15472 * font-lock.el (font-lock-keywords): Docstring fixes.
15473
15474 2005-04-08 Kenichi Handa <handa@m17n.org>
15475
15476 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
15477 chars are more than a limit, print " and more..." at the tail.
15478
15479 2005-04-08 Kim F. Storm <storm@cua.dk>
15480
15481 * emacs-lisp/authors.el (authors-aliases): Update list.
15482 (authors-ignored-files): New list.
15483 (authors-fixed-entries): Fix typo.
15484 (authors-renamed-files-alist): Update list.
15485 (authors-add): Check authors-ignored-files.
15486
15487 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
15488
15489 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
15490 optional, to ensure backward compatibility.
15491
15492 2005-04-08 Stephen Eglen <stephen@gnu.org>
15493
15494 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
15495
15496 2005-04-08 Kim F. Storm <storm@cua.dk>
15497
15498 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
15499
15500 * mouse.el (mouse-on-link-p): Doc fix.
15501
15502 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
15503
15504 * ielm.el (ielm-prompt-read-only): Doc fix.
15505
15506 * comint.el (comint-prompt-read-only): Doc fix.
15507
15508 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
15509
15510 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
15511 ensure dired always handles wildcards passed to ffap.
15512 (find-file-at-point): Use it.
15513 (ffap-dired-wildcards): Doc fix.
15514
15515 2005-04-07 Juri Linkov <juri@jurta.org>
15516
15517 * simple.el (next-error-overlay-arrow-position): New defvar.
15518 Put "=>" on its property `overlay-arrow-string'. Add it to
15519 `overlay-arrow-variable-list'.
15520
15521 * progmodes/compile.el (compilation-setup):
15522 Set `next-error-overlay-arrow-position' to nil. Also set it to
15523 nil in the local hook `kill-buffer-hook'. Make local variable
15524 `overlay-arrow-string' and set it to "=>".
15525 (compilation-goto-locus): Set BOL position to
15526 `next-error-overlay-arrow-position' instead of
15527 `overlay-arrow-position'.
15528
15529 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
15530 locally instead of adding it to the global hook.
15531 (Info-kill-buffer): Move up.
15532
15533 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
15534
15535 * term/xterm.el (xterm-standard-colors): Update color values from
15536 xterm-200.
15537
15538 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
15539
15540 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
15541
15542 * fast-lock.el:
15543 * lazy-lock.el: Move them to the obsolete subdir.
15544
15545 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
15546
15547 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
15548 (wdired-add-replace-advice): Remove.
15549 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
15550
15551 2005-04-06 Kim F. Storm <storm@cua.dk>
15552
15553 * startup.el (command-line): Add --bare-bones alias for -Q.
15554
15555 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15556
15557 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
15558 create the startup fontset if a font specification ends with
15559 `mac-roman'.
15560
15561 2005-04-06 Lute Kamstra <lute@gnu.org>
15562
15563 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
15564 change.
15565
15566 * emacs-lisp/copyright.el (copyright-update-year): Replace the
15567 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
15568
15569 2005-04-05 Lute Kamstra <lute@gnu.org>
15570
15571 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
15572 (define-generic-mode): Ditto. Fix debug declaration.
15573
15574 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
15575 Put them in the generic-x group.
15576
15577 * calendar/timeclock.el (timeclock): Doc fix.
15578
15579 * generic.el (define-generic-mode): Don't use custom-current-group.
15580 Document default :group value.
15581 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
15582 (define-global-minor-mode): Don't use custom-current-group.
15583
15584 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
15585
15586 * startup.el (command-line-1): Display startup-echo-area-message
15587 when fancy splash screen is in use.
15588
15589 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
15590 (sh-escaped-newline): New face.
15591 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
15592 newline, and use sh-escaped-newline face.
15593
15594 * progmodes/tcl.el (tcl-escaped-newline): New face.
15595 (tcl-builtin-list): New variable.
15596 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
15597 newlines. Fix keywords subexpression number.
15598
15599 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
15600
15601 * textmodes/org.el (org-diary-default-entry): Fix call to
15602 `add-to-diary-entry'.
15603
15604 2005-04-05 Kim F. Storm <storm@cua.dk>
15605
15606 * ediff-init.el: Use (featurep 'xemacs).
15607
15608 2005-04-05 David Ponce <david@dponce.com>
15609
15610 * cus-edit.el (face): Derive from symbol widget. Display sample
15611 of the current face on the fly.
15612 (widget-face-sample-face-get, widget-face-notify): New functions.
15613 (widget-face-value-create): Remove.
15614
15615 * wid-edit.el (widget-field-end): Temporarily remove field
15616 narrowing before to call `get-char-property'.
15617
15618 2005-04-04 Jay Belanger <belanger@truman.edu>
15619
15620 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
15621 (math-read-subscripts): New variable.
15622 (math-read-preprocess-string): Process subscripts.
15623
15624 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
15625
15626 * comint.el (comint-prompt-read-only): Doc fix.
15627
15628 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
15629 `-1'. Doc fix.
15630
15631 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
15632
15633 * textmodes/org.el (org-insert-mode-line-in-empty-file):
15634 Change default value to nil.
15635
15636 2005-04-04 Lute Kamstra <lute@gnu.org>
15637
15638 * autorevert.el (auto-revert-mode): Specify :group.
15639 * battery.el (display-battery-mode): Specify :group.
15640 * diff-mode.el (diff-minor-mode): Specify :group.
15641 * font-core.el (font-lock-mode): Specify :group.
15642 * hl-line.el (hl-line-mode): Specify :group.
15643 * iimage.el (iimage): New customization group.
15644 (iimage-mode): Specify :group.
15645 * longlines.el (longlines-mode): Specify :group.
15646 * master.el: Don't require easy-mmode.
15647 (master): New customization group.
15648 (master-mode): Specify :group.
15649 * msb.el (msb-mode): Specify :group.
15650 * reveal.el (reveal-mode): Specify :group.
15651 * simple.el (next-error-follow-minor-mode): Specify :group.
15652 * smerge-mode.el (smerge-mode): Specify :group.
15653 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
15654 * emulation/cua-base.el (cua-mode): Specify :group.
15655 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
15656 * language/thai-util.el (thai-auto-composition-mode)
15657 (thai-word-mode): Specify :group.
15658 * mail/supercite.el (sc-minor-mode): Specify :group.
15659 * progmodes/cwarn.el (cwarn-mode): Specify :group.
15660 * progmodes/flymake.el (flymake-mode): Specify :group.
15661 * progmodes/glasses.el (glasses-mode): Specify :group.
15662 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
15663 * textmodes/enriched.el (enriched-mode): Specify :group.
15664 * textmodes/refill.el (refill-mode): Specify :group.
15665
15666 * add-log.el (change-log-font-lock-keywords): Names in
15667 parenthesized lists can contain spaces.
15668
15669 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
15670
15671 * startup.el (fancy-splash-text): Shorten default text of
15672 "Emacs Tutorial" line. Also, if the current language env
15673 indicates an available tutorial file other than TUTORIAL,
15674 extract its title and append it to the line in parentheses.
15675 (fancy-splash-insert): If arg is a thunk, funcall it.
15676
15677 2005-04-04 Jay Belanger <belanger@truman.edu>
15678
15679 * calc.el (calc-language-alist): Add tags to customization type.
15680
15681 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
15682
15683 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
15684 Doc fix.
15685
15686 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
15687
15688 * add-log.el (change-log-font-lock-keywords): The manual
15689 describing a Change Log entry, says: (...) "Aside from these
15690 header lines, every line in the change log starts with a space or
15691 a tab.". The font-lock was not highlighting lines started with
15692 spaces, added support for it.
15693
15694 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15695
15696 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
15697 (bibtex-generate-url-list): Update docstring accordingly. Put the
15698 complex example in the docstring.
15699 (bibtex-font-lock-url): Use pop.
15700
15701 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
15702
15703 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
15704
15705 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
15706
15707 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
15708
15709 * filesets.el (filesets-set-default): Doc fix.
15710
15711 2005-04-03 Lute Kamstra <lute@gnu.org>
15712
15713 * generic.el (define-generic-mode): Add argument to specify
15714 keywords for defcustom.
15715 (default-generic-mode): Specify :group.
15716
15717 * generic-x.el: Specify :group for all generic modes.
15718
15719 * desktop.el (desktop-no-desktop-file-hook)
15720 (desktop-after-read-hook): Doc fix.
15721
15722 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
15723
15724 * simple.el (visible-mode): Use explicit :group keyword.
15725 This changes the group of `visible-mode-hook' from paren-blinking
15726 to editing-basics.
15727
15728 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
15729
15730 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
15731 mailbox specifications as well as URLs.
15732 (rmail-insert-inbox-text): Remove unused conditional branches.
15733
15734 2005-04-01 Jay Belanger <belanger@truman.edu>
15735
15736 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
15737 (calc-gnuplot-print-command): Move definitions to calc.el.
15738
15739 * calc/calc-embed.el (calc-embedded-announce-formula)
15740 (calc-embedded-open-formula, calc-embedded-close-formula)
15741 (calc-embedded-open-word, calc-embedded-close-word)
15742 (calc-embedded-open-plain, calc-embedded-close-plain)
15743 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
15744 (calc-embedded-open-mode, calc-embedded-close-mode):
15745 Move definitions to calc.el.
15746
15747 * calc/calc.el (calc-settings-file, calc-language-alist):
15748 Make customizable.
15749 (calc-embedded-announce-formula, calc-embedded-open-formula)
15750 (calc-embedded-close-formula, calc-embedded-open-word)
15751 (calc-embedded-close-word, calc-embedded-open-plain)
15752 (calc-embedded-close-plain, calc-embedded-open-new-formula)
15753 (calc-embedded-close-new-formula, calc-embedded-open-mode)
15754 (calc-embedded-close-mode, calc-gnuplot-name)
15755 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
15756 from other files and make customizable.
15757
15758 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15759
15760 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
15761 Use buffer-live-p.
15762 (cvs-mode-run): Don't call cvs-update-header here.
15763 (cvs-run-process): Call cvs-update-header.
15764 Use process properties for cvs-postprocess and cvs-buffer so that
15765 the sentinel can behave better if the temp buffer is killed.
15766 Use a pipe rather than a tty, to better handle unexpected prompts.
15767 (cvs-sentinel): Rewrite. Call cvs-update-header.
15768
15769 2005-04-01 Andre Spiegel <spiegel@gnu.org>
15770
15771 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
15772 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
15773
15774 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15775
15776 * generic.el (define-generic-mode): Add indentation rule.
15777
15778 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
15779
15780 * files.el (mode-require-final-newline): Make Custom correctly
15781 report a nil value and allow to set it to nil via Custom.
15782 Doc fix.
15783
15784 2005-04-01 Kenichi Handa <handa@m17n.org>
15785
15786 * international/characters.el: Enable the correct case setting for
15787 dotless-i and dotted-I.
15788
15789 2005-04-01 Kim F. Storm <storm@cua.dk>
15790
15791 * ido.el (ido-file-internal): Fall back to non-ido command if
15792 initial directory is on slow ftp (or tramp) host.
15793
15794 2005-03-31 Richard M. Stallman <rms@gnu.org>
15795
15796 * emacs-lisp/autoload.el (make-autoload):
15797 Handle define-global-minor-mode.
15798
15799 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
15800 Rename from easy-mmode-define-global-mode.
15801 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
15802
15803 * progmodes/scheme.el (scheme-mode-syntax-table):
15804 Update syntax of | and # for two-character comment syntax.
15805
15806 2005-03-31 Lute Kamstra <lute@gnu.org>
15807
15808 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
15809 (define-minor-mode): Call custom-current-group at load-time.
15810
15811 * generic.el (define-generic-mode): Add debug declaration.
15812 Add defcustom for the mode hook.
15813 (generic-mode-internal): Use run-mode-hooks.
15814
15815 2005-03-31 Kim F. Storm <storm@cua.dk>
15816
15817 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
15818 (mouse-fixup-help-message): New defun called by show_help_echo
15819 to fixup mouse-2 prefix in help messages when applicable.
15820
15821 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
15822
15823 2005-03-31 Kenichi Handa <handa@m17n.org>
15824
15825 * language/thai-word.el (thai-find-word-ends): Pay attention to
15826 the case that we reach the end of buffer.
15827
15828 * textmodes/fill.el (fill-text-properties-at): New function.
15829 (fill-newline): Use fill-text-properties-at instead of
15830 text-properties-at.
15831
15832 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
15833
15834 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
15835 not comint-quote-filename.
15836
15837 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
15838
15839 * help-fns.el (help-with-tutorial): Revert last change.
15840
15841 2005-03-31 Kim F. Storm <storm@cua.dk>
15842
15843 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
15844
15845 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
15846
15847 * calendar/cal-china.el: Update reference to "Calendrical
15848 Calculations" book; there's a new edition.
15849 * calendar/cal-coptic.el: Likewise.
15850 * calendar/cal-french.el: Likewise.
15851 * calendar/cal-hebrew.el: Likewise.
15852 * calendar/cal-islam.el: Likewise.
15853 * calendar/cal-iso.el: Likewise.
15854 * calendar/cal-julian.el: Likewise.
15855 * calendar/cal-mayan.el: Likewise.
15856 * calendar/cal-persia.el: Likewise.
15857 * calendar/calendar.el: Likewise.
15858 * calendar/holidays.el: Likewise.
15859 * calendar/lunar.el: Likewise.
15860 * calendar/solar.el: Likewise.
15861
15862 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
15863 white space from doc string.
15864
15865 2005-03-30 Jay Belanger <belanger@truman.edu>
15866
15867 * calc/calc-help.el (calc-full-help): Remove email address.
15868
15869 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
15870
15871 * help-fns.el (help-with-tutorial): Delete title line.
15872
15873 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
15874
15875 * calendar/cal-x.el (calendar-one-frame-setup)
15876 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
15877 rather than `symbol' for set-window-dedicated-p.
15878
15879 * calendar/appt.el (appt-buffer-name): Make it a constant.
15880 (appt-add): Doc fix.
15881
15882 * filesets.el (filesets-menu-path, filesets-menu-before)
15883 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
15884 (filesets-menu-cache-file): Use directory ~/.emacs.d.
15885 (filesets-add-submenu): Delete and use add-submenu instead.
15886
15887 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
15888
15889 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
15890 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
15891 (org-diary-default-entry): New function.
15892 (org-get-entries-from-diary): Better parsing of diary entries.
15893 (org-agenda-check-no-diary): New function.
15894 ("diary-lib"): Advice to function `add-to-diary-list', to allow
15895 linking to diary entries.
15896 (org-agenda-execute-calendar-command): New function.
15897 (org-agenda): Improve visible section in window.
15898 Use `org-fit-agenda-window'.
15899 (org-fit-agenda-window): New option.
15900 (org-move-subtree-down): Better handling of empty lines
15901 at end of subtree.
15902 (org-cycle): Numeric prefix is interpreted now as show-subtree N
15903 levels up.
15904 (org-fontify-done-headline): New option.
15905 (org-headline-done-face): New face.
15906 (org-set-font-lock-defaults): Use `org-headline-done-face'.
15907 (org-table-copy-down): Rename from `org-table-copy-from-above'.
15908 When current field is non-empty, it is copied to next row.
15909 (org-table-copy-from-above): Fix bug which made it
15910 impossible to copy fields containing only a single non-white character.
15911
15912 2005-03-30 Kim F. Storm <storm@cua.dk>
15913
15914 * kmacro.el (kmacro-end-macro): Isearch may store this command
15915 into the macro -- so ignore it when executing keyboard macro.
15916
15917 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
15918
15919 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
15920
15921 2005-03-29 Kenichi Handa <handa@m17n.org>
15922
15923 * language/thai.el ("Thai"): Set setup-function and exit-function
15924 for Thai language environment.
15925
15926 * language/thai-util.el: Require thai-word.
15927 (thai-word-mode-map): New variable.
15928 (thai-word-mode): New minor mode.
15929 (setup-thai-language-environment-internal): New function.
15930 (exit-thai-language-environment-internal): New function.
15931
15932 * language/thai-word.el (thai-word-table): Declare it by defvar,
15933 use dolist to initialize it.
15934 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
15935 (thai-fill-find-break-point): New functions.
15936
15937 2005-03-29 Richard M. Stallman <rms@gnu.org>
15938
15939 * simple.el (idle-update-delay): Move definition up.
15940 (set-mark): Doc fix.
15941
15942 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
15943
15944 * longlines.el: New file.
15945
15946 * simple.el (buffer-substring-filters): New variable.
15947 (filter-buffer-substring): New function.
15948 (kill-region, copy-region-as-kill): Use it.
15949
15950 * register.el (copy-to-register, append-to-register)
15951 (prepend-to-register): Use filter-buffer-substring.
15952
15953 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
15954
15955 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
15956 (gud-filter-pending-text): Move in front of gdb.
15957 (gud-overlay-arrow-position): New variable.
15958 (gud-sentinel, gud-display-line): Use it in place of
15959 overlay-arrow-position.
15960
15961 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
15962
15963 * progmodes/fortran.el (fortran-if-indent): Doc fix.
15964 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
15965 (fortran-font-lock-keywords-4): New variable.
15966 (fortran-blocks-re, fortran-end-block-re)
15967 (fortran-start-block-re): New constants, for hideshow.
15968 (hs-special-modes-alist): Add a Fortran entry.
15969 (fortran-mode-map): Bind fortran-end-of-block,
15970 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
15971 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
15972 (fortran-looking-at-if-then, fortran-end-of-block)
15973 (fortran-beginning-of-block): New functions, for hideshow.
15974
15975 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
15976 Doc fix. Tweak regexp.
15977 (f90-beginning-of-block): Push mark first.
15978
15979 2005-03-29 Jay Belanger <belanger@truman.edu>
15980
15981 * calc/calc.el: Update copyright date.
15982 (calc-version): Increase to 2.1.
15983 (calc-version-date): Remove.
15984
15985 * calc/calc-help.el: Update copyright date.
15986 (calc-full-help): Remove reference to calc-version-date.
15987 Update copyright date.
15988
15989 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
15990
15991 * vc.el (vc-do-command): Use a pipe for async processes, so password
15992 prompts don't show up at places where the user can't reply.
15993
15994 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
15995
15996 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
15997 on the file name we pass to the inferior shell.
15998
15999 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
16000
16001 * progmodes/which-func.el (which-function): Be robust in the face of an
16002 imenu--make-index-alist failure.
16003
16004 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
16005
16006 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
16007
16008 * progmodes/python.el (python-preoutput-filter): Fix last change.
16009
16010 2005-03-29 Lute Kamstra <lute@gnu.org>
16011
16012 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
16013 functions and compiled macros.
16014 (debug-convert-byte-code): Handle macros too.
16015 (debug-on-entry-1): Don't signal an error when trying to clear a
16016 function that is not set to debug on entry.
16017
16018 2005-03-29 Jay Belanger <belanger@truman.edu>
16019
16020 * calc/calc-lang.el: Add functions to math-function-table
16021 properties of tex and math.
16022
16023 2005-03-29 Kenichi Handa <handa@m17n.org>
16024
16025 * ps-mule.el (ps-mule-plot-string): Translate characters by
16026 ps-print-translation-table.
16027 (ps-mule-begin-job): Call find-charset-region/string with
16028 ps-print-translation-table.
16029 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
16030
16031 * ps-print.el (ps-print-translation-table): New variable.
16032 (ps-plot-region): Translate characters by ps-print-translation-table.
16033
16034 2005-03-29 Juri Linkov <juri@jurta.org>
16035
16036 * simple.el (next-error-highlight-timer): New variable.
16037
16038 * progmodes/compile.el (compilation-goto-locus):
16039 Use `next-error-highlight-timer' instead of `sit-for'.
16040
16041 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16042
16043 * mail/supercite.el (sc-mail-field): Use assoc-string.
16044 (sc-get-address): Simplify regexps.
16045
16046 * files.el (minibuffer-with-setup-hook): New macro.
16047 (find-file-read-args): Use it to avoid let-binding
16048 minibuffer-with-setup-hook (which breaks turning on/off
16049 file-name-shadow-mode while in the prompt).
16050
16051 * complete.el (PC-read-include-file-name-internal):
16052 Use test-completion.
16053
16054 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
16055
16056 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
16057
16058 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16059
16060 * window.el (window-buffer-height): Use count-screen-lines.
16061
16062 * progmodes/python.el (python-preoutput-leftover): New var.
16063 (python-preoutput-filter): Use it.
16064 (python-send-receive): Loop until all the result has been received.
16065
16066 2005-03-28 Juri Linkov <juri@jurta.org>
16067
16068 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
16069
16070 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
16071 "Recover Crashed Session".
16072 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
16073 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
16074 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
16075 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
16076 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
16077 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
16078 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
16079 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
16080
16081 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
16082 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
16083 Ediff Sessions", "Toggle use of separate control buffer frame",
16084 "Use separate frame for Ediff control buffer".
16085
16086 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
16087 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
16088 "Rename Bookmark", "Delete Bookmark".
16089
16090 * info.el (Info-mode-menu): Remove ellipsis from "Index".
16091 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
16092 Add `:active Info-index-alternatives' to "Next Matching Item".
16093
16094 * wdired.el (wdired-change-to-wdired-mode):
16095 Mention `wdired-abort-changes' key in the initial message.
16096
16097 * international/mule.el (auto-coding-alist): Associate non-ascii
16098 image filename extensions with `no-conversion'.
16099
16100 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
16101
16102 * international/iso-acc.el:
16103 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
16104
16105 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
16106
16107 * textmodes/sgml-mode.el (html-mode): Doc update.
16108
16109 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
16110
16111 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
16112
16113 * term.el (term-move-columns): Fix face after extending a line.
16114 (term-insert-spaces): Likewise.
16115 (term-reset-terminal): Fix off by one error.
16116
16117 2005-03-26 Eli Zaretskii <eliz@gnu.org>
16118
16119 * international/mule.el (auto-coding-alist): Add .xpi files.
16120
16121 * files.el (auto-mode-alist): Add .xpi files.
16122
16123 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
16124
16125 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
16126
16127 2005-03-26 Eli Zaretskii <eliz@gnu.org>
16128
16129 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
16130
16131 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
16132
16133 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
16134 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
16135
16136 * calendar/cal-move.el (calendar-beginning-of-year): Move the
16137 cursor to Jan 1 when needed.
16138 (calendar-end-of-year): Fix -/+ typo.
16139 Reported by Chong Yidong <cyd@stupidchicken.com>.
16140
16141 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
16142
16143 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
16144
16145 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
16146 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
16147
16148 2005-03-25 Richard M. Stallman <rms@gnu.org>
16149
16150 * filesets.el (filesets-init): Add autoload.
16151
16152 * mail/mailalias.el (mail-directory): Doc fix.
16153
16154 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
16155
16156 * mail/mailalias.el (mail-directory-process): Do nothing if
16157 mail-directory-process is an atom.
16158 (mail-get-names): Ignore mail-directory-names if it is an atom.
16159 (mail-directory-process defvar): Doc fix.
16160 (mail-names): Doc fix.
16161
16162 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
16163
16164 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
16165
16166 2005-03-26 Kenichi Handa <handa@m17n.org>
16167
16168 * international/mule-util.el (detect-coding-with-priority):
16169 Call update-coding-systems-internal before detect-coding-region.
16170
16171 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
16172
16173 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
16174 (gdb-frames-mode-map): Add follow-link property.
16175
16176 2005-03-25 Jay Belanger <belanger@truman.edu>
16177
16178 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
16179 for variables.
16180
16181 2005-03-25 Juri Linkov <juri@jurta.org>
16182
16183 * image-mode.el: Optimize image filename extension regexps in
16184 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
16185 in `auto-mode-alist'.
16186 (image-mode): Add `image-toggle-display-text' to local hook
16187 `change-major-mode-hook'. Display the image as an image by
16188 default. Set `cursor-type' and `truncate-lines' if the image
16189 is already displayed. Take into account the current mode (image
16190 or text) in message.
16191 (image-minor-mode): New minor mode.
16192 (image-mode-maybe, image-toggle-display-text): New functions.
16193 (image-toggle-display): Use called-interactively-p.
16194 Let-bind `inhibit-read-only' to t.
16195
16196 * image-mode.el (image-minor-mode): Set `cursor-type' and
16197 `truncate-lines' if the image is already displayed. Add turning
16198 image-minor-mode off to `change-major-mode-hook'. Add message.
16199 Call `image-toggle-display-text' after turning image-minor-mode off.
16200
16201 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
16202
16203 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
16204 Terminal.app, use utf-8.
16205 (set-display-table-and-terminal-coding-system): Add coding-system arg.
16206 (set-locale-environment): Use it.
16207
16208 * term/xterm.el: Undo last change, better done in mule-cmds.el.
16209
16210 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
16211
16212 * progmodes/python.el (python-close-block-statement-p)
16213 (python-outdent-p, python-current-defun): Use symbol-end.
16214
16215 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
16216
16217 * files.el (save-some-buffers): Doc fix.
16218
16219 2005-03-25 Werner Lemberg <wl@gnu.org>
16220
16221 * complete.el, thumbs.el: Replace `legal' with `valid'.
16222 * calendar/calendar.el: Replace `legal' with `valid'.
16223 * emacs-lisp/advice.el: Replace `legal' with `valid'.
16224 * mail/supercite.el: Replace `legal' with `valid'.
16225 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
16226 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
16227 Replace `legal' with `valid'.
16228 * textmodes/reftex-vars.el, textmodes/reftex.el:
16229 Replace `legal' with `valid'.
16230
16231 2005-03-25 Werner Lemberg <wl@gnu.org>
16232
16233 * calc/calc-forms.el, calc/calc-sel.el:
16234 * midnight.el, vc-cvs.el:
16235 * emacs-lisp/cl-macs.el:
16236 * emulation/vip.el:
16237 * eshell/esh-io.el, eshell/esh-var.el:
16238 * mail/supercite.el:
16239 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
16240 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
16241 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
16242 * progmodes/sh-script.el, progmodes/xscheme.el:
16243 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
16244 * textmodes/reftex-index.el, textmodes/reftex-parse.el
16245 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
16246 * textmodes/reftex.el, textmodes/org.el:
16247 Replace `illegal' with `invalid'.
16248
16249 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
16250
16251 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
16252 (flymake-find-buildfile, flymake-find-possible-master-files)
16253 (flymake-check-include, flymake-parse-line): Replace loops over the
16254 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
16255
16256 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
16257 Substitute file-name-as-directory in the rest of the file.
16258 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
16259 (flymake-replace-region): Remove unused arg `buffer'.
16260 (flymake-check-patch-master-file-buffer): Update calls to it.
16261 (flymake-add-err-info): Remove unused var `count'.
16262 (flymake-mode): Use define-minor-mode.
16263
16264 * progmodes/flymake.el: Use with-current-buffer.
16265 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
16266 flymake-replace-regexp-in-string, flymake-line-beginning-position)
16267 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
16268 Avoid testing for `xemacs'.
16269 (flymake-nop): Move.
16270 (flymake-region-has-flymake-overlays): Return the computed value.
16271 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
16272 Remove unused var `endline'.
16273 (flymake-get-line-count): Remove unused function.
16274 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
16275
16276 * emulation/vi.el:
16277 * generic.el:
16278 * hilit-chg.el (global-highlight-changes):
16279 * hi-lock.el (hi-lock-mode):
16280 * follow.el: find-file-hooks -> find-file-hook.
16281
16282 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
16283
16284 2005-03-24 Juri Linkov <juri@jurta.org>
16285
16286 * dired.el (dired-mode-map): Add menu item "Compare directories"
16287 for dired-compare-directories.
16288
16289 * dired-aux.el (dired-compare-directories): Add autoload cookie.
16290 Doc fix. Replace `read-file-name' with `read-directory-name'.
16291
16292 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
16293
16294 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
16295
16296 2005-03-24 Jay Belanger <belanger@truman.edu>
16297
16298 * calc/calc-embed.el (calc-embedded-mode-change): Save all
16299 relevant mode settings in calc-embedded-original-modes when modes
16300 are permanently changed.
16301
16302 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
16303
16304 * autoinsert.el: find-file-hooks -> find-file-hook.
16305
16306 2005-03-24 Lute Kamstra <lute@gnu.org>
16307
16308 * generic.el (generic-font-lock-defaults): Make it obsolete.
16309 (generic-font-lock-keywords): New variable to replace
16310 generic-font-lock-defaults.
16311 (generic-mode-set-font-lock): Delete it.
16312 (generic-mode-internal): Don't call generic-mode-set-font-lock.
16313 (generic-bracket-support): Add docstring.
16314
16315 * generic-x.el: Rename generic-font-lock-defaults to
16316 generic-font-lock-keywords throughout.
16317 (mailagent-rules-setup-function): Delete it.
16318 (mailagent-rules-generic-mode): Use anonymous function instead.
16319 (show-tabs-generic-mode-font-lock-defaults-1)
16320 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
16321 Quote faces.
16322 (show-tabs-tab-face, show-tabs-space-face): Specify background,
16323 not foreground.
16324
16325 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
16326 Recognize define-generic-mode.
16327
16328 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
16329
16330 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
16331 if there's no completion table.
16332
16333 2005-03-23 Miles Bader <miles@gnu.org>
16334
16335 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
16336 Remove tty-specific variants, as they're no longer needed.
16337
16338 2005-03-23 Lute Kamstra <lute@gnu.org>
16339
16340 * generic-x.el: Code cleanup: make args constant whenever possible.
16341 (installshield-statement-keyword-list)
16342 (installshield-system-functions-list)
16343 (installshield-system-variables-list, installshield-types-list)
16344 (installshield-funarg-constants-list): Make them constants.
16345
16346 * generic.el (generic-make-keywords-list): Add autoload cookie.
16347
16348 * calendar/time-date.el: Add comment on time value formats.
16349 Don't require parse-time.
16350 (with-decoded-time-value): New macro.
16351 (encode-time-value): New function.
16352 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
16353 (days-to-time): Return a valid time value when arg is huge.
16354 (time-since): Use time-subtract.
16355 (time-to-number-of-days): Use time-to-seconds.
16356
16357 2005-03-23 David Ponce <david@dponce.com>
16358
16359 * recentf.el: (recentf-keep): New option.
16360 (recentf-menu-action): Default to `find-file'.
16361 (recentf-keep-non-readable-files-flag)
16362 (recentf-keep-non-readable-files-p)
16363 (recentf-file-readable-p, recentf-find-file)
16364 (recentf-cleanup-remote): Remove.
16365 (recentf-include-p): More robust.
16366 (recentf-keep-p): New function.
16367 (recentf-remove-if-non-kept): Rename from
16368 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
16369 All callers updated.
16370 (recentf-menu-items-for-commands): Fix help string.
16371 (recentf-track-closed-file): Update. Doc fix.
16372 (recentf-cleanup): Update. Count removed files. Doc fix.
16373
16374 2005-03-23 Kim F. Storm <storm@cua.dk>
16375
16376 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
16377 Don't inherit from fringe face (now happens automatically).
16378
16379 2005-03-22 Kim F. Storm <storm@cua.dk>
16380
16381 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
16382 position values.
16383
16384 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
16385
16386 * menu-bar.el (showhide-date-time): Remove.
16387 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
16388 (menu-bar-make-mm-toggle): Simplify.
16389
16390 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
16391
16392 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
16393 Accept qualified variable and function names.
16394
16395 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
16396
16397 * bindings.el (completion-ignored-extensions):
16398 Remove ".lis" for `vax-vms'.
16399
16400 2005-03-22 Andreas Schwab <schwab@suse.de>
16401
16402 * generic-x.el: Revert last change.
16403 * ldefs-boot.el: Update.
16404
16405 2005-03-22 Jay Belanger <belanger@truman.edu>
16406
16407 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
16408 (calc-embedded-save-original-modes)
16409 (calc-embedded-restore-original-modes): New functions.
16410 (calc-do-embedded): Save original modes when entering embedded mode
16411 and restore when leaving embedded mode.
16412 (calc-embedded-modes-change): Change the value of
16413 calc-embedded-original-modes to reflect permanent changes.
16414
16415 2005-03-22 Lute Kamstra <lute@gnu.org>
16416
16417 * generic-x.el: Require generic again.
16418
16419 2005-03-22 Miles Bader <miles@gnu.org>
16420
16421 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
16422 Tweak details to look good on both ttys and bitmap displays, light
16423 or dark background, etc.
16424
16425 2005-03-21 Kim F. Storm <storm@cua.dk>
16426
16427 * tooltip.el (tooltip-show-help-function): Check car and cdr of
16428 mouse position.
16429
16430 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
16431
16432 * icomplete.el: Don't forcibly turn on the mode upon load.
16433 (icomplete-mode): Use define-minor-mode.
16434 (icomplete-eoinput): Default to nil.
16435 (icomplete-minibuffer-setup): Remove autoload.
16436 (icomplete-tidy): Simplify.
16437 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
16438 in the initial state or if the user has modified the field.
16439 Fix handling of icomplete-max-delay-chars.
16440 Remove code that handles the oddball case where
16441 minibuffer-completion-table is an integer.
16442 Wrap icomplete-completions in while-no-input in case building
16443 completions takes more time than expected.
16444 (icomplete-completions): Simplify.
16445
16446 2005-03-21 Richard M. Stallman <rms@gnu.org>
16447
16448 * jka-compr.el (jka-compr-really-do-compress):
16449 Make variable buffer-local.
16450
16451 * image-mode.el: Handle .xpm files too.
16452 (image-toggle-display): Preserve modification flag.
16453
16454 * help.el (where-is): Don't mention aliases with no key bindings.
16455
16456 2005-03-21 Lute Kamstra <lute@gnu.org>
16457
16458 * generic.el: Fix commentary section. Don't require cl for
16459 compilation.
16460 (generic-mode-list): Add autoload cookie.
16461 (generic-use-find-file-hook, generic-lines-to-scan)
16462 (generic-find-file-regexp, generic-ignore-files-regexp)
16463 (generic-mode, generic-mode-find-file-hook)
16464 (generic-mode-ini-file-find-file-hook): Fix docstrings.
16465 (define-generic-mode): Make it a defmacro. Fix docstring.
16466 (generic-mode-internal): Code cleanup. Add autoload cookie.
16467 (generic-mode-set-comments): Code cleanup.
16468 * generic-x.el: Don't prevent compilation. Don't require generic.
16469 Follow coding conventions. Minor code cleanup.
16470 (etc-fstab-generic-mode): Add some keywords.
16471 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
16472 define-generic-mode like a function declaration.
16473
16474 2005-03-21 Jay Belanger <belanger@truman.edu>
16475
16476 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
16477 changing modes.
16478
16479 2005-03-21 Sam Steingold <sds@gnu.org>
16480
16481 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
16482
16483 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
16484
16485 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
16486 Add underscore to "f$ lexicals" regexp.
16487
16488 2005-03-20 Juri Linkov <juri@jurta.org>
16489
16490 * subr.el (progress-reporter-do-update): When `min-value' is equal
16491 to `max-value', set `percentage' to 0 and prevent division by zero.
16492
16493 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
16494
16495 Sync with Tramp 2.0.48.
16496
16497 * net/tramp.el (all): Change all addresses to .gnu.org.
16498 (tramp-append-tramp-buffers): New defun.
16499 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
16500 Catch `dont-send' signal.
16501 (tramp-set-auto-save-file-modes): Set always permissions, because
16502 there might be an old auto-saved file belonging to another
16503 original file. This could be a security threat. Reported by
16504 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
16505 Check for Emacs 21.3.50 removed.
16506
16507 * net/tramp-smb.el (all): Remove debug construct for
16508 `with-parsed-tramp-file-name'.
16509 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
16510 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
16511 No error message if DIRECTORY or FILENAME doesn't exist.
16512 (tramp-smb-open-connection): Check existence of
16513 `tramp-smb-program'.
16514
16515 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
16516
16517 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
16518 Properly handle the case where the `m' or `s' command's argument is not
16519 yet terminated.
16520 (perl-indent-new-calculate): New function.
16521 (perl-indent-line): Use it.
16522
16523 2005-03-20 Miles Bader <miles@gnu.org>
16524
16525 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
16526 in text-mode too. Change to new face names.
16527 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
16528 Add `:weight bold' attribute.
16529 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
16530
16531 2005-03-19 Juri Linkov <juri@jurta.org>
16532
16533 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
16534
16535 * international/mule.el (auto-coding-alist): Sync with
16536 `auto-mode-alist' by adding upper case archive file extensions
16537 and adding ear/war to jar extension.
16538
16539 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
16540
16541 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
16542 running, restart it.
16543
16544 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
16545
16546 * finder.el (finder-current-item): Throw an error on an empty line.
16547
16548 * man.el (Man-follow-manual-reference): If current-word returns
16549 nil, use "".
16550
16551 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
16552
16553 * simple.el (goto-line): Doc fix.
16554
16555 2005-03-19 Aaron Hawley <Aaron.Hawley@uvm.edu> (tiny change)
16556
16557 * files.el (save-buffer): Doc fix.
16558
16559 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
16560
16561 * recentf.el (recentf-cleanup-remote): New variable.
16562 (recentf-cleanup): Use it to conditionally check availability of
16563 remote files.
16564
16565 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
16566
16567 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
16568 function names.
16569
16570 2005-03-19 Eli Zaretskii <eliz@gnu.org>
16571
16572 * language/thai-word.el: New file.
16573
16574 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
16575
16576 * files.el (backup-buffer): If the file's directory is not
16577 writable, use copy instead of move to backup the file.
16578
16579 2005-03-19 Eli Zaretskii <eliz@gnu.org>
16580
16581 * obsolete/keyswap.el: Moved to obsolete/ from term/.
16582
16583 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
16584
16585 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
16586 Use functionp instead of symbolp and fboundp. Reported by Drkm
16587 <darkman_spam@yahoo.fr>.
16588 (ps-print-version): New version 6.6.6.
16589
16590 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
16591
16592 * textmodes/table.el (table--line-column-position): New idiom.
16593 (table--row-column-insertion-point-p): New function to test
16594 validity of row and column insertion operation at a location.
16595 (table-global-menu, table-cell-menu): Use above functions for
16596 deterministic test operation.
16597 (table--editable-cell-p): Behave in deterministic fashion.
16598
16599 2005-03-18 Juri Linkov <juri@jurta.org>
16600
16601 * isearch.el (isearch-lazy-highlight-new-loop):
16602 Make arguments beg and end optional.
16603 (isearch-update): Remove optional arguments nil from
16604 isearch-lazy-highlight-new-loop.
16605 (isearch-lazy-highlight-search): Let-bind case-fold-search to
16606 isearch-lazy-highlight-case-fold-search instead of
16607 isearch-case-fold-search, and let-bind isearch-regexp to
16608 isearch-lazy-highlight-regexp.
16609 Use isearch-lazy-highlight-last-string instead of isearch-string.
16610
16611 * replace.el (perform-replace): Remove bindings of global
16612 variables isearch-string, isearch-regexp, isearch-case-fold-search.
16613 Add three new arguments to `replace-highlight'.
16614 (replace-highlight): Add arguments string, regexp, case-fold.
16615 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
16616 to allow isearch-lazy-highlight-new-loop to use these values
16617 to set corresponding isearch-lazy-highlight-* internal
16618 variables whose values lazy highlighting will use regardless of
16619 changes to global variables isearch-string, isearch-regexp,
16620 isearch-case-fold-search during lazy highlighting loop.
16621 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
16622 to `lazy-highlight-cleanup'.
16623
16624 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
16625 (ispell-highlight-face): Set default face to `isearch' when
16626 lazy highlighting is enabled.
16627 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
16628 priority to 1. Add lazy highlighting.
16629 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
16630 from `isearch-dehighlight'.
16631
16632 2005-03-18 David Ponce <david@dponce.com>
16633
16634 * files.el (hack-local-variables): Do a case-insensitive search
16635 for End.
16636
16637 2005-03-18 Juri Linkov <juri@jurta.org>
16638
16639 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
16640 `isearch-lazy-highlight-cleanup', add alias to old name and
16641 declare obsolete. Add release numbers to other obsolete vars.
16642 (isearch-done, isearch-lazy-highlight-new-loop):
16643 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
16644 (lazy-highlight-cleanup) <variable>: Doc fix.
16645 (isearch-lazy-highlight-update): Rename obsolete
16646 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
16647
16648 2005-03-18 Kenichi Handa <handa@m17n.org>
16649
16650 * language/thai-util.el: Fix categorization of Thai characters in
16651 thai-category-table.
16652 (thai-composition-pattern): Adjust it for the above change.
16653 (thai-self-insert-command, thai-compose-syllable): New functions.
16654 (thai-compose-region): Use thai-compose-syllable.
16655 (thai-compose-string): Likewise.
16656 (thai-composition-function): Likewise.
16657 (thai-auto-composition): New function.
16658 (thai-auto-composition-mode): New minor mode.
16659
16660 * language/thai.el: Fix patterns to be registered in
16661 composition-function-table.
16662
16663 * international/quail.el (quail-input-method): Locally bind
16664 inhibit-modification-hooks to t.
16665
16666 2005-03-17 Richard M. Stallman <rms@gnu.org>
16667
16668 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
16669 (perl-mode): Use run-mode-hooks.
16670
16671 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
16672 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
16673 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
16674
16675 * mail/sendmail.el (sendmail-send-it): Reenable the code
16676 to compute resend-to-address and use it.
16677
16678 * tar-mode.el (tar-mode): Turn off undo unconditionally.
16679
16680 * image-mode.el: New file.
16681
16682 * image.el (insert-sliced-image): Add autoload cookie.
16683
16684 * font-lock.el (font-lock-lines-before): New user option.
16685 (font-lock-after-change-function): Obey it.
16686
16687 * bindings.el (esc-map): Make M-g a prefix.
16688 Bind M-g g and M-g M-g to goto-line.
16689
16690 * faces.el (face-id): Doc fix.
16691
16692 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
16693
16694 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
16695 (rmail-show-message): Use rmail-unknown-mail-followup-to.
16696 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
16697
16698 * mail/sendmail.el (mail-yank-ignored-headers)
16699 (mail-font-lock-keywords, mail-mode-fill-paragraph):
16700 Add Mail-Followup-To and Mail-Reply-To headers.
16701 (mail-citation-hook): Add autoload cookie.
16702 (mail-mode): Doc fix.
16703 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
16704 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
16705 (mail-mode-fill-paragraph): Handle those headers.
16706 (mail-mailing-lists): New variable.
16707 (mail-mail-reply-to, mail-mail-followup-to): New functions.
16708
16709 2005-03-17 Juri Linkov <juri@jurta.org>
16710
16711 * isearch.el (isearch-fallback): Check for `(car previous)'
16712 before calling `isearch-other-end-state'.
16713
16714 2005-03-17 Kim F. Storm <storm@cua.dk>
16715
16716 * simple.el (move-beginning-of-line): Move to beginning of buffer
16717 line, as well as beginning of screen line.
16718
16719 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
16720
16721 * calendar/diary-lib.el (mark-diary-entries): Use new optional
16722 argument REDRAW rather than calendar-redrawing variable.
16723 * calendar/calendar.el (calendar-redrawing): Delete.
16724 (redraw-calendar): Do not bind calendar-redrawing.
16725
16726 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
16727
16728 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
16729 diary-file buffer.
16730
16731 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
16732
16733 * help.el (describe-mode): Allow a :minor-mode-function property to
16734 specify a different minor mode toggle function than the variable.
16735 * simple.el (auto-fill-function):
16736 * subr.el (add-minor-mode): Use it.
16737
16738 2005-03-16 Kenichi Handa <handa@m17n.org>
16739
16740 * language/ethio-util.el (sera-being-called-by-w3): New variable.
16741 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
16742 (ethio-fidel-to-sera-buffer): Likewise.
16743
16744 2005-03-16 Juri Linkov <juri@jurta.org>
16745
16746 * emacs-lisp/find-func.el (find-function-regexp):
16747 Add defun-emitting macro `menu-bar-make-toggle'.
16748
16749 * isearch.el: Put `isearch-scroll' property to
16750 `split-window-horizontally'.
16751
16752 * info.el: Update error messages for `debug-ignored-errors'.
16753 (Info-isearch-search): Doc fix.
16754 (Info-find-node): Move up code to go into info buffer before
16755 recording the node to the history.
16756 (Info-fontify-node): Fontify titles only if the next line
16757 has two or more `*', `=', `-', `.'.
16758 Display "go to this node" for empty (match-string 3).
16759
16760 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16761
16762 * term/mac-win.el: Add mouse pointer shape constants.
16763
16764 2005-03-15 Kim F. Storm <storm@cua.dk>
16765
16766 * simple.el (move-beginning-of-line): Use vertical-motion.
16767
16768 2005-03-15 Juri Linkov <juri@jurta.org>
16769
16770 * isearch.el (isearch-error): New variable.
16771 (isearch-invalid-regexp, isearch-within-brackets): Remove.
16772 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
16773 (isearch-within-brackets-state): Remove.
16774 (isearch-case-fold-search-state, isearch-pop-fun-state):
16775 Decrease frame index.
16776 (isearch-mode, isearch-top-state, isearch-push-state)
16777 (isearch-edit-string, isearch-abort, isearch-search-and-update)
16778 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
16779 (isearch-search, isearch-lazy-highlight-new-loop):
16780 Replace `isearch-invalid-regexp' with `isearch-error'.
16781 Remove `isearch-within-brackets'.
16782 (isearch-search): Add `search-failed' handler to `condition-case'.
16783 (isearch-lazy-highlight-search): Add `condition-case' to catch
16784 errors and allow `isearch-lazy-highlight-update' to try
16785 highlighting from the beginning of the window.
16786 (isearch-repeat): Move up code to set isearch-wrapped to t
16787 before calling isearch-wrap-function.
16788
16789 * info.el (Info-isearch-initial-node): New internal variable.
16790 (Info-search): Signal an error in isearch mode when search leaves
16791 the initial node. Signal an error when `bound' is non-nil and
16792 nothing was found in the current subfile.
16793 (Info-isearch-search): Remove `condition-case'.
16794 (Info-isearch-wrap): Don't wrap when search failed during leaving
16795 the initial node. If `Info-isearch-search' is nil, wrap around
16796 the current node.
16797 (Info-isearch-start): New fun.
16798 (Info-mode): Add buffer-local hook `Info-isearch-start' to
16799 `isearch-mode-hook'.
16800
16801 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16802
16803 * simple.el (normal-erase-is-backspace): Set default to t if
16804 running on Mac.
16805
16806 * term/mac-win.el (function-key-map): Sync with x-win.el.
16807
16808 2005-03-15 Kenichi Handa <handa@m17n.org>
16809
16810 * international/mule-cmds.el (locale-language-names): Modify the
16811 format of elements and add more entries.
16812 (locale-preferred-coding-systems): Add more entries.
16813 (set-locale-environment): Adjust for the change of
16814 locale-language-names.
16815
16816 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
16817
16818 * pcvs.el (smerge-ediff): Remove bogus autoload.
16819
16820 2005-03-14 Lute Kamstra <lute@gnu.org>
16821
16822 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
16823 Ignore a `*' at the beginning of a line.
16824
16825 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
16826 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
16827 subr.el.
16828 (dont-compile, eval-when-compile, eval-and-compile): Use declare
16829 to specify indentation.
16830
16831 * generic.el (define-generic-mode): Let generic-mode-list be a
16832 list of strings; test membership with equal.
16833
16834 2005-03-14 Kim F. Storm <storm@cua.dk>
16835
16836 * simple.el (next-line, previous-line): Add optional try-vscroll
16837 arg to recognize interactive use. Pass it on to line-move.
16838 (line-move): Don't perform auto-window-vscroll when defining or
16839 executing keyboard macro to ensure consistent behavior.
16840
16841 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
16842
16843 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
16844
16845 2005-03-13 Lute Kamstra <lute@gnu.org>
16846
16847 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
16848 debugger-setup-buffer so that backtrace marks the frames set to
16849 debug-on-exit and we don't have to do it manually. Set an extra
16850 debug-on-exit for macro's.
16851 (debugger-setup-buffer): Don't mark the top frame manually.
16852
16853 2005-03-12 Lute Kamstra <lute@gnu.org>
16854
16855 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
16856 lisp-indent-function throughout.
16857 (with-no-warnings): Set lisp-indent-function property.
16858
16859 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
16860
16861 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
16862 Add entry for backslash.
16863
16864 2005-03-12 Juri Linkov <juri@jurta.org>
16865
16866 * info.el (Info-search): Four fixes for backward search.
16867
16868 2005-03-11 Jay Belanger <belanger@truman.edu>
16869
16870 * calc/calc.el (calc-language-alist): New variable.
16871 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
16872 (calc-embedded-find-modes): Use calc-language-alist instead of
16873 calc-embedded-language-alist.
16874
16875 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
16876
16877 * calendar/calendar.el (calendar-redrawing): New internal
16878 variable.
16879 (redraw-calendar): Remove bogus save-excursion from previous
16880 change. Bind calendar-redrawing to t for mark-diary-entries.
16881 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
16882 calendar if that is why we were called.
16883
16884 2005-03-11 Kenichi Handa <handa@m17n.org>
16885
16886 * international/mule.el (make-coding-system): Set property
16887 coding-system-define-form to nil.
16888 (define-coding-system-alias): Likewise.
16889
16890 2005-03-11 Kenichi Handa <handa@m17n.org>
16891
16892 These changes are suggested by Dave Love <fx@gnu.org>.
16893
16894 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
16895 coding: tag.
16896 (adaptive-fill-regexp): Add more bullets.
16897 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
16898 regexps.
16899
16900 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
16901
16902 * help.el (describe-mode): Properly handle non-trivial lighters.
16903 Don't ignore minor modes that are not listed in minor-mode-list.
16904
16905 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
16906 feature ON when the user requests to turn it OFF.
16907
16908 2005-03-10 Lute Kamstra <lute@gnu.org>
16909
16910 * emacs-lisp/debug.el (debug-entry-code): Delete it.
16911 (implement-debug-on-entry): New function to replace debug-entry-code.
16912 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
16913 second argument as the 2005-03-07 change makes it obsolete.
16914 (debug-on-entry, cancel-debug-on-entry): Update call to
16915 debug-on-entry-1.
16916 (debug, debugger-setup-buffer): Comment update.
16917 (debugger-frame-number): Update to work with implement-debug-on-entry.
16918
16919 2005-03-10 Jay Belanger <belanger@truman.edu>
16920
16921 * calc/calc-embed.el (math-ms-args): Declare it.
16922 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
16923 math-ms-args.
16924 (calc-embedded-subst): Use math-multi-subst-rec to substitute
16925 variables.
16926
16927 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
16928
16929 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
16930 Use message-box.
16931
16932 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
16933 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
16934 (tooltip-gud-tips): Simplify.
16935 (tooltip-gud-tips-p): Remove superfluous :set.
16936 (tooltip-gud-modes): Add fortran-mode.
16937 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
16938
16939 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
16940
16941 2005-03-09 Kim F. Storm <storm@cua.dk>
16942
16943 * play/animate.el (animate-place-char): Use forward-line instead
16944 of next-line to improve performance.
16945
16946 2005-03-09 Simon Josefsson <jas@extundo.com>
16947
16948 * net/browse-url.el (browse-url-default-browser): Doc fix.
16949
16950 2005-03-09 Miles Bader <miles@gnu.org>
16951
16952 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
16953 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
16954
16955 2005-03-09 Kenichi Handa <handa@m17n.org>
16956
16957 * international/latin-1.el: Set case and syntax for 255 only if
16958 set-case-syntax-set-multibyte is nil.
16959
16960 * textmodes/ispell.el (ispell-insert-word): New function.
16961 (ispell-word): Use ispell-insert-word to insert a new word.
16962 (ispell-process-line): Likewise.
16963 (ispell-complete-word): Likewise.
16964
16965 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
16966
16967 * calendar/calendar.el (redraw-calendar): Preserve point.
16968 Reported by Matt Hodges <MPHodges@member.fsf.org>.
16969 (calendar-week-start-day): Move after definition of
16970 redraw-calendar. Delete buffer test, since redraw-calendar has
16971 that now.
16972
16973 * calendar/diary-lib.el (mark-diary-entries): Only call
16974 redraw-calendar in the first of any recursive calls.
16975 Reported by Alan Shutko <ats@acm.org>.
16976
16977 2005-03-08 Juri Linkov <juri@jurta.org>
16978
16979 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
16980 (html-horizontal-rule, html-line, html-image, html-checkboxes)
16981 (html-radio-buttons): Add a space before the trailing `/>' where
16982 sgml-xml-mode is non-nil.
16983 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
16984 the subsequent tag of the empty XML tag.
16985 (html-href-anchor): Don't set initial input to "http:".
16986 (html-image): Ask for the image URL and set point inside alt="".
16987 (html-name-anchor): Duplicate the name in the `id' attribute when
16988 sgml-xml-mode is non-nil.
16989 (html-paragraph): Remove \n before <p>.
16990 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
16991 instead of `checked' when sgml-xml-mode is non-nil.
16992
16993 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
16994 Remove 1 space before #RRGGBB to not truncate it on terminal
16995 windows w/o fringes. Remove 1 space between bg and fg examples
16996 to get more space.
16997 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
16998 avoid byte-compile warnings.
16999
17000 * image-file.el (image-file-handler): Put `safe-magic' property to
17001 `image-file-handler'.
17002
17003 * info.el (Info-isearch-search): Emulate word search in
17004 isearching through multiple Info nodes with Info-search.
17005 (Info-isearch-wrap): Allow isearch-word.
17006
17007 2005-03-08 Lute Kamstra <lute@gnu.org>
17008
17009 * emacs-lisp/debug.el (debugger-step-through): Make sure that
17010 stepping into the debugger's code is not possible.
17011 (debugger-jumping-flag): Docstring update.
17012
17013 2005-03-08 Jay Belanger <belanger@truman.edu>
17014
17015 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
17016 embedded mode begins.
17017 (calc-embedded-language-alist): New variable.
17018 (calc-embedded-find-modes): Use calc-embedded-language-alist to
17019 set default language mode.
17020
17021 2005-03-08 Kenichi Handa <handa@m17n.org>
17022
17023 * international/ccl.el (define-ccl-program): Fix docstring about
17024 extra 256 bytes assured for the output buffer.
17025
17026 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
17027 Fix BUFFER_MAGNIFICATION to 2.
17028 (ccl-encode-mule-utf-16be-with-signature): Likewise.
17029
17030 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
17031
17032 * align.el (align-rules-list): Added an alignment rule for CSS
17033 declarations (applies to css-mode and html-mode buffers).
17034
17035 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
17036
17037 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
17038
17039 2005-03-07 Kim F. Storm <storm@cua.dk>
17040
17041 * simple.el (move-beginning-of-line): New command.
17042
17043 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
17044
17045 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
17046
17047 * emulation/cua-base.el: Put CUA move property on move-end-of-line
17048 and move-beginning-of-line.
17049
17050 * apropos.el (apropos-print): Omit command from M-x ... RET.
17051
17052 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
17053
17054 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
17055 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
17056
17057 2005-03-06 Richard M. Stallman <rms@gnu.org>
17058
17059 * bindings.el (esc-map): Bind M-g to goto-line.
17060
17061 * facemenu.el (global-map): Bind M-o, not M-g.
17062
17063 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17064
17065 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
17066 "Open Directory" as for "Open File".
17067
17068 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
17069
17070 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
17071 (push-mark-command): Run activate-mark-hook.
17072
17073 2005-03-06 Richard M. Stallman <rms@gnu.org>
17074
17075 * help-mode.el (help-mode-finish): Don't alter the element
17076 in view-return-to-alist if there already is one.
17077
17078 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
17079 make sure the current buffer is the expected one.
17080
17081 * novice.el (disabled-command-function): Output in *Disabled Command*.
17082 Explicitly ignore non-keyboard events, and explicitly handle C-g.
17083
17084 * textmodes/flyspell.el (flyspell-large-region):
17085 Pass args differently for aspell.
17086
17087 * files.el (mode-require-final-newline): Doc fix.
17088
17089 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
17090
17091 * progmodes/which-func.el (which-function):
17092 Specify NOERROR when calling imenu--make-index-alist.
17093
17094 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
17095
17096 * simple.el (normal-erase-is-backspace): Define default value.
17097
17098 * custom.el (custom-theme-set-variables): Remove unused var
17099 `immediate'.
17100 (custom-reevaluate-setting): Simple function to handle variables
17101 that are defined before their default value can really be
17102 computed.
17103
17104 * startup.el (command-line): Use it for temporary-file-directory,
17105 small-emporary-file-directory, auto-save-file-name-transforms,
17106 blink-cursor-mode, and normal-erase-is-backspace.
17107
17108 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
17109 progress, even with buggy anchored keywords.
17110
17111 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
17112
17113 * simple.el (goto-line): Remove unbalanced final parenthesis.
17114
17115 2005-03-05 Richard M. Stallman <rms@gnu.org>
17116
17117 * simple.el (goto-line): Use a number at point as the default.
17118 With C-u as arg, switch buffers.
17119
17120 2005-03-05 Juri Linkov <juri@jurta.org>
17121
17122 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
17123 with `no-blinking-cursor'.
17124
17125 * startup.el (no-blinking-cursor): New defvar.
17126 (command-line): Add `--no-blinking-cursor' to longopts.
17127 Set `no-blinking-cursor' to t for command line arguments
17128 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
17129 with `no-blinking-cursor' in the condition for calling
17130 `blink-cursor-mode'.
17131
17132 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
17133
17134 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
17135 (menu-bar-options-save): Add blink-cursor-mode.
17136 (menu-bar-options-menu): Add blink-cursor-mode.
17137
17138 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
17139
17140 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
17141 (icalendar-export-file, icalendar-export-region)
17142 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
17143 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
17144
17145 2005-03-04 Lute Kamstra <lute@gnu.org>
17146
17147 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
17148 (debug-function-list): Ditto.
17149
17150 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
17151
17152 * textmodes/texinfmt.el (texinfo-append-refill):
17153 Redefine the types of line to which @refill
17154 is not appended by replacing a search for `@refill\\|@bye' with
17155 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
17156 itemize@refill' bug and the unfilled long lines bug.
17157 (texinfmt-version): Update number and date.
17158
17159 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
17160
17161 * international/code-pages.el (windows-1250, windows-125[2-8])
17162 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
17163
17164 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
17165
17166 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
17167 bound yet.
17168
17169 2005-03-02 Romain Francoise <romain@orebokech.com>
17170
17171 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
17172 buffer after removing limits.
17173 (ibuffer-pop-filter): Ditto.
17174 Update copyright.
17175
17176 2005-03-02 Miles Bader <miles@gnu.org>
17177
17178 * button.el (make-text-button): If the user doesn't specify a
17179 type, use the default. Rewrite to use `add-text-properties' and
17180 plist functions.
17181
17182 2005-03-01 Lute Kamstra <lute@gnu.org>
17183
17184 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
17185 (debugger-jumping-flag): New var.
17186 (debug-entry-code): Use it.
17187 (debugger-jump): Use debugger-jumping-flag and add
17188 debugger-reenable to post-command-hook.
17189 (debugger-reenable): Use debugger-jumping-flag and remove itself
17190 from post-command-hook.
17191 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
17192 debugger-reenable.
17193
17194 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
17195
17196 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
17197 inclusion of "itemize\\|", which may be unnecessary, is certainly
17198 inelegant, and stops refilling in itemize lists when formatting
17199 Japanese Texinfo files to Info.
17200 Update copyright to 2005.
17201
17202 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
17203
17204 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
17205 of an error if GDB can't find the source file.
17206
17207 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
17208
17209 * calendar/calendar.el (redraw-calendar): Work from any buffer,
17210 not just the calendar.
17211
17212 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
17213 first.
17214 (diary-redraw-calendar): New function.
17215 (make-diary-entry): Add diary-redraw-calendar to local
17216 write-contents-functions. Turn off selective display before
17217 inserting in diary.
17218
17219 2005-03-01 Kim F. Storm <storm@cua.dk>
17220
17221 * emacs-lisp/copyright.el (copyright-fix-years): New command.
17222
17223 2005-03-01 Lute Kamstra <lute@gnu.org>
17224
17225 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
17226 that debug-entry-code can be safely removed from a function while
17227 this code is being evaluated. Revert the 2005-02-27 change as the
17228 new implementation no longer requires it. Make sure that a
17229 function body containing just a string is not mistaken for a docstring.
17230 (debug): Skip one more frame in case of debug on entry.
17231 (debugger-setup-buffer): Delete one more frame line in case of
17232 debug on entry.
17233 (debugger-frame-number): Update to use the new text introduced by
17234 the 1999-11-03 change. Skip one more frame in case of debug on entry.
17235
17236 2005-02-28 Kim F. Storm <storm@cua.dk>
17237
17238 * double.el (double-translate-key): Call force-window-update after
17239 read-event to avoid crash in redisplay.
17240
17241 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
17242
17243 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
17244 (debug): Use it. Move the inhibit-trace earlier.
17245 (debug-entry-code): New const.
17246 (debug-on-entry-1): Use it.
17247
17248 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
17249
17250 * international/utf-16.el (ccl-encode-mule-utf-16le):
17251 Fix BUFFER_MAGNIFICATION to 2.
17252 (ccl-encode-mule-utf-16be): Likewise.
17253
17254 2005-02-28 Kenichi Handa <handa@m17n.org>
17255
17256 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
17257 Fix BUFFER_MAGNIFICATION to 4.
17258 (ccl-encode-mule-utf-16be-with-signature): Likewise.
17259
17260 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
17261
17262 * speedbar.el (speedbar-update-flag): Doc fix.
17263 (speedbar-show-info-under-mouse): Give set-mouse-position the right
17264 argument.
17265
17266 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
17267
17268 * reveal.el (reveal-post-command): Don't try to reveal overlays which
17269 have a non-nil `invisible' property but are actually visible.
17270
17271 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
17272 for perldoc sections.
17273 (perl-outline-regexp, perl-outline-level): New var and function.
17274 (perl-mode): Use them.
17275
17276 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
17277
17278 * calendar/diary-lib.el (diary-remind): Discard any mark portion
17279 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
17280
17281 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
17282
17283 * cus-edit.el: Comment change.
17284 (custom-buffer-create-internal): Slightly reword text at top of
17285 Custom buffers. Mention there that saving an option edits the
17286 init file. Add link to Emacs manual node on `custom-file'.
17287 (custom-magic-alist): Rewrite individual State messages to use
17288 capitalized keywords. Doc fix.
17289
17290 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
17291
17292 * calendar/calendar.el (calendar-buffer): Move above
17293 calendar-week-start-day.
17294 (calendar-week-start-day): Doc fix. Add :set function.
17295 (calendar-minimum-window-height): New variable.
17296 (generate-calendar-window): Only resize window if selected-window
17297 is displaying the calendar buffer. Use new variable
17298 calendar-minimum-window-height.
17299 (generate-calendar): Reword error message.
17300 (calendar-mode-map): Bind DEL to scroll-other-window-down.
17301
17302 2005-02-27 Andreas Schwab <schwab@suse.de>
17303
17304 * vc.el (vc-do-command): Don't run command asynchronously when
17305 operating in a remote directory.
17306
17307 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
17308 change from sync with Tramp 2.0.47.
17309
17310 2005-02-27 Richard M. Stallman <rms@gnu.org>
17311
17312 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
17313
17314 * textmodes/flyspell.el (flyspell-mode-on):
17315 Call ispell-change-dictionary only if necessary.
17316
17317 * emacs-lisp/re-builder.el (regexp-builder): New function.
17318
17319 * register.el (describe-register-1): Explicitly handle
17320 yank-excluded-properties = t.
17321
17322 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
17323 (custom-magic-alist): Change the status descriptions again.
17324 (face widget-type): Total rewrite based on `restricted-sexp'
17325 to eliminate the confusing double hiding levels.
17326
17327 * emacs-lisp/debug.el (debug-on-entry-1):
17328 If function body is empty, add nil as body form.
17329
17330 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
17331
17332 * emacs-lisp/trace.el (inhibit-trace): New var.
17333 (trace-make-advice): Use it.
17334
17335 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
17336
17337 2005-02-26 Kim F. Storm <storm@cua.dk>
17338
17339 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
17340 (mouse-on-link-p, mouse-drag-region-1): Use it.
17341
17342 2005-02-25 Lute Kamstra <lute@gnu.org>
17343
17344 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
17345
17346 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
17347
17348 * frame.el (blink-cursor-mode): Add :group keyword.
17349
17350 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
17351
17352 * calendar/icalendar.el (icalendar--decode-isodatetime):
17353 New optional argument DAY-SHIFT.
17354 (icalendar-export-region): Fix coding-system-for-write.
17355 (icalendar--convert-ical-to-diary): Shift end-day of all-day
17356 events by one.
17357
17358 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
17359
17360 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
17361
17362 2005-02-24 Kim F. Storm <storm@cua.dk>
17363
17364 * international/iso-acc.el (iso-accents-compose): Fix crash
17365 during redisplay. Call force-window-update after read-event
17366 and delete-region to signal that window is not accurate.
17367
17368 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
17369
17370 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
17371 Remove unused and inexistent var `inhibit-trace'.
17372 (debugger-mode): Use run-mode-hooks.
17373 (debugger-list-functions): Add buttons; setup xref stack.
17374
17375 2005-02-23 Richard M. Stallman <rms@gnu.org>
17376
17377 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
17378 appointment says it was explicitly made.
17379 (appt-add): Set the 3rd element.
17380 (appt-make-list): Preserve explicit appointments.
17381
17382 * subr.el (find-tag-default): Catch errors in forward-sexp.
17383
17384 2005-02-23 Juri Linkov <juri@jurta.org>
17385
17386 * info.el (Info-isearch-search): New defcustom.
17387 (Info-isearch-search): Call the default isearch function
17388 when Info-isearch-search is nil.
17389 (Info-isearch-wrap): Use variable Info-isearch-search.
17390
17391 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
17392
17393 * cus-edit.el: Comment change.
17394
17395 2005-02-22 Kim F. Storm <storm@cua.dk>
17396
17397 * progmodes/hideif.el (hide-ifdef-use-define-alist):
17398 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
17399
17400 2005-02-22 Simon Josefsson <jas@extundo.com>
17401
17402 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
17403 New variable.
17404 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
17405 Oskarsson" <myrkraverk@users.sourceforget.net>.
17406
17407 2005-02-22 Kim F. Storm <storm@cua.dk>
17408
17409 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
17410 check that window of that event is the selected window.
17411 (mouse-drag-region-1): Compare mouse event window to selected
17412 window before setting point.
17413
17414 * tooltip.el (tooltip-show-help-function): Pass event to
17415 mouse-on-link-p so it can check selected window.
17416
17417 2005-02-22 Kenichi Handa <handa@m17n.org>
17418
17419 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
17420 (ps-mule-show-warning): New function.
17421 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
17422 characters are found.
17423
17424 * ps-print.el (ps-header-footer-string): Return a list of header
17425 and footer strings.
17426
17427 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
17428
17429 * pcvs.el (cvs-retrieve-revision): Fix thinko.
17430
17431 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
17432
17433 * frame.el (blink-cursor-mode): Use define-minor-mode.
17434
17435 * term/mac-win.el (function-key-map): Use char-names more consistently.
17436 (file-name-coding-system): Only set it for MacOS-9. The other case is
17437 already handled in mule-cmds.el (where it also works when mac-win.el
17438 is not used).
17439
17440 2005-02-21 Kenichi Handa <handa@m17n.org>
17441
17442 * international/mule.el (ctext-pre-write-conversion): Always use
17443 " *code-converting-work*" buffer for work.
17444
17445 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
17446
17447 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
17448
17449 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
17450
17451 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
17452
17453 * ses.el (undo-more): Restore defadvice, but only the part that
17454 allows changes outside the restricted area of the buffer.
17455
17456 2005-02-20 Kim F. Storm <storm@cua.dk>
17457
17458 * simple.el (line-move): Add fourth optional arg try-vscroll which
17459 must be set to perform auto-window-vscroll.
17460 When moving backwards and doing auto-window-vscroll, automatically
17461 vscroll to the last part of lines which are taller than the window.
17462 (next-line, previous-line): Set try-vscroll arg on line-move.
17463
17464 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
17465
17466 * replace.el (query-replace, query-replace-regexp)
17467 (replace-string, replace-regexp): When operating on region, make
17468 the minibuffer prompt say so.
17469
17470 * isearch.el (isearch-forward): Document isearch-query-replace and
17471 isearch-query-replace-regexp keybindings.
17472
17473 2005-02-19 Jay Belanger <belanger@truman.edu>
17474
17475 * calc/calc-aent.el (math-read-token): Add local variable.
17476
17477 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
17478 (calc-edit-top): Move declaration to earlier in file.
17479 (calc-edit-macro-repeats): Add local variables.
17480
17481 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
17482 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
17483 calcFunc-tanh.
17484 Adjust integration rule for calcFunc-tan.
17485
17486 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
17487
17488 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
17489 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
17490 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
17491 (viper-skip-separators): Bug fix.
17492 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
17493 particular major mode.
17494 (viper-del-backward-char-in-replace): Don't put deleted char on the
17495 kill ring.
17496
17497 * viper-ex.el (viper-color-display-p): New function.
17498 (viper-has-face-support-p): Use viper-color-display-p.
17499
17500 * viper-keym.el (viper-gnus-modifier-map): New keymap.
17501
17502 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
17503
17504 * viper-util.el (viper-glob-unix-files): Fix shell status check.
17505 (viper-file-remote-p): Make equivalent to file-remote-p.
17506
17507 * viper.el (viper-major-mode-modifier-list):
17508 Use viper-gnus-modifier-map.
17509
17510 2005-02-19 David Kastrup <dak@gnu.org>
17511
17512 * subr.el (subregexp-context-p): Fix garbled doc string by adding
17513 quoting.
17514
17515 2005-02-19 Jay Belanger <belanger@truman.edu>
17516
17517 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
17518 Remove extra definitions.
17519 (calc-coth): New function.
17520 (calcFunc-cot): Fix `let'.
17521
17522 2005-02-19 Eli Zaretskii <eliz@gnu.org>
17523
17524 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
17525 the reasons we use "type pc" in these faces.
17526
17527 * button.el (button): Ditto.
17528
17529 2005-02-19 Michael Mauger <mmaug@yahoo.com>
17530
17531 * replace.el (query-replace-read-from): Set the value of
17532 query-replace-from-history-variable to handle the case of an empty
17533 string entered to accept the suggested default.
17534
17535 * net/tramp.el (tramp-file-name-for-operation):
17536 Use dired-call-process instead of dired-call-process-command.
17537
17538 2005-02-19 Jay Belanger <belanger@truman.edu>
17539
17540 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
17541 (math-div-non-trig): New variables.
17542 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
17543 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
17544 (math-combine-prod, math-div-symb-fancy): Add simplifications for
17545 trig expressions.
17546
17547 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
17548
17549 * progmodes/gdb-ui.el (gdb-var-update-handler)
17550 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
17551 for watch expressions,
17552 (gdb-var-create-handler): Don't set speedbar-update-flag.
17553 (gdb-post-prompt): Simplify test for speedbar.
17554
17555 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
17556
17557 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
17558 (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
17559 we use the syntax table of the correct buffer.
17560 (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
17561 Felix Gatzemeier.
17562
17563 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
17564 (ediff-file-remote-p): Make synonymous with file-remote-p.
17565 In all deffaces ediff-*-face-*, use min-colors.
17566
17567 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
17568 ediff-recurse-to-subdirectories.
17569 (ediff-mark-if-equal): Check that the arguments are strings, use
17570 ediff-same-contents (after to Felix Gatzemeier).
17571
17572 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
17573 nil.
17574
17575 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
17576
17577 * log-view.el (log-view-message-re): Fix up Subversion regexp.
17578
17579 2005-02-18 David Kastrup <dak@gnu.org>
17580
17581 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
17582 use `mark-active' when defined.
17583
17584 2005-02-18 Kenichi Handa <handa@m17n.org>
17585
17586 * ps-print.el (ps-font-info-database): New entry
17587 ZapfChancery-MediumItalic with correct font name. Fix font name
17588 of the entry Zapf-Chancery-MediumItalic.
17589
17590 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
17591
17592 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
17593
17594 2005-02-16 Kim F. Storm <storm@cua.dk>
17595
17596 * ido.el (ido-fallback-command): Pass user input to fallback command.
17597
17598 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
17599
17600 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
17601 (gdb-find-file-hook): Add server prefix.
17602
17603 2005-02-16 Richard M. Stallman <rms@gnu.org>
17604
17605 * replace.el (perform-replace): Pass new args to replace-highlight.
17606 (replace-highlight): Take region args,
17607 and pass them to isearch-lazy-highlight-new-loop.
17608
17609 * novice.el (disabled-command-hook): Autoload the defalias
17610 and the make-obsolete-variable call.
17611
17612 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
17613
17614 * isearch.el (isearch-lazy-highlight-start-limit)
17615 (isearch-lazy-highlight-end-limit): New variables limit
17616 the region for highlighting.
17617 (isearch-lazy-highlight-new-loop): New args BEG and END.
17618 (isearch-lazy-highlight-search): Use the new vars.
17619 (isearch-lazy-highlight-update): Likewise.
17620
17621 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
17622
17623 * cus-start.el (all): Use default-boundp.
17624
17625 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
17626
17627 * menu-bar.el (menu-bar-select-frame): Handle current frame.
17628
17629 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
17630
17631 * autorevert.el (auto-revert-stop-on-user-input)
17632 (auto-revert-verbose): Doc fixes.
17633
17634 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
17635
17636 * international/mule-cmds.el (set-locale-environment): Remove call
17637 to set-selection-coding-system on Windows.
17638
17639 2005-02-15 Jay Belanger <belanger@truman.edu>
17640
17641 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
17642 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
17643 calcFunc-coth.
17644 (math-simplify-sqrt): Add simplifications.
17645
17646 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
17647 to list.
17648
17649 * calc/calc-ext.el: Add functions to autoloads.
17650
17651 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
17652 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
17653 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
17654 (math-csc-raw, math-cot-raw): New functions.
17655
17656 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
17657
17658 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
17659 the variable name in a message.
17660
17661 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
17662 calcFunc-csc, calcFunc-cot.
17663
17664 * calc/calcalg2.el: Add derivative and integration rules for
17665 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
17666 calcFunc-csch, calcFunc-coth.
17667 (math-do-integral-methods): Add to checks for when to use
17668 substitutions.
17669
17670 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
17671
17672 2005-02-15 Lute Kamstra <lute@gnu.org>
17673
17674 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
17675 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
17676 <monnier@iro.umontreal.ca>
17677 (lisp-outline-level): Improve efficiency. Suggested by David
17678 Kastrup <dak@gnu.org>.
17679
17680 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
17681
17682 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
17683 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
17684 (gdb-set-gud-minor-mode-existing-buffers): New functions.
17685 (gdb-find-file-hook): New hook. Add it to find-file-hook.
17686 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
17687
17688 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
17689
17690 * cus-start.el (all): Comment change.
17691
17692 2005-02-14 Lute Kamstra <lute@gnu.org>
17693
17694 * cus-start.el (all): Check if symbol is void.
17695
17696 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
17697
17698 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
17699 optional argument to \cite.
17700
17701 2005-02-14 Richard M. Stallman <rms@gnu.org>
17702
17703 * cus-edit.el (custom-buffer-create-internal): Update help message.
17704 (custom-magic-alist): Update help messages.
17705
17706 * cus-start.el (all): Allow a var to specify a standard value.
17707
17708 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
17709
17710 * custom.el (custom-theme-set-variables): Handle variable aliases.
17711
17712 * frame.el (blink-cursor-timer): Doc fix.
17713 (blink-cursor): Make it an alias for `blink-cursor-mode' and
17714 declare obsolete.
17715 (blink-cursor-mode): Define with defcustom and use correct
17716 standard expression in that defcustom.
17717 * startup.el (command-line): Adapt to above changes in frame.el.
17718
17719 2005-02-11 Lute Kamstra <lute@gnu.org>
17720
17721 * apropos.el (apropos-score-doc): Prevent division by zero.
17722
17723 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
17724
17725 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
17726 (icalendar--get-event-property-attributes)
17727 (icalendar--get-event-properties)
17728 (icalendar--datetime-to-diary-date): New functions.
17729 (icalendar--split-value): Doc fix.
17730 (icalendar--datetime-to-noneuropean-date)
17731 (icalendar--datetime-to-european-date): New optional argument
17732 SEPARATOR. Return result as a string instead of a list.
17733 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
17734 (icalendar--convert-string-for-export): Rename arg S to STRING.
17735 (icalendar-export-region): Doc fix. Change name of error buffer.
17736 Save output buffer.
17737 (icalendar-import-file): Add blank at end of prompt.
17738 (icalendar-import-buffer): Doc fix. Do not switch to error
17739 buffer. Indicate status in return value.
17740 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
17741 buffer. Save output buffer. Handle exception from recurrence
17742 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
17743 events. Fix problems with weekly all-day events.
17744
17745 2005-02-10 Richard M. Stallman <rms@gnu.org>
17746
17747 * simple.el (eval-expression-print-format):
17748 Avoid warning about edebug-active.
17749
17750 * help.el (help-for-help-internal): Rename from help-for-help.
17751 (help-for-help): Define with defalias.
17752
17753 * font-core.el (font-lock-default-function): Use with-no-warnings.
17754
17755 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
17756
17757 * custom.el (defface): Doc fix.
17758
17759 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
17760
17761 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
17762 width 0" to prevent word wrapping problems.
17763
17764 2005-02-09 Kim F. Storm <storm@cua.dk>
17765
17766 * ido.el (ido-file-extensions-order): New defcustom.
17767 (ido-file-extension-lessp, ido-file-extension-aux)
17768 (ido-file-extension-order): New advanced file ordering.
17769 (ido-file-lessp): New simple file ordering.
17770 (ido-sort-list): Remove.
17771 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
17772 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
17773
17774 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
17775
17776 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
17777 that some versions of grep produce.
17778 (grep-mode-font-lock-keywords): Likewise.
17779
17780 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
17781
17782 * progmodes/gdb-ui.el (gdb-location-list): New variable.
17783 (gdb-cdir): Delete.
17784 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
17785 (gdb-source-info): Treat case when source file is in another
17786 directory properly.
17787 (gdb-get-location): New function.
17788
17789 2005-02-07 Jay Belanger <belanger@truman.edu>
17790
17791 * calc/calc-prog.el (calc-write-parse-table-part)
17792 (calc-fix-token-name): Fix a check for language type.
17793
17794 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
17795
17796 2005-02-07 Andre Spiegel <spiegel@gnu.org>
17797
17798 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
17799 as directory not writable.
17800
17801 2005-02-07 Kim F. Storm <storm@cua.dk>
17802
17803 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
17804 (cua--standard-movement-commands): Remove list.
17805 Instead, set CUA property value to move for movement commands.
17806 (cua-movement-commands): Remove. Users must set CUA prop instead.
17807 (cua--pre-command-handler): Check CUA property.
17808 (cua--init-keymaps): Don't remap undo commands.
17809 (cua-mode): Don't call cua--rectangle-on-off.
17810
17811 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
17812 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
17813 (cua--rect-undo-set-point): New var.
17814 (cua--rectangle-undo-boundary): Setup undo apply entry.
17815 (cua--rect-undo-handler): New function for rectangle undo.
17816 (cua--rect-start-position, cua--rect-end-position): Add.
17817 (cua--rectangle-post-command): Call cua--rectangle-set-corners
17818 for restored rectangle. Set point if cua--rect-undo-set-point.
17819
17820 2005-02-06 Jay Belanger <belanger@truman.edu>
17821
17822 * calc/calc-lang.el (calc-tex-language): Display more information
17823 in messages.
17824
17825 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
17826 in TeX mode.
17827
17828 2005-02-06 Richard M. Stallman <rms@gnu.org>
17829
17830 * emacs-lisp/lisp.el (buffer-end): Doc fix.
17831
17832 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
17833
17834 * net/ldap.el (ldap-search-internal): Support attributes with
17835 optional descriptions separated by a semi-colon, as in
17836 "userCertificate;binary".
17837
17838 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17839
17840 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
17841 isn't a cons (i.e. the version is 0).
17842
17843 2005-02-05 Eli Zaretskii <eliz@gnu.org>
17844
17845 * help.el (help-for-help): Doc fix.
17846
17847 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
17848
17849 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
17850 GDB-Windows on the menu-bar as this works better.
17851
17852 2005-02-04 Jay Belanger <belanger@truman.edu>
17853
17854 * calc/calc-embed.el (calc-embedded-update): Don't put in
17855 unnecessary newlines. Adjust the end of formula marker.
17856
17857 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
17858 (math-latex-parse-two-args): New function.
17859
17860 2005-02-03 Lute Kamstra <lute@gnu.org>
17861
17862 * help-fns.el (help-with-tutorial): Make sure that users cannot
17863 remove the entire text of the tutorial by means of `undo'.
17864
17865 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
17866
17867 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
17868 in recent changes, where the ispell process was repeatedly
17869 killed & restarted.
17870
17871 * international/mule-cmds.el (set-locale-environment): Set file-name
17872 coding system to utf-8 on Darwin systems.
17873 (set-default-coding-systems): Don't set default-file-name-coding-system
17874 on Darwin systems.
17875
17876 2005-02-03 Richard M. Stallman <rms@gnu.org>
17877
17878 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
17879
17880 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
17881
17882 * faces.el (list-faces-display): Add optional argument.
17883
17884 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
17885
17886 * font-core.el (font-lock-default-function): Handle the rare case where
17887 only font-lock-keywords is set.
17888
17889 2005-02-02 Kenichi Handa <handa@m17n.org>
17890
17891 * international/characters.el: Cancel previous change for
17892 I-WITH-DOT-ABOVE and DOTLESS-i.
17893
17894 * international/latin-5.el: Cancel previous change.
17895
17896 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
17897
17898 * progmodes/gud.el: Correction to syntax in gud-menu-map.
17899
17900 2005-02-02 Kenichi Handa <handa@m17n.org>
17901
17902 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
17903 DOTLESS-i.
17904
17905 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
17906 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
17907
17908 * case-table.el (get-upcase-table): New function.
17909 (copy-case-table): Copy upcaes table too if non-nil.
17910 (set-case-syntax-delims): Maintain upcase table too.
17911 (set-case-syntax-pair): Likewise.
17912 (set-upcase-syntax, set-downcase-syntax): New functions.
17913 (set-case-syntax): Maintain upcase table too.
17914
17915 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
17916
17917 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
17918
17919 * progmodes/gud.el (gud-goto-info): New function.
17920 (gud-tool-bar-map): Use correct icon.
17921
17922 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
17923
17924 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
17925 When delegating, order args in the funcall correctly.
17926
17927 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
17928
17929 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
17930
17931 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
17932
17933 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
17934 buffer not visiting a file.
17935
17936 2005-01-31 Jay Belanger <belanger@truman.edu>
17937
17938 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
17939 bound on the line with the formula.
17940
17941 2005-01-31 Kim F. Storm <storm@cua.dk>
17942
17943 * ses.el (ses-create-cell-variable-range)
17944 (ses-destroy-cell-variable-range, ses-reset-header-string)
17945 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
17946 (ses-insert-row): Fix format of apply undo entries.
17947
17948 2005-01-31 Jay Belanger <belanger@truman.edu>
17949
17950 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
17951 parts.
17952
17953 * calc/calc-embed.el (calc-embedded-open-formula)
17954 (calc-embedded-close-formula): Ignore matrix environments.
17955
17956 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
17957 TeX mode.
17958
17959 * calc/calc-lang.el (math-function-table, math-oper-table)
17960 (math-variable-table): Adjust the LaTeX portions.
17961
17962 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
17963 (math-latex-ignore-words): New constant.
17964
17965 2005-01-31 Richard M. Stallman <rms@gnu.org>
17966
17967 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
17968 (ispell-local-dictionary): Doc fix.
17969 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
17970 Don't reinitialize at run time. Don't defcustom.
17971 All uses changed to append ispell-local-dictionary-alist,
17972 or check it first.
17973 (ispell-current-dictionary): New variable for dictionary in use.
17974 (ispell-dictionary): Now used only for global default.
17975 (ispell-start-process): Set ispell-current-dictionary,
17976 not ispell-dictionary.
17977 (ispell-change-dictionary): Use this only for setting
17978 user preferences.
17979 (ispell-internal-change-dictionary): New function
17980 to change the current dictionary in use.
17981 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
17982 Use ispell-current-dictionary.
17983 Handle ispell-local-dictionary-overridden.
17984 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
17985
17986 2005-01-31 Jay Belanger <belanger@truman.edu>
17987
17988 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
17989
17990 * calc/calc-ext.el: Add calc-latex-language to autoloads.
17991 (calc-mode-map): Add calc-latex-language.
17992
17993 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
17994 (math-latex-print-frac): New functions.
17995 (math-oper-table, math-function-table, math-variable-table)
17996 (math-complex-format, math-input-filter): Add latex properties.
17997 (calc-set-language): Set math-expr-special-function-mapping.
17998
17999 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
18000 (calc-write-parse-table-part): Add LaTeX support.
18001
18002 * calc/calc.el (calc-language): Adjust docstring.
18003 (calc-set-mode-line): Add LaTeX support.
18004 (math-expr-special-function-mapping): New variable.
18005 (math-tex-ignore-words): Add to list.
18006
18007 * calc/calccomp.el (math-compose-expr, math-compose-rows):
18008 Add LaTeX support.
18009 (math-compose-expr): Add support for special functions.
18010
18011 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
18012
18013 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
18014
18015 * progmodes/gdb-ui.el (gdb-memory-address)
18016 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
18017 (gdb-memory-mode-map, gdb-memory-format-keymap)
18018 (gdb-memory-format-menu, gdb-memory-unit-keymap)
18019 (gdb-memory-unit-menu): New variables for a buffer
18020 that lets the user examine program memory.
18021 (gdb-memory-set-address, gdb-memory-set-repeat-count)
18022 (gdb-memory-format-binary, gdb-memory-format-octal)
18023 (gdb-memory-format-unsigned, gdb-memory-format-signed)
18024 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
18025 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
18026 (gdb-memory-unit-word, gdb-memory-unit-halfword)
18027 (gdb-memory-unit-byte, gdb-memory-unit-menu)
18028 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
18029 (gdb-memory-mode, gdb-memory-buffer-name)
18030 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
18031 New functions for above buffer.
18032
18033 2005-01-30 Richard M. Stallman <rms@gnu.org>
18034
18035 * cus-edit.el (custom-bury-buffer): Function deleted.
18036 (custom-buffer-done-function): Option deleted.
18037 (custom-buffer-done-kill): New replacement option.
18038 (Custom-buffer-done): Call quit-window.
18039 (custom-buffer-create-internal): Update for above changes.
18040
18041 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
18042
18043 * simple.el (undo-ask-before-discard): New var.
18044 (undo-outer-limit-truncate): Implement it.
18045 (undo-extra-outer-limit): Doc update.
18046
18047 2005-01-29 Richard M. Stallman <rms@gnu.org>
18048
18049 * ses.el (undo-more): Delete defadvice.
18050 (ses-begin-change): Doc fix.
18051
18052 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
18053 instead of rebinding C-x u and C-_.
18054
18055 * files.el (normal-backup-enable-predicate): Return nil for files
18056 in /tmp, regardless of temporary-file-directory.
18057
18058 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
18059
18060 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
18061 (open-rectangle, delete-whitespace-rectangle-line)
18062 (clear-rectangle-line): If FILL, pass t instead of FILL
18063 for move-to-column's 2nd arg.
18064
18065 * simple.el (undo): Fix the test for continuing a series of undos.
18066 (undo-more): Set pending-undo-list to t when we reach end.
18067 (pending-undo-list): Move up defvar.
18068
18069 * wid-edit.el (widget-button-click):
18070 Shorten the range of the track-mouse binding.
18071
18072 * comint.el (comint-insert-input): Undo previous changes;
18073 use last-input-event in interactive spec.
18074
18075 2005-01-29 Eli Zaretskii <eliz@gnu.org>
18076
18077 * progmodes/compile.el (compilation-start): Bind buffer-read-only
18078 to nil before invoking call-process. Reset buffer's modified flag
18079 after fontifying it in the no-async branch.
18080
18081 * wid-edit.el (widget-specify-button): If mouse pointer shape
18082 cannot be changed, use mouse face instead.
18083
18084 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
18085
18086 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
18087 (gdb-goto-breakpoint): Make breakpoint handling work on template
18088 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
18089 (gdb-assembler-custom): Update to recognize breakpoint information
18090 added on 2005-01-19.
18091
18092 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
18093
18094 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
18095 (dsssl-mode): Use define-derived-mode.
18096 (scheme-mode-initialize): Remove.
18097 (scheme-mode): Use run-mode-hooks.
18098
18099 * cus-edit.el (customize-group-other-window)
18100 (custom-buffer-create-other-window): Don't override special-display-*.
18101 (custom-mode-map): Make it dense.
18102
18103 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
18104 sets the default value.
18105
18106 2005-01-28 Eli Zaretskii <eliz@gnu.org>
18107
18108 * descr-text.el: Add more keywords.
18109
18110 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
18111
18112 * speedbar.el: Avoid unnecessary use of locate-library.
18113
18114 * international/mule-cmds.el (standard-display-european-internal):
18115 Don't fiddle with latin-1 non-break space any more since it's now
18116 special cased in the C code.
18117 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
18118
18119 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
18120
18121 * cus-start.el (all): Add `undo-outer-limit'.
18122
18123 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
18124
18125 * textmodes/bibtex.el (bibtex-format-entry):
18126 Use `bibtex-empty-field-re' only on the text of fields, not on entire
18127 field lines.
18128 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
18129 not on part of a buffer.
18130
18131 2005-01-25 Lute Kamstra <lute@gnu.org>
18132
18133 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
18134 nonempty field text strings like "{letters\\macro{}more letters}".
18135 Clarify docstring.
18136 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
18137 (bibtex-entry-offset, bibtex-parse-association)
18138 (bibtex-parse-field-name): Fix typos in docstrings.
18139 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
18140
18141 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
18142
18143 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
18144 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
18145 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
18146 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
18147
18148 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
18149 isearch minor mode.
18150
18151 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
18152
18153 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
18154
18155 2005-01-24 Lute Kamstra <lute@gnu.org>
18156
18157 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
18158 CASECHARS and NOT-CASECHARS regular expressions of the
18159 "nederlands" and "nederlands8" dictionaries to prevent a "Range
18160 striding over charsets" error.
18161
18162 2005-01-24 Jay Belanger <belanger@truman.edu>
18163
18164 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
18165 display variable name.
18166
18167 2005-01-24 Kenichi Handa <handa@m17n.org>
18168
18169 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
18170 Fix setting of the element of encoded-kbd-iso2022-invocations.
18171
18172 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
18173
18174 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
18175 (gdb-threads-select): Change to also accept mouse events.
18176 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
18177 (gdb-threads-mouse-select): Delete.
18178
18179 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
18180
18181 * files.el (insert-directory): Take care of empty directory,
18182 listed without -a switch.
18183
18184 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
18185
18186 * textmodes/refill.el (refill-post-command-function):
18187 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
18188 to the list of functions that we should be careful not to undo.
18189 (refill-late-fill-paragraph-function): Remove.
18190 (refill-saved-state): New var.
18191 (refill-mode): Use it to save fill-paragraph-function.
18192 Save also the value of auto-fill-function.
18193
18194 * term/w32-win.el: Simplify code.
18195
18196 2005-01-23 Kim F. Storm <storm@cua.dk>
18197
18198 * simple.el (line-move): Adapt to new return value from
18199 pos-visible-in-window-p.
18200
18201 * simple.el (line-move): Fix last change. Check partial
18202 visibility at point rather than at window-start.
18203
18204 2005-01-22 Jason Rumney <jasonr@gnu.org>
18205
18206 * term/w32-win.el (xw-defined-colors): Remove debug-message.
18207
18208 2005-01-22 David Kastrup <dak@gnu.org>
18209
18210 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
18211
18212 2005-01-22 Eli Zaretskii <eliz@gnu.org>
18213
18214 * type-break.el (type-break-mode): Add a test for
18215 type-break-file-name being non-nil.
18216
18217 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
18218
18219 * net/eudc.el (top level): Call (message "") via progn, so that
18220 eudc-options-file is loaded.
18221
18222 2005-01-22 Kim F. Storm <storm@cua.dk>
18223
18224 * simple.el (line-move-1): Rename from line-move.
18225 (line-move): New function that adjusts vscroll for partially
18226 visible rows, and calls line-move-1 otherwise.
18227
18228 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
18229
18230 * pcomplete.el: Define pcomplete-read-event instead of read-event,
18231 since it's not a complete read-event implementation
18232
18233 2005-01-20 Jay Belanger <belanger@truman.edu>
18234
18235 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
18236 for called function.
18237
18238 2005-01-20 Steven Tamm <steventamm@mac.com>
18239
18240 * term/mac-win.el (process-connection-type): Remove.
18241 Controlled now by s/darwin.h:PTY_ITERATION.
18242
18243 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
18244
18245 * window.el (handle-select-window): Don't switch window when we're
18246 in the minibuffer.
18247
18248 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
18249
18250 * subr.el (dotimes-with-progress-reporter): New macro.
18251
18252 * ses.el (ses-dotimes-msg): Remove macro.
18253 Use `dotimes-with-progress-reporter' instead.
18254
18255 2005-01-19 Steven Tamm <steventamm@mac.com>
18256
18257 * term/mac-win.el (process-connection-type): Use new
18258 operating-system-release variable to use ptys on Darwin 7 (OS X
18259 10.3) when using carbon build.
18260
18261 2005-01-19 Jay Belanger <belanger@truman.edu>
18262
18263 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
18264 flags if the last command was a tab or M-tab.
18265
18266 * calc/calc-prog.el (calc-user-define-edit): Put original formula
18267 in formula editing buffer.
18268
18269 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
18270
18271 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
18272 breakpoint image symbol in margin.
18273
18274 2005-01-19 Jay Belanger <belanger@truman.edu>
18275
18276 * calc/calc-prog.el (calc-execute-kbd-macro):
18277 Ignore calc-keep-arg-flag.
18278
18279 2005-01-19 Kenichi Handa <handa@m17n.org>
18280
18281 * textmodes/ispell.el (ispell-looking-at): New function.
18282 (ispell-process-line): Use ispell-looking-at to compare the ispell
18283 output and the buffer contents.
18284
18285 2005-01-18 Jay Belanger <belanger@truman.edu>
18286
18287 * calc/calc.el (calc-display-raw): Fix docstring.
18288
18289 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
18290
18291 * simple.el (blink-matching-open): Strip extra info from syntax.
18292
18293 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
18294 funny chars in the end-of-here-doc marker.
18295
18296 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
18297
18298 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
18299 that enable/disabled state of breakpoints is shown correctly in
18300 fringe and on ttys.
18301 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
18302 Add breakpoint information as text properties.
18303 (gdb-mouse-toggle-breakpoint):
18304 Rename to gdb-mouse-set-clear-breakpoint.
18305 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
18306 breakpoints in the margin.
18307 (gdb-remove-strings): Simplify.
18308
18309 2005-01-17 Jay Belanger <belanger@truman.edu>
18310
18311 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
18312 erasing buffer.
18313
18314 2005-01-17 Richard M. Stallman <rms@gnu.org>
18315
18316 * progmodes/grep.el (grep-find): Copy from `grep' the condition
18317 for calling grep-compute-defaults.
18318
18319 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
18320 if buffer is empty.
18321
18322 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
18323
18324 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
18325
18326 * hilit-chg.el (highlight-changes-mode): Don't autoload.
18327
18328 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
18329 non-preloaded variables.
18330
18331 2005-01-17 Steven Tamm <steventamm@mac.com>
18332
18333 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
18334 tex-shell cause to force interactivity when using pipes.
18335
18336 2005-01-17 Kim F. Storm <storm@cua.dk>
18337
18338 * simple.el (just-one-space): Make arg optional.
18339
18340 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
18341
18342 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
18343 posn-at-x-y to t to access left-margin.
18344
18345 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
18346
18347 Sync with Tramp 2.0.47.
18348
18349 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
18350 catching keep-date problems in cp/scp operations.
18351 (tramp-handle-copy-file): Don't call `set-file-modes'
18352 unconditionally. Specialized functions should know better what is
18353 necessary. This improves performance a little bit, and the
18354 functions could catch errors with `cp -p' and `scp -p'.
18355 (tramp-do-copy-or-rename-file-via-buffer)
18356 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
18357 when appropriate.
18358 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
18359 Call `set-file-modes' when appropriate.
18360 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
18361 Johnsson <isak@hypergene.com>
18362 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
18363 of both Tramp buffer and debug buffer. Reported by Joakim Verona
18364 <joakim@verona.se>
18365 (tramp-file-name-for-operation): Mark `shell-command' as magic for
18366 Emacs only.
18367
18368 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
18369 `find-file-hooks' and `dired-mode-hook'.
18370 (tramp-minor-mode-map): Respective map. Add remapping for
18371 `compile' and `recompile'.
18372 (tramp-remap-command, tramp-recompile): New defuns.
18373 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
18374 in buffer "*Compilation*". Call the commands asynchronously.
18375
18376 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
18377 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
18378 `shell-command', because it isn't magic in XEmacs. Reported by
18379 Adrian Aichner <adrian@xemacs.org>.
18380
18381 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
18382 `substitute-in-file-name.
18383 (tramp-smb-handle-substitute-in-file-name): New defun.
18384 (tramp-smb-advice-PC-do-completion): Delete advice.
18385
18386 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
18387
18388 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
18389 Fix error in deleting region.
18390
18391 2005-01-15 Richard M. Stallman <rms@gnu.org>
18392
18393 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
18394 In non-temp buffer, switch syntax table temporarily.
18395
18396 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
18397
18398 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
18399
18400 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
18401
18402 * imenu.el (imenu--split-menu): Copy menulist before sorting.
18403 (imenu--generic-function): Use START, not BEG, as pos of definition.
18404
18405 * simple.el (just-one-space): Argument specifies number of spaces.
18406
18407 * simple.el (eval-expression-print-format): Avoid warning
18408 about edebug-active.
18409
18410 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
18411
18412 * progmodes/sh-script.el: Code copied from make-mode.el
18413 with small changes,
18414 (sh-mode-map): Bind C-c C-\.
18415 (sh-backslash-column, sh-backslash-align): New variables.
18416 (sh-backslash-region, sh-append-backslash): New functions.
18417
18418 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
18419
18420 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
18421 (rmail-pop-password, rmail-pop-password-required): Move to
18422 rmail-obsolete group.
18423 (rmail-set-pop-password): Rename to rmail-set-remote-password.
18424 All callers updated.
18425 (rmail-get-pop-password): Rename to rmail-get-remote-password.
18426 Take an argument specifying whether it is POP or IMAP mailbox we
18427 are using. All callers updated.
18428 (rmail-pop-password-error): Rename to
18429 rmail-remote-password-error. Added mailutils-specific error message.
18430 (rmail-movemail-search-path)
18431 (rmail-movemail-variant-in-use): New variables.
18432 (rmail-remote-password, rmail-remote-password-required):
18433 New customization variables.
18434 (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
18435 (rmail-parse-url): New function.
18436 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
18437 with GNU mailutils movemail.
18438
18439 2005-01-15 Kevin Ryde <user42@zip.com.au>
18440
18441 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
18442 suffix to space, $ or '$, to correctly position point when going
18443 to @table style constants like DBL_MAX.
18444
18445 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
18446
18447 * type-break.el (type-break-mode, type-break-file-time)
18448 (type-break-file-keystroke-count, type-break-choose-file):
18449 Don't store data in or load data from the file if type-break-file-name
18450 is nil.
18451 (type-break-file-name): Doc update as per the above.
18452
18453 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
18454
18455 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
18456 lookup-key might return nil; handle that.
18457
18458 2005-01-15 Alan Mackenzie <acm@muc.de>
18459
18460 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
18461 rather than the element found, thus enabling the tree to be setcar'd.
18462
18463 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
18464
18465 * textmodes/org.el (org-show-following-heading): New option.
18466 (org-show-hierarchy-above): Use `org-show-following-heading'.
18467 (org-cycle): Documentation fix.
18468
18469 * textmodes/org.el (orgtbl-optimized): New option
18470 (orgtbl-mode): New command, a minor mode.
18471 (orgtbl-mode-map): New variable.
18472 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
18473 (orgtbl-error, orgtbl-self-insert-command)
18474 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
18475
18476 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
18477 a local variable in each org-mode buffer.
18478
18479 * textmodes/org.el (org-set-regexps-and-options): Rename from
18480 `org-set-regexps'. Added checking for STARTUP keyword.
18481 (org-get-current-options): Add STARTUP options.
18482 (org-table-insert-row): Make mode intelligent about when
18483 realignment is needed.
18484 (org-self-insert-command, org-delete-backward-char, org-delete-char):
18485 New commands.
18486 (org-enable-table-editor): New default value `optimized'.
18487 (org-table-blank-field): Support blanking regions if active.
18488
18489 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
18490
18491 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
18492 if the year is not given.
18493
18494 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
18495 Add new escapes %m and %M, fixed bug with %F by adding
18496 save-match-data.
18497 (reftex-reference): Remove ?. from list of spaces.
18498 (reftex-label-info): Add automatic label prefix recognition.
18499
18500 * textmodes/reftex-index.el (reftex-index-next-phrase):
18501 Add slave parameter to call of `reftex-index-this-phrase'.
18502 (reftex-index-this-phrase): New optional argument.
18503 (reftex-index-region-phrases): Add slave parameter to call of
18504 `reftex-index-this-phrase'.
18505 (reftex-display-index): New argument redo.
18506 (reftex-index-rescan): Add `redo' to arguments of
18507 `reftex-display-index'.
18508 (reftex-index-Rescan, reftex-index-revert)
18509 (reftex-index-switch-index-tag): Add `redo' to arguments of
18510 `reftex-display-index'.
18511 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
18512 indexing. Fix bug with matching is there is a quote before or
18513 after the word.
18514
18515 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
18516 Fix bug when collecting citation keys in lines with comments.
18517 (reftex-citation): Prefix argument no longer rescans the document,
18518 but forces prompting for optional arguments of cite macros.
18519 (reftex-do-citation): Prompting for optional arguments implemented.
18520
18521 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
18522 Add optional arguments to most cite commands.
18523 (reftex-cite-cleanup-optional-args): New option
18524 (reftex-cite-prompt-optional-args): New option.
18525 (reftex-trust-label-prefix): New option.
18526
18527 * textmodes/reftex-toc.el (reftex-toc-find-section):
18528 Add push-mark before changing the position in the buffer.
18529
18530 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
18531 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
18532
18533 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
18534
18535 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
18536 more carefully.
18537
18538 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
18539
18540 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
18541 (sgml-mode): Use it.
18542 (sgml-get-context): Better keep track of implicitly closed tags.
18543
18544 2005-01-13 Kenichi Handa <handa@m17n.org>
18545
18546 * textmodes/ispell.el: These changes are to fix misalignment error
18547 caused by equivalent characters of different Emacs charsets.
18548 (ispell-unified-chars-table): New variable.
18549 (ispell-get-decoded-string): New function.
18550 (ispell-get-casechars, ispell-get-not-casechars)
18551 (ispell-get-otherchars): Call ispell-get-decoded-string.
18552
18553 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
18554
18555 * custom.el (custom-declare-variable): Just put symbol instead
18556 of (defvar . symbol) in `current-load-list'.
18557
18558 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
18559
18560 * emacs-lisp/elint.el: Fixed typo in Commentary section.
18561
18562 2005-01-12 Jay Belanger <belanger@truman.edu>
18563
18564 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
18565 to create a Calc summary.
18566
18567 2005-01-12 Kim F. Storm <storm@cua.dk>
18568
18569 * mouse.el (mouse-on-link-p): Change functionality and doc
18570 string to comply with latest description in lisp ref.
18571
18572 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
18573
18574 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
18575 Enable mouse clicks on mode-line, header-line and margin.
18576 (event-type): Give mouse event symbols an `event-kind' property
18577 with value `mouse-click'.
18578
18579 2005-01-12 Juri Linkov <juri@jurta.org>
18580
18581 * facemenu.el (list-colors-display): Add new arg buffer-name.
18582 Use it. Fix docstring. Replace code for identifying duplicate
18583 colors by the name with call to `list-colors-duplicates' which
18584 identifies duplicate colors by the value unless the color
18585 is one of special Windows colors. Set truncate-lines to t.
18586 Print sorted duplicate color names on each line. Indent to 22
18587 \(the longest color name in rgb.txt) instead of 20. Optimize.
18588 (list-colors-duplicates): New function.
18589 (facemenu-color-name-equal): Delete function.
18590
18591 * facemenu.el (list-colors-print): New function created from code
18592 in list-colors-display. Print #RRGGBB at the window right edge.
18593 (list-colors-display): When temp-buffer-show-function is not
18594 defined, call list-colors-print from temp-buffer-show-hook
18595 to get the right value of window-width in list-colors-print
18596 after the buffer is displayed.
18597
18598 * simple.el (pop-mark): Move deactivate-mark out of conditional
18599 part to deactivate the active mark regardless of the state of the
18600 mark ring.
18601
18602 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
18603 variables line in desktop files.
18604
18605 2005-01-12 Juri Linkov <juri@jurta.org>
18606
18607 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
18608 Bring together isearch highlight related options.
18609 (lazy-highlight): Replace group `replace' by `matching'.
18610 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
18611 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
18612 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
18613 and declare them obsolete.
18614 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
18615 (isearch-faces): Remove defgroup.
18616 (isearch-overlay, isearch-highlight, isearch-dehighlight):
18617 Move isearch highlighting code closer to lazy highlighting code.
18618
18619 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
18620 (query-replace-highlight, query-replace-lazy-highlight)
18621 (query-replace): Move definitions to the beginning of the file.
18622
18623 2005-01-11 Juri Linkov <juri@jurta.org>
18624
18625 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
18626 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
18627 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
18628
18629 * info.el (Info-history-forward): New variable.
18630 (Info-select-node): Reset Info-history-forward to nil.
18631 (Info-last): Turn into defalias.
18632 (Info-history-back): Rename from Info-last.
18633 Add current node to Info-history-forward.
18634 (Info-history-forward): New fun.
18635 (Info-mode-map): Replace Info-last by Info-history-back.
18636 Bind Info-history-forward to "r".
18637 (Info-mode-menu): Replace Info-last by Info-history-back.
18638 Fix menu item text. Add menu item for Info-history-forward.
18639 (info-tool-bar-map): Replace Info-last by Info-history-back.
18640 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
18641 for Info-history-forward.
18642 (Info-mode): Replace Info-last by Info-history-back in docstring.
18643 Add local variable Info-history-forward.
18644 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
18645
18646 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
18647
18648 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
18649 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
18650 Ignore select-window events rather than fiddle with
18651 mouse-autoselect-window.
18652
18653 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
18654
18655 * type-break.el (type-break-mode): Fix previous change.
18656
18657 2005-01-10 Jay Belanger <belanger@truman.edu>
18658
18659 * calc/calc-ext.el (calc-reset): Reset when inside embedded
18660 calculator; only reset when point is inside a calculator.
18661 Don't adjust the window height if the window takes up the whole height
18662 of the frame.
18663
18664 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
18665
18666 * ebuff-menu.el (Electric-buffer-menu-mode):
18667 Preserve value of buffer-local var header-line-format.
18668
18669 2005-01-09 Jay Belanger <belanger@truman.edu>
18670
18671 * calc/calc.el (calc-mode-var-list-restore-saved-values):
18672 Make sure settings file exists before accessing it.
18673
18674 * calc/calc-embed.el (calc-embedded-subst):
18675 Replace math-multi-subst-rec, which is only supposed to be called
18676 by math-multi-subst, by math-multi-subst.
18677
18678 2005-01-09 Andre Spiegel <spiegel@gnu.org>
18679
18680 * vc.el (vc-allow-async-revert): New user option.
18681 (vc-disable-async-diff): New internal variable.
18682 (vc-revert-buffer): Use them to disable asynchronous diff.
18683
18684 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
18685 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
18686 asynchronously if vc-disable-async-diff is t.
18687
18688 2005-01-09 Jay Belanger <belanger@truman.edu>
18689
18690 * calc/calc.el (defcalcmodevar): New macro.
18691 (calc-mode-var-list-restore-default-values)
18692 (calc-mode-var-list-restore-saved-values): New functions.
18693 (calc-mode-var-list): Use defcalcmodevar to define it.
18694 (calc-always-load-extensions, calc-line-numbering)
18695 (calc-line-breaking, calc-display-just, calc-display-origin)
18696 (calc-number-radix, calc-leading-zeros, calc-group-digits)
18697 (calc-group-char, calc-point-char, calc-frac-format)
18698 (calc-prefer-frac, calc-hms-format, calc-date-format)
18699 (calc-float-format, calc-full-float-format, calc-complex-format)
18700 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
18701 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
18702 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
18703 (calc-matrix-brackets, calc-language, calc-language-option)
18704 (calc-left-label, calc-right-label, calc-word-size)
18705 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
18706 (calc-display-raw, calc-internal-prec, calc-angle-mode)
18707 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
18708 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
18709 (calc-window-height, calc-display-trail, calc-show-selections)
18710 (calc-use-selections, calc-assoc-selections)
18711 (calc-display-working-message, calc-auto-why, calc-timing)
18712 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
18713 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
18714 (calc-gnuplot-default-device, calc-gnuplot-default-output)
18715 (calc-gnuplot-print-device, calc-gnuplot-print-output)
18716 (calc-gnuplot-geometry, calc-graph-default-resolution)
18717 (calc-graph-default-resolution-3d, calc-invocation-macro)
18718 (calc-show-banner): Use defcalcmodevar to declare them and set
18719 their default values.
18720
18721 * calc/calc-ext.el (calc-reset): Restore saved values of variables
18722 instead of default values (but restore default values if there is
18723 an argument of 0).
18724
18725 2005-01-09 David Kastrup <dak@gnu.org>
18726
18727 * desktop.el (desktop-restore-eager): Fix typo in type.
18728
18729 2005-01-08 Richard M. Stallman <rms@gnu.org>
18730
18731 * cus-edit.el (customize): Delete :link.
18732
18733 2005-01-08 Jay Belanger <belanger@truman.edu>
18734
18735 * calc/calc.el (calc-mode): Remove the extension from the
18736 `calc-settings-file' file name when loading it.
18737
18738 2005-01-08 Kim F. Storm <storm@cua.dk>
18739
18740 * info.el (Info-mode-map, Info-next-link-keymap)
18741 (Info-prev-link-keymap, Info-up-link-keymap):
18742 Map follow-link to mouse-face.
18743 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
18744
18745 2005-01-08 Jay Belanger <belanger@truman.edu>
18746
18747 * calc/calc.el (calc-settings-file): Change default value.
18748 Suggested by cgw in a comment in calc-mode.el.
18749
18750 * calc/calc-mode.el (calc-settings-file-name):
18751 Compare calc-settings-file to user-init-file instead of ~/.emacs.
18752 Replace ~/.emacs in a prompt by calc-settings-file.
18753
18754 2005-01-07 Lars Hansen <larsh@math.ku.dk>
18755
18756 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
18757 (desktop-lazy-idle-delay): New customizable variables.
18758 (desktop-buffer-args-list): New variable.
18759 (desktop-append-buffer-args): New function.
18760 (desktop-save): Call desktop-append-buffer-args for some buffers.
18761 (desktop-lazy-create-buffer): New function.
18762 (desktop-idle-create-buffers): New function.
18763 (desktop-read): Add message about buffers to restore lazily.
18764 (desktop-lazy-abort): New command.
18765 (desktop-clear): Call desktop-lazy-abort.
18766 (desktop-lazy-complete): New command.
18767
18768 2005-01-06 Richard M. Stallman <rms@gnu.org>
18769
18770 * emacs-lisp/find-func.el (find-face-definition):
18771 Rename from find-face.
18772
18773 2005-01-06 Kim F. Storm <storm@cua.dk>
18774
18775 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
18776
18777 * man.el (Man-xref-man-page, Man-xref-header-file)
18778 (Man-xref-normal-file): Add follow-link property.
18779
18780 2005-01-06 Jay Belanger <belanger@truman.edu>
18781
18782 * calc/calc-units.el: Make sure the proper macro definitions are
18783 available when compiling.
18784
18785 2005-01-06 Juri Linkov <juri@jurta.org>
18786
18787 * isearch.el (isearch-lazy-highlight-update):
18788 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
18789
18790 2005-01-06 Miles Bader <miles@gnu.org>
18791
18792 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
18793 (isearch-lazy-highlight-face): Use new name.
18794
18795 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
18796
18797 * uniquify.el (uniquify-rationalize-file-buffer-names):
18798 Re-add an interactive spec.
18799 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
18800 to the same name.
18801
18802 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
18803 (isearch-update, isearch-done): Adjust calls accordingly.
18804
18805 2005-01-05 Richard M. Stallman <rms@gnu.org>
18806
18807 * custom.el (custom-set-variables, custom-theme-set-variables):
18808 Clarify documentation.
18809
18810 * emacs-lisp/find-func.el (find-variable)
18811 (find-variable-other-window, find-variable-other-frame):
18812 Fix the TYPE args to find-function-read and find-function-do-it.
18813 (find-function): Doc fix.
18814 (find-function-at-point): Replace function-at-point alias.
18815
18816 2005-01-04 Richard M. Stallman <rms@gnu.org>
18817
18818 * cus-face.el (custom-declare-face):
18819 Record defface in current-load-list.
18820
18821 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
18822
18823 * emacs-lisp/find-func.el: Doc fixes.
18824 (find-face-regexp): New variable.
18825 (find-function-regexp-alist): New variable.
18826 (find-function-C-source): Third arg is now TYPE.
18827 (find-function-search-for-symbol): Handle general TYPE.
18828 (find-function-read, find-function-do-it): Handle general TYPE.
18829 (find-definition-noselect, find-face): New functions.
18830 (function-at-point): Alias deleted.
18831
18832 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
18833
18834 * battery.el (display-battery-mode): Rename from display-battery.
18835 Handle the case where it gets turned off.
18836
18837 2005-01-04 Richard M. Stallman <rms@gnu.org>
18838
18839 * cus-edit.el (customize): Make :link point to user doc.
18840
18841 * man.el (Man-fontify-manpage): Turn off undo generation.
18842
18843 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
18844
18845 2005-01-04 Andreas Schwab <schwab@suse.de>
18846
18847 * files.el (insert-directory): Only look for error lines in
18848 inserted text. Don't move too far after processing --dired markers.
18849
18850 2005-01-04 Richard M. Stallman <rms@gnu.org>
18851
18852 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
18853 Don't expand if the character is @, period, dash, etc.
18854 (define-mail-abbrev): Quote names that contain problem characters.
18855
18856 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
18857
18858 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
18859
18860 2005-01-03 Richard M. Stallman <rms@gnu.org>
18861
18862 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
18863 (query-replace-highlight, query-replace-lazy-highlight)
18864 (query-replace): Definitions moved up. Doc fix.
18865
18866 2005-01-03 Richard M. Stallman <rms@gnu.org>
18867
18868 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
18869 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
18870 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
18871 (lazy-highlight-face): Rename from isearch-lazy-...
18872 Change all references to them.
18873
18874 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
18875
18876 * cus-edit.el (custom-file): Doc fix for defcustom.
18877 (custom-file): The function no longer sets the variable
18878 `custom-file' to its return value.
18879
18880 * startup.el (command-line): No longer load `custom-file'.
18881
18882 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
18883
18884 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
18885
18886 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
18887 Don't confuse module-prefixed identifiers for labels.
18888 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
18889
18890 2005-01-02 Richard M. Stallman <rms@gnu.org>
18891
18892 * files.el (basic-save-buffer-1): Fix previous change.
18893
18894 * loadhist.el (file-loadhist-lookup): New function.
18895 (file-provides, file-requires): Use it.
18896
18897 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
18898 instead of calculating the right size.
18899
18900 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
18901
18902 * vc-svn.el (vc-svn-diff): Stay local if possible.
18903
18904 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
18905
18906 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
18907
18908 * files.el (hack-local-variables): Fix last change.
18909
18910 2005-01-02 Jay Belanger <belanger@truman.edu>
18911
18912 * calc/calc-yank.el (calc-edit-top): New variable.
18913 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
18914 object. Change header properties.
18915 (calc-edit-finish, calc-edit-finish-stack-object)
18916 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
18917 edited object.
18918 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
18919 for the beginning of the edited object.
18920 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
18921 for the beginning of the edited object.
18922 * calc/calc-prog.el (calc-edit-macro-finish-edit)
18923 (calc-finish-formula-edit, calc-macro-repeats)
18924 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
18925 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
18926 beginning of the edited object.
18927 (calc-user-define-edit): Change the header for editing macros.
18928 Remove unnecessary variable.
18929
18930 2005-01-01 Jay Belanger <belanger@truman.edu>
18931
18932 * calc/calc-yank.el (calc-edit-mode): Change default header.
18933 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
18934 * calc/calc-store.el (calc-edit-variable): Change title to match new
18935 header.
18936 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
18937 mode to match new header.
18938 (calc-user-define-edit): Change titles to include names of commands.
18939 (calc-finish-formula-edit): Adjust to handle new header.
18940 (calc-finish-macro-edit): Remove.
18941 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
18942 (calc-edit-macro-command, calc-edit-macro-command-type)
18943 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
18944 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
18945 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
18946 (calc-edit-macro-finish-edit): New functions.
18947 (calc-user-define-edit): Use new functions to edit named calc macros.
18948
18949 2005-01-01 Stefan <monnier@iro.umontreal.ca>
18950
18951 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
18952
18953 * ses.el (copy-region-as-kill): Deactivate mark.
18954
18955 2005-01-01 Richard M. Stallman <rms@gnu.org>
18956
18957 * replace.el (occur-1): If the output buffer is also an input,
18958 don't kill it, rename it.
18959
18960 * faces.el (set-face-background, set-face-foreground): Doc fix.
18961
18962 * cus-face.el (custom-face-attributes): Fix :help-echo strings
18963 for :foreground and :background.
18964
18965 * dired.el (dired-view-command-alist): Variable deleted.
18966 (dired-view-file, dired-mouse-find-file-other-window):
18967 Delete the code to use it.
18968
18969 2005-01-01 Kim F. Storm <storm@cua.dk>
18970
18971 * image.el (insert-sliced-image): Use t for line-height property.
18972
18973 See ChangeLog.11 for earlier changes.
18974
18975 ;; Local Variables:
18976 ;; coding: iso-2022-7bit
18977 ;; End:
18978
18979 Copyright (C) 2005 Free Software Foundation, Inc.
18980 Copying and distribution of this file, with or without modification,
18981 are permitted provided the copyright notice and this notice are preserved.
18982
18983 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1