(compilation-find-file): Handle the
[bpt/emacs.git] / lisp / ChangeLog
1 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * progmodes/compile.el (compilation-find-file): Handle the
4 cases where the user selects a non-existent file.
5
6 2006-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
7
8 * bindings.el (minibuffer-local-map): Rebind TAB so it inserts a \t.
9
10 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
11
12 * subr.el (sit-for): Just sleep-for if noninteractive.
13
14 2006-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
15
16 * emacs-lisp/autoload.el (make-autoload): Use new arg.
17
18 * custom.el (custom-autoload): Add `noset' argument.
19 (custom-push-theme): Don't autoload the variable, let callers do it.
20 (custom-theme-set-variables): Autoload the variable if necessary.
21
22 * cus-edit.el (custom-variable-state-set): If the variable was
23 originally set outside custom, but to the same value as the default,
24 consider it to be standard.
25
26 * Makefile.in (mh-loaddefs.el): Finish setting up the default empty
27 file *before* telling Emacs to add the autoloads, in case it fails.
28
29 * progmodes/sh-script.el (sh-quoted-subshell): Don't match escaped `.
30 Use `cond', push', and `dolist'.
31
32 2006-07-17 Richard Stallman <rms@gnu.org>
33
34 * image-mode.el (tar-superior-buffer, archive-superior-buffer):
35 Add defvars to silence warnings.
36
37 2006-07-17 Chong Yidong <cyd@stupidchicken.com>
38
39 * progmodes/compile.el (compilation-mode-font-lock-keywords):
40 Don't highlight "Compiling file" messages as error.
41
42 * dired-aux.el (dired-compress-file): Confirm again if gzipped
43 file already exists.
44
45 2006-07-16 Thien-Thi Nguyen <ttn@gnu.org>
46
47 * find-file.el (ff-special-constructs): Doc fix. Also, for C/C++
48 entry, don't assign to free var; simply return the extracted filename.
49 (ff-treat-as-special): Incorporate common preamble from callers.
50 (ff-other-file-name, ff-find-the-other-file):
51 Update call to ff-treat-as-special.
52
53 * progmodes/ada-mode.el (ada-mode): Rewrite ff-special-constructs init.
54
55 2006-07-16 Mathias Dahl <mathias.dahl@gmail.com>
56
57 * tumme.el (tumme-get-comment): Fix bug.
58
59 2006-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
60
61 * files.el: Remove spurious * in docstrings.
62
63 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
64
65 * allout.el (allout-run-unit-tests-on-load): Rectify docstring
66 grammar.
67 (allout-beginning-of-current-line): Beware beginning of buffer.
68 Also, a comment is simplified.
69 (allout-hotspot-key-handler): Only set allout-post-goto-bullet
70 when appropriate. (This fix enables use for other than
71 bullet-hotspot operation.)
72 (allout-hide-current-subtree): While escalating to sibling-close,
73 make sure to situate on a topic.
74
75 2006-07-14 Kim F. Storm <storm@cua.dk>
76
77 * emulation/cua-base.el (cua-delete-selection)
78 (cua-toggle-set-mark): New defcustoms.
79 (cua-rectangle-modifier-key): Add `alt' modifier.
80 (cua-replace-region): Don't delete if cua-delete-selection is nil.
81 (cua-set-mark): Don't clear mark if cua-toggle-set-mark is nil.
82 Suggested by Klaus Zeitler <kzeitler@lucent.com>.
83
84 * emulation/cua-rect.el (cua-help-for-rectangle): Add `alt' modifier.
85
86 2006-07-14 Ken Manheimer <ken.manheimer@gmail.com>
87
88 * allout.el: Require 'cl during byte-compilation/interactive load,
89 for the `assert' macro.
90 (allout-mode-deactivate-hook): New hook, run when allout mode
91 deactivates.
92 (allout-developer): New allout customization subgroup.
93 (allout-run-unit-tests-on-load): New allout-developer
94 customization variable, when true allout unit tests are run towards
95 end of file load/eval.
96 (allout-inhibit-auto-fill): Disable auto-fill activity even during
97 auto-fill-mode.
98 (allout-resumptions): Remove, to be replaced by...
99 (allout-add-resumptions): Register variable settings to be
100 reinstated by `allout-do-resumptions'. The settings are made
101 buffer-local, but the locality/globality of the suspended setting
102 is restored on resumption.
103 (allout-do-resumptions): Reinstate all settings suspended using
104 `allout-add-resumptions'.
105 (allout-test-resumptions): Unit tests (and intermediate variables)
106 for resumptions.
107 (allout-tests-globally-unbound, allout-tests-globally-true)
108 (allout-tests-locally-true): Intermediate variables for
109 resumptions unit tests.
110 (allout-overlay-preparations): Replaces `allout-set-overlay-category'.
111 (allout-exposure-category): Replaces 'allout-overlay-category variable.
112 (allout-mode): Use `allout-add-resumptions' and `allout-do-resumptions'
113 instead of retired `allout-resumptions'. For hook functions, use
114 `local' parameter so hook settings are created and removed as
115 buffer-local settings. Revise (resumptions) setting
116 auto-fill-function so it is set only if already active. (The
117 related fill-function settings are all made in either case, so
118 that activating auto-fill-mode activity will have the custom
119 allout-mode behaviors (hanging indent on topics, if configured for it).
120 Remove all allout-exposure-category overlays on mode deactivation.
121 (allout-hotspot-key-handler): New function extracted from
122 `allout-pre-command-business', so the functionality can be used
123 for other purposes, eg as a binding in an overlay.
124 (allout-pre-command-business): Use new `allout-hotspot-key-handler'.
125 (allout-auto-fill): Respect new `allout-inhibit-auto-fill'
126 customization variable.
127 (allout-run-unit-tests): Run the (currently quite small)
128 repertoire of unit tests. Called just before the provide iff user
129 has customized `allout-run-unit-tests-on-load' non-nil.
130
131 2006-07-14 K\e,Aa\e(Broly L\e,Bu\e(Brentey <lorentey@elte.hu>
132
133 * emacs-lisp/authors.el (authors-aliases): Update.
134
135 2006-07-14 Nick Roberts <nickrob@snap.net.nz>
136
137 * progmodes/gdb-ui.el (gdb-display-buffer): Check for
138 gdb-source-window. Add dedicated argument.
139 (gdb-display-separate-io-buffer, gdb-append-to-inferior-io)
140 (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
141 (gdb-display-threads-buffer, gdb-display-memory-buffer)
142 (gdb-display-locals-buffer): Use it.
143
144 * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
145 Set gdb-source-window.
146
147 2006-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
148
149 * emacs-lisp/autoload.el (make-autoload): Remove special handling of
150 minor modes, redundant with the custom-autoload line above.
151
152 2006-07-12 Chong Yidong <cyd@stupidchicken.com>
153
154 * longlines.el (longlines-post-command-function): Handle open-line too.
155
156 2006-07-12 Richard Stallman <rms@gnu.org>
157
158 * progmodes/grep.el (grep-last-buffer): Doc fix.
159
160 * info.el (Info-try-follow-nearest-node): Doc fix.
161
162 * emacs-lisp/edebug.el (edebug-instrument-function):
163 Err if find-function-noselect gives no position.
164
165 * emacs-lisp/find-func.el (find-function-search-for-symbol):
166 If can't find definition, return nil for position.
167 (find-function-do-it): Handle new return value
168 of find-definition-noselect.
169 (find-definition-noselect, find-variable-noselect): Doc fix.
170 (find-function-noselect): Doc fix.
171
172 * help-mode.el (help-variable-def): Handle find-variable-noselect
173 returning no position.
174 (help-function-def): Likewise for find-function-search-for-symbol.
175 (help-face-def): Likewise.
176
177 * help-fns.el (describe-variable): Handle find-variable-noselect
178 returning no position.
179
180 * files.el (locate-file-completion): Avoid duplicates in result.
181
182 * cus-edit.el (custom-no-edit): New command.
183 (custom-mode-map): Remap to custom-no-edit instead of
184 using suppress-keymap.
185
186 2006-07-12 Nick Roberts <nickrob@snap.net.nz>
187
188 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
189 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
190 (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
191
192 * thumbs.el (thumbs-call-convert): Use shell-command-switch.
193
194 2006-07-11 Kim F. Storm <storm@cua.dk>
195
196 * ido.el (ido-copy-current-file-name): Use buffer-name if
197 buffer-file-name is nil.
198
199 2006-07-11 Chong Yidong <cyd@stupidchicken.com>
200
201 * simple.el (undo-ask-before-discard): Set to nil.
202
203 * vc.el (vc-exec-after): Don't delete process manually.
204 (vc-print-log): Run log-view-mode in process sentinel inside
205 inhibit-read-only. Don't shrink window due to timing issues.
206
207 * progmodes/ebrowse.el (ebrowse-display-member-buffer):
208 Avoid using with-output-to-temp-buffer, which clobbers local vars.
209
210 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
211
212 * progmodes/compile.el (compilation-error-regexp-alist-alist):
213 Fix ambiguity introduced by last change.
214 (compilation-find-file): Move save-excursion to where it may
215 make sense. Fix a left over `find-file'.
216
217 2006-07-11 Robert J. Chassell <bob@rattlesnake.com>
218
219 * textmodes/texinfmt.el (texinfo-format-separate-node):
220 Insert a string before point, which fits documentation, not after.
221 (texinfo-multitable-item): In a multitable row, insert any
222 additional needed @tabs and spaces.
223
224 2006-07-11 Nick Roberts <nickrob@snap.net.nz>
225
226 * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
227 (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
228 (tumme-set-exif-data, tumme-get-exif-data): Use call-process
229 instead of shell-command.
230 (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
231 (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
232 (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
233 (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
234 (tumme-thumbnail-set-image-description, tumme-gallery-generate)
235 (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
236
237 2006-07-11 Kim F. Storm <storm@cua.dk>
238
239 * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form.
240 Remove special case for seconds < 0. Use (redisplay t) instead.
241
242 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
243
244 * progmodes/cc-awk.el (defconst): Use eval-and-compile to avoid
245 compilation error.
246
247 * subr.el (sit-for): New function.
248
249 * play/hanoi.el (hanoi-sit-for): Check sit-for return value.
250
251 2006-07-10 Richard Stallman <rms@gnu.org>
252
253 * ldefs-boot.el (edebug): Update page.
254
255 2006-07-10 Kim F. Storm <storm@cua.dk>
256
257 * emacs-lisp/authors.el (authors-ignored-files): Ignore changes
258 to FOR-RELEASE and TODO.
259
260 2006-07-10 Romain Francoise <romain@orebokech.com>
261
262 * emacs-lisp/authors.el (authors-aliases): Update.
263
264 2006-07-10 Alan Mackenzie <acm@muc.de>
265
266 * progmodes/cc-awk.el, cc-defs.el, cc-fonts.el, cc-langs.el:
267 * cc-mode.el: Changes to eradicate eval-after-load.
268
269 2006-07-09 Chong Yidong <cyd@stupidchicken.com>
270
271 * emacs-lisp/helper.el (Helper-help-scroller): Don't signal error
272 on non-char events.
273
274 2006-07-09 Romain Francoise <romain@orebokech.com>
275
276 * progmodes/compile.el (compilation-mode-font-lock-keywords):
277 Don't highlight start/end markers as compilation messages.
278
279 * isearch.el (isearch-yank-line): Let-bind `inhibit-field-text-motion'
280 to t.
281
282 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
283
284 * textmodes/fill.el (fill-region-as-paragraph): Refine last change.
285
286 2006-07-08 Richard Stallman <rms@gnu.org>
287
288 * term/x-win.el (x-handle-display): Add doc string.
289
290 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
291
292 * subr.el (def-edebug-spec): Move here.
293 * emacs-lisp/edebug.el (def-edebug-spec): Move to subr.el.
294
295 * imenu.el (imenu-choose-buffer-index): Doc fix.
296
297 2006-07-08 Romain Francoise <romain@orebokech.com>
298
299 * term/x-win.el (x-display-name): Fix typo.
300
301 2006-07-08 Eli Zaretskii <eliz@gnu.org>
302
303 * hexl.el (hexl-find-file): Doc fix.
304
305 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
306
307 2006-07-07 Chong Yidong <cyd@stupidchicken.com>
308
309 * term/x-win.el (x-display-name): Doc fix.
310
311 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
312
313 * textmodes/fill.el (fill-delete-prefix): Don't ignore excessively
314 long prefixes.
315 (fill-region-as-paragraph): Don't round up to a whole line.
316 (fill-comment-paragraph): Don't include the code-before-the-comment
317 when calling fill-region-as-paragraph.
318
319 * international/mule.el (make-char): Remove redundancy.
320
321 * emacs-lisp/bytecomp.el (byte-compile-form): The `byte-compile'
322 property may contain an anonymous function rather than a symbol.
323
324 * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
325
326 * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
327 Use shy regexp. Fix incorrect backref to potentially unmatched group.
328
329 * dirtrack.el (dirtrack-default-directory-function): Remove.
330 (dirtrack-directory-function): Use file-name-as-directory.
331 (dirtrack-windows-directory-function): Simplify.
332 (dirtrack-forward-slash, dirtrack-backward-slash)
333 (dirtrack-replace-slash): Remove.
334 (dirtrack-toggle): Adjust comint-preoutput-filter-functions as well.
335 (dirtrack): Fix wrong parenthesizing; use match-string.
336
337 * progmodes/octave-inf.el: Remove spurious * in docstrings.
338 (inferior-octave-mode): Only change the buffer-local value of
339 comint-dynamic-complete-functions.
340 (inferior-octave-mode-map, inferior-octave-mode-syntax-table):
341 Move the initialization to the declaration.
342 (inferior-octave-complete): Remove unused var `filter'.
343
344 * shell.el (shell-mode): Only change the buffer-local value of
345 comint-dynamic-complete-functions.
346
347 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
348
349 * textmodes/org.el (org-agenda-get-todos): Skip subtree also if
350 entry is skipped because it has been scheduled.
351 (org-prepare-agenda-buffers): Don't mark buffers as modified when
352 changing `:org-archived' and `:org-comment' properties.
353
354 2006-07-06 Chong Yidong <cyd@stupidchicken.com>
355
356 * server.el (server-select-display): Don't make the temp frame
357 minibuffer-only, in case it's not a temp frame.
358 (server-process-filter): Don't delete the temp frame if it's the
359 only one we have on that display.
360
361 * files.el (find-alternate-file): Doc fix.
362
363 2006-07-05 Richard Stallman <rms@gnu.org>
364
365 * files.el (abbreviate-file-name): Add save-match-data.
366
367 2006-07-03 Richard Stallman <rms@gnu.org>
368
369 * faces.el (read-face-name): Doc fix.
370
371 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
372
373 * net/goto-addr.el (goto-address): Mark as safe for local evals.
374
375 2006-07-05 Andre Spiegel <spiegel@gnu.org>
376
377 * vc.el (vc-diff-internal): Fix prev change.
378
379 2006-07-05 Thien-Thi Nguyen <ttn@gnu.org>
380
381 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Use eval-buffer.
382 * play/dunnet.el (dun-load-d, dun-eval): Likewise.
383
384 2006-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
385
386 * thingatpt.el (symbol-at-point): Don't use `form-at-point' which
387 fails if the symbol contains chars like ( or '.
388 (bounds-of-thing-at-point): Remove unused vars `end' and `beg'.
389 (thing-at-point-bounds-of-url-at-point): Remove unused vars `url' and
390 `short'.
391
392 2006-07-04 Kenichi Handa <handa@m17n.org>
393
394 * international/mule-cmds.el (set-language-info): If LANG-ENV is
395 the current one, don't call set-language-environment, but call one
396 of set-language-environment-XXX to make INFO effective now.
397 (set-language-environment): Call set-language-environment-XXX
398 functions instead of doing the various setups directly.
399 (set-language-environment-coding-systems): Delete argument eol-type.
400 (set-language-environment-input-method)
401 (set-language-environment-nonascii-translation)
402 (set-language-environment-charset)
403 (set-language-environment-fontset)
404 (set-language-environment-unibyte): New functions.
405
406 2006-07-03 Luc Teirlinck <teirllm@auburn.edu>
407
408 * locate.el (locate-update-when-revert): New option.
409 (locate-update-path): New option (suggested by Michael Albinus).
410 (locate-prompt-for-command): Whitespace change.
411 (locate-update): No longer offer to update the locate database by
412 default. Implement the two new options.
413
414 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
415
416 * tooltip.el: Move comment about track-mouse...
417
418 * progmodes/gud.el: ...to here.
419
420 2006-07-03 Chong Yidong <cyd@stupidchicken.com>
421
422 * facemenu.el (facemenu-listed-faces): New var.
423 (facemenu-unlisted-faces): Variable deleted.
424 (facemenu-add-new-face): Use facemenu-listed-faces.
425
426 * emulation/viper-init.el, calendar/calendar.el:
427 * progmodes/make-mode.el: Delete calls to facemenu-unlisted-faces.
428
429 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
430
431 * textmodes/org.el (org-mode): Remove no invalid settings for
432 calc embedded mode.
433 (org-mode-p): New defsubst.
434 (org-save-all-org-buffers): New function.
435 (org-first-headline-recenter): Enclose outline-regexp in group
436 delimiters.
437 (org-set-tags): Keep single space after stars.
438
439 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
440
441 * window.el (set-window-text-height): Only set window-min-height to
442 1 if that's the requested size.
443
444 * diff-mode.el (diff-find-file-name): Obey cvs-pcl-cvs-dirchange-re.
445 (diff-unified->context, diff-context->unified)
446 (diff-reverse-direction): Make sure the end marker stays at the end.
447 (diff-mode): Add the keymap table at the end of docstring.
448 Use lexical-let rather than constructing a closure manually.
449
450 * files.el (find-file-noselect-1): Remove unused var assignment.
451 (hack-local-variables-confirm): Print lists of strings as lists of
452 strings rather than lists of symbols.
453 (abbreviate-file-name, hack-local-variables-prop-line):
454 Use match-string.
455 (hack-one-local-variable): Move `make-local-variable' nearer its use.
456 (recover-session-finish): Use line-end-position.
457
458 2006-07-02 Michael Albinus <michael.albinus@gmx.de>
459
460 * net/tramp.el (tramp-handle-shell-command): Preserve current-buffer.
461
462 2006-07-02 Daniel Pfeiffer <occitan@esperanto.org>
463
464 * progmodes/make-mode.el (makefile-macroassign-regex):
465 Accept preceding keyword.
466 (makefile-gmake-statements): Reorganize, now that makepp has
467 "override" and also handle forgotten "override define".
468 (makefile-makepp-statements): Add new "global", "override export"
469 and "override global".
470
471 2006-06-30 Juanma Barranquero <lekktu@gmail.com>
472
473 * progmodes/ada-mode.el (ada-which-compiler, ada-mode-menu)
474 (ada-compile-mouse-goto-error, ada-deactivate-properties)
475 (ada-no-auto-case): Fix typos in docstrings.
476
477 2006-06-30 Nick Roberts <nickrob@snap.net.nz>
478
479 * info.el (Info-find-node-2): Search for makeinfo version more
480 carefully.
481
482 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
483
484 * textmodes/org.el (org-prepare-agenda-buffers):
485 Use `invisible-OK' argument for `org-end-of-subtree'.
486 (org-export-cleanup-toc-line): Rename from `org-html-cleanup-toc-line'.
487 (org-beginning-of-item): Fix bug in regular expression for white line.
488 (org-export-as-html): Enforce space after bullet in plain list items.
489 (org-set-autofill-regexps): Require space after plain list bullet
490 for paragraph-start.
491 (org-ts-regexp3): New constant.
492 (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
493 (org-timestamp-up-day, org-timestamp-down-day)
494 (org-timestamp-change): Work with inactive timestamps.
495 (org-ts-regexp1): Don't allow brackets in time stamps.
496
497 2006-06-29 Nick Roberts <nickrob@snap.net.nz>
498
499 * help-mode.el (help-xref-symbol-regexp): Add property as a keyword
500 for ignoring links.
501
502 * faces.el (read-face-name): Use it.
503
504 2006-06-28 Juri Linkov <juri@jurta.org>
505
506 * buff-menu.el (list-buffers-noselect): Compare Info file
507 with the string "dir" to detect Info directory.
508
509 * complete.el (partial-completion-mode): In lambda for
510 `choose-completion-string-functions' use full function signature
511 with 4 args, and move point to the end of the minibuffer only if arg
512 `mini-p' is non-nil.
513
514 2006-06-28 John Paul Wallington <jpw@pobox.com>
515
516 * ibuffer.el (ibuffer-mode): Doc fix.
517
518 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
519
520 * textmodes/org.el (org-context): New contexts :item-bullet,
521 :latex-fragment, :latex-preview.
522 (org-overlays-at, org-overlay-start, org-overlay-end):
523 New compatibility functions.
524 (org-inside-LaTeX-fragment-p): More accurate matching, using the
525 exact regexp that will be used during export.
526 (org-latex-regexps): New variable.
527 (org-cdlatex-mode): Improve advice for `texmathp'.
528 (turn-on-org-cdlatex): New function.
529
530 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
531
532 * term/mac-win.el (mac-handle-font-selection): Change keys of
533 mac-atsu-font-table from strings to numbers.
534 (mac-ts-caret-position): Use also when cursor-type is nil.
535 (mac-ts-update-active-input-area): Add Mac OS Classic support.
536 Relax condition for using overlay strings.
537 Use mac-ts-caret-position face when cursor-type is nil.
538
539 2006-06-26 Kim F. Storm <storm@cua.dk>
540
541 * help.el (view-emacs-news): Declare `res' in the right let* form.
542
543 2006-06-25 Michael Albinus <michael.albinus@gmx.de>
544
545 * net/rcompile.el (remote-compile): Replace ange-ftp based
546 implementation by Tramp functions.
547 Suggested by Marc Abramowitz <msabramo@gmail.com>.
548
549 * net/tramp.el (tramp-unload-tramp): Provide a doc string.
550
551 2006-06-24 Yoshinori Koseki <kose@meadowy.org>
552
553 * international/fontset.el (setup-default-fontset): Fix a typo in
554 the "Oriya-Akruti" registry name.
555
556 2006-06-23 Lars Hansen <larsh@soem.dk>
557
558 * desktop.el (desktop-full-file-name): New function.
559 (desktop-kill, desktop-save, desktop-remove, desktop-read)
560 (desktop-revert): Use it.
561 (desktop-clear, desktop-save, desktop-remove): Add autoload cookie.
562 (desktop-after-read-hook): Add option list-buffers.
563 (desktop-locals-to-save): Add tab-width.
564 (desktop-save-mode, desktop-no-desktop-file-hook, desktop-save-hook):
565 Fix docstring.
566
567 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
568
569 * textmodes/org.el (org-cdlatex-mode-map)
570 (org-cdlatex-texmathp-advice-is-done): New variables.
571 (org-cdlatex-mode): New minor mode.
572 (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New functions.
573 (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New commands.
574 (org-export-with-archived-trees): New option.
575 (org-open-file): Remove the call to `convert-standard-filename'.
576 (org-archive-tag, org-agenda-skip-archived-trees)
577 (org-cycle-open-archived-trees)
578 (org-sparse-tree-open-archived-trees): New options.
579 (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
580 (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip):
581 New functions.
582 (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New commands.
583 (org-agenda-mode-map): Add binding of `org-agenda-toggle-archive-tag'.
584 (org-mode-map): Add binding for `org-toggle-archive-tag'.
585 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
586 Call `org-prepare-agenda-buffers'.
587 (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
588 (org-file-apps, org-file-apps-defaults-gnu)
589 (org-file-apps-defaults-macosx, org-file-apps-defaults-windowsnt):
590 Handle remote files by forcing them to be opened in Emacs.
591
592 2006-06-23 Andre Spiegel <spiegel@gnu.org>
593
594 * vc.el (vc-diff-knows-L): New variable.
595 (vc-diff-internal): Use it to handle "diff" programs that don't
596 understand -L. This works automatically, no user action is necessary.
597
598 2006-06-23 Daniel Brockman <daniel@brockman.se>
599
600 * net/rcirc.el (rcirc-default-user-full-name): Default to
601 `rcirc-default-user-name' instead of `rcirc-user-name' (which no
602 longer exists).
603 (rcirc-process-list): Check `buffer-live-p' before attempting to
604 switch to a buffer.
605
606 2006-06-23 Ryan Yeske <rcyeske@gmail.com>
607
608 * net/rcirc.el (rcirc-mode): Fix initialization of coding systems
609 based on rcirc-coding-system-alist.
610
611 2006-06-23 Martin Rudalics <rudalics@gmx.at>
612
613 * cus-edit.el (customize-apropos): A better error message.
614 (top level) <debug-ignored-errors>: Extend and update the list of
615 ignored error messages.
616
617 2006-06-23 Michael Ernst <mernst@alum.mit.edu>
618
619 * complete.el (PC-do-completion): Retain capitalization of user
620 input, when possible, even if completion-ignore-case is set.
621
622 2006-06-23 Eli Zaretskii <eliz@gnu.org>
623
624 * generic-x.el (bat-generic-mode): Support .cmd files.
625
626 * dos-w32.el (top level): Use find-file-not-found-functions
627 instead of the obsolete find-file-not-found-hooks.
628
629 2006-06-22 Kim F. Storm <storm@cua.dk>
630
631 * progmodes/grep.el (grep-mode-font-lock-keywords): Correct regexps
632 to recognize mode name containing submodes, such as Grep/lw.
633
634 2006-06-21 Kim F. Storm <storm@cua.dk>
635
636 * simple.el (line-move-1): Check for move-end-of-line instead of
637 end-of-line when setting temporary-goal-column.
638
639 2006-06-21 Miles Bader <miles@gnu.org>
640
641 * play/cookie1.el (cookie): Work properly when there's only one entry.
642
643 2006-06-21 Nick Roberts <nickrob@snap.net.nz>
644
645 * progmodes/gdb-ui.el (gdb-exited): Ensure overlay arrow gets killed.
646 (gdb-frame-handler): Generalize frame regexp for templates.
647
648 2006-06-20 Glenn Morris <rgm@gnu.org>
649
650 * calendar/appt.el (appt-display-format): Default value must be
651 one of the customize options.
652
653 2006-06-20 Dan Nicolaescu <dann@ics.uci.edu>
654
655 * term/xterm.el (terminal-init-xterm): Update key availability info.
656 Bind C-return.
657
658 * term.el (term-delete-lines, term-insert-lines): Clarify comments.
659
660 2006-06-20 Chong Yidong <cyd@stupidchicken.com>
661
662 * files.el (hack-local-variables): Run `hack-local-variables-hook'
663 whether or not a local variables list is defined.
664
665 * msb.el (msb): Move `sit-for' hack here to handle both
666 "mouse-down and drag" and "mouse-up and select" situations.
667 (mouse-select-buffer): Move `sit-for' hack to `msb'.
668
669 2006-06-20 Kenichi Handa <handa@m17n.org>
670
671 * international/characters.el (word-combining-categories):
672 Add entries for 2-byte Han characters.
673
674 2006-06-19 Richard Stallman <rms@gnu.org>
675
676 * bindings.el (mode-line-format): Save some mode line space.
677
678 * files.el (find-file-noselect): Improve the question wording.
679 (basic-save-buffer-2): Mask UMASK against 666.
680
681 * mouse.el (mouse-drag-vertical-line-rightward-window): New function.
682 (mouse-drag-vertical-line): Call it.
683
684 * cus-edit.el (customize-option, customize-option-other-window):
685 Error if SYMBOL is nil.
686
687 2006-06-19 Carsten Dominik <dominik@science.uva.nl>
688
689 * textmodes/org.el: Require noutline, also on XEmacs.
690 (org-end-of-subtree): Return point.
691 (org-dblock-start-re, org-dblock-end-re): New constants.
692 (org-create-dblock, org-prepare-dblock, org-map-dblocks)
693 (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
694 (org-update-all-dblocks, org-find-dblock): New functions.
695 (org-collect-clock-time-entries): New function.
696 (org-html-handle-time-stamps): Never export CLOCK timeranges.
697 (org-fixup-indentation): Modify to deal correctly with lines
698 starting with TAB. Only one argument DIFF now.
699 (org-demote, org-promote): Call `org-fixup-indentation' with just
700 one argument, DIFF.
701 (org-mode): Don't mark buffer as modified when aligning tables.
702 (org-clock-sum): Don't mark buffer modified when adding time sum
703 properties.
704 (org-export-as-html): Add support for a link validation function.
705 (org-archive-all-done): New function.
706 (org-archive-subtree): New prefix argument. When set, archive all
707 done subtrees in this buffer.
708 (org-remove-clock-overlays)
709 (org-remove-occur-highlights): Use `org-inhibit-highlight-removal'.
710 (org-inhibit-highlight-removal): New variable, for dynamic scoping.
711 (org-put-clock-overlay): Don't swallow last headline character
712 when displaying overlay.
713 (org-store-link): Link to `image-mode' with just the file name.
714
715 2006-06-18 Michael Kifer <kifer@cs.stonybrook.edu>
716
717 * viper-cmd.el (viper-special-read-and-insert-char):
718 Use read-key-sequence.
719 (viper-after-change-undo-hook): Misc enhancements.
720 (viper-after-change-undo-hook): New hook.
721 (viper-undo): Use viper-after-change-undo-hook.
722 (viper-add-newline-at-eob-if-necessary): Widen before making changes.
723 (viper-next-line-at-bol): If point is on a widget or a button, simulate
724 clicking on that widget/button.
725
726 * viper.el (viper-mode): Allow a separate cursor color in Emacs state.
727
728 * ediff-diff (ediff-test-patch-utility): Catch errors.
729 (ediff-actual-diff-options, ediff-actual-diff3-options): New variables.
730 (ediff-set-actual-diff-options): New function.
731 (ediff-reset-diff-options, ediff-toggle-ignore-case):
732 Use ediff-set-actual-diff-options.
733 (ediff-extract-diffs): Catch errors.
734 (ediff-whitespace): Add non-breakable space.
735 (ediff-same-file-contents): Catch errors.
736
737 * ediff-mult.el (ediff-collect-custom-diffs):
738 Save coding-system-for-read.
739
740 * ediff-vers.el (ediff-keep-tmp-versions): New variable.
741 (ediff-vc-internal, ediff-vc-merge-internal):
742 Use ediff-delete-version-file.
743 (ediff-delete-version-file): New function.
744
745 * ediff-wind.el (ediff-control-frame-parameters): Set frame fringes.
746
747 * ediff.el (ediff-directories, ediff-directory-revisions)
748 (ediff-merge-directories, ediff-merge-directories-with-ancestor)
749 (ediff-directories-internal, ediff-merge-directory-revisions)
750 (ediff-merge-directory-revisions-with-ancestor)
751 (ediff-directories3): Use read-directory-name.
752
753 2006-06-18 Ralf Angeli <angeli@caeruleus.net>
754
755 * textmodes/tex-mode.el (tex-font-lock-match-suscript):
756 Remove superfluous part of regexp for brace matching which is handled
757 by `scan-lists' call.
758
759 2006-06-16 Richard Stallman <rms@gnu.org>
760
761 * obsolete/options.el (list-options): Put "obsolete" msg in buffer.
762
763 * files.el (basic-save-buffer-2): For a new precious file,
764 use the default modes in the return value.
765
766 * facemenu.el (facemenu-color-alist): Doc fix.
767
768 * cus-edit.el (custom-guess-name-alist): Recognize `-flag'.
769
770 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
771
772 * cus-start.el (all): Add mac-ts-script-language-on-focus.
773
774 * term/mac-win.el (mac-text-encoding-ascii): New constant.
775 (mac-utxt-to-string): Use it.
776 (mac-ts-update-active-input-area): Use mac-ae-number.
777
778 2006-06-15 Dan Nicolaescu <dann@ics.uci.edu>
779
780 * term.el (term-handle-scroll, term-delete-lines)
781 (term-insert-lines): Fix off by one errors.
782
783 2006-06-15 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
784
785 * net/tramp.el (tramp-touch): Use UTC to express time.
786
787 2006-06-15 Chong Yidong <cyd@stupidchicken.com>
788
789 * mail/sendmail.el (mail-send): Search explicitly for
790 mail-header-separator when checking for corrupted header lines.
791
792 2006-06-15 Nick Roberts <nickrob@snap.net.nz>
793
794 * progmodes/gdb-ui.el (gdb-same-frame): New option.
795 (gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
796 (gdb-init-1): Initialise them.
797 (gdb-starting): Reset gdb-printing
798 (gdb-starting): Save value of gud-overlay-arrow-position.
799 (gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
800 (gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
801 Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
802 (gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
803
804 2006-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
805
806 * pcvs.el (cvs-retrieve-revision): Use decode-coding-inserted-region.
807
808 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
809
810 * net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
811 (ldap-search-internal): Keep error messages, and a regexp fix.
812
813 2006-06-12 Thien-Thi Nguyen <ttn@gnu.org>
814
815 * files.el (hack-local-variables-confirm):
816 Display string value using its printed representation.
817
818 2006-06-11 Chong Yidong <cyd@stupidchicken.com>
819
820 * server.el (server-edit): No-op if no server buffers exist.
821
822 2006-06-11 Robert J. Chassell <bob@rattlesnake.com>
823
824 * textmodes/page-ext.el (pages-directory-for-addresses):
825 Including `pages-directory-address-mode' in the function results
826 in the message "Buffer in which pages were found is deleted".
827
828 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
829
830 * textmodes/org.el (org-agenda-mode-map): Add bindings for
831 clocking functions.
832
833 (org-agenda-clock-in, org-check-running-clock)
834 (org-clock-out-if-current, org-remove-clock-overlays)
835 (org-put-clock-overlay): New functions.
836 (org-clock-marker, org-clock-file-total-minutes)
837 (org-clock-overlays): New variables.
838 (org-clock-display, org-clock-sum, org-clock-cancel)
839 (org-clock-out, org-clock-in): New commands.
840 (org-export): New function.
841 (org-emph-re): New constant.
842 (org-set-emph-re, org-do-emphasis-faces): New functions.
843 (org-emphasis-regexp-components, org-emphasis-alist): New options.
844 (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
845 (org-export-html-convert-emphasize): Use the configurable emphasis.
846 (org-cleaned-string-for-export): Make multiline emphasis visible
847 to the exporter. New optional argument PARAMETERS.
848 (org-export-as-html): Specify :emph-multiline parameter to
849 `org-cleaned-string-for-export'.
850
851 2006-06-10 Richard Stallman <rms@gnu.org>
852
853 * help.el (help-for-help-internal): Clean up help text.
854
855 2006-06-10 Andreas Schwab <schwab@suse.de>
856
857 * language/ethio-util.el (ethio-fidel-to-java-buffer): Fix quoting
858 in doc string.
859
860 * progmodes/cperl-mode.el (cperl-short-docs): Likewise.
861
862 2006-06-09 Karl Chen <quarl@cs.berkeley.edu>
863
864 * progmodes/make-mode.el (makefile-fill-paragraph): Don't remove
865 spaces after the comment start.
866
867 2006-06-09 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
868
869 * play/pong.el (pong-init-buffer):
870 Fill buffer with spaces instead of ^A.
871
872 * textmodes/ispell.el (ispell-kill-ispell): If ispell has been
873 launched asynchronously, delete its process instead of being cool.
874 (ispell-async-processp): Check for `delete-process' existence
875 instead of `kill-process' one for consistency.
876
877 2006-06-09 Nick Roberts <nickrob@snap.net.nz>
878
879 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers-1)
880 (gdb-prompt, gdb-set-gud-minor-mode-existing-buffers): Show status
881 in mode line at startup.
882
883 2006-06-08 Kim F. Storm <storm@cua.dk>
884
885 * ido.el (ido-take-first-match, ido-push-dir-first): New commands.
886 (ido-init-completion-maps): Bind them to M-SPC and M-v.
887 (ido-copy-current-file-name): Repeating C-w inserts whole file name.
888 (ido-file-internal): Pass full file name to write-file.
889 (ido-read-internal): Only pop stack elements automatically if they
890 actually match an existing directory or file name.
891
892 2006-06-07 Kenichi Handa <handa@m17n.org>
893
894 * international/mule.el (find-auto-coding): Don't handle the short
895 name `char-trans'.
896
897 * files.el (hack-local-variables-prop-line)
898 (hack-local-variables): Cancel the previous change.
899
900 2006-06-06 Jesper Harder <harder@phys.au.dk>
901
902 * ediff-diff.el (ediff-test-utility): Protect against file-error.
903
904 2006-06-06 Chong Yidong <cyd@stupidchicken.com>
905
906 * diff-mode.el (diff-mode): Set buffer-read-only to t when
907 diff-default-read-only is non-nil.
908 (diff-hunk-kill, diff-file-kill, diff-split-hunk)
909 (diff-refine-hunk): Set inhibit-read-only to t.
910
911 * diff.el (diff-sentinel, diff): Set inhibit-read-only to t when
912 modifying the *Diff* buffer.
913 (diff-process-filter): New filter function for diff process that
914 sets inhibit-read-only to t when modifying the *Diff* buffer.
915
916 2006-06-06 Carsten Dominik <dominik@science.uva.nl>
917
918 * textmodes/org.el (org-archive-subtree): Use end-of-subtree as
919 insertion point and control the number of empty lines.
920 (org-paste-subtree): Limit the number of empty lines at the end of
921 the inserted tree.
922 (org-agenda): Use buffer name of current file for narrowing.
923 (org-export-as-xml): Command removed.
924 (org-export-xml-type): Option removed.
925 (org-mode-map): Call `org-export-as-xoxo' directly.
926 (org-get-indentation): New optional argument LINE.
927 (org-fix-indentation, org-remove-tabs): New functions.
928 (org-export-as-ascii, org-ascii-level-start): Determine and apply
929 correct indentation for headlines that are converted it items.
930 (org-skip-comments): Remove table lines that contain narrowing
931 cookies but no other non-empty fields.
932 (org-set-tags): Allow groups of mutually exclusive tags.
933 (org-cmp-time): Sort 24:21 before items without time.
934 (org-get-time-of-day): Fix the interpretation of 12pm and 12am.
935 (org-open-at-point): Require double colon also for numbers.
936
937 2006-06-06 Kim F. Storm <storm@cua.dk>
938
939 * ido.el (ido-default-file-method, ido-default-buffer-method):
940 Make choice values consistent with corresponding command names.
941 (ido-visit-buffer): Update accordingly. Default to selected-window.
942
943 2006-06-06 Nick Roberts <nickrob@snap.net.nz>
944
945 * progmodes/gud.el (gud-running): Fix doc string.
946 (gud-menu-map): Use :visible instead fo :enable for debugger test.
947 (gud-tooltip-modes): Add python-mode.
948 (gud-tooltip-print-command): Add pdb. Remove perldb.
949
950 2006-06-05 Eli Zaretskii <eliz@gnu.org>
951
952 * makefile.w32-in (bootstrap, $(lisp)/mh-e/mh-loaddefs.el):
953 Quote $(EMACS).
954
955 2006-06-05 Richard Stallman <rms@gnu.org>
956
957 * faces.el (defined-colors): Doc fix.
958
959 2006-06-05 Thien-Thi Nguyen <ttn@gnu.org>
960
961 * vc.el (vc-process-filter): Inhibit undo info collection around
962 call to insert.
963 (vc-setup-buffer): Likewise for call to erase-buffer.
964 (vc-do-command): Likewise for call to process-file.
965
966 2006-06-05 Nick Roberts <nickrob@snap.net.nz>
967
968 * progmodes/gud.el (gud-menu-map): Use a conditional help echo
969 for gud-go.
970 (gud-common-init): Other debuggers may trigger error.
971
972 2006-06-05 Kenichi Handa <handa@m17n.org>
973
974 * international/mule.el (find-auto-coding):
975 Handle enable-character-translation in file header.
976
977 2006-06-04 Kim F. Storm <storm@cua.dk>
978
979 * emacs-lisp/authors.el (authors-aliases): Add mode aliases.
980 (authors-fixed-entries): Fix spelling.
981 (authors-canonical-file-name): Don't report error for wildcards.
982
983 * help.el (view-emacs-news): Rewrite to support new NEWS,
984 NEWS.major, and NEWS.1-17 file naming. Add more intelligence,
985 e.g. version 10 matches 1.10, and don't be confused by version 1.1
986 being a prefix of 1.12 (etc). A numeric prefix arg also works.
987
988 2006-06-03 Vivek Dasmohapatra <vivek@etla.org>
989
990 * progmodes/sh-script.el (sh-quoted-exec): New face for quoted
991 exec constructs like `foo bar`.
992 (sh-quoted-subshell): New helper function to search for a possibly
993 nested subshell (like `` or $()) within a "" quoted string.
994 (sh-font-lock-keywords-var): Add sh-quoted-exec for Bash.
995 (sh-apply-quoted-subshell): Flag quote characters inside a
996 subshell, which is itself already in a quoted region, as
997 punctuation, since this is the closest to what they actually are.
998 (sh-font-lock-syntactic-keywords): Add sh-quoted-subshell and
999 sh-apply-quoted-subshell.
1000 (sh-font-lock-syntactic-face-function): Apply the new face for
1001 text inside `` instead of the old font-lock-string-face.
1002
1003 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1004
1005 * term/mac-win.el (mac-ts-active-input-overlay): Add defvar.
1006 (mac-ae-number, mac-ae-frame, mac-ae-script-language)
1007 (mac-bytes-to-text-range, mac-ae-text-range-array)
1008 (mac-ts-update-active-input-buf, mac-split-string-by-property-change)
1009 (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area)
1010 (mac-ts-unicode-for-key-event): New functions.
1011 (mac-handle-toolbar-switch-mode): Use mac-ae-frame.
1012 (mac-handle-font-selection): Use mac-ae-number.
1013 (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno):
1014 New variables.
1015 (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text)
1016 (mac-ts-converted-text, mac-ts-selected-converted-text)
1017 (mac-ts-block-fill-text, mac-ts-outline-text)
1018 (mac-ts-selected-text, mac-ts-no-hilite): New faces.
1019 (mac-ts-hilite-style-faces): New constant.
1020 (mac-apple-event-map): Bind text input events.
1021 (mac-dispatch-apple-event): Use command-execute instead of
1022 call-interactively.
1023 (global-map): Don't bind mac-apple-event.
1024 (special-event-map): Bind mac-apple-event.
1025
1026 2006-06-02 Eli Zaretskii <eliz@gnu.org>
1027
1028 * makefile.w32-in (EMACS): Remove quotes from the Emacs executable
1029 file name.
1030 (emacs): Enclose the value of $(EMACS) in quotes.
1031
1032 2006-06-02 Juri Linkov <juri@jurta.org>
1033
1034 * international/mule.el (sgml-html-meta-auto-coding-function):
1035 Remove the condition `(search-forward "<html" size t)'.
1036 Replace `\"' with `[\"']?' in `re-search-forward'.
1037
1038 2006-06-02 Kenichi Handa <handa@m17n.org>
1039
1040 * files.el (hack-local-variables-prop-line): Ignore `char-trans'
1041 as well as `coding'.
1042 (hack-local-variables): Likewise.
1043
1044 * international/mule.el (enable-character-translation):
1045 Put permanent-local and safe-local-variable properties.
1046 (find-auto-coding): Handle char-trans: tag.
1047
1048 2006-06-02 Juri Linkov <juri@jurta.org>
1049
1050 * international/mule.el (sgml-html-meta-auto-coding-function):
1051 Limit the search by the end of the HTML header (if any).
1052
1053 2006-06-01 Richard Stallman <rms@gnu.org>
1054
1055 * subr.el (with-current-buffer): Doc fix.
1056
1057 2006-06-02 Masatake YAMATO <jet@gyve.org>
1058
1059 * progmodes/compile.el (compilation-error-regexp-alist-alist::gcov-*):
1060 Almost rewrite. Underlines over all lines of gcov output are too
1061 uncomfortable to read. Suggested by Dan Nicolaescu.
1062
1063 2006-06-01 Luc Teirlinck <teirllm@auburn.edu>
1064
1065 * progmodes/inf-lisp.el (inferior-lisp-mode): Doc fixes.
1066
1067 * shell.el (shell-mode): Use shell-mode-map in docstring.
1068
1069 * comint.el (comint-send-input): Do not add help-echo and
1070 mouse-face to input if `comint-use-prompt-regexp' is non-nil.
1071
1072 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1073
1074 * term/x-win.el: Change x-menu-bar-start to menu-bar-open.
1075
1076 2006-06-01 Nick Roberts <nickrob@snap.net.nz>
1077
1078 * progmodes/gdb-ui.el (gdb-look-up-stack): New variable.
1079 (gdb-stopped, gdb-info-stack-custom): If there is no source info
1080 look up the stack and pop up GUD buffer if necessary.
1081 (gdb-frames-select): Remove redundant call to gud-display-frame.
1082 (gdb-info-threads-custom): Keep point at start of buffer.
1083 (gdb-find-file-hook): Make it work for pre-GDB 6.4.
1084
1085 2006-05-31 Juri Linkov <juri@jurta.org>
1086
1087 * replace.el (query-replace-read-from, query-replace-read-to):
1088 Bind `history-add-new-input' to nil. Call `add-to-history'.
1089
1090 2006-05-31 Takaaki Ota <Takaaki.Ota@am.sony.com>
1091
1092 * textmodes/table.el: Convert all HTML tags to lower case for
1093 XHTML compatibility.
1094
1095 2006-05-31 Masatake YAMATO <jet@gyve.org>
1096
1097 * progmodes/compile.el:
1098 (compilation-error-regexp-alist-alist::gcov-called-line):
1099 Don't put face on `-' lines in gcov file. Suggested by Dan Nicolaescu.
1100
1101 2006-05-31 Nick Roberts <nickrob@snap.net.nz>
1102
1103 * progmodes/gud.el (gud-query-cmdline, gud-common-init):
1104 Revert inadvertent changes made with last commit.
1105
1106 2006-05-30 Reiner Steib <Reiner.Steib@gmx.de>
1107
1108 * textmodes/flyspell.el (turn-on-flyspell, turn-off-flyspell):
1109 New functions.
1110
1111 * textmodes/text-mode.el (text-mode-hook): Use turn-on-flyspell.
1112
1113 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
1114
1115 * textmodes/org.el (org-agenda-highlight-todo): Make sure regexp
1116 only matches in the right place.
1117 (org-upcoming-deadline): New face.
1118 (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
1119 (org-export-ascii-underline): Rename constant `org-ascii-underline'
1120 and make it an option.
1121 (org-export-ascii-bullets): New option.
1122 (org-export-as-html): Many changes to emit valid XHTML.
1123 (org-par-open): New variable.
1124 (org-open-par, org-close-par-maybe, org-close-li-maybe): New functions.
1125 (org-html-do-expand, org-section-number): Fix case in `replace-match'.
1126 (org-timeline): Pass `org-timeline-show-empty-dates' to
1127 `org-get-all-dates'. Interpret empty dates returned by
1128 `org-get-all-dates'.
1129 (org-get-all-dates): New argument EMPTY. Add dates without
1130 entries to the list, mark large ranges of empty dates.
1131 (org-point-in-group, org-context): New functions.
1132
1133 2006-05-30 Nick Roberts <nickrob@snap.net.nz>
1134
1135 * progmodes/gud.el (gud-stop-subjob): Make it work in all buffers.
1136
1137 * progmodes/gdb-ui.el: Move gdb-mouse-toggle-breakpoint-* to
1138 C-mouse-1. Move gdb-mouse-until to mouse-3, gdb-mouse-jump
1139 to C-mouse-3 (for 2 button mice).
1140 (gdb-send): Do the right thing for C-d.
1141
1142 * speedbar.el (speedbar-detach): Delete.
1143 (speedbar-easymenu-definition-trailer): Remove speedbar-detach as
1144 it breaks things.
1145 (speedbar-reconfigure-keymaps): Always add extra items to pop up menu.
1146
1147 2006-05-30 Daniel Pfeiffer <occitan@esperanto.org>
1148
1149 * files.el (auto-mode-alist): Add makepp suffix and optional mk on
1150 Makeppfile.
1151
1152 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1153 Add makepp diagnostic.
1154
1155 2006-05-29 Richard Stallman <rms@gnu.org>
1156
1157 * window.el (fit-window-to-buffer): Doc fix.
1158
1159 * help.el (temp-buffer-max-height): Doc fix.
1160
1161 * subr.el (with-current-buffer): Doc fix.
1162
1163 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1164
1165 * term/x-win.el: Bind F10 to menu-bar-start if available.
1166
1167 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
1168
1169 * term.el (term-if-xemacs, term-ifnot-xemacs): Delete, replace
1170 uses with a simple test.
1171 (term-set-escape-char, term-mode, term-check-kill-echo-list)
1172 (term-send-raw-string, term-send-raw, term-mouse-paste)
1173 (term-char-mode, term-line-mode, term-exec, term-sentinel)
1174 (term-handle-exit, term-read-input-ring)
1175 (term-previous-matching-input-string)
1176 (term-previous-matching-input-string-position)
1177 (term-previous-matching-input-from-input)
1178 (term-replace-by-expanded-history, term-send-input)
1179 (term-skip-prompt, term-bol, term-send-invisible)
1180 (term-kill-input, term-delchar-or-maybe-eof)
1181 (term-backward-matching-input, term-check-source)
1182 (term-proc-query, term-emulate-terminal)
1183 (term-handle-colors-array, term-process-pager, term-pager-line)
1184 (term-pager-bob, term-unwrap-line, term-word)
1185 (term-dynamic-complete-filename)
1186 (term-dynamic-complete-as-filename)
1187 (term-dynamic-simple-complete): Replace one arm ifs with whens or
1188 unlesses.
1189
1190 2006-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1191
1192 * files.el (hack-one-local-variable-eval-safep): Don't burp if used
1193 during bootstrapping.
1194
1195 * emacs-lisp/ewoc.el (ewoc--current-dll): Remove.
1196 Basically undo the change of 2006-05-26: use extra arguments instead of
1197 dynamic scoping.
1198 (ewoc-locate): Remove unused var `footer'.
1199
1200 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1201
1202 * emacs-lisp/ewoc.el (ewoc--insert-new-node): Use ewoc--refresh-node.
1203
1204 * emacs-lisp/autoload.el (no-update-autoloads): Declare.
1205 (generate-file-autoloads): Obey it. Return whether autoloads were
1206 added at point or not.
1207 (update-file-autoloads): Use this new return value.
1208 Remove redundant test for the presence of an autoload cookie.
1209
1210 * emacs-lisp/autoload.el (autoload-find-file): New fun.
1211 This one calls hack-local-variables.
1212 (generate-file-autoloads, update-file-autoloads): Use it.
1213
1214 * textmodes/bibtex.el (bibtex-autokey-name-case-convert-function)
1215 (bibtex-sort-entry-class): Add safe-local-variable predicate.
1216 (bibtex-sort-entry-class-alist): Don't set the global value.
1217 (bibtex-init-sort-entry-class-alist): New fun.
1218 (bibtex-sort-buffer, bibtex-prepare-new-entry): Call it to compute
1219 bibtex-init-sort-entry-class-alist from the buffer-local value (if any)
1220 of bibtex-init-sort-entry-class.
1221
1222 2006-05-28 Richard Stallman <rms@gnu.org>
1223
1224 * subr.el (load-history-regexp): If FILE is relative, insist
1225 entire last name component must match it.
1226 (load-history-filename-element, load-history-regexp): Doc fixes.
1227
1228 2006-05-29 Kim F. Storm <storm@cua.dk>
1229
1230 * emacs-lisp/bindat.el (bindat-idx, bindat-raw): Rename dynamic vars
1231 `pos' and `raw-data' for clarity, as eval forms may access these.
1232
1233 2006-05-28 Kim F. Storm <storm@cua.dk>
1234
1235 * emacs-lisp/bindat.el (bindat--unpack-u8): Use aref also for strings.
1236
1237 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1238
1239 * progmodes/make-mode.el (makefile-browser-map)
1240 (makefile-mode-syntax-table): Move initialization inside declaration.
1241 (makefile-fill-paragraph): Use the default comment-filling code.
1242
1243 2006-05-28 Chong Yidong <cyd@stupidchicken.com>
1244
1245 * replace.el (query-replace-defaults): New variable.
1246 (query-replace-read-from): Use `query-replace-defaults' for
1247 default value, instead of history list.
1248 (query-replace-read-to): Update `query-replace-defaults'.
1249
1250 2006-05-27 Chong Yidong <cyd@stupidchicken.com>
1251
1252 * msb.el (mouse-select-buffer): Minor fix to make popup menu work
1253 with no X toolkit.
1254
1255 2006-05-28 Nick Roberts <nickrob@snap.net.nz>
1256
1257 * tumme.el (tumme-show-all-from-dir-max-files): Fix typo.
1258 (tumme-show-all-from-dir): Add autoload.
1259
1260 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
1261
1262 * tumme.el: Change a lot of `(if .. (progn ..)' to `(when ..)'.
1263 (tumme-remove-tag): Fix bug.
1264
1265 2006-05-27 Thien-Thi Nguyen <ttn@gnu.org>
1266
1267 * emacs-lisp/ewoc.el (ewoc--create): No longer take HEADER and
1268 FOOTER args. Update unique caller.
1269 (ewoc-delete): Compute last node once before looping.
1270 (ewoc--node-branch): Merge into unique caller.
1271 (ewoc--node): Don't define constructor make-ewoc--node for this
1272 structure.
1273 (ewoc): Add member `hf-pp' to this structure.
1274 (ewoc--wrap): New func.
1275 (ewoc-create): Take additional arg NOSEP. If nil, wrap node and
1276 header/footer pretty-printers. Save header/footer pretty-printer.
1277 (ewoc-set-hf): Use ewoc's header/footer pretty-printer. *
1278
1279 * pcvs.el (cvs-make-cvs-buffer): Specify NOSEP to `ewoc-create'.
1280
1281 2006-05-27 Mathias Dahl <mathias.dahl@gmail.com>
1282
1283 * dired.el (dired-mode-map): Change `tumme-tag-remove' to
1284 `tumme-delete-tag'. Rename `Remove Image Tag' to `Delete Image
1285 Tag'. Change "Compare directories..." to "Change Directories...".
1286 Move tumme commands to Operate, Regexp and Immediate menus.
1287 Change "Add Comment" to "Add Image Comment". Change "Add Image
1288 Tag" to "Add Image Tags".
1289
1290 * tumme.el (tumme-delete-tag): Rename from `tumme-tag-remove'.
1291 (tumme-setup-dired-keybindings): Change `tumme-add-remove' to
1292 `tumme-delete-tag'.
1293
1294 2006-05-26 Luc Teirlinck <teirllm@auburn.edu>
1295
1296 * shell.el (shell-mode): Call shell-dirtrack-mode after
1297 list-buffers-directory is made a local variable, to avoid setting
1298 the default value.
1299
1300 2006-05-26 Kevin Ryde <user42@zip.com.au>
1301
1302 * info.el (Info-index-next): Use where-is-internal to report
1303 actual binding of Info-index-next, rather than hard-coded `,'.
1304
1305 2006-05-26 Eli Zaretskii <eliz@gnu.org>
1306
1307 * menu-bar.el (menu-bar-apropos-menu): Move "Find Key in Manual"
1308 and "Find Command in Manual" to here.
1309
1310 * buff-menu.el (list-buffers-noselect): For Info buffers, use
1311 Info-current-file as the file name.
1312
1313 2006-05-26 Jonathan Yavner <jyavner@member.fsf.org>
1314
1315 * ses.el (defadvice undo-more): Delete this defadvice. The undo
1316 overrides will now be done a different way.
1317 (ses-set-parameter): Reapply this function for undo.
1318 (ses-set-header-row): Reconstruct header row during undo.
1319 (ses-widen): New function.
1320 (ses-goto-data, ses-reconstruct-all): Use new function.
1321 (ses-command-hook): Widen buffer during undo, before unupdating
1322 the cells.
1323 (ses-insert-row, ses-delete-row): Widen buffer during undo.
1324 (ses-load, ses-header-row): Permit empty (zero-row) spreadsheets.
1325 (ses-read-cell): Avoid stupid warning for RET RET on a cell whose
1326 formula hasn't been executed yet.
1327
1328 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
1329
1330 * comint.el (comint-kill-whole-line): Rename arg to count.
1331 Fix doc string.
1332
1333 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
1334
1335 * files.el (backup-buffer-copy): Remove deleted MUSTBENEW argument
1336 to copy-file.
1337
1338 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
1339
1340 * simple.el (toggle-truncate-lines): Make arg optional for
1341 backward compatibility.
1342
1343 2006-05-26 Thien-Thi Nguyen <ttn@gnu.org>
1344
1345 * emacs-lisp/ewoc.el (ewoc--current-dll): New var.
1346 (ewoc--node-next, ewoc--node-prev, ewoc--node-nth): Don't take
1347 DLL arg. Instead, use ewoc--current-dll. Update all callers.
1348 (ewoc--set-buffer-bind-dll-let*): Bind ewoc--current-dll, not `dll'.
1349 (ewoc--adjust): Use ewoc--current-dll.
1350 (ewoc-next, ewoc-prev, ewoc-nth): Bind ewoc--current-dll.
1351
1352 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
1353
1354 * textmodes/org.el (org-next-item, org-previous-item): Emit more
1355 compact error message.
1356 (org-tags-view): Refresh category table in each file.
1357 (org-table-justify-field-maybe): Remove superfluous arguments to
1358 `format'.
1359 (org-export-as-html): Insert "<p>" before postamble.
1360 (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill ring.
1361
1362 2006-05-26 Kenichi Handa <handa@m17n.org>
1363
1364 * textmodes/po.el (po-find-charset): Pay attention to the case
1365 FILENAME is a cons (NAME . BUFFER).
1366 (po-find-file-coding-system-guts): Likewise.
1367
1368 * arc-mode.el (archive-set-buffer-as-visiting-file):
1369 Call find-operation-coding-system with (FILENAME . BUFFER).
1370
1371 * tar-mode.el (tar-extract): Call find-operation-coding-system
1372 with (FILENAME . BUFFER).
1373
1374 * international/mule.el (decode-coding-inserted-region):
1375 Call find-operation-coding-system with (FILENAME . BUFFER).
1376
1377 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
1378
1379 * image-mode.el (image-toggle-display): Use buffer contents to
1380 generate image for a remote file.
1381
1382 2006-05-25 Juri Linkov <juri@jurta.org>
1383
1384 * replace.el (query-replace-read-from, query-replace-read-to):
1385 Remove 8th arg KEEP-ALL in read-from-minibuffer.
1386
1387 2006-05-25 Rajesh Vaidheeswarran <rv@gnu.org>
1388
1389 * whitespace.el (whitespace-cleanup): Change to cleanup
1390 region if one is active.
1391 * whitespace.el (whitespace-cleanup-internal): New internal method.
1392
1393 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
1394
1395 * dired.el (dired-mode-map): Add help-echo strings to tumme
1396 commands. Bind `tumme-dired-display-image' to C-t i.
1397
1398 * tumme.el (tumme-display-image): Change documentation string slightly.
1399 (tumme-dired-display-image): Add call to `display-buffer'.
1400
1401 2006-05-25 Thien-Thi Nguyen <ttn@gnu.org>
1402
1403 * emacs-lisp/bindat.el (bindat-unpack, bindat-pack):
1404 Signal error if RAW-DATA is a multibyte string.
1405
1406 2006-05-24 Richard Stallman <rms@gnu.org>
1407
1408 * subr.el (with-local-quit): When handling `quit' signal,
1409 make a chance for quit-flag to cause a quit.
1410
1411 * emacs-lisp/advice.el (ad-enable-advice, ad-activate)
1412 (ad-disable-advice): Add autoloads.
1413
1414 * subr.el (read-passwd): Copy PROMPT before changing its properties.
1415
1416 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
1417
1418 * dired.el (dired-mode-map): Change menu items for tumme as per
1419 suggestions in emacs-devel.
1420
1421 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
1422
1423 * dired.el (dired-mode-map): Fix breakage.
1424
1425 2006-05-25 Mathias Dahl <mathias.dahl@gmail.com>
1426
1427 * tumme.el (tumme-display-dired-image): Rename to...
1428 (tumme-dired-display-image): ...this.
1429 (tumme-track-movement): Change default value to t.
1430 (tumme-display-thumbs): Add new optional parameter DO-NOT-POP,
1431 used from `tumme-next-line-and-display' and similar commands.
1432
1433 * dired.el (dired-mode-map): Add Thumbnail submenu under the
1434 Immediate menu. Add some tumme commands there.
1435
1436 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
1437
1438 * loadup.el ("jka-cmpr-hook"): Load it before it is needed.
1439
1440 2006-05-24 Chong Yidong <cyd@mit.edu>
1441
1442 * menu-bar.el, international/mule-cmds.el: Remove tooltips for
1443 menu entries that open submenus.
1444
1445 2006-05-24 Alan Mackenzie <acm@muc.de>
1446
1447 * startup.el (command-line): For names of preloaded files, don't
1448 append ".elc" (now done in Fload), and call file-truename on the
1449 lisp directory.
1450
1451 * subr.el (eval-after-load): Fix the doc-string. Allow FILE to
1452 match ANY loaded file with the right name, not just those in
1453 load-path. Put a regexp matching the file name into
1454 after-load-alist, rather than the name itself.
1455
1456 * subr.el: New functions load-history-regexp,
1457 load-history-filename-element, do-after-load-evaluation.
1458
1459 * international/mule.el (load-with-code-conversion): Do the
1460 eval-after-load stuff by calling do-after-load-evaluation.
1461
1462 2006-05-25 Nick Roberts <nickrob@snap.net.nz>
1463
1464 * progmodes/gud.el (gud-sentinel): Condition on GUD buffer if it
1465 has not been killed.
1466
1467 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1468
1469 * term/mac-win.el: Set idle timer to clean up expired Apple events.
1470 (mac-ae-get-url): Redispatch Apple event on unknown scheme.
1471 (mac-dispatch-apple-event): Resume Apple event if it is suspended.
1472 Optionally set error message in reply.
1473
1474 2006-05-24 Carsten Dominik <dominik@science.uva.nl>
1475
1476 * textmodes/org.el (org-open-at-point): Use renamed variable
1477 `org-confirm-shell-link-function'.
1478 (org-confirm-shell-link-function): Rename from
1479 `org-confirm-shell-links'.
1480 (org-export-directory): New function.
1481 (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
1482 (org-export-icalendar): Use `org-export-directory'.
1483 (org-indent-item): Keep cursor position.
1484 (org-link-file-path-type): New option.
1485 (org-export-as-html): Fix bug with plain lists starting in
1486 column 0.
1487 (org-export-as-html): Remove deadline formatting, this happens
1488 now already in `org-html-handle-time-stamps'.
1489 (org-export-html-style): Deadline class removed.
1490 (org-insert-labeled-timestamps-at-point): New option.
1491 (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
1492 of `hide-sublevels 1', in case the first headline is not level 1.
1493 (org-overview, org-content): New fuction.
1494 (org-cycle-global-status, org-cycle-subtree-status): Make these
1495 variables buffer-local.
1496 (org-global-cycle): New command.
1497 (org-shifttab): Use `org-global-cycle'.
1498 (org-insert-heading, org-insert-item): Go to end of new
1499 headline/item after creating it.
1500 (org-export-visible): Rename from `org-export-copy-visible'.
1501 Now creates a temporary org-file and applies an exporting command
1502 to it.
1503 (org-table-eval-formula): Support for lisp forms.
1504 (org-agenda-todo-ignore-scheduled): New option.
1505 (org-agenda-get-todos): Use new option
1506 `org-agenda-todo-ignore-scheduled'.
1507 (org-export-html-inline-images): New value `maybe'.
1508 (org-export-as-html): Inlining of images dependent on link description.
1509 (org-archive-subtree): Check for end-of-buffer before trying
1510 `kill-line'.
1511 (org-agenda-follow-mode): New option.
1512 (org-export-with-tags, org-export-with-timestamps): New options.
1513 (org-html-handle-time-stamps): New function.
1514 (org-keyword-time-regexp): New variable.
1515 (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
1516 (org-agenda-todo-list-sublevels): New option.
1517 (org-html-level-start): When TITLE is nil, just close all levels.
1518 (org-parse-key-lines, org-parse-export-options): Remove functions,
1519 replaced by `org-infile-export-plist'.
1520 (org-combine-plists, org-infile-export-plist)
1521 (org-default-export-plist): New functions.
1522 (org-export-html-preamble, org-export-html-postamble)
1523 (org-export-html-auto-preamble, org-export-html-auto-postamble):
1524 New variables.
1525 (org-export-publishing-directory): New option.
1526 (org-export-as-html, org-export-as-ascii): Use the new property
1527 lists for settings.
1528 (org-export-copy-visible, org-export-as-xoxo):
1529 Respect `org-export-publishing-directory'.
1530 (org-link-search, org-store-link, org-file-apps): Support for
1531 links to BibTeX database entries..
1532 (org-get-current-options, org-set-regexps-and-options):
1533 Implement logging as a startup option.
1534 (org-store-link): Make sure context string is never empty
1535 (org-insert-link): Use relative path when possible.
1536 (org-at-item-checklet-p): New function.
1537 (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
1538 (org-shiftmetaup, org-shiftmetadown, org-metaleft)
1539 (org-metaright, org-metaup, org-metadown, org-shiftup)
1540 (org-shiftdown, org-shiftright, org-shiftleft)
1541 (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
1542 Dispatch using `call-interactively'.
1543 (org-call-with-arg): New defsubst.
1544 (org-tag-alist, org-use-fast-tag-selection): New options.
1545 (org-complete): Use `org-tag-alist'.
1546 (org-fast-tag-insert, org-fast-tag-selection): New functions.
1547 (org-next-item, org-previous-item): New commands.
1548 (org-beginning-of-item, org-end-of-item): Add (interactive) to
1549 make command.
1550 (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
1551
1552 2006-05-23 Thien-Thi Nguyen <ttn@gnu.org>
1553
1554 * emacs-lisp/ewoc.el (ewoc-delete): New function.
1555 (ewoc-filter): Use `ewoc-delete'.
1556
1557 * emacs-lisp/bindat.el (bindat-pack): Doc fix.
1558
1559 2006-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
1560
1561 * textmodes/bibtex.el (bibtex-format-entry, bibtex-clean-entry):
1562 Signal more user-friendly error messages.
1563
1564 * complete.el (PC-do-completion): Undo the addition of implicit
1565 wildcards if they did not lead to finding any match.
1566 (read-file-name-internal): Don't add the final > if the completion is
1567 not finished.
1568
1569 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
1570
1571 * textmodes/bibtex.el (bibtex-maintain-sorted-entries):
1572 Quote safe-local-variable predicate.
1573
1574 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
1575
1576 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
1577
1578 2006-05-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1579
1580 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Mark as safe.
1581
1582 * progmodes/make-mode.el (makefile-special-targets-list)
1583 (makefile-macro-table, makefile-target-table): Mark as risky.
1584 (makefile-query-one-target-method): Make this the alias for the
1585 following variable.
1586 (makefile-query-one-target-method-function): Make this the real name.
1587
1588 * textmodes/artist.el (artist-text-renderer): Make this the alias
1589 for the following variable.
1590 (artist-text-renderer-function): Make this the real name.
1591
1592 * textmodes/flyspell.el (flyspell-generic-check-word-p): Make this
1593 the alias for the following variable.
1594 (flyspell-generic-check-word-predicate): Make this the real name.
1595
1596 * textmodes/ispell.el (ispell-format-word): Make this the alias
1597 for the following variable.
1598 (ispell-format-word-function): Make this the real name.
1599 (ispell-message-text-end): Mark as risky.
1600
1601 * skeleton.el (skeleton-transformation, skeleton-filter)
1602 (skeleton-pair-filter): Make these the aliases for the following
1603 variables.
1604 (skeleton-transformation-function, skeleton-filter-function)
1605 (skeleton-pair-filter-function): Make these the real names.
1606
1607 * progmodes/sh-script.el (sh-mode): Use skeleton-filter-function
1608 and skeleton-pair-filter-function.
1609
1610 * textmodes/sgml-mode.el (sgml-transformation): Make this the
1611 alias for the following variable.
1612 (sgml-transformation-function): Make this the real name.
1613 (sgml-tag-alist): Mark as risky.
1614
1615 2006-05-21 Richard Stallman <rms@gnu.org>
1616
1617 * simple.el (kill-region): Interactively, pass point, then mark.
1618
1619 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
1620
1621 * emacs-lisp/ewoc.el (ewoc-create): Add autoload cookie.
1622
1623 2006-05-21 Romain Francoise <romain@orebokech.com>
1624
1625 * dired-x.el (dired-mode-map): Don't bind M-g.
1626
1627 2006-05-20 Richard Stallman <rms@gnu.org>
1628
1629 * dired.el (dired-mode-map): Put dired-goto-file on j, not M-g.
1630 (dired-goto-file): Doc fix.
1631
1632 2006-05-21 Kim F. Storm <storm@cua.dk>
1633
1634 * emulation/cua-base.el: Mention customizing cua-mode as alternative
1635 way to enable built-in cua-mode if user loads older CUA-mode package.
1636
1637 * ido.el (ido-read-file-name): Bind ido-show-dot-for-dired to nil
1638 if default-filename is specified.
1639
1640 2006-05-20 Eli Zaretskii <eliz@gnu.org>
1641
1642 * menu-bar.el (menu-bar-manuals-menu) <info-apropos>: New menu item.
1643
1644 * info.el (info-apropos): Make sure current-file and current-node
1645 have non-nil values. Speed up by using add-to-list instead of
1646 manual consing.
1647
1648 2006-05-20 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
1649
1650 * progmodes/make-mode.el (makefile-mode): Doc fix.
1651
1652 2006-05-20 Eli Zaretskii <eliz@gnu.org>
1653
1654 * dired-aux.el (dired-do-shell-command): Doc fix.
1655
1656 2006-05-20 Kevin Ryde <user42@zip.com.au>
1657
1658 * info-xref.el (info-xref-check-all-custom): Skip :tag part of
1659 ``(custom-manual :tag "Foo" "(foo)Node")''.
1660
1661 2006-05-20 Karl Chen <quarl@cs.berkeley.edu>
1662
1663 * progmodes/cc-vars.el (c-backslash-column): Mark as safe if its
1664 value is an integer.
1665
1666 2006-05-20 Eli Zaretskii <eliz@gnu.org>
1667
1668 * mail/rmail.el (rmail-mime-charset-pattern): Add "?:" before
1669 "format".
1670 (rmail-convert-to-babyl-format): Undo the change from 2006-04-19.
1671
1672 2006-05-20 Martin Rudalics <rudalics@gmx.at>
1673
1674 * progmodes/hideif.el (show-ifdef-block): Fix bug where parts of
1675 a hidden block remained hidden if `hide-ifdef-lines' is non-nil.
1676
1677 2006-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
1678
1679 * progmodes/gud.el (gdb-script-font-lock-keywords): Use a stricter
1680 regexp for keywords.
1681
1682 2006-05-20 Masayuki FUJII <boochang@m4.kcn.ne.jp> (tiny change)
1683
1684 * dnd.el (dnd-get-local-file-name): Specify LITERAL in
1685 replace-regexp-in-string.
1686
1687 * term/w32-win.el (w32-drag-n-drop): Substitute '/' for '\',
1688 encode, and escape file name on conversion to URL.
1689
1690 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1691
1692 * dnd.el (dnd-handle-one-url): Change 3rd arg ARG to URL.
1693 Don't unescape URL.
1694 (dnd-get-local-file-name): Unescape URL on conversion to file name.
1695
1696 * x-dnd.el (x-dnd-handle-file-name): Encode and escape file names
1697 on conversion to URLs.
1698
1699 * net/browse-url.el (browse-url-file-url): Encode file name on
1700 conversion to URL.
1701
1702 * term/mac-win.el (mac-ae-open-documents): Escape file name on
1703 conversion to URL.
1704
1705 2006-05-19 Eli Zaretskii <eliz@gnu.org>
1706
1707 * progmodes/cc-styles.el (c-style-alist): Doc fix.
1708
1709 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1710
1711 * term/mac-win.el (mac-bytes-to-digits): Remove function.
1712 (mac-handle-toolbar-switch-mode): Use coercion instead of it.
1713
1714 2006-05-19 Glenn Morris <rgm@gnu.org>
1715
1716 * calendar/diary-lib.el (diary-bahai-date)
1717 (list-bahai-diary-entries, mark-bahai-diary-entries)
1718 (mark-bahai-calendar-date-pattern): Not interactive.
1719 (add-to-diary-list): New optional arg LITERAL. Doc fix.
1720 (diary-entries-list): Change format of 4th element in each entry.
1721 (diary-list-entries): Use add-to-diary-list.
1722 (diary-goto-entry): Handle the case where the buffer visiting the
1723 diary has been killed.
1724 (fancy-diary-display): Add 'locator to button rather than 'marker.
1725 Only generate temp-face when there are marks to apply.
1726 (list-sexp-diary-entries): Pass literal to add-to-diary-list.
1727 (diary-fancy-date-pattern): New variable.
1728 (diary-time-regexp): Doc fix.
1729 (diary-anniversary, diary-time): New faces.
1730 (fancy-diary-font-lock-keywords): Use diary-fancy-date-pattern and
1731 diary-time-regexp. Add font-lock-multiline property where needed.
1732 Use new faces diary-anniversary and diary-time.
1733 (diary-fancy-font-lock-fontify-region-function): New function, to
1734 handle multiline font-lock pattern in fancy diary.
1735 (fancy-diary-display-mode): Set font-lock-fontify-region-function.
1736 (diary-font-lock-keywords): Tweak time regexp. Use new face
1737 diary-time.
1738
1739 2006-05-19 Alexander Shopov <ash@contact.bg> (tiny change)
1740
1741 * international/code-pages.el (mik): Table corrected.
1742
1743 2006-05-18 Kim F. Storm <storm@cua.dk>
1744
1745 * progmodes/grep.el (grep-find): Don't check grep-find-command
1746 before running command (breaks non-interactive usage).
1747
1748 2006-05-18 Thien-Thi Nguyen <ttn@gnu.org>
1749
1750 * emacs-lisp/ewoc.el (ewoc--adjust): New func.
1751 (ewoc--insert-new-node): Don't insert trailing newline.
1752 Instead, adjust successor nodes's start markers.
1753 (ewoc--refresh-node): Delete all text from current node's start
1754 marker to the next one's; adjust successor nodes's start markers.
1755 (ewoc--create): Doc fixes.
1756 (ewoc--refresh): Don't insert newline.
1757 (ewoc--set-hf): Use `ewoc--set-buffer-bind-dll-let*'.
1758 * pcvs.el (cvs-make-cvs-buffer):
1759 Specify extra newline for ewoc's header and footer.
1760 (cvs-update-header): Update initial header recognition.
1761 Append newline to final header and footer values.
1762 * pcvs-info.el (cvs-fileinfo-pp): Insert trailing newline.
1763
1764 2006-05-17 Richard Stallman <rms@gnu.org>
1765
1766 * files.el (file-name-extension): Doc fix.
1767
1768 2006-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1769
1770 * shell.el (shell-dirtrack-mode): Make it into a proper minor mode, so
1771 we can explicitly enable/disable rather than toggle.
1772 (shell-mode): Use it.
1773 (shell-cd): Don't try to reproduce what `cd' does.
1774
1775 2006-05-17 Kim F. Storm <storm@cua.dk>
1776
1777 * ido.el (ido-read-internal): Use only nondirectory part of
1778 default item.
1779
1780 2006-05-17 Thien-Thi Nguyen <ttn@gnu.org>
1781
1782 * emacs-lisp/ewoc.el (ewoc-data): Add docstring.
1783 (ewoc-nth): Doc fix.
1784
1785 (ewoc-map, ewoc-invalidate): Compute PP before looping.
1786
1787 2006-05-16 Eli Zaretskii <eliz@gnu.org>
1788
1789 * international/mule.el (auto-coding-alist): Add .lha to files
1790 read with no-conversion.
1791
1792 * files.el (auto-mode-alist): Add .lha files to archive file
1793 extensions.
1794
1795 * arc-mode.el (archive-arc-summarize, archive-lzh-summarize):
1796 Convert csize to integer when computing offsets within the
1797 compressed archive file.
1798
1799 2006-05-16 Kim F. Storm <storm@cua.dk>
1800
1801 * subr.el (add-to-history): Add KEEP-ALL arg and align functionality
1802 with read-from-minibuffer.
1803
1804 2006-05-16 Reiner Steib <Reiner.Steib@gmx.de>
1805
1806 * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p): New function.
1807 (byte-compile-warnings): Fix safe-local-variable property.
1808
1809 2006-05-16 Ken Manheimer <ken.manheimer@gmail.com>
1810
1811 * allout.el (allout-show-bodies, allout-old-style-prefixes)
1812 (allout-stylish-prefixes, allout-numbered-bullet)
1813 (allout-file-xref-bullet, allout-use-hanging-indents): Use simple
1814 predicates to qualify `safe-local-variable' property, when
1815 available, else use equivalent lambda.
1816 (allout-current-topic-collapsed-p): Do the right thing regarding
1817 trailing blank lines.
1818
1819 2006-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
1820
1821 * server.el (server-start): Only create a directory if needed.
1822 (server-edit, server-unload-hook): server-start => server-mode.
1823 (kill-emacs-hook): Cleanup upon exit.
1824
1825 2006-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1826
1827 * hexl.el (hexlify-buffer): Encode process arguments manually.
1828
1829 2006-05-16 Nick Roberts <nickrob@snap.net.nz>
1830
1831 * progmodes/gud.el (gud-tooltip-tips): Add missing argument to
1832 call to gdb-tooltip-print.
1833
1834 2006-05-15 Romain Francoise <romain@orebokech.com>
1835
1836 * dired-x.el (dired-guess-shell-gnutar): On GNU and GNU/Linux
1837 systems, default to "tar" since those systems probably have GNU tar.
1838
1839 2006-05-14 Lars Hansen <larsh@soem.dk>
1840
1841 * desktop.el (desktop-missing-file-warning): Fix docstring.
1842 (desktop-restore-file-buffer): Correct question asked on missing file.
1843
1844 2006-05-14 Kim F. Storm <storm@cua.dk>
1845
1846 * progmodes/cc-subword.el (c-forward-subword, c-backward-subword):
1847 Add CUA move property.
1848
1849 2006-05-13 Chong Yidong <cyd@stupidchicken.com>
1850
1851 * custom.el (custom-push-theme): Load the variable before checking
1852 its `standard-value'.
1853
1854 2006-05-13 Lars Hansen <larsh@soem.dk>
1855
1856 * desktop.el (desktop-save): Use with-temp-buffer.
1857
1858 2006-05-12 Glenn Morris <rgm@gnu.org>
1859
1860 * calendar/cal-menu.el (calendar-mode-map, calendar-mouse-3-map):
1861 * calendar/calendar.el (calendar-mode-map):
1862 * calendar/diary-lib.el (include-other-diary-files,diary-mail-entries):
1863 * calendar/appt.el (appt-check, appt-make-list): Refer to
1864 diary-view-entries, diary-list-entries, diary-show-all-entries
1865 rather than obsolete aliases.
1866
1867 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
1868
1869 * simple.el (line-move-finish): Avoid calling point motion hooks
1870 while processing intangibility.
1871
1872 2006-05-12 Dan Nicolaescu <dann@ics.uci.edu>
1873
1874 * term/xterm.el (terminal-init-xterm): Fix typo.
1875
1876 2006-05-12 Ken Manheimer <ken.manheimer@gmail.com>
1877
1878 * allout.el (allout-view-change-hook): Mark as being deprecated,
1879 to be replaced by `allout-exposure-change-hook'.
1880 (allout-exposure-change-hook): New, replacing
1881 `allout-view-change-hook'.
1882 (allout-flag-region): Run new hook `allout-exposure-change-hook',
1883 in addition to `allout-view-change-hook'.
1884 (allout-show-bodies, allout-old-style-prefixes)
1885 (allout-stylish-prefixes, allout-use-hanging-indents): Quote the
1886 lambda forms to prevent their showing up in variable help
1887 presentations as inscrutable byte-compiled code.
1888 (allout-numbered-bullet, allout-file-xref-bullet, allout-layout):
1889 Use string-or-null-p to qualify safe-local-variable values.
1890 (allout-reindent-bodies): Use memq to qualify matches against
1891 valid safe-local-variable values. Also, quote the lambda as above.
1892 (allout-use-mode-specific-leader): Add missing candidate-value
1893 symbols, use memq, and quote the lambda.
1894 (allout-overlay-interior-modification-handler): Remove unused
1895 variables `msg' and 'opened'.
1896 (allout-hidden-p): Constrain invisibility consideration to allout's
1897 invisibility spec, disregarding invisibility for other reasons.
1898
1899 2006-05-12 Reiner Steib <Reiner.Steib@gmx.de>
1900
1901 * files.el (version-control): Correct safe values.
1902
1903 2006-05-12 Thien-Thi Nguyen <ttn@gnu.org>
1904
1905 * emacs-lisp/ewoc.el (ewoc-refresh): Compute PP once before looping.
1906
1907 (ewoc--node-enter-before, ewoc--create-node): Delete funcs.
1908 (ewoc--insert-new-node): New func.
1909 Update callers of deleted funcs to use it, instead.
1910
1911 2006-05-11 Glenn Morris <rgm@gnu.org>
1912
1913 * calendar/calendar.el (diary-show-all-entries): Do not refer to
1914 obsolete alias `show-all-diary-entries'.
1915 (make-diary-entry): Not interactive.
1916 (cal-tex-cursor-month, cal-tex-cursor-month-landscape)
1917 (cal-tex-cursor-day, cal-tex-cursor-week, cal-tex-cursor-week2)
1918 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
1919 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
1920 (cal-tex-cursor-year-landscape, cal-tex-cursor-filofax-year)
1921 (cal-tex-cursor-filofax-daily, cal-tex-cursor-year): Interactive.
1922
1923 2006-05-11 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
1924
1925 * calendar/calendar.el (calendar-french-date-string)
1926 (calendar-mayan-date-string, calendar-chinese-date-string)
1927 (calendar-astro-date-string, calendar-iso-date-string)
1928 (calendar-islamic-date-string, calendar-bahai-date-string)
1929 (calendar-hebrew-date-string, calendar-coptic-date-string)
1930 (calendar-ethiopic-date-string, calendar-persian-date-string):
1931 These functions are not interactive.
1932
1933 2006-05-11 Luc Teirlinck <teirllm@auburn.edu>
1934
1935 * files.el: Balance parentheses.
1936
1937 2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
1938
1939 * files.el, newcomment.el, outline.el, simple.el,
1940 emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
1941 progmodes/cc-vars.el, progmodes/compile.el:
1942 Move `safe-local-variable' declarations to the respective files.
1943
1944 * help-fns.el (describe-variable): Don't print safe-var if it is
1945 byte-code. Improve wording as suggested by Luc Teirlinck.
1946
1947 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
1948
1949 * progmodes/gdb-ui.el (gdb-reset): Update speedbar if necessary.
1950 (gdb-var-evaluate-expression-handler, gdb-var-update-handler):
1951 Use a token for pending-triggers to ensure gdb-var-update
1952 gets called once per user input again for pre-GDB 6.4.
1953 (gdb-var-delete): Match on more complex expressions.
1954 (gdb-var-list-children-handler, gdb-var-create-handler):
1955 Use a token for consistency.
1956
1957 2006-05-11 Carsten Dominik <dominik@science.uva.nl>
1958
1959 * textmodes/org.el (org-read-date, org-goto-calendar)
1960 (org-agenda-goto-calendar):
1961 Bind `view-calendar-holidays-initially' to nil.
1962
1963 2006-05-11 Thien-Thi Nguyen <ttn@gnu.org>
1964
1965 * emacs-lisp/ewoc.el (ewoc--refresh-node): No longer save-excursion.
1966 Update all callers to do it there, instead.
1967
1968 2006-05-10 Glenn Morris <rgm@gnu.org>
1969
1970 * calendar/calendar.el (calendar-basic-setup): Set day to 1 in
1971 prefix arg case, to avoid view-diary-entries-initially error.
1972 Reported by Stephen Berman <Stephen.Berman at gmx.net>.
1973 (calendar-date-is-legal-p): Handle dates with no day part.
1974
1975 2006-05-11 Nick Roberts <nickrob@snap.net.nz>
1976
1977 * comint.el (comint-insert-input): Just make it when
1978 comint-use-prompt regexp is nil (default) and with the mouse.
1979 (comint-copy-old-input): Reinstate from 2004-06-23.
1980 (comint-mode-map): Bind C-c C-m to it.
1981
1982 2006-05-10 J.D. Smith <jdsmith@as.arizona.edu>
1983
1984 * progmodes/idlw-shell.el (idlwave-shell-move-or-history):
1985 Remove spurious move to point-max (new comint behavior fixes).
1986
1987 * progmodes/idlwave.el (idlwave-push-mark): Removed obsolete
1988 compatibility function (Emacs 18/19).
1989 (idlwave-is-continuation-line): Always return point at start of
1990 previous non-blank continuation line.
1991 `keyword-parameters': Fix continued comment font-lock matcher.
1992 (idlwave-font-lock-fontify-region): Written, use as
1993 font-lock-fontify-region-function, to fix continued keyword
1994 fontification issues.
1995
1996 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1997
1998 * term/mac-win.el (mac-font-panel-mode): Doc fix.
1999 (mac-service-selection, mac-service-open-file)
2000 (mac-service-open-selection, mac-service-mail-selection)
2001 (mac-service-mail-to, mac-service-insert-text): Rename from
2002 mac-services-*. All uses changed.
2003 (mac-apple-event-map): Rename event symbol `services' to `service'.
2004
2005 2006-05-10 Thien-Thi Nguyen <ttn@gnu.org>
2006
2007 * emacs-lisp/ewoc.el (ewoc--dll-create, ewoc--node-delete)
2008 (ewoc--node-enter-first, ewoc--node-enter-last)
2009 (ewoc--delete-node-internal): Merge funcs into unique callers.
2010
2011 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
2012
2013 * emacs-lisp/crm.el (completing-read-multiple): Properly handle
2014 return value of read-from-minibuffer for empty input.
2015
2016 2006-05-09 Miles Bader <miles@gnu.org>
2017
2018 * comint.el (comint-insert-input): Remove redundant calls to setq
2019 and goto-char.
2020
2021 2006-05-10 Nick Roberts <nickrob@snap.net.nz>
2022
2023 * comint.el (comint-insert-input): Make it work when
2024 comint-use-prompt-regexp is t.
2025
2026 2006-05-10 Miles Bader <miles@gnu.org>
2027
2028 * subr.el (field-at-pos): New function.
2029
2030 * comint.el (comint-insert-input): Use it.
2031
2032 2006-05-09 Juri Linkov <juri@jurta.org>
2033
2034 * battery.el (battery-linux-proc-acpi): Also try
2035 `/proc/acpi/thermal_zone/THR2/temperature'.
2036
2037 * files.el <safe-local-variable>: Remove `eval' and `let' binding
2038 for now unused lambda `string-or-null'.
2039
2040 * add-log.el (change-log-default-name): Put `string-or-null-p'
2041 instead of lambda on `safe-local-variable' property.
2042
2043 * diff-mode.el (diff-context->unified): Use `region-beginning' and
2044 `region-end' instead of `mark' and `point'.
2045 (diff-unified->context, diff-reverse-direction, diff-fixup-modifs):
2046 Operate on region in Transient Mark mode when the mark is active.
2047 Use `region-beginning' and `region-end' instead of `mark' and
2048 `point'.
2049 (diff-hunk-text, diff-goto-source): Doc fix.
2050
2051 * startup.el (fancy-splash-screens, normal-splash-screen): Use
2052 face `mode-line-buffer-id' for mode-line buffer face instead of
2053 hard-coded `(:weight bold)'.
2054
2055 * arc-mode.el (archive-set-buffer-as-visiting-file): Bind
2056 buffer-undo-list to t (undo-ask is reproducible by visiting
2057 nested archives).
2058
2059 2006-05-09 Kim F. Storm <storm@cua.dk>
2060
2061 * progmodes/grep.el (rgrep): Set default directory of *grep*
2062 buffer if we start M-x rgrep in the *grep* buffer and choose
2063 a different base directory.
2064
2065 2006-05-09 Michael Albinus <michael.albinus@gmx.de>
2066
2067 * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
2068 completion also when ido is loaded.
2069
2070 2006-05-09 Masatake YAMATO <jet@gyve.org>
2071
2072 * font-lock.el (cpp-font-lock-keywords-source-directives): Addded
2073 "warning" and "import".
2074 (cpp-font-lock-keywords): Added "warning".
2075
2076 2006-05-08 Dan Nicolaescu <dann@ics.uci.edu>
2077
2078 * term/xterm.el (terminal-init-xterm): Add more key bindings.
2079
2080 2006-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2081
2082 * mwheel.el (mwheel-scroll): Make sure that when scrolling multiple
2083 pages at a time, if we signal the end, we should indeed reach that end.
2084
2085 2006-05-08 David Reitter <david.reitter@gmail.com>
2086
2087 * emacs-lisp/easy-mmode.el (define-minor-mode): Only preserve messages
2088 output during execution of the body.
2089
2090 2006-05-08 Kim F. Storm <storm@cua.dk>
2091
2092 * progmodes/grep.el (lgrep, rgrep): Doc fixes.
2093
2094 2006-05-08 Thien-Thi Nguyen <ttn@gnu.org>
2095
2096 * emacs-lisp/ewoc.el (ewoc--set-buffer-bind-dll-let*):
2097 Use with-current-buffer.
2098
2099 2006-05-07 Kim F. Storm <storm@cua.dk>
2100
2101 * subr.el (add-to-history): Remove keep-dups arg.
2102
2103 * kmacro.el (kmacro-push-ring): Let-bind history-delete-duplicates
2104 to nil around call to add-to-history.
2105
2106 2006-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2107
2108 * emacs-lisp/syntax.el (syntax-ppss): Flush the cache before rather
2109 than after a buffer modification.
2110
2111 2006-05-08 Nick Roberts <nickrob@snap.net.nz>
2112
2113 * progmodes/gdb-ui.el (gdb-var-create-handler): Move speedbar
2114 call to...
2115 (gud-watch): ...here so speedbar is raised for already watched
2116 expressions.
2117 (gdb-speedbar-refresh): Delete function.
2118 (gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
2119 Use speedbar-timer-fn instead of speedbar-refresh (reverting
2120 earlier change).
2121 (gdb-var-evaluate-expression-handler)
2122 (gdb-var-list-children-handler-1, gdb-var-update-handler-1): Use it.
2123
2124 * speedbar.el (speedbar-timer-fn): Remove save-window-excursion.
2125 Update localized contents for all buffers except ignored modes.
2126
2127 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2128
2129 * term/mac-win.el (mac-utxt-to-string): Use `eq' instead of `='.
2130 (mac-atsu-font-table, mac-font-panel-mode): Add defvars.
2131 (mac-bytes-to-digits, mac-handle-toolbar-switch-mode)
2132 (mac-handle-font-panel-closed, mac-handle-font-selection):
2133 New functions.
2134 (mac-font-panel-mode): New minor mode.
2135 (mac-apple-event-map): Add bindings for toolbar toggle button and
2136 font panel.
2137 (menu-bar-showhide-menu): Add mac-font-panel-mode.
2138
2139 2006-05-07 John Paul Wallington <jpw@pobox.com>
2140
2141 * ibuffer.el (ibuffer-compressed-file-name-regexp):
2142 Avoid `regexp-opt'; simplify regexp for readability.
2143
2144 2006-05-06 Eli Zaretskii <eliz@gnu.org>
2145
2146 * ldefs-boot.el (dired-do-redisplay, dired-maybe-insert-subdir):
2147 * files.el (buffer-stale-function):
2148 * dired-aux.el (dired-do-redisplay, dired-maybe-insert-subdir):
2149 * autorevert.el (global-auto-revert-non-file-buffers): Point Info
2150 links to the main manual, not to emacs-xtra.
2151
2152 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2153
2154 * term/mac-win.el (mac-utxt-to-string): Don't make adjustment for
2155 MacJapanese if text is ASCII-only.
2156
2157 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
2158
2159 * progmodes/gdb-ui.el (gdb-goto-breakpoint): Use or instead of
2160 unless so nil isn't returned.
2161 (gdb-setup-windows, gdb-restore-windows): Reset gdb-source-window.
2162
2163 2006-05-06 Kim F. Storm <storm@cua.dk>
2164
2165 * subr.el (add-to-history): New function.
2166
2167 * ediff.el (ediff-files, ediff-files3, ediff-merge-files)
2168 (ediff-merge-files-with-ancestor):
2169 * env.el (setenv):
2170 * isearch.el (isearch-update-ring):
2171 * server.el (server-visit-files):
2172 * progmodes/grep.el (lgrep, rgrep):
2173 * progmodes/vhdl-mode.el (vhdl-generate-makefile-1):
2174 * progmodes/xscheme.el (xscheme-insert-expression):
2175 Use add-to-history.
2176
2177 * kmacro.el (kmacro-push-ring): Use add-to-history.
2178 (kmacro-ring-length): Remove unused defun.
2179 (kmacro-start-macro): Use kmacro-push-ring.
2180
2181 2006-05-06 Thien-Thi Nguyen <ttn@gnu.org>
2182
2183 * emacs-lisp/ewoc.el (ewoc-create, ewoc-set-hf): Use `insert'
2184 directly instead of a lambda expression that calls it.
2185
2186 2006-05-06 Kim F. Storm <storm@cua.dk>
2187
2188 * avoid.el (mouse-avoidance-point-position): Use posn-at-point
2189 instead of compute-motion.
2190
2191 2006-05-05 Dan Nicolaescu <dann@ics.uci.edu>
2192
2193 * ibuffer.el (ibuffer-compressed-file-name-regexp): Undo previous
2194 change.
2195
2196 2006-05-05 Reiner Steib <Reiner.Steib@gmx.de>
2197
2198 * startup.el (command-line-1): Refer to "Pure Storage" on
2199 pure-space-overflow.
2200
2201 2006-05-05 Martin Rudalics <rudalics@gmx.at>
2202
2203 * emacs-lisp/re-builder.el (reb-update-overlays): Cycle through
2204 provided faces once they all have been used up.
2205
2206 2006-05-05 Eli Zaretskii <eliz@gnu.org>
2207
2208 * startup.el (normal-splash-screen, fancy-splash-screens-1): Add a
2209 reference to the Lisp manual to the warning about pure space
2210 overflow.
2211
2212 2006-05-05 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
2213
2214 * textmodes/ispell.el (ispell-buffer-local-dict): Add a `no-reload'
2215 argument to avoid the call to `ispell-internal-change-dictionary'
2216 when not needed.
2217 (ispell-change-dictionary): Use this argument and call
2218 `ispell-internal-change-dictionary' after the possible change
2219 to `ispell-local-dictionary'.
2220 (ispell-internal-change-dictionary): Check for a change in
2221 personal dictionary use too.
2222
2223 2006-05-05 Eli Zaretskii <eliz@gnu.org>
2224
2225 * startup.el (command-line): On MS-Windows, probe "~", not
2226 "~USER", for warning about non-existent home directory
2227
2228 * arc-mode.el (archive-l-e): New optional argument `float' means
2229 generate a float value.
2230 (archive-arc-summarize, archive-lzh-summarize)
2231 (archive-zip-summarize, archive-zoo-summarize): Invoke archive-l-e
2232 with 3rd argument non-nil when file's size is being computed.
2233 Format the file sizes with %8.0f instead of %8d.
2234
2235 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2236
2237 * cus-start.el (all): Add mac-dnd-known-types.
2238
2239 * term/mac-win.el (mac-utxt-to-string, mac-string-to-utxt)
2240 (mac-TEXT-to-string, mac-string-to-TEXT, mac-furl-to-string)
2241 (mac-TIFF-to-string): New functions.
2242 (x-get-selection, x-selection-value)
2243 (mac-select-convert-to-string): Use them.
2244 (mac-text-encoding-mac-japanese-basic-variant): New constant.
2245 (mac-dnd-types-alist): New customization variable.
2246 (mac-dnd-handle-furl, mac-dnd-handle-hfs, mac-dnd-insert-utxt)
2247 (mac-dnd-insert-TEXT, mac-dnd-insert-TIFF, mac-dnd-drop-data)
2248 (mac-dnd-handle-drag-n-drop-event): New functions.
2249 (mac-drag-n-drop): Remove function.
2250 (global-map): Bind drag-n-drop and M-drag-n-drop to
2251 mac-dnd-handle-drag-n-drop-event.
2252
2253 2006-05-04 Karl Chen <quarl@NOSPAM.quarl.org>
2254
2255 * progmodes/perl-mode.el (perl-beginning-of-function):
2256 Skip anonymous subs.
2257
2258 2006-05-04 Dan Nicolaescu <dann@ics.uci.edu>
2259
2260 * ibuffer.el (ibuffer-compressed-file-name-regexp): Avoid loading
2261 regexp-opt at run time.
2262
2263 * term.el (term-handle-ansi-escape): Fix off by one error.
2264
2265 2006-05-04 Nick Roberts <nickrob@snap.net.nz>
2266
2267 * progmodes/gdb-ui.el (gdb-force-update): Delete variable...
2268 (gdb-init-1, gdb-post-prompt): ...and references to it.
2269 (gdb-frame-handler): Strip directory name from filename if present.
2270
2271 * progmodes/gud.el (gdb-force-update): Delete defvar
2272 (gud-speedbar-buttons): ...and references to it. Use window-start
2273 to try to keep positon in watch expression.
2274
2275 2006-05-03 Richard Stallman <rms@gnu.org>
2276
2277 * simple.el (next-history-element, previous-history-element): Doc fix.
2278
2279 * isearch.el (isearch-update-ring): Doc fix.
2280
2281 2006-05-03 Dan Nicolaescu <dann@ics.uci.edu>
2282
2283 * isearch.el (isearch-update-ring): Take history-delete-duplicates
2284 into consideration. Replace one arm ifs with whens.
2285
2286 2006-05-03 Nick Roberts <nickrob@snap.net.nz>
2287
2288 * progmodes/gdb-ui.el (gud-watch): Let user select an expression.
2289 (menu): Fix typo.
2290
2291 2006-05-02 Miles Bader <miles@gnu.org>
2292
2293 * replace.el (occur-engine): Bind `inhibit-field-text-motion' to t.
2294
2295 2006-05-02 Jay Belanger <belanger@truman.edu>
2296
2297 * calc/calc-embed.el (calc-override-minor-modes-map)
2298 (calc-override-minor-modes): New variables.
2299 (calc-do-embedded): Make sure that Calc keystrokes aren't
2300 overwritten by minor modes.
2301
2302 2006-05-02 Chong Yidong <cyd@mit.edu>
2303
2304 * msb.el (msb): If EVENT is a down event, read and discard the up event.
2305
2306 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
2307
2308 * startup.el (command-line-1): Refer to Lisp manual when
2309 pure-space-overflow occurs.
2310
2311 * files.el (byte-compile-dynamic, byte-compile-dynamic-docstrings)
2312 (byte-compile-warnings, find-file-visit-truename, indent-tabs-mode)
2313 (left-margin, no-byte-compile, no-update-autoloads, truncate-lines)
2314 (version-control): Don't use `t' for safe-local-variable declarations.
2315
2316 2006-05-01 Richard Stallman <rms@gnu.org>
2317
2318 * diff-mode.el (diff-mode-shared-map): Don't bind M-W, M-U, M-C,
2319 M-r, M-R, M-A, M-SPC or M-DEL.
2320 (diff-mode-map): diff-refine-hunk now on C-c C-w
2321 (diff-mode-map): Bind C-c C-e, C-c C-n, C-c C-r, C-c C-u.
2322
2323 * help-mode.el (help-mode): view-exit-action calls delete-window
2324 only when it is safe and possible.
2325
2326 * simple.el (undo-outer-limit-truncate): Put quotes around buffer name
2327 in messages.
2328
2329 * emacs-lisp/warnings.el (display-warning, lwarn): Doc fixes.
2330
2331 * tool-bar.el (tool-bar-setup): Put Help and Preferences items
2332 in the default tool-bar-map.
2333
2334 2006-05-01 Michael Albinus <michael.albinus@gmx.de>
2335
2336 * net/tramp.el (tramp-completion-file-name-handler-alist)
2337 (tramp-run-real-handler, tramp-completion-run-real-handler)
2338 (tramp-completion-handle-file-name-all-completions)
2339 (tramp-completion-handle-file-name-completion): Autoload them.
2340 (tramp-completion-handle-file-exists-p)
2341 (tramp-completion-handle-file-name-directory)
2342 (tramp-completion-handle-file-name-nondirectory)
2343 (tramp-completion-handle-expand-file-name): Remove them.
2344 (tramp-handle-file-name-directory): Return the real directory name.
2345 Returning "/" only doesn't need to be necessary any longer.
2346 (tramp-file-name-handler): Make special attention when in hostname
2347 completion mode.
2348 (tramp-completion-file-name-handler): Revert patch from 2006-04-28.
2349 (tramp-register-file-name-handlers):
2350 Register `tramp-completion-file-name-handler' only when
2351 `partial-completion-mode' is enabled.
2352 (tramp-completion-handle-file-name-all-completions):
2353 Delete directory part from results.
2354 (tramp-get-completion-methods, tramp-get-completion-user-host):
2355 Discard deleting "/", it doesn't work after the change of
2356 `tramp-handle-file-name-directory' above.
2357
2358 2006-05-01 Kim F. Storm <storm@cua.dk>
2359
2360 * progmodes/grep.el (grep-expand-template): Use save-match-data
2361 and symbol-value.
2362
2363 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2364
2365 * term/mac-win.el (mac-ae-open-documents, mac-drag-n-drop):
2366 Use select-frame-set-input-focus instead of raise-frame.
2367 (global-map): Bind M-drag-n-drop to mac-drag-n-drop.
2368
2369 2006-05-01 Nick Roberts <nickrob@snap.net.nz>
2370
2371 * progmodes/gud.el (gud-def): Add %c case.
2372 (gud-speedbar-buttons): Don't bind case-fold-search unnecessarily.
2373 (gud-format-command): Make match case sensitive. Match on %F.
2374
2375 2006-04-30 Glenn Morris <rgm@gnu.org>
2376
2377 * calendar/cal-tex.el (cal-tex-preamble-extra): New variable.
2378 (cal-tex-preamble): Use cal-tex-preamble-extra.
2379 (cal-tex-list-diary-entries): Refer to `diary-list-entries' rather
2380 than alias `list-diary-entries'.
2381
2382 2006-04-29 Dan Nicolaescu <dann@ics.uci.edu>
2383
2384 * help-fns.el (describe-variable): Add info about safe local variables.
2385
2386 2006-04-29 Richard Stallman <rms@gnu.org>
2387
2388 * bindings.el (mode-line-format): help-echo doc fixes.
2389
2390 * net/tramp.el (tramp-file-name-handler-alist): Delete
2391 expand-file-name and other operations that can cause spurious loading.
2392
2393 2006-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
2394
2395 * files.el (safe-local-variable-p): Remove support for the special
2396 value t.
2397
2398 * textmodes/paragraphs.el (sentence-end-without-space):
2399 Fix safety predicate.
2400 (sentence-end-double-space, sentence-end-without-period)
2401 (paragraph-ignore-fill-prefix):
2402 * textmodes/fill.el (colon-double-space):
2403 * abbrev.el (abbrev-mode): Tighten the safety predicate.
2404
2405 * subr.el (booleanp): New fun.
2406
2407 * textmodes/reftex-vars.el (reftex-guess-label-type):
2408 Tighten the safety predicate.
2409
2410 2006-04-28 Kim F. Storm <storm@cua.dk>
2411
2412 * progmodes/grep.el (defgroup grep): Doc fix.
2413 (grep-auto-highlight): Remove.
2414 (grep-template): New defcustom.
2415 (grep-find-template): Rename from grep-tree-template.
2416 (grep-files-aliases): Rename from grep-tree-files-aliases.
2417 Remove "all" alias, add "l" alias.
2418 (grep-tree-ignore-case, grep-tree-ignore-CVS-directories): Remove.
2419 (grep-find-ignored-directories): New defcustom to replace
2420 grep-tree-ignore-CVS-directories, to facilitate ignoring
2421 subdirectories for multiple version control systems.
2422 (grep-mode-map): Add Recursive grep item to GREP menu.
2423 (grep-regexp-history, grep-files-history): New defvars.
2424 (grep-probe): New helper function.
2425 (grep-compute-defaults): Use it to simplify code.
2426 Adapt to name changes.
2427 Use `.' as base in grep-find-template rather than <D>.
2428 (grep): Remove superfluous highlight-regexp arg. Fix doc.
2429 Call grep-compute-defaults unconditionally.
2430 (grep-expand-keywords): New defconst.
2431 (grep-expand-template): Rename from grep-expand-command-macros.
2432 Simplify via grep-expand-keywords. Look at case-fold-search instead
2433 of grep-tree-ignore-case to add -i option.
2434 Bind case-fold-search to nil while matching keywords.
2435 (grep-tree-last-regexp, grep-tree-last-files): Remove.
2436 (grep-read-regexp, grep-read-files): New helper functions.
2437 (rgrep): Rename from grep-tree. Rework to use proper histories.
2438 Adapt to changes in defcustoms and functions above.
2439 (lgrep): New command, as grep, but using same interactive UI as rgrep.
2440
2441 2006-04-28 Michael Albinus <michael.albinus@gmx.de>
2442
2443 * net/tramp.el (tramp-completion-file-name-handler):
2444 Disable Tramp's functionality while loading Tramp itself.
2445 (tramp-register-file-name-handlers): That's a defsubst now.
2446 Code from `tramp-repair-jka-compr' moved here. Apply it via
2447 `after-init-hook'.
2448 (tramp-repair-jka-compr): Remove.
2449
2450 2006-04-27 Jay Belanger <belanger@truman.edu>
2451
2452 * calc-embed.el (calc-embedded-make-info): Use `math-read-expr' to
2453 read expression when `math-read-big-expr' doesn't work.
2454
2455 2006-04-27 Reiner Steib <Reiner.Steib@gmx.de>
2456
2457 * startup.el (command-line-1): Display warning when
2458 pure-space-overflow is non-nil.
2459
2460 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2461
2462 * textmodes/bibtex.el (bibtex-user-optional-fields): Mark as
2463 risky.
2464
2465 2006-04-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2466
2467 * textmodes/bibtex.el (bibtex-url): New optional arg no-browse.
2468 Return the URL or nil if none can be generated.
2469
2470 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
2471
2472 * progmodes/gud.el (gud-comint-buffer): Move forward to stop
2473 byte compiler warnings.
2474 (gud-basic-call, gud-find-expr): Let user select an expression
2475 for printing. Print expression as well as value in GUD buffer.
2476
2477 2006-04-17 Ken Manheimer <ken.manheimer@gmail.com>
2478
2479 * allout.el: Remove local autoload declaration for
2480 pgg-gpg-symmetric-key-p, since that's now done in pgg-gpg.el.
2481 (allout-show-bodies, allout-header-prefix, allout-primary-bullet)
2482 (allout-plain-bullets-string, allout-distinctive-bullets-string)
2483 (allout-use-mode-specific-leader, allout-old-style-prefixes)
2484 (allout-stylish-prefixes, allout-numbered-bullet)
2485 (allout-file-xref-bullet, allout-presentation-padding)
2486 (allout-use-hanging-indents, allout-reindent-bodies): Mark as
2487 safe-local-variable with suitable value spec, and add autoload
2488 cookie for loaddefs inclusion. We now use an explicit spec everywhere.
2489 (move-beginning-of-line, move-end-of-line): Repair so these compat
2490 functions now actually resituate the point, when appropriate.
2491
2492 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2493
2494 * progmodes/cc-subword.el (c-subword-mode-map): Use command remapping.
2495
2496 * add-log.el (add-log-iso8601-time-zone): Make parameter optional.
2497 (add-log-iso8601-time-string): Fix call to format-time-string.
2498
2499 2006-04-26 Kim F. Storm <storm@cua.dk>
2500
2501 * subr.el (posn-string, posn-image, posn-object): Doc fix.
2502
2503 2006-04-26 Masatake YAMATO <jet@gyve.org>
2504
2505 * progmodes/asm-mode.el (asm-mode, asm-mode-syntax-table):
2506 Add support for "//" style comments. Remove `b' flag
2507 from ?* in `asm-mode-syntax-table'.
2508
2509 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2510
2511 * follow.el: Use (featurep 'xemacs) everywhere.
2512 (follow-mode): Use define-minor-mode.
2513 (follow-mode-map): Move initialization into the declaration.
2514 Use command remapping.
2515 (follow-emacs-version-xemacs-p): Remove.
2516 (follow-submit-feedback): Remove.
2517
2518 * allout.el (allout-layout, allout-passphrase-verifier-string)
2519 (allout-passphrase-hint-string): Tighten up a bit the safety predicate.
2520
2521 * textmodes/reftex-vars.el (reftex-vref-is-default)
2522 (reftex-fref-is-default, reftex-guess-label-type):
2523 Tighten up a bit the safety predicate.
2524
2525 * textmodes/paragraphs.el (sentence-end-double-space)
2526 (sentence-end-without-period, sentence-end-without-space)
2527 (page-delimiter, paragraph-ignore-fill-prefix):
2528 Tighten up a bit the safety predicate.
2529
2530 * textmodes/fill.el (colon-double-space): Tighten up the safety pred.
2531
2532 * progmodes/python.el (python-continuation-line-p)
2533 (python-beginning-of-statement): syntax-ppss may return
2534 a negative depth.
2535 (python-mode): Don't forcefully enable font-lock.
2536
2537 * time-stamp.el (time-stamp-start, time-stamp-end)
2538 (time-stamp-inserts-lines): Tighten up a bit the safety predicate.
2539
2540 * add-log.el: Remove spurious * in docstrings.
2541 (add-log-time-zone-rule): Rename from change-log-time-zone-rule.
2542 (add-change-log-entry): Use it here, since it's not specific
2543 to iso8601.
2544 (add-log-iso8601-time-string): Don't use it here any more.
2545 (change-log-indent-text, change-log-indent): Rename from add-log-*.
2546
2547 * abbrev.el (abbrev-mode): Tighten up a bit the safety predicate.
2548
2549 2006-04-25 Ryan Yeske <rcyeske@gmail.com>
2550
2551 * net/rcirc.el (rcirc-print): Revert last change with ignored nicks.
2552 (rcirc-toggle-low-priority): Doc fix.
2553 (rcirc-handler-NOTICE): Remove beginning of line anchor in
2554 ChanServ regexp.
2555 (rcirc-startup-channels-alist): Connect to #rcirc by default, not
2556 #emacs.
2557 (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Add variables.
2558 (rcirc-decode-coding-system): Use utf-8 as the default.
2559 (rcirc-multiline-minor-mode): Set the fill-column.
2560 (rcirc-format-response-string): Display bright and dim nicks.
2561 (rcirc-browse-url): Update interactive spec to fill ARG.
2562 (rcirc-bright-nick, rcirc-dim-nick): Add faces.
2563 (rcirc-print): Ignore dim-nick messages wrt modeline-activity.
2564
2565 2006-04-24 J.D. Smith <jdsmith@as.arizona.edu>
2566
2567 * textmodes/bibtex.el (bibtex-find-entry): Don't demand matching
2568 case for @Article, etc.
2569
2570 2006-04-23 Michael Albinus <michael.albinus@gmx.de>
2571
2572 * net/tramp.el (tramp-register-file-name-handlers): New defun.
2573 Added with autoload cookie.
2574 (tramp-unload-file-name-handlers): Rename from
2575 `tramp-unload-file-name-handler-alist'.
2576
2577 2006-04-23 Romain Francoise <romain@orebokech.com>
2578
2579 * comint.el (comint-match-partial-filename): Doc fix.
2580
2581 2006-04-21 Glenn Morris <rgm@gnu.org>
2582
2583 * calendar/cal-menu.el (calendar-mode-map): Refer to
2584 `diary-view-entries' rather than alias `view-diary-entries'.
2585 * calendar/diary-lib.el (view-other-diary-entries): Ditto.
2586
2587 2006-04-21 Luc Teirlinck <teirllm@auburn.edu>
2588
2589 * progmodes/antlr-mode.el (antlr-default):
2590 * cus-edit.el (custom-documentation):
2591 * faces.el (scroll-bar, border, cursor, mouse): Avoid nil spec
2592 in defface.
2593
2594 2006-04-21 Kim F. Storm <storm@cua.dk>
2595
2596 * image.el (image-type): New defun split out of create-image.
2597 (create-image): Use it.
2598
2599 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
2600
2601 * textmodes/org.el (org-mode-map): Catch conflict with old allout.el.
2602 (org-open-at-point): Remove the "...done" message to keep output
2603 in the echo area visible.
2604 (org-export-as-xoxo): Fix call to `indent-region'.
2605
2606 2006-04-21 Kevin Ryde <user42@zip.com.au>
2607
2608 * international/mule.el (keyboard-coding-system): defcustom
2609 info-link fixes: "Specify Coding" has been split, keyboard now in
2610 "Terminal Coding", and "Single-Byte Character Support" is now
2611 "Unibyte Mode".
2612
2613 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
2614
2615 * progmodes/gdb-ui.el (gdb-data-list-register-values-handler):
2616 Use font-lock-warning-face for any errors e.g. no stack.
2617 (gdb-stack-list-locals-handler): Display any errors e.g. no stack.
2618
2619 2006-04-20 Dan Nicolaescu <dann@ics.uci.edu>
2620
2621 * progmodes/sh-script.el (sh-shell): Mark as safe.
2622
2623 * newcomment.el (comment-start, comment-start-skip)
2624 (comment-end-skip, comment-end): Mark as safe.
2625
2626 2006-04-20 Carsten Dominik <dominik@science.uva.nl>
2627
2628 * textmodes/org.el (org-deadline-announce): Face removed.
2629 (org-level-faces, org-n-levels): Convert to constant.
2630 (org-compatible-face): New function.
2631 (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
2632 (org-level-5, org-level-6, org-level-7, org-level-8)
2633 (org-special-keyword, org-warning, org-headline-done, org-link)
2634 (org-date, org-tag, org-todo, org-done, org-table, org-formula)
2635 (org-scheduled-today, org-scheduled-previously, org-time-grid):
2636 Face definition revised for better color tty support.
2637 (org-bold-re, org-italic-re, org-underline-re): New constants.
2638 (org-set-font-lock-defaults): Use the new constants.
2639 (org-agenda-highlight-todo): New function.
2640 (org-agenda-todo): Fix bug with point at end of line.
2641 (org-agenda-change-all-lines, org-finalize-agenda-entries):
2642 Fontify TODO keywords.
2643 (org-insert-link): Preserve relative path in ../ links.
2644 (org-export-as-html): Convert links pointing to .org files into
2645 links that will work beteen the exported HTML files.
2646 (org-todo-list): Fix bug when arg=0.
2647 (org-insert-heading): More fine-tuning.
2648
2649 2006-04-19 Romain Francoise <romain@orebokech.com>
2650
2651 * mail/rmail.el (rmail-convert-to-babyl-format): Use second group
2652 from `rmail-mime-charset-pattern'.
2653
2654 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
2655
2656 * progmodes/python.el (python-mode): Fix typo.
2657
2658 2006-04-18 J.D. Smith <jdsmith@as.arizona.edu>
2659
2660 * comint.el (comint-previous-input): Don't clobber input line
2661 when moving off either end of the input history ring.
2662 (comint-delete-input): New function, used by
2663 `comint-previous-input' and others.
2664 (comint-previous-matching-input):
2665 Use `coming-delete-input'. Save the partial input if leaving the
2666 edit line. Goto point-max before deleting input to avoid
2667 partial input fragments hanging around.
2668 (comint-restore-input): New function, used by `comint-previous-input'.
2669
2670 2006-04-18 Luc Teirlinck <teirllm@auburn.edu>
2671
2672 * imenu.el (imenu--index-alist): Balance parentheses.
2673
2674 2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
2675
2676 * progmodes/python.el (python-mode): Add support for hs-minor-mode.
2677
2678 2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
2679
2680 * abbrev.el (read-abbrev-file): Use abbrev-file-name if optional
2681 file is nil.
2682
2683 2006-04-18 Richard Stallman <rms@gnu.org>
2684
2685 * tooltip.el (tooltip-mode, tooltip-use-echo-area): Doc fixes.
2686
2687 * imenu.el (imenu-create-index-function, imenu--index-alist)
2688 (imenu--last-menubar-index-alist, imenu--make-index-alist)
2689 (imenu-default-create-index-function, imenu--generic-function):
2690 Doc fixes.
2691
2692 * image-mode.el (image-toggle-display): Handle tar and arc subfiles.
2693
2694 * help-mode.el (help-mode): Set view-exit-action to delete window.
2695
2696 * env.el (setenv): Get rid of arg UNSET. Interactive unsetting
2697 now works by passing nil as arg.
2698
2699 * apropos.el (apropos-print): Don't do where-is on self-insert-command.
2700
2701 * abbrev.el (edit-abbrevs-redefine): Temporarily widen.
2702 (read-abbrev-file): Provide default when reading filename.
2703
2704 * files.el (enable-local-variables): Allow :all as value.
2705 (hack-local-variables): Implement that value.
2706 (safe-local-variable-values, safe-local-eval-forms)
2707 (enable-local-variables): Mark as risky.
2708 (find-file-visit-truename, kept-old-versions): Mark safe.
2709
2710 * time-stamp.el (time-stamp-format, time-stamp-line-limit)
2711 (time-stamp-start, time-stamp-end, time-stamp-inserts-lines)
2712 (time-stamp-count, time-stamp-pattern): Add safe-local-variable prop.
2713
2714 2006-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2715
2716 * progmodes/tcl.el (tcl-send-string, tcl-send-region):
2717 Use forward-line so as to get to BOL even in the presence of fields.
2718 (tcl-eval-region): Strip surrounding space to avoid multiple prompts
2719 in return.
2720 (inferior-tcl): Tell tclsh to work in interactive mode.
2721
2722 * complete.el (partial-completion-mode):
2723 Use 'choose-completion-string-functions to make sure that
2724 choose-completion fills the minibuffer properly.
2725
2726 * complete.el (PC-old-read-file-name-internal): Remove.
2727 (PC-read-include-file-name-internal): Remove. Turn it into an advice
2728 of read-file-name-internal.
2729 (partial-completion-mode): Enable/disable this advice.
2730
2731 2006-04-18 Juanma Barranquero <lekktu@gmail.com>
2732
2733 * net/tramp.el (tramp-completion-file-name-handler): Revert change
2734 of 2006-04-17.
2735
2736 2006-04-18 Carsten Dominik <dominik@science.uva.nl>
2737
2738 * textmodes/org.el (org-insert-heading): Insert heading before
2739 current if at beginning of line.
2740 (org-todo, org-date): New faces.
2741 (org-table-align): Make sure tooltip window contains full text.
2742 (org-no-properties): New defsubst.
2743 (org-set-font-lock-defaults): Use new faces.
2744
2745 2006-04-18 Nick Roberts <nickrob@snap.net.nz>
2746
2747 * progmodes/gud.el (gud-speedbar-item-info): Display frame address
2748 for root variables.
2749
2750 * progmodes/gdb-ui.el (gdb-pc-address): Rename from gdb-frame-address.
2751 (gdb-frame-address): Re-use to identify frame for watch expression.
2752 (gdb-var-list, gdb-var-create-handler): Add frame address for root
2753 variables.
2754 (gdb-init-1, gdb-source, gdb-post-prompt)
2755 (gdb-assembler-custom, gdb-invalidate-assembler): Use gdb-pc-address.
2756 (gdb-frame-handler): Get gdb-frame-address.
2757
2758 2006-04-17 Michael Albinus <michael.albinus@gmx.de>
2759
2760 Sync with Tramp 2.0.53.
2761
2762 * net/tramp.el (tramp-completion-mode): ?\t has event-modifier
2763 'control. Reported by Matthias F\e,bv\e(Brste <slashdevslashnull@gmx.net>.
2764 (tramp-completion-file-name-handler): Add autoload cookie for
2765 adding to `file-name-handler-alist'.
2766
2767 * net/tramp-smb.el (tramp-smb-wait-for-output): Wait always for
2768 the prompt. If it returns earlier (when detecting an error
2769 message), the rest of the output will merge accidently with the
2770 output of the next command. Reported by M Jared Finder
2771 <jared@hpalace.com>.
2772
2773 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
2774 for `process-file', in order to let it work for older Emacsen too.
2775
2776 2006-04-17 Ralf Angeli <angeli@iwi.uni-sb.de>
2777
2778 * textmodes/tex-mode.el (tex-font-lock-match-suscript): New function.
2779 (tex-font-lock-keywords-3): Use it.
2780
2781 2006-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2782
2783 * newcomment.el (comment-add): New function.
2784 (comment-region-default, comment-dwim): Use it.
2785
2786 2006-04-15 Michael Olson <mwolson@gnu.org>
2787
2788 * emacs-lisp/tq.el: Improve comments.
2789 (tq-queue-head-question): New accessor function.
2790 (tq-queue-head-regexp, tq-queue-head-closure, tq-queue-head-fn):
2791 Update for modified queue structure.
2792 (tq-queue-add): Accept `question' argument.
2793 (tq-queue-pop): If a question is pending, send it.
2794 (tq-enqueue): Accept new optional argument `delay-question'.
2795 If this is non-nil, and at least one other question is pending a
2796 response, queue the question rather than sending it immediately.
2797
2798 2006-04-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2799
2800 * calendar/appt.el (appt-add): Check whether an appointment is
2801 already present in appt-time-msg-list. Simplify code.
2802
2803 2006-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2804
2805 * progmodes/cc-langs.el (c-mode-menu):
2806 Don't presume c-subword-mode is bound.
2807
2808 2006-04-13 Bill Wohler <wohler@newt.com>
2809
2810 * cus-edit.el (customize-package-emacs-version-alist): Update docstring.
2811 (customize-package-emacs-version): Use cdr instead of cadr now
2812 that alists use dotted pairs.
2813
2814 * custom.el (defcustom): Fix docstring for :package-version.
2815
2816 2006-04-13 Michael Albinus <michael.albinus@gmx.de>
2817
2818 * net/tramp.el (tramp-display-shell-command-buffer): New defvar.
2819 (tramp-handle-shell-command): Display output buffer only when
2820 `tramp-display-shell-command-buffer' is true.
2821 (tramp-handle-process-file): Set `tramp-display-shell-command-buffer'.
2822
2823 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
2824
2825 * textmodes/org.el (org-set-autofill-regexps): Set only the local
2826 values of `adaptive-fill-regexp' and `adaptive-fill-function'.
2827
2828 2006-04-13 Romain Francoise <romain@orebokech.com>
2829
2830 * pcvs-parse.el (cvs-parse-table): Use `with-temp-buffer' to avoid
2831 leaving temporary .cvsignore buffers behind.
2832
2833 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
2834
2835 * textmodes/org.el (org-set-regexps-and-options)
2836 (org-get-current-options): Better names for the startup folding
2837 options.
2838
2839 2006-04-13 Thien-Thi Nguyen <ttn@gnu.org>
2840
2841 * vc.el (vc-annotate): Arrange for point to end up at the same
2842 line number as in the original, but only when using a new buffer.
2843
2844 2006-04-12 Stuart Herring <herring@lanl.gov> (tiny change)
2845
2846 * files.el (hack-one-local-variable-eval-safep):
2847 Recognize `edebug-form-spec' for `put', but only if it passes
2848 `edebug-basic-spec'. Generalize `put' handling.
2849
2850 * emacs-lisp/edebug.el (edebug-basic-spec): New function for
2851 vetting file-local form specs.
2852
2853 * allout.el (allout-layout): Autoload its `safe-local-variable'
2854 property.
2855
2856 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
2857
2858 * textmodes/org.el (org-ctrl-c-ctrl-c): Improve documentation string.
2859 (org-agenda-mouse-1-follows-link)
2860 (org-mouse-1-follows-link): New options.
2861 (org-format-agenda-item): Fix bug if TAGS is nil.
2862 (org-agenda-get-scheduled): Quote `priority' symbol in plist.
2863
2864 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
2865
2866 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers):
2867 GDB 6.1+ gives full filename for "info sources" so use
2868 file-name-nondirectory.
2869
2870 2006-04-12 Romain Francoise <romain@orebokech.com>
2871
2872 * subr.el (read-passwd): Bind `message-log-max' to nil.
2873
2874 2006-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
2875
2876 * progmodes/perl-mode.el (perl-indent-new-calculate):
2877 Recompute parse-start after jumping backward by a whole sexp.
2878
2879 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2880
2881 * vc.el (vc-ensure-vc-buffer): Only change current-buffer, not the
2882 window configuration.
2883 (vc-annotate-display-select): Select the buffer so that current-buffer
2884 (and selected-window) is the output buffer at the end of vc-annotate.
2885
2886 2006-04-11 J.D. Smith <jdsmith@as.arizona.edu>
2887
2888 * vc.el (vc-annotate-color-map): Add custom TTY color map for
2889 8-color terminals, to use all of the colors in a sensible order.
2890 256-color terminals work well with the standard map.
2891 (vc-annotate-lines): Only strip the first color character if it
2892 is "#", to allow for terminal-style named colors.
2893 (vc-annotate-warp-version): Pass buf to `goto-line' to ensure
2894 the correct buffer is scrolled.
2895
2896 2006-04-11 Richard Stallman <rms@gnu.org>
2897
2898 * emacs-lisp/bytecomp.el (byte-compile-file):
2899 Bind enable-local-variables to :safe, and make normal-mode obey it.
2900
2901 * files.el (enable-local-variables): Allow value :safe.
2902 (normal-mode): Doc fix.
2903 (hack-local-variables): Implement enable-local-variables = :safe.
2904 (hack-local-variables-confirm): Don't prevent quitting.
2905
2906 2006-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2907
2908 * loadhist.el (unload-feature): A bit of sanity check of
2909 load-history entries. Cancel timer-vars before unbinding them.
2910
2911 * hexl.el (hexl-isearch-search-function): Fix regexp-building code to
2912 quote special chars, and make the trick work on the hex part of the
2913 buffer as well.
2914 (hexl-mode, hexl-save-buffer, hexl-mode-exit)
2915 (hexl-maybe-dehexlify-buffer): Use restore-buffer-modified-p.
2916
2917 * startup.el (normal-splash-screen): Fix last change so we don't wait
2918 2 minutes if we don't show the splash screen.
2919
2920 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
2921
2922 * textmodes/org.el (org-export-plain-list-max-depth)
2923 (org-table-spaces-around-separators)
2924 (org-radio-targets, org-activate-camels)
2925 (org-table-spaces-around-invisible-separators): Options removed.
2926 (org-time-stamp-rounding-minutes, org-remember-templates)
2927 (org-ellipsis, org-activate-links, org-descriptive-links):
2928 New options.
2929 (org-remember-apply-template, org-current-time)
2930 (org-finish-edit-table-field)
2931 (org-link-unescape, org-link-escape)
2932 (org-string-width, org-table-clean-line, org-html-do-expand)
2933 (org-edit-agenda-file-list, org-store-new-agenda-file-list)
2934 (org-read-agenda-file-list): New functions.
2935 (org-table-edit-field)
2936 (org-table-create-or-convert-from-region): New commands
2937 (org-table-toggle-vline-visibility): Command removed.
2938 (org-table-convert-region): Made a command.
2939 (orgtbl-deleta-backward-char,orgtbl-delete-char): Remove commands.
2940 Replace with the normal org- functions.
2941 (org-self-insert-command): Don't trigger realign unnecessarily
2942 when blanking a field that is not full.
2943 (org-mode): `Set buffer-invisibility-spec' for links.
2944 (org-activate-links2): Hide link part and only show descriptive
2945 part of the link.
2946 (org-insert-link): Modify for new linking system.
2947 (org-store-link): Store description separately, for use by
2948 `org-insert-link'.
2949 (org-table-align): Use `org-string-width'.
2950 (defgroup): Completely new group structure for custom variables.
2951 (org-agenda-files): Option: Single file name allowed. Function:
2952 Optional argument unrestrited means ignore any restricitons.
2953 (org-install-agenda-files-menu): Find a buffer in Org-mode before
2954 trying to modify the menu. Use generalized access to
2955 `org-agenda-files.'
2956 (org-agenda-list, org-todo-list, org-cycle-agenda-files)
2957 (org-agenda-file-to-front, org-remove-file, org-diary)
2958 (org-tags-view, org-export-icalendar-all-agenda-files)
2959 (org-export-icalendar-combine-agenda-files): Use generalized
2960 access to `org-agenda-files'.
2961 (org-remember-handler): Correctly preserve heading if present.
2962 (org-table-insert-row, org-table-insert-hline): Deal with
2963 invisible characters.
2964
2965 2006-04-10 J.D. Smith <jdsmith@as.arizona.edu>
2966
2967 * vc.el (vc-annotate-display-mode): Made default 'fullscale.
2968 (vc-annotate-color-map): New 18 element constant
2969 value/saturation, rotating hue colormap, from red->blue.
2970 (vc-annotate-mode-menu): "Default" -> "By Color Map Range".
2971 (vc-annotate-display-select): Switch to annotate-mode elsewhere.
2972 (vc-annotate): To avoid killing the required local variables,
2973 set them before the end of `with-output-to-temp-buffer', and
2974 after first switching to annotate-mode.
2975 (vc-annotate-warp-version): Add buffer argument in goto-line to
2976 ensure annotation, not source, is scrolled.
2977
2978 2006-04-10 Bill Wohler <wohler@newt.com>
2979
2980 * custom.el (defcustom, custom-handle-keyword):
2981 Add :package-version keyword.
2982 (custom-add-package-version): New function. Sets value of new
2983 property 'custom-package-version from :package-version keyword.
2984 (defcustom): Create Common Keywords section in docstring.
2985 (defface, defgroup): Replace definitions of a select few keywords
2986 with a reference to the Common Keywords in defcustom.
2987 (defcustom, defface, defgroup): Replace reference to Customization
2988 chapter in manual with hyperlink.
2989
2990 * cus-edit.el (customize-package-emacs-version-alist):
2991 New variable.
2992 (customize-changed-options): Add check for custom-package-version.
2993 (customize-package-emacs-version): New function to look up Emacs
2994 version corresponding to the given package version.
2995
2996 * emacs-lisp/find-func.el (find-function-regexp): Allow dashes in
2997 defun name, in similar fashion to find-variable-regexp.
2998
2999 2006-04-10 Eli Zaretskii <eliz@gnu.org>
3000
3001 * international/mule-cmds.el (set-locale-environment): Fix last
3002 change for when the locale's preferences don't specify any encoding.
3003
3004 2006-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
3005
3006 * emacs-lisp/find-func.el (find-function-search-for-symbol): Fix regexp
3007 so the defined var/fun doesn't need to be quoted.
3008
3009 2006-04-10 Richard Stallman <rms@gnu.org>
3010
3011 * finder.el (finder-mode-map): Add n and p bindings.
3012
3013 2006-04-10 Nick Roberts <nickrob@snap.net.nz>
3014
3015 * progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
3016 (gdb-get-version): Make it work for pre "interpreter mi" (GDB 5.3?).
3017 (gdb-setup-windows): Put something in source window if we can't find
3018 the source file.
3019 (gdb-frame-handler): Make it work again with just assembly.
3020 (gdb-data-list-register-values-handler): Make it work when there is
3021 no stack.
3022
3023 2006-04-09 Richard Stallman <rms@gnu.org>
3024
3025 * mail/rmail.el (rmail-mime-charset-pattern): Ignore format and delsp
3026 specs while looking for charset.
3027
3028 * textmodes/picture.el (picture-mode-exit): Run picture-mode-exit-hook.
3029
3030 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
3031 Make them faces.
3032 (lm-font-lock-keywords): Update appropriately.
3033
3034 2006-04-10 Kim F. Storm <storm@cua.dk>
3035
3036 * simple.el (filter-buffer-substring): Add NOPROPS arg, so
3037 it can also replace buffer-substring-no-properties.
3038
3039 * emulation/cua-base.el (cua-delete-region, cua-paste)
3040 (cua-repeat-replace-region): Use filter-buffer-substring.
3041
3042 * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
3043 (cua-cut-region-to-global-mark): Likewise.
3044
3045 * emulation/cua-rect.el (cua--extract-rectangle)
3046 (cua-incr-rectangle, cua--rectangle-aux-replace): Likewise.
3047
3048 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3049
3050 * textmodes/bibtex.el (bibtex-entry-update): New optional arg
3051 entry-type. Add field delimiters to numerical fields if they are
3052 not present.
3053
3054 2006-04-09 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3055
3056 * textmodes/bibtex.el (bibtex-find-text-internal): Add new element
3057 string-const to return value.
3058 (bibtex-remove-delimiters): Use it.
3059
3060 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
3061
3062 * emacs-lisp/bytecomp.el (byte-compile-form): Don't call
3063 cl-byte-compile-compiler-macro unless it exists.
3064
3065 2006-04-08 Eli Zaretskii <eliz@gnu.org>
3066
3067 * files.el (hack-local-variables-confirm) <offer-save>:
3068 Clarify message text. Suggested by Ralf Angeli.
3069
3070 2006-04-08 Michael Cadilhac <michael.cadilhac@lrde.org>
3071
3072 * rect.el (kill-rectangle): Don't barf if `kill-read-only-ok' is set.
3073 (delete-extract-rectangle-line): Use `filter-buffer-substring'
3074 instead of `buffer-substring' and `delete-region'. (Most of the
3075 code actually copied from `kill-region'.)
3076
3077 2006-04-08 Ryan Yeske <rcyeske@gmail.com>
3078
3079 * rcirc.el (rcirc-default-server): Rename from rcirc-server.
3080 (rcirc-default-port): Rename from rcirc-port.
3081 (rcirc-default-nick): Rename from rcirc-nick.
3082 (rcirc-default-user-name): Rename from rcirc-user-name.
3083 (rcirc-default-user-full-name): Rename from rcirc-user-full-name.
3084 (rcirc-low-priority-flag): New variable.
3085 (rcirc-decode-coding-system): New defcustom.
3086 (rcirc-encode-coding-system): New defcustom.
3087 (rcirc-coding-system-alist): New defcustom.
3088 (rcirc-multiline-major-mode): New defcustom.
3089 (rcirc-nick): New internal variable.
3090 (rcirc-process): Remove variable.
3091 (rcirc-server-buffer): New variable.
3092 (rcirc): Update to use rcirc-default-* variables above.
3093 (rcirc-connect): Do not add window-configuration-hook-here.
3094 (rcirc-server): New internal variable.
3095 (rcirc-connect): Do not send keepalive pings if
3096 rcirc-keepalive-seconds is nil.
3097 (with-rcirc-server-buffer): New macro.
3098 (rcirc-send-string): Encode with rcirc-encode-coding-system.
3099 (rcirc-server-name): Rename from rcirc-server.
3100 (rcirc-buffer-process): New function.
3101 (rcirc-buffer-nick): New function.
3102 (rcirc-buffer-target): Remove function.
3103 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
3104 New commands.
3105 (rcirc-mode-map): Change binding of C-c C-l to
3106 rcirc-toggle-low-priority.
3107 (rcirc-mode): Initialize coding system based on
3108 rcirc-coding-system-alist. New change-major-mode-hook to part the
3109 channel on a mode change. Make kill-buffer-hook buffer-local.
3110 (rcirc-change-major-mode-hook): New function.
3111 (rcirc-clean-up-buffer): Rename from rcirc-kill-buffer-hook-1.
3112 (rcirc-last-post-time): New variable.
3113 (rcirc-process-message): Store the last time user posted a message
3114 to this target.
3115 (rcirc-multiline-minor-mode): New mode.
3116 (rcirc-multiline-minor-mode-map): New mode map.
3117 (rcirc-edit-multiline): Put multiline-edit buffer in
3118 rcirc-multiline-major-mode along with rcirc-multiline-minor-mode.
3119 (rcirc-print): Ignore any line starting with an ignored nick.
3120 (rcirc-print): Decode using rcirc-decode-coding-system.
3121 (rcirc-track-minor-mode): Update global-mode-string when disabling
3122 this mode.
3123 (minor-mode-alist): Add LowPri indicator.
3124 (rcirc-toggle-low-priority): New function.
3125 (rcirc-last-non-irc-buffer): Prefix arg now no means switch to
3126 next lowpriority buffer with activity.
3127 (rcirc-record-activity): Sort buffers in rcirc-activity by the
3128 last time the user posted a message in to the target.
3129 (rcirc-update-activity-string): New formatting for low priority
3130 buffers.
3131 (rcirc-split-activity): New function.
3132 (rcirc-handler-PART, rcirc-handler-KICK)
3133 (rcirc-handler-PART-or-KICK): Kick responses are printed properly.
3134 (rcirc-nick-away-alist): New variable.
3135 (rcirc-handler-301): New handler. Away messages are printed once
3136 per change.
3137
3138 2006-04-08 Eli Zaretskii <eliz@gnu.org>
3139
3140 * info.el (Info-follow-nearest-node): Doc fix.
3141
3142 * international/mule-cmds.el (set-locale-environment): Make sure
3143 the coding-system preferred by the locale's language has the same
3144 EOL conversion type as the original buffer-file-coding-system.
3145 (locale-language-names): Add a few MS Windows language codes.
3146
3147 2006-04-07 Richard Stallman <rms@gnu.org>
3148
3149 * simple.el (eval-expression): Doc fix.
3150
3151 * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp)
3152 (eval-defun): Doc fixes.
3153
3154 2006-04-07 Reiner Steib <Reiner.Steib@gmx.de>
3155
3156 * pgg-gpg.el: Revert to revision 1.8 to allow the use of gpg-agent.
3157
3158 2006-04-07 Nick Roberts <nickrob@snap.net.nz>
3159
3160 * progmodes/gdb-ui.el (gdb-init-2): Set current filename using
3161 GDB list command without argument for greater generality.
3162
3163 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
3164
3165 * subr.el (string-or-null-p): New function.
3166
3167 * textmodes/paragraphs.el (sentence-end): Use string-or-null-p.
3168
3169 * textmodes/ispell.el (ispell-local-dictionary): Use string-or-null-p.
3170
3171 * files.el: Update comment about safe-local-variable declarations.
3172
3173 2006-04-06 J.D. Smith <jdsmith@as.arizona.edu>
3174
3175 * progmodes/idlwave.el: Updated to IDLWAVE version 6.0.
3176 See idlwave.org.
3177
3178 * progmodes/idlw-shell.el: Updated to IDLWAVE version 6.0.
3179 See idlwave.org. Includes code to obsolete idlw-rinfo.el.
3180
3181 * progmodes/idlw-help.el: Updated to IDLWAVE version 6.0.
3182 See idlwave.org.
3183
3184 * progmodes/idlw-complete-structtag.el: Updated to IDLWAVE
3185 version 6.0 (minimal changes). See idlwave.org.
3186
3187 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version
3188 6.0 (minimal changes). See idlwave.org.
3189
3190 * progmodes/idlw-rinfo.el: File obsoleted and removed.
3191
3192 2006-04-06 Romain Francoise <romain@orebokech.com>
3193
3194 * pgg-gpg.el: Sync back with Gnus 5.10, reverting changes that add
3195 symmetric encryption features and a new asynchronous interface to
3196 GnuPG. This new version is version 1.4, plus whitespace changes.
3197
3198 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
3199
3200 * files.el: Move some `safe-local-variable' declarations to the
3201 respective files.
3202
3203 * textmodes/ispell.el (ispell-check-comments)
3204 (ispell-local-dictionary): Mark as safe.
3205
3206 * abbrev.el (abbrev-mode): Mark as safe.
3207
3208 * add-log.el (change-log-default-name): Mark as safe.
3209
3210 * textmodes/reftex-vars.el (reftex-vref-is-default)
3211 (reftex-fref-is-default, reftex-level-indent)
3212 (reftex-guess-label-type): Mark as safe.
3213
3214 * textmodes/fill.el (colon-double-space): Mark as safe.
3215
3216 * textmodes/paragraphs.el (paragraph-start, paragraph-separate)
3217 (sentence-end-double-space, sentence-end-without-period)
3218 (sentence-end-without-space, sentence-end, sentence-end-base)
3219 (page-delimiter, paragraph-ignore-fill-prefix): Mark as safe.
3220
3221 2006-04-06 Kim F. Storm <storm@cua.dk>
3222
3223 * ido.el (ido-mode): Remove ido-ignore-unc-host-regexps from
3224 the :set-after list.
3225 (ido-downcase-unc-hosts): New user option. Default on.
3226 (ido-ignore-unc-host-regexps): Don't reset ido-unc-hosts-cache
3227 when it is set, as regexps are now applied on the fly.
3228 (ido-unc-hosts): Keep all known hosts in ido-unc-hosts-cache.
3229 Make C-a DTRT--filter hosts through ido-ignore-unc-host-regexps
3230 on the fly, but only when ido-process-ignore-lists is set.
3231 Do case insensitive filtering if ido-downcase-unc-hosts is set.
3232 Only downcase names if ido-downcase-unc-hosts is set.
3233
3234 2006-04-06 Juanma Barranquero <lekktu@gmail.com>
3235
3236 * ido.el (ido-unc-hosts-cache): Fix typo in docstring.
3237
3238 * woman.el (WoMan-xref-man-page): Fix call to `substring'.
3239
3240 2006-04-05 Kim F. Storm <storm@cua.dk>
3241
3242 * ido.el (ido-mode): Set after ido-unc-hosts and
3243 ido-ignore-unc-host-regexps.
3244 (ido-save-history): Save ido-unc-hosts-cache.
3245 (ido-load-history): Load ido-unc-hosts-cache.
3246 (ido-reread-directory): Refresh unc hosts cache in // dir.
3247
3248 * startup.el (fancy-splash-screens): Set emulation-mode-map-alists
3249 to nil while displaying slash screen.
3250
3251 2006-04-05 Daiki Ueno <ueno@unixuser.org>
3252
3253 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
3254 Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
3255
3256 2006-04-05 Kenichi Handa <handa@m17n.org>
3257
3258 * international/characters.el: Setup cases of Latin, Greek, and
3259 Cyrillic characters in CJK charsets.
3260
3261 2006-03-29 Daiki Ueno <ueno@unixuser.org>
3262
3263 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
3264 default-enable-multibyte-characters. This reverts the change from
3265 revision 6.17 which is no longer necessary because the passphrase
3266 is sent separately now. GnuPG messages are unreadable under
3267 multibyte locales with default-enable-multibyte-characters set to nil.
3268
3269 2006-04-04 Andreas Schwab <schwab@suse.de>
3270
3271 * files.el: Mark `left-margin', `byte-compile-dynamic-docstrings'
3272 and `byte-compile-warnings' as `safe-local-variable'.
3273
3274 2006-04-04 Dan Nicolaescu <dann@ics.uci.edu>
3275
3276 * man.el (Man-mode-map): Restore the \r binding.
3277 (Man-abstract-xref-man-page): If Man-target-string is a function,
3278 call it.
3279 (Man-highlight-references): Use Man-default-man-entry to get the
3280 target. Deal with xrefs too.
3281 (Man-highlight-references0): Don't call the target function.
3282
3283 * woman.el (WoMan-xref-man-page): Strip the section number, woman
3284 cannot deal with it.
3285
3286 2006-04-04 Daiki Ueno <ueno@unixuser.org>
3287
3288 * pgg-gpg.el: Clean up process buffers every time gpg processes
3289 complete.
3290
3291 2006-04-04 Kenichi Handa <handa@m17n.org>
3292
3293 * sort.el (sort-build-lists): Don't bind inhibit-field-text-motion
3294 here.
3295 (sort-lines, sort-numeric-fields, sort-fields, sort-columns):
3296 Temporarily bind inhibit-field-text-motion to t.
3297
3298 2006-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
3299
3300 * startup.el (normal-splash-screen): Only set mode-line-format in the
3301 splash buffer, so as not to interfere when debugging the code.
3302 Ignore errors when switching buffer.
3303
3304 2006-04-03 Romain Francoise <romain@orebokech.com>
3305
3306 * dired.el (dired-dnd-protocol-alist): Fix typo.
3307
3308 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
3309
3310 * savehist.el (savehist): Add :version.
3311 (savehist-ignored-variables): New variable.
3312 (savehist-minibuffer-hook): Don't save variables listed in
3313 `savehist-ignored-variables'.
3314
3315 * dired.el (dired-dnd-protocol-alist): Mention that change does
3316 only apply to new buffers in doc string.
3317
3318 2006-04-03 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
3319
3320 * recentf.el (recentf-open-files-item): Include newline in button
3321 field, so opening a file will work, when the point is at the end
3322 of the file name. Allow, for example, to [i]search a file by
3323 extension and just push RET to open it.
3324
3325 2006-04-03 Daiki Ueno <ueno@unixuser.org>
3326
3327 * pgg-gpg.el (pgg-gpg-process-filter)
3328 (pgg-gpg-wait-for-completion): Check if buffer is alive.
3329
3330 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
3331 lines, temporary fix.
3332
3333 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
3334
3335 * ibuf-macs.el (define-ibuffer-column): Document the new parameter.
3336
3337 2006-04-02 Richard Stallman <rms@gnu.org>
3338
3339 * progmodes/compile.el (compilation-message-face): Make it defcustom.
3340
3341 2006-04-02 Dan Nicolaescu <dann@ics.uci.edu>
3342
3343 * ibuf-macs.el (define-ibuffer-column): Add a new key:
3344 header-mouse-map.
3345
3346 * ibuffer.el (ibuffer-name-header-map, ibuffer-size-header-map)
3347 (ibuffer-mode-header-map): New keymaps.
3348 (ibuffer-update-title-and-summary): Enable mouse face highlighting
3349 and keybindings for column headers.
3350 (name,size,mode) <define-ibuffer-column>: Add a header-mouse-map
3351 property.
3352
3353 2006-04-02 Drew Adams <drew.adams@oracle.com> (tiny change)
3354
3355 * speedbar.el (speedbar-after-create-hook): Doc fix.
3356
3357 2006-04-02 Michael Ernst <mernst@alum.mit.edu>
3358
3359 * shell.el (shell-directory-tracker)
3360 (shell-dynamic-complete-command): Doc fixes.
3361
3362 2006-04-01 Matt Hodges <MPHodges@member.fsf.org>
3363
3364 * pcomplete.el (pcomplete-show-completions): Recognize TAB on text
3365 terminals.
3366
3367 2006-04-01 Kim F. Storm <storm@cua.dk>
3368
3369 * ido.el (ido-unc-hosts-cache): New defvar.
3370 (ido-unc-hosts): If value of defcustom is a function, call it to
3371 get list of UNC hosts. Add function-item choices to specify
3372 ido-unc-hosts-net-view or user function.
3373 (ido-ignore-unc-host-regexps): New defcustom.
3374 (ido-unc-hosts-net-view, ido-unc-hosts): New functions.
3375 (ido-is-unc-root, ido-is-unc-host, ido-file-name-all-completions)
3376 (ido-exhibit): Call ido-unc-hosts to get list of UNC hosts.
3377
3378 2006-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
3379
3380 * pcvs-util.el (cvs-insert-strings): Fix bug with strings longer than
3381 wwidth.
3382
3383 2006-03-31 Juanma Barranquero <lekktu@gmail.com>
3384
3385 * ido.el (ido-cache-unc-host-shares-time, ido-report-no-match)
3386 (ido-max-work-file-list, ido-switch-buffer)
3387 (ido-read-file-name-as-directory-commands):
3388 Fix typos in docstrings.
3389
3390 2006-03-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3391
3392 * term/mac-win.el (mac-system-coding-system): Define and use after
3393 Mac-specific coding systems are ready.
3394
3395 2006-03-27 Romain Francoise <romain@orebokech.com>
3396
3397 * net/rcirc.el (rcirc-connect): Add autoload cookie.
3398
3399 * ldefs-boot.el: Update.
3400
3401 2006-03-27 Daiki Ueno <ueno@unixuser.org>
3402
3403 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
3404 passphrases when it is not needed.
3405 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
3406 passphrase stuff from gpg, should only be necessary when you use
3407 gpg with a smartcard.
3408
3409 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
3410
3411 * comint.el (comint-dynamic-list-completions): Allow user to
3412 select *Completions* buffer.
3413
3414 2006-03-27 Carsten Dominik <dominik@science.uva.nl>
3415
3416 * textmodes/org.el (org-get-level-face): Fix bug with level counting.
3417
3418 2006-03-26 Andreas Schwab <schwab@suse.de>
3419
3420 * progmodes/gud.el (gdb): Only complain about multiple debugging
3421 when the gdb process is still running.
3422
3423 2006-03-25 Eli Zaretskii <eliz@gnu.org>
3424
3425 * mail/rmail.el (tool-bar-map): Defvar it.
3426 (rmail-tool-bar-map): Tool-bar buttons for Rmail.
3427 (rmail-perm-variables): Make rmail-tool-bar-map a local variable.
3428
3429 2006-03-25 Sven Joachim <svenjoac@gmx.de> (tiny change)
3430
3431 * help.el (print-help-return-message): Suggest to use
3432 display-buffer instead of switch-to-buffer-other-window to restore
3433 the previous window without selecting it.
3434
3435 2006-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3436
3437 * frame.el (select-frame-by-name): Call x-focus-frame also when
3438 window-system is mac.
3439
3440 * term/mac-win.el: Adjust Courier font specifications in
3441 x-fixed-font-alist.
3442 (mac-select-convert-to-string): Use utf-16be-mac or utf-16le-mac
3443 when directly encoding to UTF-16 in native byte order, no BOM.
3444
3445 2006-03-25 Kim F. Storm <storm@cua.dk>
3446
3447 * emulation/cua-base.el (cua-rectangle-mark-key): New defcustom.
3448 (cua--init-keymaps): Use it instead of fixed C-return.
3449 (cua-mode): Set after it.
3450
3451 * emulation/cua-rect.el (cua--init-rectangles):
3452 Use cua-rectangle-mark-key instead of fixed C-return.
3453
3454 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
3455
3456 * progmodes/gdb-ui.el (gdba): Revert 2006-03-10 change for case of
3457 "run" in .gdbinit.
3458 (gdb-var-create-regexp): Remove "^done" prefix for gdb-mi.el.
3459
3460 2006-03-24 Romain Francoise <romain@orebokech.com>
3461
3462 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
3463 `display-buffer-other-frame'.
3464
3465 2006-03-24 Kim F. Storm <storm@cua.dk>
3466
3467 * apropos.el (apropos-synonyms): Add selection => region.
3468
3469 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
3470
3471 * progmodes/gdb-ui.el (gdb-var-create-regexp)
3472 (gdb-var-list-children-regexp, gdb-var-update-regexp)
3473 (gdb-var-list-children-regexp-1, gdb-var-update-regexp-1)
3474 (gdb-data-list-register-values-regexp)
3475 (gdb-stack-list-locals-regexp, gdb-stack-list-locals-handler):
3476 Future proof against new fields being added to MI output.
3477 (gdb-send): Don't treat backslashes for program input as
3478 continuations.
3479 (gdb-assembler-handler): Don't use window-start for this handler.
3480 (gdb-frame-handler): Don't change to hollow arrow if overlay
3481 arrow doesn't move to new frame.
3482
3483 2006-03-24 Nick Roberts <nickrob@snap.net.nz>
3484
3485 * progmodes/gdb-ui.el (gdb-continuation): Declare earlier to
3486 prevent compiler warnings.
3487 (gdb-stopped): Check for gud-last-last-frame (case: signal).
3488 (breakpoint-disabled): Make lighter for contrast with overlay arrow.
3489 (gdb-assembler-custom): Use hollow-right-triangle for assembler
3490 buffer too.
3491
3492 2006-03-23 Reiner Steib <reinersteib+gmane@imap.cc>
3493
3494 * pgg-gpg.el (pgg-gpg-update-agent): Check for
3495 make-network-process, so we can use the same code in Gnus v5-10
3496 too and have this file fully synchronized with that release.
3497
3498 2006-03-23 Romain Francoise <romain@orebokech.com>
3499
3500 * ibuf-ext.el (ibuffer-read-filter-group-name):
3501 Use `ibuffer-generate-filter-groups' to make completion list match
3502 the filter groups that are really displayed in the Ibuffer buffer.
3503 (ibuffer-generate-filter-groups): Add new args noempty, nodefault.
3504
3505 2006-03-23 Kenichi Handa <handa@m17n.org>
3506
3507 * international/mule-cmds.el (sort-coding-systems): Describe that
3508 the argument is modified in docstring.
3509
3510 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
3511
3512 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
3513 (pgg-gpg-update-agent): New function.
3514 (pgg-gpg-use-agent-p): New function.
3515 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
3516 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
3517 (pgg-gpg-sign-region): Use it.
3518
3519 2006-03-21 Chong Yidong <cyd@stupidchicken.com>
3520
3521 * cus-edit.el (custom-face-set): Call custom-push-theme before
3522 face-spec set so that `changed' theme is correctly saved.
3523 (custom-face-reset-standard): Reset to recalculated face rather
3524 than defface spec.
3525
3526 * custom.el (custom-push-theme): Only save `changed' theme if the
3527 current face does not match the defface specs.
3528
3529 2006-03-21 Simon Josefsson <jas@extundo.com>
3530
3531 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
3532 <wilde@sha-bang.de>.
3533 (pgg-gpg-use-agent): New variable.
3534 (pgg-gpg-process-region): Use it.
3535 (pgg-gpg-encrypt-region): Likewise.
3536 (pgg-gpg-encrypt-symmetric-region): Likewise.
3537 (pgg-gpg-decrypt-region): Likewise.
3538 (pgg-gpg-sign-region): Likewise.
3539 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
3540
3541 2006-03-21 Carsten Dominik <dominik@science.uva.nl>
3542
3543 * textmodes/org.el (org-open-at-point): Fix bug in wiki-style
3544 bracket links.
3545
3546 2006-03-21 Kim F. Storm <storm@cua.dk>
3547
3548 * progmodes/gdb-ui.el (gdb-reset): Set buffer local value of
3549 fringe-indicator-alist instead of modifying global value.
3550 (gdb-frame-handler): Likewise.
3551
3552 2006-03-21 Nick Roberts <nickrob@snap.net.nz>
3553
3554 * diff-mode.el (diff-function): Make it inherit from diff-header
3555 instead of diff-context.
3556
3557 * progmodes/gdb-ui.el (hollow-right-triangle): Define as fringe
3558 bitmap.
3559 (gdb-info-stack-custom): Rename from gdb-info-frames-custom and
3560 change names in macro above for consistency.
3561 (gdb-frame-handler): Use hollow-right-triangle for all selected
3562 frames which except the innermost (where execution has stopped).
3563 (gdb-reset): Reset buffer-local values of overlay-arrow.
3564
3565 2006-03-20 Richard Stallman <rms@gnu.org>
3566
3567 * simple.el (set-mark-command): Doc fix.
3568
3569 * files.el (display-buffer-other-frame): New command.
3570 (ctl-x-4-map): Bind C-x 5 C-o to it.
3571
3572 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
3573
3574 * jit-lock.el (jit-lock-function): Check for the actual defer-timer
3575 rather than just defer-time, in case defer-time has been changed but
3576 the timer isn't running yet.
3577 (jit-lock-deferred-fontify): Correspondingly let-bind defer-timer.
3578
3579 2006-03-19 Luc Teirlinck <teirllm@auburn.edu>
3580
3581 * help-mode.el (help-follow-symbol): New function.
3582 Essentially identical to the old `help-follow', but do not let
3583 `push-button' do the work when on an xref.
3584 (help-mode-map): Bind `help-follow-symbol' to "C-c C-c".
3585
3586 2006-03-19 Richard Stallman <rms@gnu.org>
3587
3588 * help-mode.el (help-xref-symbol-regexp): Make no xref for symbol
3589 preceded by the word `program'.
3590 (help-follow-mouse, help-follow): Throw error if not on xref.
3591 Delete no longer used args.
3592
3593 2006-03-20 Nick Roberts <nickrob@snap.net.nz>
3594
3595 * progmodes/gdb-ui.el (gdb-stopped): Even when there is no source
3596 annotation ensure gud-overlay-arrow-position is redisplayed.
3597
3598 2006-03-19 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3599
3600 * textmodes/bibtex.el (bibtex-include-OPTkey)
3601 (bibtex-entry-field-alist, bibtex-generate-url-list): Mark as risky.
3602 (bibtex-autokey-name-case-convert)
3603 (bibtex-autokey-titleword-case-convert): Make these the aliases
3604 for the following two variables.
3605 (bibtex-autokey-name-case-convert-function)
3606 (bibtex-autokey-titleword-case-convert-function): Make these the
3607 real names.
3608 (bibtex-font-lock-keywords): Make bibtex-font-lock-url and
3609 bibtex-font-lock-crossref sublists.
3610 (bibtex-mode): Revert 2005-12-30 change (which made
3611 completion-ignore-case buffer-local).
3612 (bibtex-url): Simplify.
3613
3614 2006-03-19 Kim F. Storm <storm@cua.dk>
3615
3616 * emulation/cua-rect.el (cua--highlight-rectangle): Set overlay
3617 cursor property value to 2 (to align with C level change).
3618
3619 2006-03-19 Bill Wohler <wohler@newt.com>
3620
3621 * image.el (image-load-path-for-library): Shorten first line in
3622 docstring.
3623
3624 2006-03-18 Richard Stallman <rms@gnu.org>
3625
3626 * mail/rmail.el (rmail-reply-regexp): Undo previous change.
3627
3628 2006-03-18 Ben North <ben@redfrontdoor.org> (tiny change)
3629
3630 * isearch.el (isearch-other-meta-char): Handle user bindings for
3631 shifted control characters.
3632
3633 2006-03-18 Agustin Martin <agustin.martin@hispalinux.es>
3634
3635 * textmodes/ispell.el (ispell-skip-region-alist): Add "_+" to the
3636 part that matches email addresses, file names, etc.
3637
3638 2006-03-18 Eli Zaretskii <eliz@gnu.org>
3639
3640 * term/w32-win.el (mouse-set-font):
3641 Mention w32-list-proportional-fonts in the doc string.
3642
3643 2006-03-18 Kim F. Storm <storm@cua.dk>
3644
3645 * ido.el (ido-cache-ftp-work-directory-time): Doc fix.
3646 (ido-unc-hosts): New user option to explicitly define list of know
3647 UNC-style hosts for completion.
3648 (ido-cache-unc-host-shares-time): New user option.
3649 (ido-is-unc-root, ido-is-unc-host, ido-cache-unc-valid):
3650 New helper functions for UNC file-name support.
3651 (ido-may-cache-directory): Check for UNC host. Simplify.
3652 (ido-wash-history): Clean out old UNC hosts.
3653 (ido-nonreadable-directory-p): UNC hosts are always readable.
3654 (ido-directory-too-big-p): UNC hosts are never too big.
3655 (ido-set-current-directory): Handle UNC root path.
3656 (ido-file-name-all-completions): Complete UNC host names from
3657 ido-unc-hosts list. Cache UNC host shares.
3658 (ido-make-file-list-1): Don't filter UNC root.
3659 (ido-exhibit): Check for // in root directory, and switch to UNC
3660 mode by setting ido-current-directory to //.
3661
3662 2006-03-17 Luc Teirlinck <teirllm@auburn.edu>
3663
3664 * cus-edit.el (customize-changed-options): Mention explicit
3665 version number as default in prompt.
3666
3667 2006-03-17 Bill Wohler <wohler@newt.com>
3668
3669 * image.el (image-load-path-for-library): Minor docstring fix.
3670
3671 2006-03-17 Carsten Dominik <dominik@science.uva.nl>
3672
3673 * textmodes/org.el (org-read-date): Include subgroup 5 into
3674 replacement text.
3675 (org-popup-calendar-for-date-prompt): Fix customization type.
3676
3677 2006-03-17 Nick Roberts <nickrob@snap.net.nz>
3678
3679 * progmodes/gdb-ui.el (gud-watch): Provide completion.
3680 (gdb-continuation): New variable.
3681 (gdb-send): Deal with continuation lines.
3682
3683 * progmodes/gud.el (gud-gdb-complete-command)
3684 (gud-gdb-run-command-fetch-lines): Adapt for use with watch
3685 expressions.
3686 (gud-tooltip-mode): Use buffer-local value.
3687
3688 2006-03-16 Kim F. Storm <storm@cua.dk>
3689
3690 * ido.el (ido-edit-input): Use selected match, if any.
3691
3692 2006-03-16 Bill Wohler <wohler@newt.com>
3693
3694 * image.el (image-load-path-for-library): Prefer user's images in
3695 image-load-path.
3696
3697 2006-03-16 Martin Rudalics <rudalics@gmx.at>
3698
3699 * mouse.el (mouse-drag-vertical-line): Use window-inside-edges
3700 when checking for attempt to drag leftmost or rightmost scrollbar.
3701
3702 2006-03-16 Nick Roberts <nickrob@snap.net.nz>
3703
3704 * progmodes/gdb-ui.el (gdb-inferior-status): New variable.
3705 (gdb-force-mode-line-update): New function.
3706 (gdb-resync, gdb-starting, gdb-signal, gdb-exited, gdb-stopped)
3707 (gdb-exited): Use them.
3708 (gdb-signal): New function.
3709 (gdb-annotation-rules): Provide a rule for it.
3710
3711 2006-03-16 Kenichi Handa <handa@m17n.org>
3712
3713 * international/mule.el (auto-coding-regexp-alist): Add entries
3714 for Unicode BOM.
3715
3716 * sort.el (sort-build-lists): Temporarily bind
3717 inhibit-field-text-motion to t.
3718
3719 2006-03-15 Luc Teirlinck <teirllm@auburn.edu>
3720
3721 * locate.el (locate-command, locate-make-command-line)
3722 (locate-fcodes-file, locate-update-command)
3723 (locate-prompt-for-command, locate, locate-with-filter)
3724 (locate-get-file-positions): Doc fixes.
3725 (locate-buffer-name, locate-header-face): Remove leading `*' in
3726 defcustom.
3727 (locate-filter-output): Use `keep-lines' instead of its alias
3728 `delete-non-matching-lines'.
3729 (locate-get-filename, locate-get-dirname): Add introductory comment.
3730 (locate-find-directory-other-window): Give appropriate error
3731 message if used outside main listing.
3732
3733 2006-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
3734
3735 * font-lock.el (font-lock-lines-before): Delete variable, subsumed by
3736 the new extend-region feature.
3737 (font-lock-after-change-function): Update correspondingly.
3738 * jit-lock.el (jit-lock-after-change): Update correspondingly.
3739 * progmodes/grep.el (font-lock-lines-before): Don't disable.
3740
3741 2006-03-15 Bill Wohler <wohler@newt.com>
3742
3743 * image.el (image-load-path-for-library): Fix example by not
3744 recommending that one binds image-load-path. Just defvar it to
3745 placate compiler and only use it if previously defined.
3746
3747 2006-03-15 Carsten Dominik <dominik@science.uva.nl>
3748
3749 * textmodes/org.el (org-insert-centered): Use `string-width' to
3750 make underlining work for wide characters.
3751 (org-goto-map, org-agenda-mode-map, org-mode-map): Explicitly bind
3752 TAB to `org-cycle', to make sure that no binding in
3753 `outline-mode-map' can supercede it.
3754
3755 2006-03-14 Ken Manheimer <ken.manheimer@gmail.com>
3756
3757 * allout.el: Increment version to 2.2.1 in file commentary.
3758
3759 (allout-version): Increment to 2.2.1.
3760
3761 (allout-default-layout): New customization variable, used when the
3762 file lacks a specific allout-layout. Uses allout-layout-type for
3763 recursively nested definition.
3764
3765 (allout-layout-type): Widget defining allout layouts, necessary for
3766 self-recursive definition.
3767
3768 (allout-mode): Incorporate allout-default-layout as fallback for
3769 allout-layout.
3770
3771 (allout-layout): Mark as 'safe-local-variable', and refer mention
3772 fallback to `allout-default-layout' in absence of a specified value.
3773 (allout-passphrase-verifier-string)
3774 (allout-passphrase-hint-string): Mark as 'safe-local-variable'.
3775
3776 (allout-file-passphrase-verifier-string): Obsolete variable, removed.
3777
3778 (allout-get-encryption-passphrase-verifier): Use correct name of
3779 passphrase verifier in docstring.
3780
3781 2006-03-15 Nick Roberts <nickrob@snap.net.nz>
3782
3783 * progmodes/gdb-ui.el (gdb-var-list): Change order of first two
3784 elements.
3785 (gdb-find-watch-expression): Make it work for arrays too.
3786 Follow change to gdb-var-list.
3787 (gud-watch): Allow the user to enter variable name with a prexix
3788 arg. Create keybindings.
3789 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
3790 (gdb-var-list-children-handler, gdb-var-update-handler)
3791 (gdb-var-delete, gdb-edit-value, gdb-speedbar-expand-node)
3792 (gdb-var-list-children-handler-1, gdb-var-update-handler-1):
3793 Follow change to gdb-var-list.
3794 (gdb-starting): Don't show the overlay arrows when program is running.
3795
3796 * progmodes/gud.el (gud-speedbar-buttons): Follow change to
3797 gdb-var-list.
3798
3799 2006-03-14 Bill Wohler <wohler@newt.com>
3800
3801 * image.el (image-load-path-for-library): Pass value of path
3802 rather than symbol. Always return list of directories.
3803 Guarantee that image directory comes first.
3804
3805 2006-03-14 Alan Mackenzie <acm@muc.de>
3806
3807 * font-core.el (font-lock-extend-region\(-function\)?.):
3808 New function/variable.
3809
3810 * font-lock.el (font-lock-after-change-function):
3811 Call font-lock-extend-region. Obey font-lock-lines-before.
3812 (font-lock-default-fontify-region): Remove reference to
3813 font-lock-lines-before.
3814
3815 * jit-lock.el (jit-lock-after-change):
3816 Call font-lock-extend-region. Obey font-lock-lines-before.
3817
3818 2006-03-14 David Ponce <david@dponce.com>
3819
3820 * tree-widget.el (tree-widget-themes-load-path)
3821 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
3822
3823 2006-03-13 Ryan Yeske <rcyeske@gmail.com>
3824
3825 * net/rcirc.el (rcirc) <defgroup>: Add link to manual.
3826 (rcirc-print): Mark the start of text at the end of the prompt.
3827 (rcirc-track-minor-mode): Add autoload cookie.
3828 (rcirc-update-activity-string): Add space to front of mode-line
3829 indicator.
3830
3831 2006-03-13 Miles Bader <miles@gnu.org>
3832
3833 * net/rcirc.el (rcirc-nick-abbrevs): Remove variable.
3834 (rcirc-abbrev-nick): Remove function.
3835 (rcirc-format-response-string): Don't call `rcirc-abbrev-nick'.
3836
3837 2006-03-13 David Ponce <david@dponce.com>
3838
3839 * tree-widget.el: Handle themes across all occurrences of the main
3840 themes sub-directory found in tree-widget-themes-load-path.
3841 (tree-widget-themes-directory, tree-widget-theme): Doc fix.
3842 (tree-widget--locate-sub-directory): Return all occurrences.
3843 (tree-widget-themes-path): New function.
3844 Replace tree-widget-themes-directory, and return a list of directories.
3845 (tree-widget-set-parent-theme)
3846 (tree-widget-lookup-image): Use it.
3847
3848 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
3849
3850 * textmodes/org.el (org-link-search): Avoid self-matching of
3851 links, allow target text to be distributed over several lines.
3852 (org-search-not-link): New function.
3853 (org-set-regexps-and-options, org-get-current-options):
3854 New startup options.
3855 (org-export-as-html): Take odd-level setting from local variable.
3856 (org-fontify-emphasized-text): New option.
3857 (org-set-font-lock-defaults): Include emphasized text.
3858 (org-follow-mhe-link): Allow folder-only links, fix folder name.
3859 (org-font-lock): Customize group renamed from `org-faces'.
3860
3861 2006-03-13 John Paul Wallington <jpw@pobox.com>
3862
3863 * ibuf-ext.el (ibuffer-never-show-predicates): Add `require'
3864 keyword; require `ibuf-ext' feature. Thanks to Zhang Wei.
3865
3866 2006-03-12 Luc Teirlinck <teirllm@auburn.edu>
3867
3868 * cus-start.el (all): Delete :version keyword for members of the
3869 fringe group, since the entire group is new in 22.1.
3870
3871 2006-03-13 Nick Roberts <nickrob@snap.net.nz>
3872
3873 * progmodes/gdb-ui.el (gdb-stack-list-locals-handler): Add local
3874 map if value is hexadecimal (an address).
3875 (gud-watch): Only search roots for existing watch expressions.
3876 (gdb-speedbar-refresh): Bind speedbar-shown-directories to nil to
3877 prevent caching problems with speedbar-update-directory-contents.
3878
3879 2006-03-12 Juri Linkov <juri@jurta.org>
3880
3881 * battery.el (battery-linux-proc-acpi): Check `capacity' for non-nil
3882 before comparing with `low' and `warn'.
3883
3884 * info.el (Info-dir-remove-duplicates): Move point to the
3885 beginning of the current line after deleting the entries from
3886 redundant heading. Use marker for `limit' and compare it with
3887 point before calling `re-search-forward'.
3888
3889 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
3890
3891 * simple.el (yank): Fix typo in docstring.
3892
3893 2006-03-11 Ryan Yeske <rcyeske@gmail.com>
3894
3895 * mail/rmailsum.el (rmail-summary-next-msg): Skip deleted
3896 messages, where "D" is the 6th character.
3897
3898 2006-03-11 Eli Zaretskii <eliz@gnu.org>
3899
3900 * simple.el (yank): Fix last change.
3901
3902 2006-03-11 David Ponce <david@dponce.com>
3903
3904 * ispell.el (ispell-find-aspell-dictionaries): Add aliases before
3905 merging elements from the standard ispell-dictionary-alist.
3906 (ispell-aspell-add-aliases): Add aliases to the passed dictionary
3907 alist, and return the new alist.
3908
3909 2006-03-11 Richard Stallman <rms@gnu.org>
3910
3911 * mail/rmail.el (rmail-ignored-headers): Discard DomainKey-Signature.
3912
3913 * eshell/eshell.el (eshell-prefer-to-shell): Variable deleted;
3914 the way it is implemented is too unclean.
3915
3916 * simple.el (kill-region, yank): Doc fix.
3917
3918 * battery.el (battery-echo-area-format): Doc fix.
3919 (battery-mode-line-format): Likewise.
3920 (battery-linux-proc-apm, battery-linux-proc-acpi): Likewise.
3921 (battery-linux-proc-acpi): Ignore batteries that say "charged".
3922
3923 2006-03-11 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
3924
3925 * progmodes/octave-mod.el (octave-indent-for-comment):
3926 Behave according to do string.
3927
3928 2006-03-11 Agustin Martin <agustin.martin@hispalinux.es>
3929
3930 * textmodes/ispell.el (ispell-menu-map-needed) [ispell-message]:
3931 Be visible only if major mode is Mail Mode.
3932
3933 * textmodes/flyspell.el (flyspell-external-point-words)
3934 (flyspell-process-localwords): Fix last changes.
3935
3936 2006-03-11 Eli Zaretskii <eliz@gnu.org>
3937
3938 * calendar/holidays.el (list-holidays): Doc fix.
3939
3940 * international/mule.el (auto-coding-alist): Add .odt
3941 (OpenOffice's open document) files.
3942
3943 * files.el (auto-mode-alist): Add .odt (OpenOffice's open
3944 document) files. Mention in the doc string the need to sync with
3945 auto-coding-alist.
3946
3947 2006-03-10 Chong Yidong <cyd@stupidchicken.com>
3948
3949 * files.el (hack-local-variables-confirm): Don't prompt for ! if
3950 enable-local-variables is set to always query, or there is no
3951 savable variable.
3952
3953 2006-03-10 Bill Wohler <wohler@newt.com>
3954
3955 * image.el (image-load-path-for-library): Merge at least three
3956 functions from Gnus and MH-E into this one function that can now
3957 be shared.
3958
3959 2006-03-11 Nick Roberts <nickrob@snap.net.nz>
3960
3961 * progmodes/gdb-ui.el (gdb-remove-text-properties): Rename from
3962 gdb-remove-mouse-face and remove help-echo too.
3963 (gdb-enqueue-input): Correct conditional clause.
3964
3965 2006-03-10 Glenn Morris <rgm@gnu.org>
3966
3967 * calendar/calendar.el (calendar-holidays): Doc fix.
3968 * calendar/holidays.el (list-holidays): Doc fix.
3969
3970 2006-03-10 Nick Roberts <nickrob@snap.net.nz>
3971
3972 * progmodes/gdb-ui.el (gdba): Don't call gdb-init-1 explicitly as
3973 it gets called in gdb-prompt anyway.
3974 (gdb-use-separate-io-buffer): Only restore window arrangement for
3975 gdb-many-windows.
3976 (gdb-enqueue-input): Make it harder to send GDB input when program
3977 is running.
3978 (gdb-buffer-list): New variable.
3979 (gdb-remove-mouse-face): New function.
3980 (gdb-starting): Use it when GDB input won't get sent.
3981
3982 2006-03-08 Juanma Barranquero <lekktu@gmail.com>
3983
3984 * help.el (view-lossage): Remove trailing whitespace before
3985 inserting "\n".
3986
3987 2006-03-07 Chong Yidong <cyd@stupidchicken.com>
3988
3989 * files.el (hack-local-variables-confirm):
3990 Set coding-system-for-read to nil before writing to .emacs.
3991
3992 * arc-mode.el (archive-extract): Check if an existing buffer name
3993 comes from a different archive.
3994
3995 * help.el (describe-key-briefly): If KEY is a down event, read and
3996 discard the up event.
3997
3998 2006-03-07 Nick Roberts <nickrob@snap.net.nz>
3999
4000 * progmodes/gud.el (gud-speedbar-buttons): Allow pointers to
4001 be edited and use font-lock-warning-face for any changes.
4002
4003 * progmodes/gdb-ui.el (gdb-edit-value-handler): New function.
4004 (gdb-edit-value): Use it to report any errors.
4005
4006 2006-03-07 Juanma Barranquero <lekktu@gmail.com>
4007
4008 * help.el (describe-key): Remove leftover test code.
4009
4010 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
4011
4012 * textmodes/org.el: Move defvars out of eval-when-compile.
4013 Use buffer-file-name variable.
4014 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
4015 arg `file'.
4016 (org-level-faces): Remove startup dependency.
4017 (org-cycle, org-map-tree, org-scan-tags)
4018 (org-remember-handler): Don't call `outline-level' directly.
4019 (org-mhe-search-all-folders): New option.
4020 (org-mhe-get-message-folder-from-index)
4021 (org-mhe-get-message-folder): Fix indexing search.
4022 (org-format-agenda-item): Handle nil TAGS argument.
4023 (org-cleaned-string-for-export, org-activate-target-links)
4024 (org-make-target-link-regexp): Deal with empty radio target list.
4025 (org-tag): New face.
4026 (org-get-level-face): New function.
4027 (org-set-font-lock-defaults): Simplify setup for headlines.
4028 (org-complete): Pass common substring to `display-completion-list'.
4029
4030 2006-03-06 David Ponce <david@dponce.com>
4031
4032 * tree-widget.el: Update Commentary header.
4033 (tree-widget-theme-name): Ignore parent themes.
4034 (tree-widget-set-parent-theme): New function.
4035 (tree-widget-set-theme): Use it.
4036 (tree-widget-set-image-properties): Move definition. Does nothing
4037 if image properties have already been set.
4038 (tree-widget-image-properties): Move definition. Receive an image
4039 name. Set the :pointer property.
4040 (tree-widget-lookup-image): Doc fix. Search in parent themes.
4041 Don't set the :pointer image property.
4042 (tree-widget-convert-widget): New function. Handle :dynargs
4043 compatibility here.
4044 (tree-widget): Use it to :convert-widget. Add the :expander-p
4045 predicate to control when the :expander function is entered.
4046 Thanks to Ken Manheimer <ken.manheimer@gmail.com> for the idea.
4047 (tree-widget-value-create): Handle :expander-p. widget-apply
4048 :expander.
4049 (tree-widget-expander-p): New function. Default value of the
4050 :expander-p property.
4051
4052 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
4053
4054 * help.el (describe-key): Properly handle the return value of
4055 read-key-sequence when grabbing an up-event. Cleanup mouse-1
4056 remaps. Handle string and vector `follow-link' values.
4057
4058 2006-03-06 Stefan Monnier <monnier@iro.umontreal.ca>
4059
4060 * complete.el (PC-expand-many-files): Try be more careful when parsing
4061 the shell's output.
4062
4063 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
4064
4065 * outline.el (hide-sublevels): Provide better interactive default.
4066
4067 2006-03-06 Kenichi Handa <handa@m17n.org>
4068
4069 * international/fontset.el (create-fontset-from-fontset-spec):
4070 Fix regexp for paring FONTSET-SPEC (allow spaces after `:').
4071
4072 2006-03-05 Luc Teirlinck <teirllm@auburn.edu>
4073
4074 * progmodes/gud.el (gud-jdb-marker-filter): Quote `[' with two
4075 backslashes instead of one in regexp.
4076 (gud-tooltip-dereference): Add missing optional argument.
4077
4078 2006-03-04 John Paul Wallington <jpw@pobox.com>
4079
4080 * wdired.el (toplevel): Require `cl' at compile-time.
4081
4082 2006-03-04 Andreas Schwab <schwab@suse.de>
4083
4084 * server.el (server-process-filter): Handle errors during
4085 evaluation of the argument.
4086
4087 2006-03-03 John Paul Wallington <jpw@pobox.com>
4088
4089 * t-mouse.el (t-mouse-drag-start, t-mouse-swap-alt-keys): Doc fix;
4090 escape parentheses at beginning of line.
4091 (t-mouse-tty, t-mouse-make-event): Doc fix; use imperative.
4092 (t-mouse-mode): Remove period from end of error message.
4093
4094 2006-03-03 Agustin Martin <agustin.martin@hispalinux.es>
4095
4096 * textmodes/flyspell.el (flyspell-process-localwords):
4097 Be case-sensitive.
4098
4099 2006-03-03 Martin Rudalics <rudalics@gmx.at>
4100
4101 * cus-edit.el (custom-quote): Remove function, since it has been
4102 moved to custom.el.
4103
4104 * font-lock.el (lisp-font-lock-keywords-2)
4105 * emacs-lisp/rx.el (rx-check-any, rx-check-not)
4106 * generic-x.el (reg-generic-mode): Quote "]"s in regexps when
4107 they have no special meaning.
4108
4109 * midnight.el (clean-buffer-list): Handle case where base-buffer of
4110 indirect buffer gets killed before indirect buffer. Use dolist.
4111
4112 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
4113
4114 * emacs-lisp/edebug.el (edebug-display): Use `edebug-sit-for-seconds'
4115 value instead of a literal constant (1) on more pauses.
4116
4117 2006-03-03 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
4118
4119 * textmodes/flyspell.el (flyspell-external-point-words):
4120 Be case-sensitive.
4121
4122 2006-03-03 Ryan Yeske <rcyeske@gmail.com>
4123
4124 * net/rcirc.el (rcirc-url-regexp): Match entire url when it starts
4125 with "www".
4126
4127 2006-03-03 Ken Manheimer <ken.manheimer@gmail.com>
4128
4129 * allout.el: Restablish intermediate missing comment header to
4130 preserve outline structure.
4131 (allout-beginning-of-current-entry): Skip invisible text.
4132 (allout-open-topic): Fix opening a topic at end-of-buffer.
4133 (allout-minor-mode): Move nearer to allout-mode function.
4134
4135 2006-03-02 Carsten Dominik <dominik@science.uva.nl>
4136
4137 * textmodes/org.el (org-paste-subtree): Remove (debug) form.
4138
4139 2006-03-02 Nick Roberts <nickrob@snap.net.nz>
4140
4141 * dframe.el (dframe-frame-mode): Don't burp when menu-bar-lines
4142 is nil.
4143
4144 * progmodes/gud.el (gud-speedbar-menu-items):
4145 Use buffer-local-value and add missing :visible keyword.
4146
4147 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Quieten speedbar-refresh.
4148
4149 2006-03-01 Carsten Dominik <dominik@science.uva.nl>
4150
4151 * textmodes/reftex-index.el (reftex-index-map): `follow-mouse'
4152 must be `follow-link'.
4153
4154 * textmodes/reftex-toc.el (reftex-toc-map): Likewise.
4155
4156 * textmodes/org.el (org-export-as-html): Fix bugs in HTML
4157 formatting: No nested anchors.
4158 (org-all-targets): Fix bug with XEmacs compatibility.
4159 (org-read-date): Add (require 'parse-time).
4160 (org-set-tags): Fix bug with extra inserted space.
4161 (org-export-html-style): Define a style class for targets.
4162 (org-agenda-keymap, org-mouse-map): Add a binding for `follow-link'.
4163 (org-hide-leading-stars): New option.
4164 (org-hide): New face.
4165 (org-set-font-lock-defaults): Allow to hide leading stars.
4166 (org-get-legal-level, org-tr-level): New functions.
4167 (org-odd-levels-only): New option.
4168 (org-level-faces, org-paste-subtree, org-convert-to-odd-levels)
4169 (org-demote, org-promote): Deal with double-star levels.
4170 (org-convert-to-odd-levels): New command.
4171
4172 2006-03-01 Nick Roberts <nickrob@snap.net.nz>
4173
4174 * speedbar.el (speedbar-update-localized-contents): Try to
4175 preserve window-start.
4176 (speedbar-update-directory-contents): Try to preserve window-start
4177 and window-point.
4178 (speedbar-update-special-contents): Don't move back to start of window.
4179
4180 * progmodes/gdb-ui.el (gdb-speedbar-refresh): Rename from
4181 gdb-speedbar-timer-fn. Use speedbar-refresh instead of
4182 speedbar-timer-fn.
4183 (gdb-var-update-handler, gdb-var-update-handler-1): Use it.
4184 (gdb-speedbar-expand-node): Use speedbar-delete-subblock
4185 instead of gdb-speedbar-timer-fn.
4186
4187 2006-02-28 Jay Belanger <belanger@truman.edu>
4188
4189 * calc/calccomp.el (math-compose-tex-matrix): Add a latex option.
4190 (math-compose-expr): Use latex option when calling
4191 `math-compose-tex-matrix' for latex mode.
4192
4193 2006-02-28 Nick Roberts <nickrob@snap.net.nz>
4194
4195 * speedbar.el: Re-instate comments about developing for speedbar
4196 [this is what info and gdb-ui use even if better methods exist now].
4197
4198 * t-mouse.el: New file.
4199 (t-mouse-tty): Use with-temp-buffer. Add more terminal types.
4200 (t-mouse-lispy-buffer-posn-from-coords): Remove.
4201 (t-mouse-make-event-element): Use posn-at-x-y instead.
4202 (t-mouse-make-event): Deal with Fedora Core 3.
4203 (t-mouse-make-event): Don't sink the `stupid text mode menubar'.
4204 (t-mouse-mouse-position-function): New function. Use it instead
4205 of advising mouse-position.
4206 (t-mouse-mode): New minor mode.
4207 (t-mouse-stop, t-mouse-run): Remove. Use t-mouse-mode instead.
4208
4209 2006-02-27 Glenn Morris <rgm@gnu.org>
4210
4211 * calendar/calendar.el (calendar-holidays): Doc fix.
4212
4213 2006-02-27 Nick Roberts <nickrob@snap.net.nz>
4214
4215 * progmodes/gdb-ui.el (gdb-source-window): New variable.
4216 Re-introduce the concept of a source window.
4217 (gdb-get-buffer-create): Rename from gdb-get-create-buffer for
4218 consistency with get-buffer-create.
4219 (def-gdb-auto-update-handler, gdb-info-locals-handler)
4220 (gdb-data-list-register-values-handler)
4221 (gdb-stack-list-locals-handler): Try to preserve window-start as
4222 well as window-point.
4223 (gdb-display-source-buffer): New function (old concept).
4224 (gdb-goto-breakpoint): Use it.
4225
4226 * progmodes/gud.el (gud-display-line): Use gdb-display-source-buffer
4227 for gdb-ui/gdb-mi (old concept).
4228
4229 2006-02-27 Carsten Dominik <dominik@science.uva.nl>
4230
4231 * textmodes/reftex-index.el (reftex-index-map): Add `follow-mouse'
4232 binding.
4233
4234 * textmodes/reftex-toc.el (reftex-toc-map): Add `follow-mouse' binding.
4235
4236 * textmodes/reftex-sel.el (reftex-select-label-map)
4237 (reftex-select-bib-map): Add `follow-mouse' binding.
4238
4239 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
4240
4241 * jka-cmpr-hook.el (jka-compr-compression-info-list)
4242 (jka-compr-mode-alist-additions, jka-compr-load-suffixes):
4243 Give :set functions to provide automatic updating.
4244 Update docstring. Give compiler defvars early in the file
4245 and move the defcustoms to a later spot where all called functions
4246 are defined.
4247 (jka-compr-file-name-handler-entry): Doc fix.
4248 (jka-compr-compression-info-list--internal)
4249 (jka-compr-mode-alist-additions--internal)
4250 (jka-compr-load-suffixes--internal): New variables.
4251 (jka-compr-install): Set the three above variables.
4252 Update `load-file-rep-suffixes' instead of `load-suffixes'.
4253 (jka-compr-update, jka-compr-set): New functions.
4254 (auto-compression-mode): Doc fix.
4255
4256 * jka-compr.el (jka-compr-uninstall): Replace `mapcar' with `mapc'.
4257 Update `load-file-rep-suffixes' instead of `load-suffixes'.
4258 Use jka-compr-compression-info-list--internal,
4259 jka-compr-mode-alist-additions--internal and
4260 jka-compr-load-suffixes--internal.
4261
4262 * files.el (load-library):
4263 * loadhist.el (file-loadhist-lookup):
4264 * startup.el (command-line):
4265 * subr.el (locate-library):
4266 * emacs-lisp/autoload.el (update-directory-autoloads):
4267 * emacs-lisp/find-func.el (find-library-suffixes):
4268 Use `get-load-suffixes' instead of `load-suffixes'.
4269
4270 * subr.el (locate-library):
4271 * emacs-lisp/find-func.el (find-library-name):
4272 Use `load-file-rep-suffixes' instead of '("").
4273
4274 2006-02-26 Kim F. Storm <storm@cua.dk>
4275
4276 * ido.el (ido-save-history, ido-load-history): Simplify.
4277 Don't use find-file-noselect to avoid interference from other modes.
4278
4279 2006-02-25 Thien-Thi Nguyen <ttn@gnu.org>
4280
4281 * progmodes/sh-script.el (sh-mode): Fix bug: Arrange
4282 to use the default shell if filename is not available.
4283 Reported by Giorgos Keramidas.
4284
4285 2006-02-25 John Williams <jrw@pobox.com> (tiny change)
4286
4287 * progmodes/etags.el (tags-completion-table): Do completion from
4288 all the tables in the current list, as documented in the manual.
4289
4290 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4291
4292 * CC Mode Update to 5.31.3.
4293
4294 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4295
4296 * progmodes/cc-mode.el (c-postprocess-file-styles):
4297 Bind inhibit-read-only to t, around the call to
4298 c-remove-any-local-eval-or-mode-variables, so that it works on a
4299 RO file.
4300
4301 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4302
4303 * progmodes/cc-awk.el: Correct a typo.
4304
4305 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4306
4307 * progmodes/cc-cmds.el, cc-mode.el: Rename c-hungry-backspace to
4308 c-hungry-delete-backwards, at the request of RMS. Leave the old
4309 name as an alias.
4310
4311 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4312
4313 * progmodes/cc-mode.el: Correct a typo.
4314
4315 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4316
4317 * progmodes/cc-defs.el: Update the version number to 5.31.3.
4318
4319 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4320
4321 * progmodes/cc-cmds.el (c-electric-brace): Fix clean-up
4322 brace-else-brace (error due to mbeg, mend being undefined).
4323
4324 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4325
4326 * progmodes/cc-mode.el: File Local variables: Solve the problem
4327 where both `mode' and c-file-offsets are specified: `mode' will
4328 overwrite c-f-o's settings:
4329 (c-remove-any-local-eval-or-mode-variables): New function.
4330 (c-postprocess-file-styles): Call the above new function, within
4331 c-tentative-buffer-change, to splat `mode' and `eval' before the
4332 second hack-local-variables.
4333
4334 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4335
4336 * progmodes/cc-mode.el:
4337 [Supersedes patch to cc-engine.el 2005-12-16T20:07:49Z!monnier@iro.umontreal.ca]
4338 (c-after-change): Protect the match data with save-match-data.
4339 It was getting corrupted by c-after-change-check-<>-operators.
4340
4341 * cc-defs.el: [Supersedes patch V1.38]:
4342 (top level): Check for a buggy font-lock-compile-keywords ONLY in
4343 XEmacs. GNU Emacs 22 now has a check which would throw an error here.
4344
4345 * progmodes/cc-awk.el (c-awk-after-change): Protect the match data
4346 with save-match-data. It was being corrupted when Font Lock was
4347 not enabled.
4348
4349 2006-02-24 Alan Mackenzie <bug-cc-mode@gnu.org>
4350
4351 * progmodes/cc-langs.el (c-mode-menu): Add menu items for Electric
4352 Mode and Subword Mode.
4353
4354 * progmodes/cc-engine.el (c-beginning-of-statment-1): Distinguish
4355 real labels ("case 1:" or "foo:") from non-labels ("public:").
4356 (c-forward-objc-directive): Replace c-forward-token-2 with crude
4357 coding; c-f-t-2 doesn't move over a token at EOB.
4358
4359 * progmodes/cc-defs.el (c-version): Update version number to 5.31.2.
4360
4361 * progmodes/cc-cmds.el, cc-mode.el, cc-engine.el
4362 (c-update-modeline): Concatenate the minor mode indicators
4363 directly onto mode-name, removing c-submode-indicators.
4364 Sometimes, c-s-i got separated from the mode name on the mode line.
4365
4366 * progmodes/cc-cmds.el (c-electric-brace, c-electric-semi&comma)
4367 (c-electric-colon): Correct doc-strings: "/ln" -> "/la".
4368
4369 2006-02-24 Martin Stjernholm <bug-cc-mode@gnu.org>
4370
4371 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Improve the
4372 error message when there's an evaluation error to show whether
4373 it's loaded from source or not.
4374 (c-filter-ops): Make it available at runtime too to work when
4375 `c-make-init-lang-vars-fun' needs to evaluate from source.
4376
4377 2006-02-24 Juanma Barranquero <lekktu@gmail.com>
4378
4379 * help.el (help): Revert last part of 2006-02-23 change (deletion
4380 of the `provide' call).
4381
4382 2006-02-23 Juri Linkov <juri@jurta.org>
4383
4384 * compare-w.el (compare-windows-highlight): Add new value
4385 `persistent' and change :type from `boolean' to `choice'.
4386 (compare-windows-overlays1, compare-windows-overlays2):
4387 New internal variables.
4388 (compare-windows-highlight): If compare-windows-highlight is
4389 `persistent', add current overlays to compare-windows-overlays[12]
4390 instead of adding compare-windows-dehighlight to pre-command-hook.
4391 (compare-windows-dehighlight): Delete all overlays from
4392 compare-windows-overlays[12].
4393
4394 * info.el (Info-search): Don't bind search-spaces-regexp to
4395 Info-search-whitespace-regexp in non-regexp isearch mode.
4396
4397 2006-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4398
4399 * help.el (describe-mode): Pass `mode-name' to format-mode-line.
4400
4401 2006-02-23 Juanma Barranquero <lekktu@gmail.com>
4402
4403 * textmodes/org.el (org-xemacs-p)
4404 (org-export-html-show-new-buffer, org-table-may-need-update)
4405 (org-insert-item, org-mhe-get-message-real-folder)
4406 (org-mhe-get-message-folder-from-index)
4407 (org-mhe-get-message-folder, org-mhe-get-message-num)
4408 (org-mhe-get-header, org-make-org-heading-search-string)
4409 (org-make-org-heading-camel, org-table-sort-lines)
4410 (org-format-org-table-html, org-format-table-table-html):
4411 Fix typos in docstrings.
4412
4413 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
4414
4415 * textmodes/org.el (org-cleaned-string-for-export)
4416 (org-solidify-link-text): New function.
4417 (org-add-hook): Use `add-local-hook' instead of `make-local-hook' for
4418 XEmacs, just to silence the compiler.
4419 (org-export-as-ascii, org-export-as-html-and-open):
4420 Use `org-cleaned-string-for-export' and create internal links.
4421 (org-follow-mhe-link): Require mh-e, use folder.
4422
4423 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
4424
4425 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face properly.
4426
4427 * progmodes/gdb-ui.el (gdb-debug-ring-max): Rename from
4428 gdb-debug-log-length.
4429 (gdb-debug-ring): Rename from gdb-debug-log-ring. Don't make
4430 it a real ring but...
4431 (gud-gdba-marker-filter): ...make it work like mark-ring.
4432 (gdb-enable-debug): Rename from gdb-enable-debug-log.
4433 (gdb-mouse-jump): New function. Add bindings.
4434
4435 2006-02-23 Nick Roberts <nickrob@snap.net.nz>
4436
4437 * progmodes/gdb-ui.el (gdb-signalled): New variable and function.
4438 (gdb-debug-log-ring): Rename from gdb-debug-log and make a ring.
4439 (gdb-send, gdb-send-item, gud-gdba-marker-filter): Use it.
4440 (gdb-debug-log-length): Customize it's length.
4441 (gud-watch, gdb-var-create-handler): Display function::var format
4442 but don't use to create variable object.
4443 (gdb-var-create-handler): Use message-box in place of message.
4444 (gdb-stopped): Call gdb-exited if signalled.
4445
4446 2006-02-22 Carsten Dominik <dominik@science.uva.nl>
4447
4448 * textmodes/reftex.el (reftex-locate-file): Remove duplicate function.
4449
4450 * textmodes/reftex-vars.el (reftex-try-all-extensions): New option.
4451
4452 * textmodes/reftex.el (reftex-locate-file): Search all extensions
4453 if `reftex-try-all-extensions' is set.
4454
4455 * textmodes/reftex-dcr.el (reftex-view-crossref): New argument to
4456 fail silently when there is no valid argument at point.
4457 (reftex-view-crossref-when-idle): Call `reftex-view-crossref' with
4458 `fail-silently' argument. From a patch by David Reiter.
4459
4460 * textmodes/org.el (org-mark-ring-push, org-mark-ring-goto):
4461 New commands.
4462 (org-mark-ring): New variable.
4463 (org-mark-ring-length): New option.
4464 (org-open-at-point, org-goto, org-open-file): Push old position
4465 onto the mark ring.
4466 (org-add-hook): New function.
4467 (org-export-table-remove-special-lines): New option.
4468 (org-skip-comments, org-format-org-table-html): Respect new
4469 option `org-export-table-remove-special-lines'.
4470 (org-open-file): Allow special command configuration for
4471 directory link.
4472 (org-file-apps): Fix bugs in customize type, added setting
4473 for directories.
4474 (org-activate-tags, org-format-agenda-item, org-complete)
4475 (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
4476 (org-get-tags, org-get-buffer-tags, org-open-at-point)
4477 (org-link-search, org-make-org-heading-search-string)
4478 (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
4479 (org-radio-targets, org-file-link-context-use-camel-case)
4480 (org-activate-camels): New options.
4481 (org-update-radio-target-regexp, org-all-targets)
4482 (org-make-target-link-regexp, org-activate-target-links):
4483 New functions.
4484 (org-make-org-heading-search-string): New function.
4485 (org-store-link, org-insert-link): Use new option
4486 `org-file-link-context-use-camel-case'.
4487 (org-activate-camels): Use new option `org-activate-camels'.
4488 (org-link-regexp): Add mhe prefix.
4489 (org-open-at-point, org-store-link): Support for mhe links.
4490 (org-mhe-get-message-real-folder, org-mhe-get-message-folder)
4491 (org-mhe-get-message-folder-from-index, org-mhe-get-message-num)
4492 (org-mhe-get-header, org-follow-mhe-link): New functions.
4493 (org-remove-angle-brackets, org-add-angle-brackets):
4494 New functions.
4495 (org-bracket-link-regexp): New constant.
4496 (org-read-date): Fix bug that was rejecting all typed dates.
4497 (org-link-search): Make hierarchy above visible after a match.
4498 (org-follow-bbdb-link): Inhibit electric mode for BBDB.
4499 (org-store-link): Fix bug with link creation when cursor is in
4500 an empty line.
4501 (org-open-at-point): Fix bug with matching a link.
4502 Fixed buggy argument sequence in call to `org-view-tags'.
4503 (org-compile-prefix-format): Set `org-prefix-has-tag'.
4504 (org-prefix-has-tag): New variable.
4505 (org-format-agenda-item): Remove tags from headline
4506 if appropriate.
4507 (org-agenda-remove-tags-when-in-prefix): New option.
4508
4509 2006-02-21 Michael Kifer <kifer@cs.stonybrook.edu>
4510
4511 * ediff-diff.el (ediff-setup-diff-regions, ediff-setup-diff-regions3):
4512 Fix the regular expressions.
4513
4514 2006-02-21 Richard M. Stallman <rms@gnu.org>
4515
4516 * progmodes/sh-script.el (sh-mode): Set shell type based on file name
4517 if there's no other specific basis.
4518
4519 * emacs-lisp/unsafep.el (unsafep): Don't treat &rest or &optional
4520 as variables at all.
4521 (unsafep-variable): Rename arg; doc fix.
4522
4523 * abbrevlist.el (list-one-abbrev-table): Add autoload.
4524
4525 * calendar/appt.el (diary-selective-display): Add defvar.
4526
4527 * sort.el (sort-columns): Use Posix arg syntax for `sort'.
4528
4529 * isearch.el (search-whitespace-regexp): Fix custom type.
4530
4531 * help.el (describe-key-briefly): Compute interactive args
4532 in same was as before previous change.
4533
4534 * files.el (enable-local-variables): Doc fix.
4535
4536 2006-02-21 Kim F. Storm <storm@cua.dk>
4537
4538 * fringe.el: Cleanup as file is now pre-loaded.
4539 (fringe-bitmaps): Initialize unconditionally.
4540 (fringe-mode, set-fringe-style): Remove autoload cookies.
4541
4542 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
4543
4544 * fringe.el (fringe-bitmaps): Rename `horisontal-bar' to
4545 `horizontal-bar'.
4546 (fringe-cursor-alist): Use `horizontal-bar'.
4547
4548 2006-02-20 Kim F. Storm <storm@cua.dk>
4549
4550 * fringe.el (fringe-bitmaps): Update to new bitmap names.
4551 (fringe-indicator-alist, fringe-cursor-alist): Initialize.
4552
4553 * loadup.el: Load "fringe" on window systems.
4554
4555 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
4556
4557 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for all
4558 out of scope components.
4559
4560 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): Don't enable by
4561 default.
4562
4563 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
4564
4565 * custom.el (customize-mark-to-save, customize-mark-as-set):
4566 Load the symbol first.
4567
4568 2006-02-20 Juanma Barranquero <lekktu@gmail.com>
4569
4570 * buff-menu.el (list-buffers-noselect): Turn also "\n" into a
4571 strech spec so it doesn't display as "^J" on the header line
4572 when `Buffer-menu-use-header-line' is t.
4573
4574 2006-02-20 Nick Roberts <nickrob@snap.net.nz>
4575
4576 * speedbar.el (speedbar-make-button): Keep text properties
4577 of string arguments if desired.
4578
4579 * progmodes/gud.el (gud-speedbar-buttons): Fontify watch
4580 expessions.
4581
4582 * progmodes/gdb-ui.el (gdb-speedbar-expand-node): Force update
4583 of speedbar.
4584
4585 2006-02-19 Ryan Yeske <rcyeske@gmail.com>
4586
4587 * ffap.el (ffap-read-file-or-url): Bind `completion-ignore-case'
4588 to value of `read-file-name-completion-ignore-case'.
4589
4590 2006-02-19 Chong Yidong <cyd@stupidchicken.com>
4591
4592 * custom.el (customize-mark-as-set): Push to `user' theme.
4593
4594 * cus-edit.el (custom-save-variables): Allow unthemed values.
4595 (customize-set-variable): Push setting to `user' theme.
4596
4597 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
4598
4599 * progmodes/gud.el: Don't require font-lock as it's now
4600 automatically loaded.
4601 (gud-speedbar-buttons): Replace gdb-var-changed with
4602 gdb-force-update.
4603
4604 * progmodes/gdb-ui.el (gdb-force-update): Rename from
4605 gdb-var-changed.
4606 (gdb-post-prompt): Use it.
4607 (gdb-var-create-handler, gdb-var-evaluate-expression-handler)
4608 (gdb-var-update-handler, gdb-var-delete)
4609 (gdb-speedbar-expand-node, gdb-var-list-children-handler-1)
4610 (gdb-var-update-handler-1): Don't set gdb-var-changed, just set
4611 gdb-force-update in gdb-post-prompt.
4612 (gdb-reset): Clear watch expressions from speedbar when quitting.
4613
4614 2006-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
4615
4616 * viper-cmd.el (viper-insert-state-post-command-sentinel)
4617 (viper-change-state-to-vi, viper-change-state-to-emacs):
4618 Make aware of cursor coloring in the Emacs state.
4619 (viper-special-read-and-insert-char): Use read-char-exclusive.
4620 (viper-minibuffer-trim-tail): Workaround for fields in minibuffer.
4621
4622 * viper-init.el (viper-emacs-state-cursor-color): New variable.
4623
4624 * viper-util.el (viper-save-cursor-color)
4625 (viper-get-saved-cursor-color-in-replace-mode)
4626 (viper-get-saved-cursor-color-in-insert-mode)
4627 (viper-restore-cursor-color): Make aware of the cursor color in Emacs
4628 state.
4629 (viper-get-saved-cursor-color-in-emacs-mode): New function.
4630
4631 * ediff-diff.el (ediff-ignore-case, ediff-ignore-case-option)
4632 (ediff-ignore-case-option3, ediff-actual-diff-options)
4633 (ediff-actual-diff3-options): New variables to control case sensitivity.
4634 (ediff-make-diff2-buffer, ediff-setup-fine-diff-regions)
4635 (ediff-setup-diff-regions3): Make aware of case-sensitivity.
4636 (ediff-toggle-ignore-case): New function.
4637 (ediff-extract-diffs, ediff-extract-diffs3): Preserve point in buffers.
4638
4639 * ediff-help.el (ediff-long-help-message-narrow2)
4640 (ediff-long-help-message-compare2, ediff-long-help-message-compare3)
4641 (ediff-long-help-message-word-mode): Add ignore-case command.
4642 (ediff-help-for-quick-help): Add ignore-case command.
4643
4644 * ediff-merg.el: Move provide to the end.
4645
4646 * ediff-ptch.el: Move provide to the end.
4647
4648 * ediff-wind.el: Move provide to the end.
4649
4650 * ediff-mult.el: Move provide to the end.
4651 (ediff-set-meta-overlay): Enable follow-link.
4652
4653 * ediff.el: Move provide to the end.
4654 Break recursive load cycle in eval-when-compile.
4655 (ediff-patch-buffer): Better heuristics.
4656
4657 * ediff-util.el: Move provide to the end.
4658 Break recursive load cycle in eval-when-compile.
4659 (ediff-setup-keymap): Add binding for #c. Replace some defsubsts with
4660 defuns.
4661 (ediff-submit-report): Pass the values of ediff-diff3-program,
4662 ediff-diff3-options.
4663
4664 2006-02-19 Juanma Barranquero <lekktu@gmail.com>
4665
4666 * help-fns.el (help-do-arg-highlight): Recognize also ARG- followed by
4667 the opening bracket of the following bracketing pairs: {}, [], (), <>,
4668 `' (for example, in the docstring of `windmove-default-keybindings').
4669
4670 2006-02-19 Nick Roberts <nickrob@snap.net.nz>
4671
4672 * progmodes/gud.el (gud-speedbar-buttons): Update properly for
4673 shadow face. Don't provide binding to edit variable when it is
4674 out of scope.
4675
4676 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
4677 (gdb-var-update-handler): Detect out of scope variables with pre
4678 GDB 6.4 too.
4679 (gdb-post-prompt): Revert change from 2006-02-17 (force update).
4680 Reset status of variable objects to nil in update handlers.
4681 (gdb-var-update-handler-1): Detect when a variable object comes
4682 in scope. setcar on var changes gdb-var-list directly.
4683
4684 2006-02-17 Juri Linkov <juri@jurta.org>
4685
4686 * ffap.el (ffap) <defface>: Add explicit face declaration.
4687 (ffap-highlight): Use face `ffap' directly instead of checking
4688 for its existence.
4689
4690 * icomplete.el (icomplete-get-keys): Use `t' for the second arg
4691 `visible-ok' of `other-buffer' to find the right original buffer.
4692
4693 * info.el (Info-search): Skip `Local Variables' node.
4694
4695 2006-02-17 Juri Linkov <juri@jurta.org>
4696
4697 * info.el (Info-find-file): Check for symbols `apropos', `history',
4698 `toc' in the input filename, and return these symbols as is.
4699 (Info-find-node-2): Set Info-current-file to symbols `apropos',
4700 `history', `toc' instead of strings.
4701 (Info-set-mode-line): For non-string Info-current-file use the
4702 symbol's name inside **.
4703 (Info-isearch-push-state): Add quote before Info-current-file and
4704 Info-current-node.
4705 (Info-isearch-pop-state): Use `equal' instead of `string='.
4706 (Info-extract-pointer, Info-following-node-name): Use
4707 `match-string-no-properties' instead of `match-string'.
4708 (Info-up): Check `old-file' for `stringp'.
4709 (Info-history): Use `equal' instead of `string-equal'.
4710 Check `file' for `stringp'.
4711 (Info-history): Use symbol `history' instead of string as first arg
4712 of `Info-find-node'.
4713 (Info-toc): Check `Info-current-file' for `stringp'. Use symbol
4714 `toc' instead of string.
4715 (Info-extract-menu-node-name): Use `buffer-substring-no-properties'
4716 instead of `buffer-substring', and `match-string-no-properties'
4717 instead of `match-string'.
4718 (Info-index-nodes): Check for symbols `apropos', `history', `toc'
4719 instead of strings.
4720 (info-apropos): Use `Info-find-node' instead of `Info-goto-node'.
4721 Use symbol `apropos' instead of string.
4722 (Info-copy-current-node-name): Check `Info-current-file' for
4723 `stringp' and construct a command with `Info-find-node' from it.
4724 (Info-fontify-node): Use `match-string-no-properties' instead of
4725 `match-string' and check file names for `stringp'.
4726 (Info-desktop-buffer-misc-data): Check for symbols `apropos',
4727 `history', `toc' instead of strings.
4728
4729 2006-02-17 Chong Yidong <cyd@stupidchicken.com>
4730
4731 * files.el: Rearrange functions and variables in the file local
4732 variables section.
4733
4734 2006-02-17 Reiner Steib <Reiner.Steib@gmx.de>
4735
4736 * files.el: Add truncate-lines, ispell-check-comments and
4737 ispell-local-dictionary as safe local variables.
4738
4739 2006-02-18 Nick Roberts <nickrob@snap.net.nz>
4740
4741 * progmodes/gud.el (gud-speedbar-buttons): Use shadow face for
4742 out of scope variables.
4743 (gud-speedbar-buttons): Use unless.
4744
4745 * progmodes/gdb-ui.el (gdb-var-list): Update doc string.
4746 (gdb-init-1, gdb-var-changed): Set gdb-var-changed to t initially.
4747 (gdb-show-changed-values): Also use for out of scope variables.
4748 (gdb-var-update-handler-1): Note if variable goes out of scope.
4749
4750 2006-02-17 Ryan Yeske <rcyeske@gmail.com>
4751
4752 * net/rcirc.el (rcirc-connect): Make all arguments optional, and
4753 default to global variable values for unsupplied args.
4754 (rcirc-get-buffer-create): Fix bug with setting the target.
4755 (rcirc-any-buffer): Rename from rcirc-get-any-buffer, and include
4756 test for rcirc-always-use-server-buffer-flag here.
4757 (rcirc-response-formats): Add %N, which is a facified nick. %n
4758 uses the default face. Change the ACTION format string. If the
4759 "nick" is the server, don't print anything for that field.
4760 Comment fixes.
4761 (rcirc-target-buffer): Don't test
4762 rcirc-always-use-server-buffer-flag here.
4763 (rcirc-print): Squeeze extra spaces out of the text before message.
4764 (rcirc-put-nick-channel): Strip potential "@" char from nick
4765 before adding them to nick table.
4766 (rcirc-url-regexp): Improve to match address like "foo.com".
4767
4768 2006-02-17 Eli Zaretskii <eliz@gnu.org>
4769
4770 * allout.el (allout-hidden-p): Move this defsubst before
4771 allout-overlay-interior-modification-handler, where it is first
4772 used.
4773
4774 2006-02-17 Ken Manheimer <ken.manheimer@gmail.com>
4775
4776 * allout.el: Use allout invisible-text overlays instead of
4777 selective display for concealed text. Also, lots of general
4778 cleanup, and improved compatibility code.
4779
4780 (allout-version) Incremented, corrected, revised, and refined
4781 module commentary.
4782
4783 (provide 'allout): Moved to the bottom, added a require of overlay.
4784
4785 (allout-encrypt-unencrypted-on-saves): Defaults to t instead of
4786 `except-current'.
4787 (allout-write-file-hook-handler): Minimize delay.
4788 (count-trailing-whitespace-region): New function so
4789 auto-encryption of current topic can resituate cursor exactly.
4790 PGP/GPG encryption trims trailing whitespace from lines, which
4791 must be accounted for across encryption then decryption.
4792
4793 (allout-command-prefix): Now defaults to "\C-c<space>" rather than
4794 just plain "\C-c", to avoid intruding on user's keybinding space.
4795
4796 (allout-toggle-current-subtree-encryption): Pass along fetch-pass
4797 parameter, so user request to provide a new password is done.
4798
4799 (allout-outside-normal-auto-fill-function, allout-auto-fill):
4800 Refined mechanism for auto-filling behavior while in allout mode.
4801
4802 (allout-mode): Explicitly specify the mode map in the docstring.
4803 Clarify provision for various write-file hook var names.
4804 Adjusted for invisible-text overlays instead of selective-display.
4805
4806 (allout-depth): Really return 0 if not within any topic. This
4807 rectifies `allout-beginning-of-level' and sequence numbering
4808 errors that occur when cutting and pasting numbered topics.
4809 Changed from a in-line subst to a regular function, as well.
4810
4811 (allout-pre-next-prefix): Renamed from allout-pre-next-preface.
4812
4813 (allout-end-of-subtree, allout-end-of-subtree)
4814 (allout-end-of-entry, allout-end-of-current-heading)
4815 (allout-next-visible-heading, allout-open-topic, allout-show-entry)
4816 (allout-show-children, allout-show-to-offshoot)
4817 (allout-hide-current-entry, allout-show-current-entry): Rectified
4818 handling of trailing blank lines between items.
4819
4820 (allout-line-boundary-regexp, set-allout-regexp, allout-depth)
4821 (allout-current-depth, allout-unprotected, allout-hidden-p)
4822 (allout-on-current-heading-p, allout-listify-exposed)
4823 (allout-chart-subtree, allout-goto-prefix)
4824 (allout-back-to-current-heading, allout-get-body-text)
4825 (allout-snug-back, allout-flag-current-subtree, allout-show-all)
4826 (allout-hide-region-body, allout-toggle-subtree-encryption)
4827 (allout-encrypt-string, allout-encrypted-key-info)
4828 (allout-next-topic-pending-encryption, allout-encrypt-decrypted)
4829 (allout-file-vars-section-data): Adjusted for use with
4830 invisible-text overlays instead of selective-display.
4831
4832 (allout-kill-line, allout-kill-topic, allout-yank-processing):
4833 Reworked for use with invisible text overlays.
4834
4835 (allout-current-topic-collapsed-p): New function.
4836
4837 (allout-hide-current-subtree): Use allout-current-topic-collapsed-p
4838 to know when to close the containing topic.
4839
4840 (allout-pre-command-business, allout-post-command-business):
4841 Simplify undo-batching and dynamic isearch exposure.
4842
4843 (allout-set-overlay-category): New for invisible-text overlays.
4844 Sets properties of allout-overlay-category, used by
4845 allout-flag-region to set invisible-text overlay properties.
4846 (allout-get-invisibility-overlay): Get the first qualifying
4847 invisibility overlay, so we can find the extent of it.
4848 (allout-back-to-visible-text): Get to just before the beginnining
4849 of the current invisibility overlay, if any.
4850
4851 (allout-overlay-insert-in-front-handler)
4852 (allout-overlay-interior-modification-handler)
4853 (allout-before-change-handler, allout-isearch-end-handler): New
4854 functions to handle extraordinary actions affecting concealed
4855 text.
4856
4857 (allout-flag-region): Use overlays instead of selective-display
4858 for invisible text - by inheritence from the properties of
4859 allout-overlay-category in mainline Emacs, and applied
4860 property-by-property in XEmacs, some recent versions of which
4861 don't inherit the properties from the category. Provisions to
4862 respond to concealed-text edits simplified drastically.
4863
4864 (allout-isearch-rectification, allout-isearch-was-font-lock)
4865 (allout-isearch-expose, allout-enwrap-isearch)
4866 (allout-isearch-abort, allout-pre-was-isearching)
4867 (allout-isearch-prior-pos, allout-isearch-did-quit)
4868 (allout-isearch-dynamic-expose)
4869 (allout-hide-current-entry-completely): Functions deleted.
4870
4871 (allout-undo-aggregation): Explicit undo aggregation no longer
4872 necessary due to transition away from selective-display.
4873
4874 (set-allout-regexp, allout-up-current-level)
4875 (allout-next-visible-heading, allout-forward-current-level)
4876 (allout-open-topic, allout-reindent-body, allout-rebullet-topic)
4877 (allout-kill-line, allout-yank-processing, allout-show-children)
4878 (allout-expose-topic, allout-old-expose-topic)
4879 (allout-listify-exposed, allout-insert-latex-header)
4880 (allout-toggle-subtree-encryption, allout-encrypt-string)
4881 (remove-from-invisibility-spec, allout-hide-current-subtree):
4882 Ditched unused variables.
4883
4884 2006-02-17 Agustin Martin <agustin.martin@hispalinux.es>
4885
4886 * textmodes/ispell.el (ispell-change-dictionary): Call
4887 ispell-buffer-local-dict instead of
4888 ispell-accept-buffer-local-defs.
4889 (ispell-local-dictionary-alist): Accept as valid any coding-system
4890 supported by Emacs.
4891 (ispell-dictionary-alist-3): Esperanto dictionary's coding system
4892 changed to iso-8859-3.
4893
4894 2006-02-17 Nick Roberts <nickrob@snap.net.nz>
4895
4896 * speedbar.el (speedbar-frame-width): Make an inline function
4897 instead of a macro. Use frame-width.
4898 (speedbar-try-completion, speedbar-update-contents)
4899 (speedbar-timer-fn): Use consp.
4900 (speedbar-update-localized-contents): Try to preserve point.
4901
4902 * progmodes/gdb-ui.el (gdba, gdb-var-list): Improve doc strings.
4903 (menu): Re-order menu items.
4904 (gdb-var-update-regexp, gdb-var-update-regexp-1): Match "in_scope"
4905 field.
4906 (gdb-var-update-handler-1): Use it for GDB 6.4+.
4907 (gdb-post-prompt): Speed things by not forcing update.
4908
4909 2006-02-16 Chong Yidong <cyd@stupidchicken.com>
4910
4911 * wid-edit.el (widget-button-click): For mouse-1, cancel button
4912 press and perform default action if we get a mouse movement event.
4913
4914 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
4915
4916 * calendar/icalendar.el (icalendar--get-event-property)
4917 (icalendar--get-event-property-attributes): Fix typos in
4918 docstrings.
4919
4920 * progmodes/flymake.el (flymake-fix-file-name): Fix typo in
4921 docstring.
4922
4923 2006-02-15 Juanma Barranquero <lekktu@gmail.com>
4924
4925 * bs.el (bs-mode): Use `buffer-disable-undo'.
4926 (bs--get-file-name): Simplify.
4927 (bs-show-in-buffer): Mark the buffer as not modified.
4928
4929 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
4930
4931 * wid-edit.el (widget-keymap): Bind down-mouse-1 to
4932 widget-button-click.
4933
4934 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
4935 (custom-mode): Update docstring.
4936
4937 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
4938 binding.
4939
4940 * files.el (hack-local-variables-confirm): Allow scrolling if the
4941 file variable list is too long. Kill temp buffer after use.
4942
4943 2006-02-15 Nick Roberts <nickrob@snap.net.nz>
4944
4945 * progmodes/gud.el (gdb): Improve doc string.
4946 (gdb-script-font-lock-keywords): Expand allowed character set.
4947
4948 * progmodes/gdb-ui.el (gdb-use-separate-io-buffer)
4949 (gdb-display-separate-io-buffer, gdb-frame-separate-io-buffer)
4950 (gdb-separate-io-interrupt, gdb-separate-io-quit)
4951 (gdb-separate-io-stop, gdb-separate-io-eof):
4952 Rename from gdb-inferior-* to gdb-separate-*.
4953 (gdb-set-gud-minor-mode-existing-buffers-1): Improve doc string.
4954
4955 2006-02-14 Jay Belanger <belanger@truman.edu>
4956
4957 * calc/calc-arith.el (math-check-known-scalarp): Make sure
4958 expression is a symbol before checking that it is bound.
4959
4960 * calc/calcalg2.el (math-integrate-by-parts): Do a more careful
4961 test to see if equation can be solved.
4962
4963 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
4964
4965 * wid-edit.el (widget-button-click): Use :pressed-face property
4966 for overlay face, if it exists.
4967
4968 * cus-edit.el (custom-manual, custom-add-see-also)
4969 (custom-add-parent-links, custom-group-link): Add :pressed-face
4970 property to links.
4971
4972 * files.el (hack-local-variables): Remove ignored variables before
4973 checking if any variables need setting.
4974
4975 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4976
4977 * cus-start.el (all): Add x-gtk-whole-detached-tool-bar.
4978
4979 2006-02-14 Juanma Barranquero <lekktu@gmail.com>
4980
4981 * help.el (where-is): Fix message for remapped commands.
4982
4983 * mwheel.el (mouse-wheel-click-event, mouse-wheel-mode):
4984 Fix typos in docstrings.
4985
4986 2006-02-13 Chong Yidong <cyd@stupidchicken.com>
4987
4988 * files.el (safe-local-variable-values): New option.
4989 (hack-local-variables-prop-line): Return a list of variable-value
4990 pairs if MODE-ONLY is non-nil.
4991 (hack-local-variables): Construct list of variable-value pairs,
4992 and apply or reject them in one go. Ask for confirmation if
4993 variables are not known safe.
4994 (hack-local-variables-confirm): Complete rewrite. Support
4995 `safe-local-variable-values'.
4996 (enable-local-variables): Update docstring to reflect new
4997 behavior.
4998 (ignored-local-variables): Ignore ignored-local-variables and
4999 safe-local-variable-values.
5000 (safe-local-variable-p): New function.
5001 (risky-local-variable-p): `safe-local-variable' property check
5002 moved to safe-local-variable-p.
5003 (hack-one-local-variable): Checks moved to hack-local-variables.
5004
5005 (byte-compile-dynamic, c-basic-offset, c-file-style)
5006 (c-indent-level, comment-column, fill-column, fill-prefix)
5007 (indent-tabs-mode, kept-new-versions, no-byte-compile)
5008 (no-update-autoloads, outline-regexp, page-delimiter)
5009 (paragraph-start, paragraph-separate, sentence-end)
5010 (sentence-end-double-space tab-width, version-control):
5011 Add `safe-local-variable' property.
5012
5013 * find-lisp.el: Delete nonexistent `autocompile' file variable.
5014
5015 * icomplete.el, play/landmark.el: Change nonexistent
5016 `outline-layout' file variable to `allout-layout'.
5017
5018 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
5019
5020 * progmodes/gdb-ui.el (gud-watch, gdb-invalidate-registers-1)
5021 (gdb-get-changed-registers): Test value of gud-minor-mode relative
5022 to gud-comint-buffer.
5023 (gdb-speedbar-expand-node, gdb-locals-mode): Use functions in
5024 gdb-ui.el for gdb-mi.el.
5025 (gdb-post-prompt, gdb-get-changed-registers): Move test for
5026 registers buffer to gdb-get-changed-registers.
5027 (gdb-breakpoint-regexp): New regexp. Allow toggling and
5028 deletion of catchpoints (throw and catch).
5029 (gdb-toggle-breakpoint, gdb-delete-breakpoint)
5030 (gdb-goto-breakpoint): Use it for both gdb-ui and gdb-mi.
5031 (gdb-find-file-hook, gdb-set-gud-minor-mode-existing-buffers-1)
5032 (gdb-var-list-children-1, gdb-info-breakpoints-custom)
5033 (gdb-var-update-1, gdb-invalidate-locals-1): Use also for gdb-mi.
5034
5035 2006-02-13 Jay Belanger <belanger@truman.edu>
5036
5037 * calc/calc-arith.el (math-check-known-matrixp): Make sure
5038 expression is a symbol before checking that it is bound.
5039
5040 2006-02-13 Richard M. Stallman <rms@gnu.org>
5041
5042 * mouse.el (mouse-drag-mode-line-1): Use mouse-drag-move-window-bottom
5043 for the minibuffer too, but not if resize-mini-windows will interfere.
5044
5045 * help.el (describe-key-briefly, describe-key): Do all arg-reading
5046 inside `interactive' spec.
5047 (describe-key-briefly-internal, describe-key-internal):
5048 Functions merged back into their callers.
5049
5050 2006-02-13 Martin Rudalics <rudalics@gmx.at>
5051
5052 * info.el (info-xref-visited): Inherit from info-xref too.
5053 (Info-set-mode-line): Replace occurrences of `%' by `%%'
5054 when propertizing Info-current-file and Info-current-node.
5055
5056 2006-02-13 Juri Linkov <juri@jurta.org>
5057
5058 * tumme.el (tumme-thumbnail-storage): Fix docstring.
5059 (tumme-thumb-name): Fix per-directory format.
5060
5061 2006-02-13 Juanma Barranquero <lekktu@gmail.com>
5062
5063 * subr.el (substitute-key-definition): Doc fix (hide internal arg).
5064
5065 2006-02-12 Miles Bader <miles@gnu.org>
5066
5067 * net/rcirc.el (rcirc-format-response-string): Fix small bugs.
5068
5069 2006-02-13 Mathias Dahl <mathias.dahl@gmail.com>
5070
5071 * tumme.el: Remove history section. If someone needs the it, it
5072 can always be found in CVS.
5073
5074 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
5075
5076 * tumme.el (tumme-thumbnail-storage): Update docstring. Add info
5077 about the Thumbnail Managing Standard option.
5078
5079 2006-02-12 Richard M. Stallman <rms@gnu.org>
5080
5081 * subr.el (substitute-key-definition): Doc fix.
5082
5083 * simple.el (blink-matching-paren-dont-ignore-comments): Doc fix.
5084
5085 * files.el (magic-mode-alist): Don't use `\\s ' in regexps.
5086
5087 * info.el (Info-mode): Doc fix.
5088
5089 * progmodes/ebrowse.el (ebrowse-global-prefix-key): Change to C-c C-m.
5090
5091 2006-02-12 Michael Albinus <michael.albinus@gmx.de>
5092
5093 * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
5094 because on Solaris a POSIX compatible "id" is needed. Reported by
5095 Magnus Henoch <mange@freemail.hu>.
5096
5097 2006-02-12 Juri Linkov <juri@jurta.org>
5098
5099 * tumme.el: Remove todo item about Thumbnail Managing Standard.
5100 (tumme) <defgroup>: Change :group to `multimedia'.
5101 (tumme-thumbnail-storage): Add choice `standard' for Thumbnail
5102 Managing Standard.
5103 (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s.
5104 Fix dostring.
5105 (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x
5106 and %y. Fix docstring.
5107 (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program)
5108 (tumme-cmd-create-standard-thumbnail-command): New user options.
5109 (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage
5110 is `standard'. Fix docstring.
5111 (tumme-thumb-width, tumme-thumb-height): New user options.
5112 (tumme-external-viewer): Try to find various viewers.
5113 (tumme-get-thumbnail-image): Use `create-image' instead of
5114 constructing the `image' structure.
5115 (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is
5116 `standard'.
5117 (tumme-thumb-name): Add file name generation for standard storage.
5118 Simplify code for other storages.
5119 (tumme-thumb-name): Use width %w and height %h instead of size %s.
5120 Add modification time %m and thumbnail-nq8 %q.
5121 Use `tumme-cmd-create-standard-thumbnail-command' if
5122 tumme-thumbnail-storage is `standard'.
5123 (tumme-dired-insert-marked-thumbs): New autoload command.
5124 (tumme-dired-after-readin-hook): New function.
5125 (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of
5126 `tumme-thumb-size'.
5127 (tumme-display-image): Replace size-x %x and size-y %y with
5128 width %w and height %h.
5129
5130 * dired.el (dired-mode-map): Bind `\C-t\C-t' to
5131 `tumme-dired-insert-marked-thumbs'.
5132
5133 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com>
5134
5135 * tumme.el (tumme-write-tag): Fix small bug (file name did not
5136 include path).
5137 (tumme-mark-tagged-files): Fix bug in regexp used to find rows
5138 matching tag.
5139
5140 2006-02-12 Miles Bader <miles@gnu.org>
5141
5142 * net/rcirc.el (rcirc-nick-abbrevs, rcirc-response-formats):
5143 New variables.
5144 (rcirc-abbrev-nick): New function.
5145 (rcirc-format-response-string): Rewrite to use the formats in
5146 `rcirc-response-formats' and expand escape sequences therein.
5147 A text-property `rcirc-text' is added over the actual response
5148 text to make easy to find inside the returned string.
5149 (rcirc-print): When filling, just look for the `rcirc-text'
5150 text-property to find the appropriate fill prefix, instead of
5151 using hardwired patterns.
5152
5153 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
5154
5155 * tumme.el: Enhance some docstrings. Add todo item about Thumbnail
5156 Managing Standard.
5157
5158 2006-02-11 Kim F. Storm <storm@cua.dk>
5159
5160 * ido.el (ido-buffer-internal): Set mark for ido-insert-buffer.
5161 Don't use insert-buffer; do insert-buffer-substring directly.
5162 (ido-file-internal): Set mark for ido-insert-file. Use insert-file-1.
5163
5164 2006-02-11 Martin Rudalics <rudalics@gmx.at>
5165
5166 * files.el (revert-buffer, recover-file): Replace buffer-read-only
5167 with inhibit-read-only. Suggested by Stefan Monnier.
5168 (revert-buffer): Let insert-file-contents discard
5169 buffer-undo-list. Simplify code.
5170 (find-file, find-file-existing, revert-buffer): Doc-string fixes.
5171
5172 2006-02-11 Eli Zaretskii <eliz@gnu.org>
5173
5174 * menu-bar.el (menu-bar-select-yank): Add a doc string.
5175
5176 * help.el (describe-key-briefly): Now a wrapper for
5177 describe-key-briefly-internal. Bind enable-disabled-menus-and-buttons
5178 to t. Populate yank-menu if empty.
5179 (describe-key-briefly-internal): Renamed from describe-key-briefly.
5180 (describe-key): Now a wrapper for describe-key-internal. Bind
5181 enable-disabled-menus-and-buttons to t. Populate yank-menu if empty.
5182 (describe-key-internal): Renamed from describe-key.
5183
5184 2006-02-11 Milan Zamazal <pdm@zamazal.org>
5185
5186 * progmodes/glasses.el (glasses-separator): Doc fix.
5187 (glasses-original-separator): New defcustom.
5188 (glasses-make-readable, glasses-convert-to-unreadable): Use it.
5189
5190 2006-02-11 Martin Rudalics <rudalics@gmx.at>
5191
5192 * mwheel.el (mouse-wheel-up-event): Doc fix.
5193
5194 2006-02-11 Mathias Dahl <brakjoller@hotmail.com>
5195
5196 * tumme.el (tumme-dir): Change default value to "~/.emacs.d/tumme/".
5197 (tumme-dir): New function. Copied from thumbs.el.
5198
5199 2006-02-10 Juanma Barranquero <lekktu@gmail.com>
5200
5201 * desktop.el (desktop-outvar): Fix typo.
5202 (desktop-save-buffer-p): Doc fix.
5203
5204 * subr.el (substitute-key-definition): Fix typo.
5205
5206 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5207
5208 * frame.el (select-frame-set-input-focus): Call x-focus-frame also
5209 when window-system is mac.
5210
5211 * term/mac-win.el (fontset-standard): Rename from "fontset-mac".
5212
5213 2006-02-10 Kim F. Storm <storm@cua.dk>
5214
5215 * subr.el (substitute-key-definition-key): Pass t for NOERROR to
5216 indirect-function instead of using condition-case.
5217
5218 2006-02-10 Mathias Dahl <mathias.dahl@gmail.com>
5219
5220 * tumme.el (tumme-copy-with-exif-file-name): Try to make docstring
5221 less `colloquial'...
5222
5223 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com>
5224
5225 * tumme.el: Add a couple of todo items.
5226
5227 2006-02-09 Lars Hansen <larsh@soem.dk>
5228
5229 * hilit-chg.el: Add highlight-changes-mode to desktop-locals-to-save.
5230 (highlight-changes-mode): Don't change desktop-locals-to-save.
5231
5232 2006-02-09 Chong Yidong <cyd@stupidchicken.com>
5233
5234 * image-mode.el (image-toggle-display): Clear image cache if using
5235 filename.
5236
5237 2006-02-09 Masatake YAMATO <jet@gyve.org>
5238
5239 * dired-x.el (dired-guess-shell-alist-default): Add .man as
5240 a `dired-man' target.
5241
5242 * progmodes/autoconf.el (autoconf-font-lock-keywords): Check start
5243 boundary of symbols.
5244
5245 2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
5246
5247 * vc-svn.el (vc-svn-print-log): Show recent commits as well.
5248
5249 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
5250
5251 * hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
5252 `mapcar'; return nil.
5253
5254 2006-02-08 Chong Yidong <cyd@stupidchicken.com>
5255
5256 * mouse.el (mouse-drag-track): Don't change window if we rebind to
5257 some other event.
5258
5259 2006-02-08 Ryan Yeske <rcyeske@gmail.com>
5260
5261 * net/rcirc.el (rcirc-startup-channels-alist):
5262 Add irc.freenode.net and #emacs as defaults.
5263 (rcirc-ignore-all-activity-flag): Remove variable.
5264 (rcirc-authinfo): New variable.
5265 (rcirc-authinfo-filename): Remove variable.
5266 (rcirc-always-use-server-buffer-flag): New flag.
5267 (rcirc): M-x rcirc will automatically connect without prompting.
5268 C-u M-x rcirc will prompt. Use rcirc-connect to create a
5269 connection in lisp.
5270 (rcirc-process-server-response-1): Remove everything but the nick
5271 portion of the sender so it doesn't need to be done everywhere
5272 else. Update related code.
5273 (global-map): Remove global keybindings.
5274 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
5275 (rcirc-send-input): Split into several functions.
5276 (rcirc-process-input-line, rcirc-process-message)
5277 (rcirc-process-command): New functions.
5278 (rcirc-target-buffer): New function to determine where to route
5279 messages.
5280 (rcirc-user-nick): Save match data.
5281 (rcirc-toggle-ignore-buffer-activity)
5282 (rcirc-update-activity-string): Remove global ignore functionality,
5283 which can be done now by toggling rcirc-track-minor-mode.
5284 (rcirc-track-minor-mode-map): New keymap.
5285 (rcirc-track-minor-mode): New minor-mode.
5286 (ignore): Make the ignore output nicer. Always print it when
5287 adding or removing nicks.
5288 (rcirc-url-regexp): Improve.
5289 (rcirc-mangle-text): Remove properties before using text in the
5290 modeline.
5291 (rcirc-authenticate): Authentication data comes from
5292 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
5293 (rcirc-server-prefix): Inherit from rcirc-server.
5294
5295 2006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
5296
5297 * Makefile.in (compile): Append "|| true" to the end of the `find'
5298 command, like compile-always does.
5299
5300 2006-02-08 Sam Steingold <sds@gnu.org>
5301
5302 * net/tramp.el (tramp-maybe-open-connection): Do not wait for
5303 output from a dead connection.
5304
5305 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
5306
5307 * dired.el (dired-mode-map): Add more bindings for tumme.
5308
5309 2006-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
5310
5311 * wdired.el (wdired-mode-map): Use remap.
5312 (wdired-get-filename): Massage.
5313 (wdired-perm-mode-map): Don't copy bindings from wdired-mode-map.
5314 (wdired-preprocess-perms, wdired-set-bit, wdired-toggle-bit): Use the
5315 `keymap' property rather than `local-map'.
5316
5317 2006-02-07 Mathias Dahl <brakjoller@hotmail.com>
5318
5319 * tumme.el (tumme-get-thumbnail-image): New utility function.
5320 Suggested by from Chong Yidong.
5321 (tumme-dired-with-window-configuration): Rename from
5322 `tumme-dired'. Add code to save window configuration.
5323 (tumme-restore-window-configuration): New command to restore the
5324 window configuration that `tumme-dired-with-window-configuration'
5325 saves before it changes the window configuration.
5326 (tumme-show-all-from-dir): New command to display thumbnails for
5327 all files in a directory entered by the user, like M-x thumbs.
5328 (tumme-display-thumbs): Call `pop-to-buffer' after all thumbnails
5329 have been created.
5330 (tumme-display-thumbnail-original-image): Call `display-buffer'.
5331 (obsolete-tumme-display-thumbnail-original-image-and-buffer):
5332 Remove obsolete test function.
5333
5334 2006-02-07 Juanma Barranquero <lekktu@gmail.com>
5335
5336 * vc.el (small-temporary-file-directory): Remove defvar; there's
5337 a defcustom for it in files.el.
5338
5339 * tumme.el (tumme-get-thumbnail-image): Add missing arg to `error'.
5340 Fix typo in message.
5341 (tumme-gallery-generate): Fix typo in `error' message.
5342 (tumme-display-window-height-correction)
5343 (tumme-display-window-width-correction, tumme-line-up-dynamic)
5344 (tumme-line-up-interactive): Dox fixes.
5345 (tumme-cmd-rotate-original-options, tumme-display-properties-format)
5346 (tumme-restore-window-configuration, tumme-format-properties-string)
5347 (tumme-create-thumbs, tumme-display-previous-thumbnail-original):
5348 Fix typos in docstrings.
5349
5350 2006-02-07 Chris Moore <christopher.ian.moore@gmail.com> (tiny change)
5351
5352 * wdired.el (wdired-get-filename): Fix bug: Don't re-normalize OLD.
5353
5354 2006-02-07 Nick Roberts <nickrob@snap.net.nz>
5355
5356 * progmodes/gud.el (gud-tooltip-mode): Remove autoload cookie.
5357 User should use hook if desired.
5358
5359 * progmodes/gdb-ui.el (gdb-post-prompt): Regenerate breakpoints
5360 buffer if necessary.
5361 (gdb-delete-frame-or-window): New function.
5362 (gdb-breakpoints-mode-map): Bind "q" to it.
5363
5364 2006-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
5365
5366 * textmodes/nroff-mode.el: Clean up name space.
5367 (nroff-mode-syntax-table): Remove spurious `1' in the syntax of \n.
5368 (nroff-mode): Obey the global setting of nroff-electric-mode.
5369 (nroff-electric-mode): Use define-minor-mode and derived-mode-p.
5370
5371 * calendar/calendar.el (calendar-increment-month): Typo in last change.
5372
5373 2006-02-06 Thien-Thi Nguyen <ttn@gnu.org>
5374
5375 * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs.
5376
5377 2006-02-06 Lars Hansen <larsh@soem.dk>
5378
5379 * generic-x.el (etc-fstab-generic-mode): Add file system types
5380 cifs and usbdevfs. Allow special chars in file names.
5381
5382 2006-02-05 Jay Belanger <belanger@truman.edu>
5383
5384 Update copyright notices of the files in lisp/calc.
5385
5386 2006-02-05 Romain Francoise <romain@orebokech.com>
5387
5388 Update copyright notices of all files in the lisp/play directory.
5389
5390 2006-02-04 Luc Teirlinck <teirllm@auburn.edu>
5391
5392 * ldefs-boot.el: Regenerate.
5393
5394 * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix.
5395
5396 2006-02-05 Kim F. Storm <storm@cua.dk>
5397
5398 * files.el (magic-mode-regexp-match-limit): New defvar.
5399 (set-auto-mode): Use it to limit magic-mode-alist matching.
5400
5401 2006-02-04 Kevin Rodgers <ihs_4664@yahoo.com>
5402
5403 * simple.el (display-message-or-buffer): Compare the number of
5404 characters to the frame width when determining whether a 1-line
5405 message string will fit in the echo area. Count screen lines
5406 instead of buffer lines when determining whether a multi-line
5407 message will fit in the echo area/minibuffer window.
5408
5409 2006-02-04 Eli Zaretskii <eliz@gnu.org>
5410
5411 * info.el (Info-index, Info-mode): Improve the description of the
5412 `i' command.
5413
5414 * ldefs-boot.el: Regenerate.
5415
5416 2006-02-03 Werner Lemberg <wl@gnu.org>
5417
5418 * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
5419 greedy to find the closing bracket in \*[...] and similar
5420 expressions. This is a first rough fix -- many additional
5421 refinements are necessary to make nroff mode really usable with groff.
5422
5423 2006-02-03 Jens Petersen <petersen@redhat.com> (tiny change)
5424
5425 * international/mule-cmds.el (set-locale-environment):
5426 Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11
5427 libX11.
5428
5429 2006-02-03 Joe Wells <jbw@macs.hw.ac.uk> (tiny change)
5430
5431 * arc-mode.el (archive-maybe-copy): Fix the way directories in the
5432 archive are created in archive-tmpdir.
5433
5434 2006-02-02 John Paul Wallington <jpw@pobox.com>
5435
5436 * ibuffer.el (ibuffer-compressed-file-name-regexp): New defcustom.
5437 (ibuffer-fontification-alist): Use it.
5438 (ibuffer-mode-map): Bind `ibuffer-mark-compressed-file-buffers'
5439 to "* z" and the Ibuffer Mark menu.
5440
5441 * ibuf-ext.el (ibuffer-mark-compressed-file-buffers): New command.
5442
5443 2006-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
5444
5445 * textmodes/table.el (*table--cell-describe-mode)
5446 (*table--cell-describe-bindings): Undo last change since
5447 print-help-return-message is not obsoleted by anything at all.
5448
5449 2006-02-02 Luc Teirlinck <teirllm@auburn.edu>
5450
5451 * emulation/cua-base.el (cua-mode): Doc fix.
5452
5453 2006-02-02 Juanma Barranquero <lekktu@gmail.com>
5454
5455 * dframe.el (dframe-handle-make-frame-visible)
5456 (dframe-handle-iconify-frame, dframe-get-focus)
5457 (dframe-select-attached-frame, dframe-power-click)
5458 (dframe-frame-mode): Fix typos in docstrings.
5459
5460 * ezimage.el (ezimage-mail, ezimage-object-out-of-date)
5461 (ezimage-insert-image-button-maybe, ezimage-insert-over-text):
5462 Fix typos in docstrings.
5463
5464 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer)
5465 (hi-lock-face-buffer, hi-lock-font-lock-hook)
5466 (hi-lock-archaic-interface-message-used)
5467 (hi-lock-file-patterns-range): Fix typos in docstrings.
5468
5469 * savehist.el (savehist-loaded, savehist-load, savehist-install)
5470 (savehist-autosave, savehist-trim-history): Fix typos in docstrings.
5471
5472 * mail/mailclient.el (mailclient-place-body-on-clipboard-flag):
5473 Fix typo in docstring.
5474
5475 * net/newsticker.el (newsticker--decode-iso8601-date)
5476 (newsticker--set-customvar, newsticker--buffer-insert-item)
5477 (newsticker--do-run-auto-mark-filter)
5478 (newsticker--parse-generic-feed): Doc fixes.
5479 (newsticker--retrieval-timer-list, newsticker-url-list)
5480 (newsticker-hide-immortal-items-in-echo-area)
5481 (newsticker-hide-obsolete-items-in-echo-area)
5482 (newsticker-new-item-face, newsticker--enclosure)
5483 (newsticker-buffer-update, newsticker-w3m-show-inline-images)
5484 (newsticker--parse-atom-0.3, newsticker--parse-rss-1.0)
5485 (newsticker--parse-generic-feed, newsticker--cache-contains)
5486 (newsticker--stat-num-items, newsticker-download-enclosures):
5487 Fix typos in docstrings.
5488
5489 * net/rcirc.el (rcirc-debug): Doc fix.
5490 (rcirc-fill-column, rcirc-receive-message-hooks)
5491 (rcirc-browse-url-map, rcirc-read-only-flag, rcirc-prompt)
5492 (rcirc-mode, rcirc-generate-new-buffer-name)
5493 (rcirc-startup-channels, rcirc-ignore-update-automatic)
5494 (rcirc-cmd-ignore, rcirc-browse-url, rcirc-url-regexp):
5495 Fix typos in docstrings.
5496 (rcirc-print): "?\ " -> "?\s".
5497 (rcirc-cmd-join): Improve argument/docstring consistency.
5498
5499 2006-02-01 Mark A. Hershberger <mah@everybody.org>
5500
5501 * xml.el (xml-parse-region): Move save-excursion and set-buffer up
5502 before narrow-to-region.
5503
5504 2006-02-01 Richard M. Stallman <rms@gnu.org>
5505
5506 * simple.el (move-beginning-of-line): Scan properly for invis change.
5507
5508 * replace.el (multi-occur-in-matching-buffers): Fix prev change.
5509
5510 2006-02-01 Michael Albinus <michael.albinus@gmx.de>
5511
5512 * net/tramp.el (tramp-convert-file-attributes): Set file's gid
5513 change bit only when id-format is 'integer. Reported by Matt
5514 Hodges <M.P.Hodges@rl.ac.uk>.
5515
5516 2006-02-01 Juanma Barranquero <lekktu@gmail.com>
5517
5518 * hilit-chg.el (highlight-changes-initial-state)
5519 (highlight-changes-global-initial-state): Doc fixes.
5520 (highlight-changes-global-modes, global-highlight-changes):
5521 Fix typos in docstrings.
5522
5523 2006-02-01 Kim F. Storm <storm@cua.dk>
5524
5525 * emulation/cua-base.el (cua-mode): Mention that CUA enables
5526 transient-mark-mode in doc string.
5527
5528 2006-01-31 Richard M. Stallman <rms@gnu.org>
5529
5530 * replace.el (multi-occur): Doc fix.
5531 (multi-occur-in-matching-buffers): Rename from
5532 multi-occur-by-filename-regexp. Prefix arg says match
5533 buffer names instead of file names.
5534
5535 2006-01-31 Juanma Barranquero <lekktu@gmail.com>
5536
5537 * bs.el: Allow non-default values of `bs-header-lines-length'.
5538 (bs--running-in-xemacs): Remove (not needed anymore).
5539 (bs--set-window-height): Simplify by using `fit-window-to-buffer'
5540 instead of `shrink-window', thus avoiding having to compute the
5541 height of the window.
5542 (bs--up): Wrap around even when there's no header.
5543 (bs--down): Use `forward-line' instead of `next-line'.
5544
5545 2006-01-30 Chong Yidong <cyd@stupidchicken.com>
5546
5547 * image-mode.el (image-toggle-display): Use file name if possible,
5548 instead of unnecessarily allocating a (possibly huge) lisp string.
5549
5550 2006-01-30 John Paul Wallington <jpw@pobox.com>
5551
5552 * subr.el (toplevel): Define `cl-assertion-failed' condition here
5553 because the `assert' macro signals it at runtime.
5554
5555 * emacs-lisp/cl.el (toplevel): Remove definition of
5556 `cl-assertion-failed' condition.
5557
5558 2006-01-30 Nick Roberts <nickrob@snap.net.nz>
5559
5560 * thumbs.el (thumbs-marked-list): Make buffer-local and
5561 permanent-local.
5562 (thumbs-insert-thumb): Make help-echo non-sticky.
5563 (thumbs-file-alist): Use eolp as check for (non)-image.
5564
5565 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
5566
5567 * ediff-mult.el (ediff-meta-buffer-keymap-setup-hook)
5568 (ediff-before-session-group-setup-hooks)
5569 (ediff-default-filtering-regexp, ediff-meta-mark-equal-files):
5570 Fix typos in docstrings.
5571
5572 * window.el (bw-dir, bw-eqdir, balance-windows)
5573 (split-window-keep-point): Fix typos in docstrings.
5574
5575 * textmodes/org.el (org-allow-space-in-links, org-closed-string)
5576 (org-quote-string, org-calendar-to-agenda-key)
5577 (org-agenda-sorting-strategy, org-agenda-use-time-grid)
5578 (org-show-following-heading, org-tags-column)
5579 (org-use-tag-inheritance, org, org-allow-space-in-links)
5580 (org-usenet-links-prefer-google, org-file-apps-defaults-gnu)
5581 (org-enable-table-editor, org-calc-default-modes)
5582 (org-table-allow-automatic-line-recalculation)
5583 (org-export-html-style, org-export-with-fixed-width)
5584 (org-export-with-sub-superscripts, org-special-keyword)
5585 (org-formula, org-time-grid, org-table-may-need-update)
5586 (org-mode, org-goto-ret, org-goto-left, org-goto-right)
5587 (org-goto-quit, org-get-indentation, org-end-of-item)
5588 (org-move-item-down, org-move-item-up)
5589 (org-renumber-ordered-list, org-todo, org-log-done, org-occur)
5590 (org-remove-occur-highlights, org-read-date, org-goto-calendar)
5591 (org-agenda, org-agenda-day-view, org-agenda-previous-date-line)
5592 (org-agenda-log-mode, org-agenda-toggle-diary)
5593 (org-agenda-toggle-time-grid, org-agenda-cleanup-fancy-diary)
5594 (org-agenda-file-to-end, org-agenda-no-heading-message)
5595 (org-agenda-get-closed, org-format-agenda-item)
5596 (org-cmp-priority, org-cmp-category, org-cmp-time)
5597 (org-agenda-change-all-lines, org-agenda-diary-entry)
5598 (org-scan-tags, org-after-todo-state-change-hook, org-tags-view)
5599 (org-link-search, org-camel-to-words, org-open-file)
5600 (org-remember-handler, org-table-convert-region)
5601 (org-table-move-row-down, org-table-move-row-up)
5602 (org-table-copy-region, org-table-wrap-region)
5603 (org-table-toggle-vline-visibility)
5604 (org-table-get-vertical-vector, org-table-modify-formulas)
5605 (org-table-get-specials, org-recalc-commands)
5606 (org-table-rotate-recalc-marks, org-table-eval-formula)
5607 (orgtbl-make-binding, org-in-invisibility-spec-p, org-cycle)
5608 (org-level-color-stars-only, org-insert-heading):
5609 Fix typos in docstrings.
5610 (last-arg): Add defvar.
5611
5612 * makefile.w32-in (WINS): Add erc.
5613 (MH_E_SRC): Update (copied from lisp/Makefile.in).
5614
5615 2006-01-29 Bill Wohler <wohler@newt.com>
5616
5617 * Makefile.in (MH_E_SRC): Add mh-compat.el, mh-folder.el,
5618 mh-letter.el, mh-limit.el, mh-scan.el, mh-show.el, mh-thread.el,
5619 mh-tool-bar.el, mh-xface.el. Remove mh-customize.el, mh-init.el.
5620 (mh-autoloads): Don't use comments on otherwise empty lines.
5621
5622 2006-01-29 Edward O'Connor <ted@oconnor.cx>
5623
5624 * emulation/viper.el (viper-major-mode-modifier-list): Add
5625 insert-state and vi-state entries for erc-mode.
5626 (viper-go-away, viper-set-hooks): Add and remove
5627 viper-comint-mode-hook from erc-mode-hook as appropriate.
5628
5629 * emulation/viper.el (viper-insert-state-mode-list): Add erc-mode.
5630
5631 2006-01-29 Juanma Barranquero <lekktu@gmail.com>
5632
5633 * bs.el (bs--format-aux): Implement `middle' alignment as
5634 described in the docstring for `bs-attributes-list'.
5635 (bs--get-name): Simplify. Don't pad the buffer name.
5636
5637 2006-01-27 Agustin Martin <agustin.martin@hispalinux.es>
5638
5639 * textmodes/ispell.el (ispell-find-aspell-dictionaries): If no
5640 English aspell dictionary is installed, use the first entry of
5641 ispell-dictionary-alist-1.
5642
5643 2006-01-27 Kevin Rodgers <ihs_4664@yahoo.com>
5644
5645 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
5646 Doc fix.
5647
5648 2006-01-27 Michael Albinus <michael.albinus@gmx.de>
5649
5650 * net/tramp-vc.el (vc-user-login-name): Wrap defadvice with a test
5651 for `process-file', in order to let it work for older Emacsen too.
5652
5653 2006-01-27 Eli Zaretskii <eliz@gnu.org>
5654
5655 * international/latexenc.el: Add a suitable `coding:' tag.
5656 (latexenc-find-file-coding-system): Undo last change.
5657
5658 2006-01-27 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
5659
5660 * international/latexenc.el (latexenc-find-file-coding-system):
5661 Make sure latexenc-main-file is a regular file and is readable.
5662
5663 2006-01-27 Andre Spiegel <spiegel@gnu.org>
5664
5665 * vc-rcs.el (vc-rcs-fetch-master-state, vc-rcs-consult-headers):
5666 Pass FILE to vc-user-login-name.
5667
5668 * vc-sccs.el (vc-sccs-state): Pass FILE to vc-user-login-name.
5669
5670 2006-01-27 Nick Roberts <nickrob@snap.net.nz>
5671
5672 * thumbs.el (thumbs-do-thumbs-insertion): Suppress message when
5673 there are no more images to display.
5674 (thumbs-mark, thumbs-unmark): Revert change so that they move to
5675 the next image.
5676
5677 2006-01-26 Richard M. Stallman <rms@gnu.org>
5678
5679 * cus-edit.el (custom-mode): Doc: Use advertised-widget-backward.
5680
5681 * wid-edit.el (advertised-widget-backward): New alias.
5682 (widget-keymap): Use advertised-widget-backward for S-TAB.
5683
5684 * tumme.el: Correct the keywords.
5685 (tumme-dir-max-size): Use defvar.
5686 (tumme-setup-dired-keybindings, tumme-dired): Add autoload cookie.
5687
5688 * simple.el (move-beginning-of-line): Take account of fields.
5689 (clone-indirect-buffer-other-window): Take args like
5690 clone-indirect-buffer, and work like it.
5691
5692 * help-fns.el (describe-function): Don't pass `nil' as default.
5693
5694 * files.el (risky-local-variable-p): Follow var aliases.
5695
5696 * subr.el (lazy-completion-table): Doc fix.
5697
5698 * mail/rmailsum.el (rmail-make-summary-line-1): Don't set
5699 global binding of `line'.
5700
5701 2006-01-25 Andre Spiegel <spiegel@gnu.org>
5702
5703 * vc-hooks.el (vc-user-login-name): Rewritten to handle access via
5704 Tramp.
5705
5706 * vc.el (vc-default-dired-state-info): Pass FILE to
5707 vc-user-login-name.
5708 (vc-default-update-changelog): Don't use vc-user-login-name, we
5709 don't need it here.
5710
5711 * net/tramp-vc.el (vc-user-login-name): Comment out defadvice, it is
5712 no longer necessary.
5713
5714 2006-01-25 Kenichi Handa <handa@m17n.org>
5715
5716 * international/mule.el (decode-char): Avoid the overhead of
5717 calling utf-lookup-subst-table-for-decode if
5718 utf-translate-cjk-mode is nil.
5719 (encode-char): Avoid the overhead of calling
5720 utf-lookup-subst-table-for-encode if utf-translate-cjk-mode is
5721 nil.
5722
5723 2006-01-22 Kenichi Handa <handa@m17n.org>
5724
5725 * international/mule.el (make-subsidiary-coding-system): Reset
5726 `coding-system-define-form' property of subsidiaries to nil.
5727 Avoid duplicated entry in coding-system-alist.
5728 (make-coding-system): Avoid duplicated entry in
5729 coding-system-alist.
5730 (define-coding-system-alias): Likewise.
5731
5732 2006-01-24 Luc Teirlinck <teirllm@auburn.edu>
5733
5734 * completion.el: Minor fixes in introductory comment.
5735 (completion-def-wrapper): Fix alist.
5736
5737 2006-01-25 Nick Roberts <nickrob@snap.net.nz>
5738
5739 * thumbs.el (thumbs-new-image-size): New function.
5740 (thumbs-increment-image-size-element)
5741 (thumbs-decrement-image-size-element, thumbs-increment-image-size)
5742 (thumbs-decrement-image-size): Delete.
5743 (thumbs-resize-image-1): Rename from thumbs-resize-image. Keep old
5744 temp files and use to resize.
5745 (thumbs-resize-image): Rename from thumbs-resize-image-interactive.
5746 Use increment argument to enlarge/shrink. Preserve point.
5747 (thumbs-shrink-image): Rename from thumbs-resize-image-size-down.
5748 (thumbs-enlarge-image): Rename from thumbs-resize-image-size-up
5749 (thumbs-show-thumbs-list): Set thumbs-buffer to current-buffer.
5750 (thumbs-mark, thumbs-unmark): Preserve point.
5751 (thumbs-modify-image): Keep old temp files and use to modify.
5752 Cleanup old temp files at load time. Preserve point.
5753 (thumbs-view-image-mode-map): Use new command names.
5754
5755 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
5756
5757 * log-view.el (log-view-minor-wrap): First rev is the one at point.
5758
5759 * calendar/cal-menu.el: Avoid macros from calendar.el so as to break
5760 the nastiest part of the cyclic dependency.
5761 (cal-menu-update): Use dotimes and calendar-increment-month.
5762
5763 * calendar/calendar.el: Remove unnecessary leading stars in docstrings.
5764 (calendar-week-start-day): Add an :initializer.
5765 (calendar-mode-map): Use suppress-keymap, and command remapping.
5766 (describe-calendar-mode): Setup xref-stack info for the back button.
5767 (calendar-star-date): Insert before delete.
5768 (calendar-set-mode-line): Add file-modified info if applicable.
5769 (calendar-increment-month): New function.
5770
5771 2006-01-24 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
5772
5773 * font-lock.el (lisp-font-lock-keywords-2):
5774 Recognize "& keywords" only at word boundaries.
5775
5776 2006-01-24 Nick Roberts <nickrob@snap.net.nz>
5777
5778 * thumbs.el (thumbs-extra-images): New variable. Make it buffer-local
5779 and permanent-local.
5780 (thumbs-max-image-number): New variable.
5781 (thumbs-do-thumbs-insertion): Use them.
5782 (thumbs-per-line): Change default to 4.
5783 (thumbs-marked-list): Rename from thumbs-markedL.
5784 (thumbs-cleanup-thumbsdir, thumbs-delete-images)
5785 (thumbs-rename-images): Use -list instead of L for internal variables.
5786 (thumbs-call-convert): Use call-process instead of shell-command.
5787 (thumbs-insert-thumb): Add filename as help-echo to each image.
5788 (thumbs-show-from-dir): Rename from thumbs-show-all-from-dir.
5789 Give dir to thumbs-show-thumbs-list.
5790 (thumbs-show-thumbs-list): Set default-directory to that of images.
5791 (thumbs-dired-show): Rename from thumbs-dired-show-all.
5792 (thumbs-display-thumbs-buffer, thumbs-show-more-images): New functions.
5793 (thumbs-mode-map): Bind "+" to thumbs-show-more-images.
5794 (thumbs-view-image-mode-map): Bind "^" to thumbs-display-thumbs-buffer.
5795
5796 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
5797
5798 * ses.el (ses-read-cell): Provide a default value.
5799
5800 2006-01-23 Juanma Barranquero <lekktu@gmail.com>
5801
5802 * term/w32-win.el (image-library-alist): Add additional names for
5803 GIF library.
5804
5805 2006-01-23 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
5806
5807 * international/latexenc.el (latexenc-find-file-coding-system):
5808 Add file-regular-p check.
5809
5810 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
5811
5812 * simple.el (clone-buffer): Don't show the new buffer in the same
5813 window.
5814
5815 2006-01-23 Juri Linkov <juri@jurta.org>
5816
5817 * faces.el (link, link-visited): New faces based on default values
5818 of `info-xref' and `info-xref-visited'.
5819
5820 * info.el (info-xref): Inherit from `link'.
5821 (info-xref-visited): Inherit from `link-visited'.
5822
5823 * cus-edit.el (custom-buffer-create-internal): Use widget type
5824 `custom-manual' instead of `info-link' and don't set properties
5825 `button-face' and `mouse-face' explicitly.
5826 (custom-browse-group-tag, custom-browse-variable-tag)
5827 (custom-browse-face-tag): Inherit from widget class
5828 `custom-group-link' instead of `push-button'.
5829 (custom-button-unraised): Inherit from `underline' face.
5830 (custom-link): Inherit from `link' face. Fix doc and group.
5831 (custom-add-parent-links, custom-group-value-create): Don't set
5832 properties `button-face' and `mouse-face' explicitly for
5833 `custom-group-link' widget.
5834 (custom-group-link): Add properties `button-face' and `mouse-face'
5835 to widget definition.
5836 (custom-field-keymap): New variable. Put `custom-field-keymap' to
5837 editable-field's :keymap property.
5838 (custom-mode): Fix docstring: substitute keybindings for
5839 `widget-forward' and `widget-backward' from `widget-keymap',
5840 `widget-complete' from `custom-field-keymap', replace old
5841 `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
5842
5843 * desktop.el (desktop-load-file): Check for `fboundp' before
5844 calling `symbol-function'.
5845
5846 * simple.el (clone-buffer, clone-indirect-buffer)
5847 (clone-indirect-buffer-other-window): Use `read-buffer' instead of
5848 `read-string'. Fix prompts.
5849
5850 * play/doctor.el (doctor-mode-map): Rename from `doc-mode-map'.
5851
5852 2006-01-23 Nick Roberts <nickrob@snap.net.nz>
5853
5854 * thumbs.el (thumbs-file-alist): Avoid creating duplicate entries.
5855
5856 2006-01-22 Luc Teirlinck <teirllm@auburn.edu>
5857
5858 * startup.el (inhibit-splash-screen, initial-scratch-message):
5859 Doc fixes.
5860
5861 2006-01-22 Michael Albinus <michael.albinus@gmx.de>
5862
5863 Sync with Tramp 2.0.52.
5864
5865 * net/tramp.el, net/tramp-ftp.el, net/tramp-util.el,
5866 net/tramp-vc.el: Add code for unloading Tramp. See comment before
5867 `tramp-unload-tramp' for checklist.
5868
5869 * net/tramp.el: Require `timer-funcs' instead of `timer' if in
5870 XEmacs. Contributed by Steve Youngs <steve@sxemacs.org>.
5871 (tramp-unload-file-name-handler-alist)
5872 (tramp-unload-tramp): New defuns.
5873 (tramp-advice-PC-expand-many-files): New defadvice.
5874 (tramp-save-PC-expand-many-files, tramp-setup-complete) Defuns
5875 removed.
5876 (tramp-handle-expand-file-name): Remove double slash.
5877 (tramp-handle-file-attributes-with-ls): Return t as 9th attribute.
5878 It doesn't matter, because it will be converted later on.
5879 (tramp-handle-file-ownership-preserved-p): Rewritten. The old
5880 implementation was just heuristic.
5881 (tramp-post-connection): Set uid and gid properties.
5882 (tramp-convert-file-attributes): Set file's gid change bit.
5883 (tramp-get-remote-uid, tramp-get-remote-gid): New defuns.
5884 (tramp-handle-expand-file-name): Use "~root" for tilde expansion
5885 in case of su(do)? methods. The home directory of the local user
5886 will be taken else.
5887 (tramp-open-connection-telnet)
5888 (tramp-open-connection-rsh, tramp-open-connection-su)
5889 (tramp-open-connection-multi): Set PS1 to "$ ". Otherwise, a
5890 local shell prompt could hurt. Reported by Romain Francoise
5891 <romain@orebokech.com>.
5892 (tramp-let-maybe): Add `edebug-form-spec' property.
5893 (tramp-handle-expand-file-name): Bind `default-directory' locally
5894 to "/" in order to avoid problems with UNC shares or Cygwin
5895 mounts.
5896 (tramp-md5-function): Fix typo in error message.
5897
5898 * net/tramp-ftp.el (tramp-ftp-enable-ange-ftp): New defun.
5899
5900 * net/tramp-util.el (top): Apply `ignore' instead of `identity'
5901 for byte-compiler pacification.
5902
5903 2006-01-22 Andre Spiegel <spiegel@gnu.org>
5904
5905 * vc-rcs.el (vc-rcs-state-heuristic): Use file-attributes with
5906 ID-FORMAT `string'. This allows us to get rid of
5907 `vc-user-login-name UID'.
5908
5909 * vc-sccs.el (vc-sccs-state-heuristic): Likewise.
5910
5911 2006-01-22 John Paul Wallington <jpw@pobox.com>
5912
5913 * hl-line.el (hl-line-highlight, hl-line-move): Doc fixes.
5914
5915 2006-01-21 Martin Rudalics <rudalics@gmx.at>
5916
5917 * emacs-lisp/find-func.el (find-definition-noselect)
5918 (find-variable-noselect): Search variables in C source code too.
5919 (find-function-C-source, find-function-noselect, find-function)
5920 (find-function-other-frame, find-variable-noselect, find-variable)
5921 (find-variable-other-frame, find-variable-at-point):
5922 Fix docstrings.
5923
5924 2006-01-21 Francesco Potorti` <pot@gnu.org>
5925
5926 * mail/rmailout.el (rmail-output): Don't use content-type if it is nil.
5927
5928 2006-01-21 Agustin Martin <agustin.martin@hispalinux.es>
5929
5930 * textmodes/flyspell.el (flyspell-emacs-popup, flypell-xemacs-popup):
5931 Default to disabling the "Save affix" question.
5932
5933 2006-01-21 Marien Zwart <marienz@gentoo.org> (tiny change)
5934
5935 * progmodes/python.el (python-mode) <eldoc-mode-hook>: Pass nil as
5936 the first arg to run-python.
5937
5938 2006-01-21 Eli Zaretskii <eliz@gnu.org>
5939
5940 * startup.el (command-line-1): Handle --no-desktop if desktop.el
5941 is not loaded.
5942
5943 2006-01-20 Jay Belanger <belanger@truman.edu>
5944
5945 * calc/calcalg2.el (calc-sum-rec): Fix the sum when the lower
5946 limit is 0.
5947
5948 * calc/calc-arith.el (math-add-symb-fancy): Check the length of
5949 the correct variable.
5950
5951 2006-01-20 Carsten Dominik <dominik@science.uva.nl>
5952
5953 * textmodes/org.el (org-open-at-point): Fixed bug with matching a
5954 link. Fixed buggy argument sequence in call to `org-view-tags'.
5955 (org-compile-prefix-format): Set `org-prefix-has-tag'.
5956 (org-prefix-has-tag): New variable.
5957 (org-format-agenda-item): Remove tags from headline if
5958 appropriate.
5959 (org-agenda-remove-tags-when-in-prefix): New option.
5960 (org-get-tags-at): New function.
5961
5962 2006-01-20 Nick Roberts <nickrob@snap.net.nz>
5963
5964 * thumbs.el (thumbs-buffer): New variable. Make it buffer local.
5965 (thumbs-find-image): Move image name and number from buffer name
5966 to mode name. Set thumbs-buffer. Preserve point so that large
5967 images remain visible.
5968 (thumbs-file-alist): Construct list in thumbs-buffer and reverse
5969 order.
5970 (thumbs-show-image-num): Get image from thumbs-file-alist. Set
5971 mode name.
5972 (thumbs-next-image, thumbs-previous-image): Make them work.
5973
5974 2006-01-19 Luc Teirlinck <teirllm@auburn.edu>
5975
5976 * cus-edit.el (custom-buffer-create-internal): State in the text above
5977 the whole buffer buttons that they do not operate on hidden items.
5978 (custom-face-menu): Use `custom-face-save' instead of
5979 `custom-face-save-command'.
5980 (custom-face-save-command): Make it an alias for `custom-face-save'
5981 and declare it obsolete.
5982 (custom-face-save): Doc fix.
5983
5984 * dired.el (dired-no-confirm): Add quote.
5985 (dired-subdir-alist-pre-R): Add quote in
5986 `make-variable-buffer-local' form and remove unbalanced parenthesis.
5987
5988 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
5989
5990 * textmodes/table.el (table-mode-indicator): Typo in last change.
5991
5992 2006-01-19 Richard M. Stallman <rms@gnu.org>
5993
5994 * outline.el (hide-leaves): Don't call outline-end-of-heading.
5995 Fixes bug reported in Nov 2005.
5996
5997 * isearch.el (isearch-forward): Doc fix.
5998
5999 * dired.el (dired-move-to-filename-regexp): Define as alias.
6000 (dired-no-confirm): Use defcustom.
6001 (dired-subdir-alist-pre-R): Put defvar at top level.
6002
6003 * battery.el (battery-linux-proc-acpi): Handle "last full capacity".
6004
6005 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
6006 Mark as risky.
6007
6008 * simple.el (set-mark-command): Doc fix.
6009 (clone-indirect-buffer-other-window):
6010 Read arg like clone-indirect-buffer.
6011 (move-beginning-of-line): Skip invisible newlines.
6012
6013 2006-01-19 Masatake YAMATO <jet@gyve.org>
6014
6015 * progmodes/cpp.el (cpp-edit-load): Make the order of
6016 listed conditions in a base C code buffer and its associate
6017 CPP Edit buffer the same.
6018
6019 2006-01-19 Kenichi Handa <handa@m17n.org>
6020
6021 * mail/rmail.el (rmail-enable-mime): Docstring fixed.
6022 (rmail-mime-feature): Likewise.
6023 (rmail-require-mime-maybe): Use display-warning to show a warning
6024 message.
6025
6026 * international/mule.el (auto-coding-regexp-alist-lookup): New fun.
6027 (find-auto-coding): Use auto-coding-regexp-alist-lookup.
6028
6029 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
6030
6031 * array.el: Move defvars out of eval-when-compile.
6032 (array-make-template): Replace undeclared global var with a local one.
6033 (array-mode): Inline initialization functions.
6034 (array-init-local-variables, array-init-max-row)
6035 (array-init-max-column, array-init-columns-per-line)
6036 (array-init-field-width, array-init-rows-numbered)
6037 (array-init-line-length, array-init-lines-per-row): Remove.
6038
6039 * play/doctor.el: Move defvars out of eval-when-compile. Use dolist.
6040 (doc-mode-map): Define explicitly.
6041 (doctor-txtype): Use mapc.
6042
6043 * textmodes/table.el: Move defvars out of eval-when-compile.
6044 Remove harmful code meant to avoid byte-compiler warnings.
6045 (table-fixed-mode-indicator): Remove. Use a more complex mode-line
6046 specification that checks table-fixed-width-mode directly.
6047 (table-recognize-region, table-recognize-cell):
6048 Use restore-buffer-modified-p.
6049 (table-fixed-width-mode): Remove code that refreshes
6050 table-fixed-mode-indicator.
6051 (*table--cell-describe-bindings, *table--cell-describe-mode):
6052 Avoid obsolete name print-help-return-message.
6053 (table--test-cell-list): Don't use replace-regexp from elisp.
6054 (table--point-entered-cell-function, table--point-left-cell-function):
6055 Don't set table-fixed-mode-indicator, use force-mode-line-update.
6056
6057 * textmodes/org.el: Move defvars out of eval-when-compile. Move code
6058 that was after the end of file. Use buffer-file-name variable.
6059 (org-timestamp-change): Use with-current-buffer.
6060 (org-todo-list): Don't unnecessarily define a new buffer-local var.
6061 (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg
6062 `file'.
6063
6064 * progmodes/fortran.el: Move defvars out of eval-when-compile.
6065 (fortran-break-line): Remove unused var `opoint'.
6066 (fortran-abbrev-start): Obey help-event-list.
6067
6068 2006-01-18 Jesper Harder <harder@phys.au.dk>
6069
6070 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
6071
6072 2006-01-18 Masatake YAMATO <jet@gyve.org>
6073
6074 * progmodes/make-mode.el (makefile-imake-mode): New mode
6075 derived from makefile-mode.
6076 (makefile-imake-mode-syntax-table): New syntax table
6077 derived from makefile-mode-syntax-table.
6078 (makefile-mode): Write about makefile-imake-mode in doc string.
6079 (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
6080 (makefile-imake-font-lock-keywords): New font lock keywords.
6081
6082 * files.el (auto-mode-alist): Add Imakefile.
6083
6084 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es>
6085
6086 * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
6087 loading the file rather than when turning on flyspell-mode.
6088
6089 2006-01-16 Luc Teirlinck <teirllm@auburn.edu>
6090
6091 * cus-edit.el (customize-rogue): Minor doc fix.
6092
6093 2006-01-17 Juri Linkov <juri@jurta.org>
6094
6095 * dired-aux.el (dired-diff): Use dired-dwim-target-directory
6096 instead of the file at the mark as default if the file at the mark
6097 is the same as the file at point or if dired-dwim-target-directory
6098 is not the same as the current directory and the mark is not active.
6099
6100 * log-view.el (log-view-minor-wrap): Use the same logic to get
6101 revisions as `log-view-diff'.
6102
6103 * info.el (Info-revert-find-node): Check for Info-current-file
6104 before preserving new-history.
6105
6106 * man.el (Man-heading-regexp): Add `/'.
6107
6108 * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
6109 (html-mode): Set `sentence-end-base' instead of `sentence-end'.
6110
6111 2006-01-16 Juri Linkov <juri@jurta.org>
6112
6113 * faces.el (mode-line-faces): New defgroup.
6114 (mode-line-highlight): Move definition after new defgroup.
6115 (mode-line, mode-line-inactive, mode-line-highlight):
6116 Replace :group `modeline' with `mode-line-faces'.
6117 (mode-line-buffer-id): New face.
6118 (modeline-buffer-id): New face alias.
6119 (vertical-border): Remove :group `modeline'.
6120
6121 * bindings.el (propertized-buffer-identification): Use face
6122 `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
6123 (mode-line-next-buffer, mode-line-previous-buffer): New functions.
6124 (mode-line-buffer-identification-keymap): For mouse-1 replace
6125 `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
6126 Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
6127 mouse-3.
6128
6129 * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
6130 Buffer-menu-buffer. Doc fix.
6131 (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
6132 (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
6133 `Buffer-menu-buffer'.
6134
6135 * info.el (Info-mode-line-node-keymap): New defvar.
6136 (Info-set-mode-line): Use `stringp' to check Info-current-file.
6137 Propertize Info-current-node with `mode-line-buffer-id' and
6138 `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
6139
6140 * time.el (display-time-mail-face): Replace :group `faces' with
6141 `mode-line-faces'.
6142
6143 2006-01-16 Kenichi Handa <handa@m17n.org>
6144
6145 * international/code-pages.el: Add autoload cookies for cp125[0345678].
6146
6147 * language/european.el (cp1252): New alias for windows-1252.
6148
6149 * international/mule.el (autoload-coding-system): Prepare for EOL
6150 variants.
6151
6152 2006-01-15 Dan Nicolaescu <dann@ics.uci.edu>
6153
6154 * term.el (term-raw-map): Add mapping for insert.
6155 (term-send-insert): New.
6156 (term-mode): Make variables local here instead of doing it in
6157 `term-emulate-terminal'.
6158 (term-emulate-terminal): Delete incorrect optimization for cr+lf.
6159 Scroll reverse needs to take into account the scroll region.
6160 Saving and restoring the cursor should save the color attributes too.
6161 (term-reset-terminal): Reset the scroll region.
6162 (term-handle-ansi-escape): Cursor up and down should take into
6163 account the scroll region.
6164 (term-set-scroll-region): Rename from `term-scroll-region'.
6165 Move to 0,0 after setting the region.
6166 (term-handle-scroll): Handle scroll up.
6167 (term-down): Fix off by one error.
6168 (term-delete-lines): Do not delete outside the scroll region.
6169 (term-insert-lines): Take into account the scroll region.
6170
6171 2006-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
6172
6173 * textmodes/ispell.el (ispell-internal-change-dictionary)
6174 (ispell-change-dictionary): Undo most of last change of 2006-01-13.
6175 (start, end): Move declaration outside of eval-when-compile.
6176
6177 * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
6178 (flyspell-mode-on): Use it.
6179
6180 * textmodes/ispell.el (ispell-kill-ispell): Run new hook
6181 ispell-kill-ispell-hook.
6182
6183 2006-01-14 Luc Teirlinck <teirllm@auburn.edu>
6184
6185 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
6186 (Custom-reset-saved): Do not ask for confirmation in single option
6187 buffers.
6188
6189 2006-01-13 Richard M. Stallman <rms@gnu.org>
6190
6191 * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
6192
6193 2006-01-13 Romain Francoise <romain@orebokech.com>
6194
6195 * add-log.el (add-change-log-entry, change-log-merge):
6196 Conditionally use `hard-newline'.
6197
6198 2006-01-13 Martin Rudalics <rudalics@gmx.at>
6199
6200 * wid-edit.el (widget-field-end): If the overlay is no longer
6201 associated with a buffer, behave as if the overlay didn't exist.
6202
6203 * cus-edit.el (custom-add-see-also, custom-add-parent-links):
6204 Make sure the links use the `custom-link' face.
6205
6206 2006-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
6207
6208 * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
6209 (ld-script-mode): Don't set indent-line-function since we don't
6210 have one.
6211
6212 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
6213
6214 * textmodes/org.el (org-open-file): Use mailcap for selecting an
6215 application.
6216 (org-file-apps-defaults-gnu): Use mailcap as the default for
6217 selecting an application on a UNIX system.
6218 (org-agenda-show-tags): New command.
6219 (org-table-insert-hline): Keep cursor in current table line.
6220 (org-table-convert): Offset effect of modifying
6221 `org-table-insert-hline'.
6222 (org-format-agenda-item): New optional argument TAG.
6223 (org-compile-prefix-format): Handle %T format for the tag.
6224 (org-expand-wide-chars): New function.
6225 (org-table-insert-row, org-table-insert-hline):
6226 Use `org-expand-wide-chars'.
6227 (org-open-file): Fix bug in program launch.
6228 (org-get-time-of-day): Fix bug with times before 1am.
6229 (org-agenda-menu): Add tags commands.
6230
6231 2006-01-13 Agustin Martin <agustin.martin@hispalinux.es>
6232
6233 * textmodes/ispell.el (ispell-init-process): Include the used
6234 dictionary in ispell process start message.
6235 (ispell-internal-change-dictionary): When flyspell-mode is active
6236 and dictionary is changed, make sure ispell process is restarted
6237 and flyspell word cache cleared out for the current buffer.
6238 (ispell-change-dictionary): Make sure flyspell word cache is
6239 cleared out in all buffers with active flyspell mode when
6240 dictionary is globally changed.
6241 Call ispell-internal-change-dictionary after dictionary change.
6242
6243 2006-01-13 Eli Zaretskii <eliz@gnu.org>
6244
6245 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
6246
6247 * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
6248 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
6249 years. Fix small differences wrt Makefile.in.
6250 (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
6251 Makefile.in does.
6252
6253 2006-01-12 Bill Wohler <wohler@newt.com>
6254
6255 * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
6256 mh-search.el.
6257
6258 2006-01-12 Masatake YAMATO <jet@gyve.org>
6259
6260 * progmodes/ld-script.el: Update copyright year.
6261
6262 2006-01-12 Chong Yidong <cyd@stupidchicken.com>
6263
6264 * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
6265 Don't add widget if setting undefined.
6266
6267 2006-01-12 John Paul Wallington <jpw@pobox.com>
6268
6269 * help-fns.el (describe-variable): Remove newlines from void
6270 variable output.
6271
6272 2006-01-13 Nick Roberts <nickrob@snap.net.nz>
6273
6274 * wdired.el (wdired-mode-map): Add help echo for
6275 wdired-abort-changes.
6276
6277 * man.el (Man-file-name-regexp): Adjust for a list of files.
6278
6279 2006-01-12 Masatake YAMATO <jet@gyve.org>
6280
6281 * progmodes/ld-script.el (auto-mode-alist): Support
6282 suffix conventions used in netbsd and eCos.
6283
6284 2006-01-11 Luc Teirlinck <teirllm@auburn.edu>
6285
6286 * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
6287 (custom-variable-menu, custom-face-menu, custom-group-menu)
6288 (Custom-mode-menu): Change names of menu items. (As discussed on
6289 emacs-devel.)
6290 (custom-face-menu): Add "Undo Edits" item.
6291
6292 * startup.el (init-file-user): defcustom -> defvar.
6293
6294 * tooltip.el (tooltip-mode): Doc fix.
6295
6296 2006-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
6297
6298 * reveal.el (reveal-post-command): window-buffer signals an error on
6299 dead windows rather than returning nil.
6300 (reveal-open-new-overlays): An overlay might die while we open others.
6301
6302 2006-01-11 Bill Wohler <wohler@newt.com>
6303
6304 * cus-dep.el (generated-custom-dependencies-file): Fix typo and
6305 phrasing in docstring.
6306
6307 * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
6308 can give some systems gas. Add new file mh-buffers.el.
6309
6310 2006-01-06 Masatake YAMATO <jet@gyve.org>
6311
6312 * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
6313 C preprocessor forward ported from GNU Emacs 21.2.
6314
6315 * progmodes/asm-mode.el (asm-font-lock-keywords):
6316 Use `cpp-font-lock-keywords'.
6317
6318 * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
6319
6320 * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
6321 of $ for "\\.ld[s]?".
6322
6323 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
6324
6325 * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
6326 (tcl-indent-line): Return `noindent' if inside a string.
6327
6328 * progmodes/flymake.el (flymake-split-string): Remove more than one
6329 empty string at beg/end of the result.
6330 (flymake-find-buildfile, flymake-find-possible-master-files):
6331 Use expand-file-name.
6332 (flymake-fix-file-name): Don't replace \ with / and don't remove ./
6333 since expand-file-name does it for us. Use directory-file-name.
6334 (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
6335 (flymake-ler-get-type, flymake-ler-get-text)
6336 (flymake-ler-make-ler): Remove. Replace by defstruct. Update callers.
6337 (flymake-current-line-no): Remove spurious interactive spec.
6338 (flymake-delete-temp-directory): Remove unused var `slash-pos'.
6339 (flymake-check-include): Remove arg inc-path merged into inc-name.
6340 (flymake-check-patch-master-file-buffer): Fit in 80 columns.
6341 Arg regexp-list replaced by a simple regexp.
6342 (flymake-master-make-header-init, flymake-master-tex-init):
6343 Correspondingly replace regexp-list with a regexp. Fix regexp.
6344
6345 2006-01-10 Simon Josefsson <jas@extundo.com>
6346
6347 * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
6348 describing AUTH PLAIN fix.
6349
6350 2006-01-10 Thien-Thi Nguyen <ttn@gnu.org>
6351
6352 * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
6353 (report-emacs-bug): Don't record initial prompt text.
6354 Instead, add text properties to prompting text.
6355 (report-emacs-bug-hook): Delete prompting text.
6356
6357 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
6358
6359 * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
6360 `dirs'. Adjust callers.
6361
6362 2006-01-09 John Paul Wallington <jpw@gnu.org>
6363
6364 * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
6365
6366 2006-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
6367
6368 * reveal.el (reveal-open-new-overlays): New extracted fun.
6369 (reveal-close-old-overlays): Idem. Check overlays's liveness before
6370 using them. Simplify the code.
6371 (reveal-post-command): Use them. Fix up obsolete windows in
6372 reveal-open-spots.
6373
6374 * progmodes/flymake.el: Use `require' rather than autoload for
6375 XEmacs's overlays.
6376 (flymake-get-common-file-prefix, flymake-build-relative-filename):
6377 Delete. Use file-relative-name instead.
6378 (flymake-get-syntax-check-program-args, flymake-perl-init):
6379 Simplify the resulting code.
6380
6381 * log-view.el (log-view-file-re, log-view-message-re): Add support
6382 for DaRCS output.
6383
6384 2006-01-09 Alex Schroeder <alex@gnu.org>
6385
6386 * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
6387 identifiers sometimes added in square brackets at the beginning of
6388 subject lines.
6389
6390 2006-01-07 Richard M. Stallman <rms@gnu.org>
6391
6392 * cus-edit.el (Custom-set, Custom-save): Doc fix.
6393 (Custom-reset-current, Custom-reset-saved): Change question text.
6394 (Custom-reset-standard): Likewise.
6395 (custom-variable-reset-saved): Doc fix.
6396
6397 2006-01-07 Eli Zaretskii <eliz@gnu.org>
6398
6399 * startup.el (init-file-user): Doc fix.
6400
6401 2006-01-07 Alex Schroeder <alex@gnu.org>
6402
6403 * mail/rmail.el (rmail-current-subject): New function.
6404 (rmail-current-subject-regexp): New function.
6405 (rmail-next-same-subject): Use it.
6406
6407 * mail/rmailsum.el (rmail-summary-by-topic):
6408 Use rmail-current-subject and rmail-current-subject-regexp.
6409 (rmail-summary-next-same-subject): Ditto.
6410
6411 * net/rcirc.el (rcirc-send-input): No longer check whether the
6412 process is open, since not all commands need an open process.
6413 (rcirc-send-string): Check whether the process is open before
6414 sending anything.
6415 (rcirc-ignore-list): New option.
6416 (rcirc-ignore-list-automatic): New variable.
6417 (rcirc-print): Take rcirc-ignore-list into account.
6418 (rcirc-cmd-ignore): New command.
6419 (rcirc-ignore-update-automatic): New function.
6420 (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
6421 list if ignored nicks.
6422 (rcirc-handler-NICK): Ditto, and also ignore the new nick.
6423
6424 2006-01-06 David Reitter <david.reitter@gmail.com>
6425
6426 * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
6427 reflect the address to which the report will be sent.
6428
6429 2006-01-06 Eli Zaretskii <eliz@gnu.org>
6430
6431 * progmodes/ld-script.el (auto-mode-alist): Recognize linker
6432 scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
6433
6434 2006-01-01 Michael Ernst <mernst@alum.mit.edu> (tiny changes)
6435
6436 * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
6437
6438 * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
6439 the doc string: "functoin" => "function".
6440 * ldefs-boot.el: Likewise.
6441
6442 * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
6443 message text: "Duplicat" => "Duplicate".
6444
6445 2006-01-06 Sven Joachim <svenjoac@gmx.de> (tiny change)
6446
6447 * files.el (basic-save-buffer-2): If backing-up failed, reset
6448 buffer-backed-up to nil.
6449
6450 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
6451
6452 * progmodes/gud.el (gdb-script-skip-to-head)
6453 (gdb-script-calculate-indentation): Indent for breakpoint command
6454 lists also.
6455
6456 2006-01-05 Bill Wohler <wohler@newt.com>
6457
6458 * Makefile.in (compile-always): Add mh-autoloads dependency.
6459 (bootstrap): Remove mh-autoloads dependency, as compile dependency
6460 provides it.
6461 (updates): Remove mh-autoloads dependency, since it probably has
6462 already run recently (via recompile).
6463
6464 2006-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
6465
6466 * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
6467 argument `force' to disable the flyspell-last-buffer optimization.
6468 (flyspell-mode-on): Use it.
6469
6470 * progmodes/flymake.el (flymake-get-cleanup-function): Default to
6471 flymake-simple-cleanup.
6472 (flymake-allowed-file-name-masks): Use this new default.
6473 All the functions are now called in the right buffer rather than
6474 passing the buffer as argument.
6475 (flymake-process-sentinel): Switch to buffer before calling cleanup.
6476 (flymake-parse-err-lines): Remove redundant buffer arg.
6477 (flymake-get-program-dir): Comment out unused function.
6478 (flymake-start-syntax-check, flymake-start-syntax-check-process):
6479 Remove redundant buffer argument.
6480 (flymake-get-real-file-name, flymake-simple-java-cleanup)
6481 (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
6482
6483 2006-01-05 Richard M. Stallman <rms@gnu.org>
6484
6485 * info.el (Info-find-node): Don't record previous node if have none.
6486 (info): Go to directory only if history is empty.
6487
6488 * simple.el (mark): Doc fix.
6489
6490 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6491
6492 * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
6493 already of desired type.
6494 (mac-ae-list): Coerce parameter to "list" type.
6495 (mac-dispatch-apple-event): Replace cadr part of event with a
6496 dummy position so that event-start returns it.
6497
6498 2006-01-05 Carsten Dominik <dominik@science.uva.nl>
6499
6500 * textmodes/org.el (org-end-of-subtree): New function.
6501 (org-cycle, org-subtree-end-visible-p, org-scan-tags):
6502 Use `org-end-of-subtree'.
6503 (org-agenda, org-agenda-convert-date): Protect calls to
6504 `fit-window-to-buffer'.
6505 (org-tags-view): Force matching of sublevels when doing a
6506 todo-only search. Define the correct redo command, including the
6507 arguments.
6508 (org-agenda-redo): Display message.
6509 (org-check-for-org-mode): New function.
6510 (org-agenda-type): New variable.
6511 (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
6512 Set `org-agenda-type'.
6513 (org-agenda-check-type): New function.
6514 (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
6515 (org-agenda-week-view, org-agenda-day-view)
6516 (org-agenda-next-date-line, org-agenda-previous-date-line)
6517 (org-agenda-log-mode, org-agenda-toggle-diary)
6518 (org-agenda-toggle-time-grid, org-agenda-date-later)
6519 (org-agenda-date-prompt, org-agenda-diary-entry)
6520 (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
6521 (org-agenda-convert-date, org-agenda-menu):
6522 Use `org-agenda-check-type'.
6523 (org-make-overlay, org-delete-overlay)
6524 (org-detatch-overlay, org-move-overlay, org-overlay-put):
6525 New compatibility functions.
6526 (org-calendar-select-mouse): New command.
6527
6528 2006-01-04 Chong Yidong <cyd@stupidchicken.com>
6529
6530 * cus-edit.el (Custom-reset-current, Custom-reset-saved)
6531 (Custom-reset-standard): Fix y-or-n-p messages.
6532 (custom-link): New face for links.
6533 (custom-buffer-create-internal, custom-manual): Use it.
6534 (custom-face-save): Push to theme-face before setting face spec.
6535
6536 * wid-edit.el (widget-default-mouse-face-get): New function.
6537 (widget-specify-button): Handle mouse-face like button-face.
6538
6539 * custom.el (load-theme): Clear old theme settings if reloading.
6540
6541 2006-01-03 Luc Teirlinck <teirllm@auburn.edu>
6542
6543 * cus-edit.el (custom-buffer-create-internal): Move whole buffer
6544 "Erase Customization" button back to same position it occupies in
6545 the individual State menus.
6546
6547 2006-01-04 Kim F. Storm <storm@cua.dk>
6548
6549 * wid-edit.el (key-sequence): Rework widget to read key binding
6550 using `kbd' syntax. Use C-q to insert literal key, event, or code.
6551 (widget-key-sequence-default-value): Default value for empty sequence.
6552 (widget-key-sequence-map): New map for reading key binding. Bind C-q.
6553 (widget-key-sequence-read-event): New command for C-q.
6554 (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
6555 (widget-key-sequence-value-to-external): New functions.
6556
6557 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
6558
6559 * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
6560 Use expand-file-name.
6561 (flymake-delete-temp-directory): Use expand-file-name,
6562 file-name-directory, and directory-file-name.
6563 (flymake-strrchr): Delete.
6564 (flymake-start-syntax-check): Don't pass the redundant buffer argument
6565 to the init-f function.
6566 (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
6567 (flymake-init-find-buildfile-dir)
6568 (flymake-init-create-temp-source-and-master-buffer-copy)
6569 (flymake-simple-make-init-impl, flymake-simple-make-init)
6570 (flymake-master-make-init, flymake-master-make-header-init)
6571 (flymake-simple-make-java-init, flymake-simple-ant-java-init)
6572 (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
6573 (flymake-xml-init): Remove corresponding redundant buffer argument.
6574 (flymake-allowed-file-name-masks): Remove last elems that are equal to
6575 the default anyway. Clean up regexps.
6576
6577 * progmodes/flymake.el (flymake-temp-source-file-name)
6578 (flymake-master-file-name, flymake-temp-master-file-name)
6579 (flymake-base-dir): New buffer-local vars.
6580 (flymake-buffer-data, flymake-get-buffer-value)
6581 (flymake-set-buffer-value): Replace those hash-tables by the new
6582 buffer-local vars. Update callers.
6583
6584 * progmodes/flymake.el (flymake-check-start-time)
6585 (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
6586 (flymake-last-change-time, flymake-new-err-info, flymake-timer):
6587 Move definition, so we can remove redundant earlier declaration.
6588 (flymake-replace-regexp-in-string, flymake-split-string)
6589 (flymake-get-temp-dir): Use defalias.
6590 (flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
6591 (flymake-xemacs-window-edges): Remove unused function.
6592 (flymake-get-point-pixel-pos): Move.
6593 (flymake-pid-to-names, flymake-reg-names)
6594 (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
6595 Replace by a simple list flymake-processes and by process-buffer.
6596 Update callers. Other than simplify the code, it uses buffers rather
6597 than buffer-names so it doesn't get confused by uniquify.
6598 (flymake-buffer-data): The global value should just be nil.
6599
6600 * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
6601 Optimize the body of a defalias like any other code.
6602
6603 * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
6604 Make sure we've setup font-lock's vars. It may influence which
6605 function we then call.
6606 (font-lock-default-fontify-buffer): Don't bother calling set-defaults
6607 here since it's too late anyway.
6608
6609 2006-01-03 Romain Francoise <romain@orebokech.com>
6610
6611 * startup.el (fancy-splash-tail, normal-splash-screen):
6612 Update copyright year.
6613
6614 2006-01-02 J.D. Smith <jdsmith@as.arizona.edu>
6615
6616 * mouse.el (mouse-drag-track): Rename, from
6617 `mouse-drag-region-1'. Includes optional argument required to
6618 enable post-drag event processing (e.g. delete region keys).
6619 Can be used without this argument to track a mouse region and operate
6620 on it as soon as the drag completes.
6621 (mouse-drag-region): Use `mouse-drag-track'.
6622
6623 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
6624
6625 * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
6626 Move to `custom-buffer' group.
6627
6628 * cus-theme.el: Rewrite the Custom New Theme Mode interface.
6629 (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
6630 (custom-theme-insert-face-marker, custom-theme-variable-menu)
6631 (custom-theme-face-menu): New variables.
6632 (custom-theme-add-variable, custom-theme-variable-action)
6633 (custom-variable-reset-theme, custom-theme-delete-variable)
6634 (custom-face-reset-theme, custom-theme-face-action)
6635 (custom-theme-delete-face, custom-theme-merge-theme)
6636 (custom-theme-add-face, custom-theme-visit-theme): New functions.
6637
6638 2006-01-01 Chong Yidong <cyd@stupidchicken.com>
6639
6640 * custom.el: Move Custom Themes commentary to start of theme code.
6641 (custom-known-themes): Rename `standard' theme to `changed'.
6642 (custom-push-theme): Caller no longer specifies what theme to use
6643 when doing `reset'---the setting is simply removed from the theme.
6644 Delete MODE from `theme-value' and `theme-settings' properties.
6645 (custom-declare-theme): Ignore &rest args since we don't use them.
6646
6647 (custom-loaded-themes): Delete variable.
6648 (custom-theme-load-themes, custom-theme-loaded-p)
6649 (custom-theme-value): Delete functions.
6650
6651 (custom-declare-theme): Signal error on invalid theme names.
6652 (provide-theme): custom-loaded-themes was deleted.
6653 (load-theme): Load the file unconditionally.
6654 (enable-theme): Call `load-theme' if theme is undefined.
6655 (custom-enabled-themes): Only update value for successful loads.
6656 (disable-theme): Complete from enabled themes when interactive.
6657 (custom-variable-theme-value): Calculate theme value directly.
6658
6659 (custom-theme-reset-variables, custom-reset-variables): Mark as
6660 XEmacs compatibility functions. We don't actually use these.
6661
6662 * cus-edit.el (custom-variable-state-set):
6663 Use custom-variable-theme-value instead of custom-theme-value.
6664 (custom-face-state-set): Rename `standard' theme to `changed'.
6665 (custom-save-variables, custom-save-faces): Delete unneeded
6666 references to custom-reset-variables.
6667 (custom-save-resets): Delete function.
6668 (custom-save-variables, custom-save-faces): MODE argument deleted.
6669 (custom-save-variables, custom-save-faces): Ignore theme values.
6670
6671 * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
6672 compatibility function.
6673
6674 2006-01-01 Richard M. Stallman <rms@gnu.org>
6675
6676 * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
6677 (Custom-reset-current, Custom-reset-saved): Likewise.
6678 (Custom-reset-standard): Show message if aborted.
6679 (custom-mode): Doc fix, describing those commands.
6680
6681 * mouse.el (mouse-drag-region-1): When following link via mouse-2,
6682 put on event-kind property.
6683
6684 2005-12-31 Chong Yidong <cyd@stupidchicken.com>
6685
6686 * custom.el (provide-theme): Ban `user' theme name.
6687 (custom-enabling-themes): New variable.
6688 (enable-theme): Don't enable user if custom-enabling-themes is t.
6689 (custom-enabled-themes): Make it a defcustom.
6690 (custom-theme-recalc-face): No-op if face is undefined.
6691
6692 * cus-edit.el (custom-button-mouse): New variable.
6693 (custom-button-mouse): New face.
6694 (custom-raised-buttons, custom-mode): Use it.
6695
6696 * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
6697
6698 2005-12-31 Eli Zaretskii <eliz@gnu.org>
6699
6700 * progmodes/gud.el (gud-display-line): Support hl-line in the
6701 source buffer.
6702
6703 2005-12-31 Lennart Borgman <lennart.borgman.073@student.lu.se> (tiny change)
6704
6705 * mouse.el (mouse-drag-window-above): Verify that the found window
6706 overlaps with the given window in the horizontal dimension.
6707
6708 2005-12-31 Eli Zaretskii <eliz@gnu.org>
6709
6710 * Makefile.in (cvs-update): New target.
6711
6712 * makefile.w32-in (cvs-update): Ditto.
6713
6714 2005-12-30 Chong Yidong <cyd@stupidchicken.com>
6715
6716 * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
6717 (custom-new-theme-mode-map): New variable.
6718
6719 2005-12-30 Richard M. Stallman <rms@gnu.org>
6720
6721 * custom.el (custom-load-themes): Function deleted.
6722
6723 * cus-edit.el (custom-save-loaded-themes): Function deleted.
6724 (custom-save-variables): Don't delete or add custom-load-themes call.
6725
6726 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
6727
6728 * cus-start.el: Add `visible-cursor'.
6729
6730 * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
6731 (flymake-parse-output-and-residual): Remove `source-buffer' argument.
6732 (flymake-process-filter): Switch to buffer before calling it instead.
6733 (flymake-post-syntax-check, flymake-highlight-err-lines)
6734 (flymake-delete-own-overlays, flymake-parse-err-lines)
6735 (flymake-start-syntax-check, flymake-start-syntax-check-process)
6736 (flymake-count-lines, flymake-parse-residual):
6737 Remove constant buffer argument.
6738 (flymake-start-syntax-check-for-current-buffer): Remove.
6739 Update callers to use flymake-start-syntax-check instead.
6740 (flymake-display-err-menu-for-current-line):
6741 Remove unused var `mouse-pos'.
6742 (flymake-restore-formatting): Comment out unused function.
6743 (flymake-report-status, flymake-report-fatal-status): Remove buffer
6744 argument, use current-buffer instead. Update callers.
6745
6746 2005-12-30 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6747
6748 * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
6749 buffer-local because choose-completion-delete-max-match requires
6750 that we set completion-ignore-case (i.e., binding via let is not
6751 sufficient).
6752 (bibtex-complete): Always set completion-ignore-case and
6753 choose-completion-string-functions. The latter is needed because
6754 choose-completion-string-functions keeps its value if we quit the
6755 *Completions* buffer without requesting a completion.
6756
6757 2005-12-30 Andreas Schwab <schwab@suse.de>
6758
6759 * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
6760
6761 2005-12-30 Eli Zaretskii <eliz@gnu.org>
6762
6763 * jit-lock.el (jit-lock-chunk-size): Doc fix.
6764
6765 2005-12-30 Juri Linkov <juri@jurta.org>
6766
6767 * locate.el (locate-fcodes-file, locate-header-face)
6768 * progmodes/delphi.el (delphi-other-face)
6769 * progmodes/glasses.el (glasses-face): Add tag "None" to const nil.
6770
6771 * paren.el (show-paren-match, show-paren-mismatch): Use existing
6772 group `paren-showing-faces'.
6773
6774 * net/goto-addr.el (goto-address-highlight-keymap): Fix docstring.
6775 (goto-address): Fix docstring.
6776
6777 * net/webjump.el (webjump-sample-sites): Update URLs.
6778
6779 * textmodes/fill.el (fill-single-word-nobreak-p): Use `sentence-end'.
6780
6781 * subr.el (cancel-change-group): Add listp around pending-undo-list.
6782
6783 2005-12-29 Stefan Monnier <monnier@iro.umontreal.ca>
6784
6785 * font-lock.el (font-lock-compile-keywords): Signal an error when
6786 font-lock-set-defaults hasn't been called.
6787
6788 2005-12-29 Luc Teirlinck <teirllm@auburn.edu>
6789
6790 * subr.el (noreturn, 1value): Doc fixes.
6791
6792 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6793
6794 * textmodes/bibtex.el (bibtex-text-in-field-bounds): Handle case
6795 that assoc-string returns nil.
6796
6797 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6798
6799 * textmodes/bibtex.el (bibtex-entry-type-whitespace)
6800 (bibtex-entry-type-str, bibtex-empty-field-re)
6801 (bibtex-search-backward-string, bibtex-preamble-prefix)
6802 (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): Remove.
6803 (bibtex-any-valid-entry-type): New variable.
6804 (bibtex-parse-field-name): Simplify.
6805 (bibtex-parse-string, bibtex-search-forward-string): New arg empty-key.
6806 (bibtex-preamble-prefix): Include left delimiter.
6807 (bibtex-search-forward-field, bibtex-search-backward-field):
6808 Allow unbounded search past entry boundaries (required by bibtex-pop).
6809 (bibtex-text-in-field-bounds): Use push.
6810 (bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
6811 (bibtex-parse-preamble, bibtex-valid-entry)
6812 (bibtex-beginning-first-field): New functions.
6813 (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
6814 (bibtex-map-entries): Fix docstring.
6815 (bibtex-flash-head): New arg prompt. Simplify.
6816 (bibtex-enclosing-field): Include code of bibtex-inside-field.
6817 (bibtex-insert-kill): Simplify. Always insert text past the
6818 current field or entry.
6819 (bibtex-format-entry): Use bibtex-parse-field.
6820 (bibtex-pop): Use bibtex-beginning-of-entry and
6821 bibtex-end-of-entry to initiate the search. Insert empty field if
6822 we found ourselves.
6823 (bibtex-print-help-message): New args field and comma.
6824 Handle entry keys.
6825 (bibtex-make-field): Use bibtex-beginning-of-entry.
6826 (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
6827 invalid entry.
6828 (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
6829 Handle preambles. Simplify code for thorough test.
6830 (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
6831 New arg comma. Handle entry heads.
6832 (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
6833 (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
6834 New arg comma.
6835 (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
6836 (bibtex-fill-field): Simplify.
6837 (bibtex-fill-entry): Use bibtex-beginning-first-field and
6838 bibtex-parse-field.
6839 (bibtex-convert-alien): Do not wait before calling bibtex-validate.
6840 (bibtex-complete): Use bibtex-parse-preamble.
6841
6842 2005-12-29 Nick Roberts <nickrob@snap.net.nz>
6843
6844 * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1):
6845 Display name of expression instead of convenience variable.
6846 (gdb-post-prompt): Only call gdb-get-changed-registers if needed.
6847
6848 * progmodes/gud.el (gud-tooltip-dereference): Rename from
6849 toggle-gud-tooltip-dereference.
6850 (gud-tooltip-print-command): Move concatenation of "*" to expr to...
6851 (gud-tooltip-tips): ...here when dereferencing.
6852
6853 2005-12-28 Bill Wohler <wohler@newt.com>
6854
6855 * simple.el (mh-e-user-agent): Move to mh-e/mh-comp.el and autoload.
6856
6857 2005-12-28 Stefan Monnier <monnier@iro.umontreal.ca>
6858
6859 * vc.el (vc-annotate-display): Replace optional arg `color-map' with
6860 compulsory arg `ratio'. Inline body of vc-annotate-time-span.
6861 (vc-annotate-display-autoscale): Adjust call.
6862 (vc-annotate-display-default): Adjust call. Make arg compulsory.
6863 Fix interactive spec.
6864 (vc-annotate-time-span): Remove.
6865 (vc-annotate-oldest-in-map): Rename from vc-annotate-car-last-cons.
6866 (vc-annotate-mode-menu, vc-annotate-display-autoscale)
6867 (vc-annotate-display-select): Use new name.
6868
6869 * vc.el (vc-annotate-mode-map): Remove obsolete binding.
6870 (vc-annotate-mode-menu): Remove left-over redundant declaration.
6871 Correct the construction of span entries. Simplify.
6872 (vc-annotate-display-select): Fix the nil case.
6873 (vc-annotate): Remove obsolete (and now broken) code.
6874 (vc-annotate-extract-revision-at-line): Remove obsolete code.
6875 (vc-annotate-time-span): Remove unused arg `quantize'. Simplify.
6876
6877 2005-12-28 Luc Teirlinck <teirllm@auburn.edu>
6878
6879 * subr.el (lazy-completion-table): Correct typo in docstring.
6880
6881 * startup.el (command-line): Use `custom-reevaluate-setting' for
6882 `send-mail-function'.
6883
6884 * mail/sendmail.el (send-mail-function): Autoload the standard-value.
6885
6886 2005-12-05 Ralf Angeli <angeli@iwi.uni-sb.de>
6887
6888 * mail/smtpmail.el (smtpmail-try-auth-methods):
6889 Send credentials together with "AUTH PLAIN" command.
6890
6891 2005-12-27 Richard M. Stallman <rms@gnu.org>
6892
6893 * mouse.el (mouse-drag-region-1): When remapping mouse-1 to
6894 mouse-2, go back to previously selected window, so it's selected
6895 when mouse-2 command runs.
6896
6897 2005-12-27 Juri Linkov <juri@jurta.org>
6898
6899 * descr-text.el (describe-text-sexp): Use square brackets for
6900 button [Show] to distinguish it from the property value `show'.
6901 (describe-property-list): Use `insert-text-button' with
6902 `help-face' type instead of putting face in quotes, because button
6903 is not created automatically for a list of faces.
6904 (describe-text-properties-1): Put button-type value in quotes to
6905 distinguish from plain text "button".
6906 (describe-char): Display code point values in hex. Don't use
6907 `symbol-name' for `current-input-method' because it is a string.
6908 Use `insert-text-button' with `help-face' type instead of putting
6909 hardcoded face in quotes, because button is not created automatically.
6910
6911 2005-12-27 Richard M. Stallman <rms@gnu.org>
6912
6913 * progmodes/glasses.el (glasses-face): More specific custom type.
6914
6915 * files.el (set-visited-file-name): Doc fix.
6916
6917 * textmodes/flyspell.el (flyspell-external-point-words):
6918 Use local var buffer-scan-pos to advance scan for next misspelling.
6919 Advance it only after we find the misspelling.
6920
6921 2005-12-27 Agustin Martin <agustin.martin@hispalinux.es>
6922
6923 * textmodes/flyspell.el (flyspell-external-point-words):
6924 New criteria for finding the misspelling in the buffer.
6925
6926 2005-12-27 Nick Roberts <nickrob@snap.net.nz>
6927
6928 * help-mode.el (help-insert-string): Set help-xref-stack-item
6929 rather than call help-setup-xref.
6930
6931 * descr-text.el (describe-char): Revert previous changes for
6932 optional buffer argument.
6933
6934 2005-12-27 Juri Linkov <juri@jurta.org>
6935
6936 * help-mode.el (help-insert-string): New function. Save buffer
6937 contents in cases where it is impossible to recompute the old contents.
6938
6939 * descr-text.el (describe-char): Set help-xref-stack-item
6940 explicitly after buffer has been generated.
6941
6942 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6943
6944 * cus-start.el (all): Add x-gtk-show-hidden-files.
6945
6946 2005-12-26 Richard M. Stallman <rms@gnu.org>
6947
6948 * replace.el (perform-replace): Calculate match-again
6949 before skipping read-only matches.
6950
6951 * paren.el (paren-showing-faces): New group.
6952 (show-paren-match, show-paren-mismatch): Move to that group.
6953
6954 * button.el (button): Put into group `basic-faces'.
6955
6956 * progmodes/make-mode.el: Remove faces from group `faces'.
6957
6958 * apropos.el (apropos, apropos-value): Doc fix.
6959 (apropos-documentation): Doc fix.
6960
6961 2005-12-26 Stefan Monnier <monnier@iro.umontreal.ca>
6962
6963 * subr.el (lazy-completion-table): Remove argument `args'.
6964
6965 * textmodes/bibtex.el (bibtex-strings, bibtex-reference-keys):
6966 Don't use the `args' argument of lazy-completion-table.
6967
6968 2005-12-26 Nick Roberts <nickrob@snap.net.nz>
6969
6970 * descr-text.el (describe-char): Add optional argument for buffer.
6971 Set buffer appropriately. Call help-setup-xref.
6972 Suggested by Stefan Monnier.
6973
6974 2005-12-26 Juri Linkov <juri@jurta.org>
6975
6976 * descr-text.el: Require `help-fns' at runtime. Don't require
6977 `button' for byte compilation.
6978 (describe-text-widget): Add `help-echo' for first button.
6979 Use `help-info' for second.
6980 (describe-property-list): Use `help-argument-name' instead of `italic'.
6981 (describe-text-category): Add prompt to interactive spec.
6982 Call `help-setup-xref'.
6983 (describe-char): Use `help-character-set'. Add `help-echo' for
6984 code point. Use `help-input-method'. Remove superfluous insert.
6985
6986 2005-12-25 Richard M. Stallman <rms@gnu.org>
6987
6988 * progmodes/cc-defs.el (c-emacs-features): Do parse-partial-sexp
6989 at point, in case of narrowing.
6990
6991 * progmodes/delphi.el (delphi-other-face): Allow nil in type.
6992
6993 * locate.el (locate-header-face): Allow nil in type.
6994
6995 * progmodes/cpp.el (cpp-face-none-list): Use cpp-face instead of face.
6996
6997 2005-12-25 Romain Francoise <romain@orebokech.com>
6998
6999 * battery.el (battery-linux-proc-acpi): Also try
7000 `/proc/acpi/thermal_zone/THM0/temperature'.
7001
7002 2005-12-24 Chong Yidong <cyd@stupidchicken.com>
7003
7004 * custom.el (custom-push-theme): Fix docstring.
7005
7006 * cus-edit.el (custom-variable-set, custom-variable-save)
7007 (custom-variable-save): Custom-quote widget values.
7008 (customize-save-variable): Fix custom-push-theme call.
7009
7010 2005-12-24 Eli Zaretskii <eliz@gnu.org>
7011
7012 * w32-fns.el (w32-batch-update-autoloads): New function.
7013
7014 * makefile.w32-in (autoloads, $(lisp)/mh-e/mh-loaddefs.el):
7015 Use w32-batch-update-autoloads, and don't setq generated-autoload-file
7016 from the command line.
7017
7018 2005-12-23 Chong Yidong <cyd@stupidchicken.com>
7019
7020 * custom.el (custom-push-theme): Clarify docstring. VALUE nil for
7021 reset means to remove setting from theme entirely. Don't keep
7022 expanding theme-settings list; delete old entries if necessary.
7023
7024 * cus-edit.el (custom-buffer-create-internal): Move "Erase
7025 customization" button one line up.
7026 (custom-themed): New face.
7027 (custom-magic-alist): New value, THEMED, for theme settings.
7028 (custom-variable-state-set, custom-face-state-set):
7029 Check theme-value instead of saved-value.
7030 (custom-variable-reset-standard, custom-face-reset-standard):
7031 Remove theme setting entirely. Recalculate new values.
7032 (custom-variable-set, custom-variable-set)
7033 (custom-variable-reset-saved, custom-variable-reset-backup)
7034 (custom-face-set, custom-face-reset-saved): Update `user' theme.
7035 (custom-variable-save): Fix typos.
7036
7037 2005-12-23 Juri Linkov <juri@jurta.org>
7038
7039 * emacs-lisp/edebug.el (edebug-all-defs, edebug-all-forms):
7040 Add autoload cookies.
7041 (edebug-outside-d-c-i-n-s-w): New variable.
7042 (edebug-display, edebug-outside-excursion): Use it to save the
7043 original value of default-cursor-in-non-selected-windows.
7044 Set default-cursor-in-non-selected-windows to t while Edebug
7045 is active.
7046 (edebug-mode, edebug-eval-mode): Doc fix.
7047
7048 * mouse.el (mouse-choose-completion): Replace `buffer-substring'
7049 with `buffer-substring-no-properties' to remove common substring
7050 highlighting.
7051
7052 * info.el (info-other-window, info): Rename function argument
7053 `file' to `file-or-node'.
7054 (Info-complete-menu-item): Use local variable `complete-nodes' to
7055 keep the global value of `Info-complete-nodes' unchanged for
7056 subsequent completions.
7057 (info-tool-bar-map): Put `Info-index' icon just before `Info-search'.
7058
7059 * simple.el (get-next-valid-buffer, last-buffer)
7060 (next-error-buffer-p, next-error-find-buffer)
7061 (minibuffer-history-sexp-flag): Doc fix.
7062
7063 * savehist.el (savehist-mode-hook): Add `:group'.
7064
7065 * log-view.el: Call autoload for vc-find-version.
7066 (log-view-current-file): Adjust subgroup numbers.
7067 (log-view-current-tag): Add `length'.
7068
7069 2005-12-23 Richard M. Stallman <rms@gnu.org>
7070
7071 * vc.el (vc-annotate-car-last-cons): Defn moved up.
7072
7073 2005-12-23 Juri Linkov <juri@jurta.org>
7074
7075 * hi-lock.el (hi-lock-archaic-interface-message-used)
7076 (hi-lock-archaic-interface-deduce, hi-lock-mode): Doc fix.
7077 (hi-lock-mode): Display "Hi" in the mode line only when
7078 hi-lock-interactive-patterns or hi-lock-file-patterns is non-nil.
7079 (hi-lock-write-interactive-patterns):
7080 Use hi-lock-file-patterns-prefix instead of hard-coded "Hi-lock".
7081 (hi-lock-set-pattern, hi-lock-set-file-patterns)
7082 (hi-lock-font-lock-hook): Set 3rd arg `how' of
7083 font-lock-add-keywords to t.
7084
7085 2005-12-23 David Koppelman <koppel@ece.lsu.edu>
7086
7087 * hi-lock.el (hi-lock-highlight-range): New variable.
7088 (hi-lock-mode, hi-lock-unface-buffer): Call font-lock-fontify-buffer
7089 only if font-lock-fontified is non-nil. Remove overlays.
7090 (hi-lock-set-pattern): Call font-lock-fontify-buffer if
7091 font-lock-fontified is non-nil, otherwise use overlays (instead of
7092 text properties).
7093 (hi-lock-string-serialize-hash, hi-lock-string-serialize-serial):
7094 New variables.
7095 (hi-lock-string-serialize) New function.
7096
7097 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7098
7099 * menu-bar.el (menu-find-file-existing): New function.
7100 (menu-bar-file-menu): Use menu-find-file-existing for Open.
7101
7102 * tool-bar.el (tool-bar-setup): Open changed to menu-find-file-existing.
7103
7104 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
7105
7106 * vc.el: Remove unnecessary leading * in docstrings.
7107 (vc-annotate-mode-map): Move initialization into declaration.
7108 (vc-static-header-alist): Nitpick on the regexp.
7109 (vc-default-init-version): New fun.
7110 (vc-register): Use it.
7111 (vc-insert-headers): Use dolist.
7112 (vc-annotate-get-backend): Remove unused function.
7113 (vc-annotate-add-menu): Remove. Build the menu directly at toplevel.
7114 (vc-annotate-mode): Remove corresponding call.
7115 (vc-annotate-car-last-cons): Simplify.
7116 (vc-annotate-buffers): Remove var.
7117 (vc-annotate-backend): Make it buffer-local.
7118 (vc-annotate): Move the interaction to the interactive spec.
7119 Add a `buf' argument.
7120 (vc-annotate-warp-version): Use this new `buf' argument to avoid
7121 killing&creating a vc-annotate buffer, which is very disruptive when
7122 the buffers are shown in dedicated frames.
7123
7124 2005-12-23 Nick Roberts <nickrob@snap.net.nz>
7125
7126 * descr-text.el: Add FSF as maintainer.
7127 (describe-text-mode, describe-text-mode-map)
7128 (describe-text-mode-hook, describe-text-done): Delete. Use normal
7129 help-mode.
7130 (describe-text-widget, describe-text-sexp)
7131 (describe-property-list, describe-text-category)
7132 (describe-text-properties, describe-text-properties-1)
7133 (describe-char): Use help buttons instead of widgets.
7134 (describe-char-unicodedata-file): Make URL link in doc string.
7135
7136 2005-12-22 Richard M. Stallman <rms@gnu.org>
7137
7138 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
7139 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
7140 Don't include buttons that write a file when there's no file.
7141 (custom-variable-menu, custom-face-menu, custom-group-menu):
7142 Don't include commands that write a file when there's no file.
7143 (customize-browse): Reword the top-of-buffer help intro.
7144 (custom-buffer-create-internal): Fix previous change.
7145 (customize-changed-options-previous-release): Prev release is 21.1.
7146 (customize-changed-options): Doc fix.
7147 (customize-changed): New alias.
7148 (custom-reset-menu, custom-magic-alist, Custom-mode-menu):
7149 Say "standard values".
7150 (Custom-reset-standard): Doc fix.
7151 (custom-face-reset-standard): Doc fix.
7152
7153 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
7154
7155 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
7156 even if font-lock-mode is non-nil since it may be t without having
7157 turned on font-lock-mode-internal.
7158 (font-lock-choose-keywords): Minor optimization.
7159 (font-lock-add-keywords, font-lock-remove-keywords)
7160 (font-lock-set-defaults): Don't call make-local-variable on a variable
7161 that we know to already be local.
7162
7163 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
7164
7165 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't print progress
7166 messages if in the minibuffer.
7167
7168 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
7169
7170 * textmodes/flyspell.el (flyspell-check-word-p): Don't quote - in a RE.
7171 (tex-mode-flyspell-verify, flyspell-get-word)
7172 (flyspell-external-point-words): Don't use point-min/max uselessly.
7173
7174 * emacs-lisp/lisp.el (lisp-complete-symbol): Mostly undo the change
7175 by Kevin Rodgers. Instead, just hide the completions buffer if we
7176 don't need to show it.
7177
7178 2005-12-21 Luc Teirlinck <teirllm@auburn.edu>
7179
7180 * wid-edit.el (file, directory): Doc fixes for the `define-widget's.
7181
7182 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
7183
7184 * emacs-lisp/lisp.el (lisp-complete-symbol): Don't call
7185 delete-windows-on with an inexistent buffer.
7186
7187 2005-12-22 Nick Roberts <nickrob@snap.net.nz>
7188
7189 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
7190 Delete defcustom variable :tag names.
7191
7192 2005-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
7193
7194 * log-view.el (log-view-file-re, log-view-message-re): Use shy groups.
7195 (log-view-font-lock-keywords): Ajust subgroup numbers.
7196 (log-view-current-tag): Don't hard code the number of subgroups.
7197
7198 2005-12-20 Juri Linkov <juri@jurta.org>
7199
7200 * tooltip.el (tooltip): Move defgroup before define-minor-mode.
7201 (tooltip-x-offset, tooltip-y-offset): Doc fix.
7202
7203 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
7204 (menu-bar-non-minibuffer-window-p): Instead of checking
7205 display-multi-frame-p, use selected-frame when menu-updating-frame
7206 is nil.
7207
7208 2005-12-20 Stuart Herring <herring@lanl.gov> (tiny change)
7209
7210 * align.el (align-rules-list): Use [ \t] instead of \s-
7211 for column separators in text mode.
7212
7213 2005-12-20 Nick Roberts <nickrob@snap.net.nz>
7214
7215 * help-mode.el (help-customize-variable, help-customize-face):
7216 Don't pop help-xref-stack as help-follow no longer pushes
7217 anything on to it.
7218
7219 2005-12-20 Carsten Dominik <dominik@science.uva.nl>
7220
7221 * textmodes/org.el (org-agenda-custom-commands): New option.
7222 (org-agenda): Offer custom commands on splash screen.
7223 (org-make-tags-matcher): Parser for Boolean logic added.
7224 (org-agenda-set-tags): New command.
7225 (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
7226 (org-set-tags): Efficiency improvements.
7227 (org-auto-align-tags): New option.
7228 (org-todo, org-demote, org-promote): Realign tags.
7229 (org-tags-completion-function): Use also "&" and "|" as separators.
7230 (org-org-menu): Agenda commands simplified.
7231
7232 2005-12-19 Luc Teirlinck <teirllm@auburn.edu>
7233
7234 * cus-edit.el (customize-apropos, customize-apropos-options):
7235 Docstring changes.
7236
7237 * font-lock.el (font-lock): Add tags to the links in the defgroup.
7238
7239 2005-12-19 Chong Yidong <cyd@stupidchicken.com>
7240
7241 * longlines.el (longlines-mode): Wrap while widened.
7242 (longlines-decode-region, longlines-encode-region): Compute max
7243 just once.
7244
7245 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7246
7247 * cus-edit.el (mac): New group.
7248
7249 * cus-start.el (all): Add user options in macterm.c. Add test for
7250 Mac-related built-ins. Fix test for GTK-related built-ins.
7251
7252 * term/mac-win.el (mac-handle-language-change)
7253 (mac-ae-open-documents, mac-ae-get-url, mac-services-open-file)
7254 (mac-services-open-selection, mac-services-mail-selection)
7255 (mac-services-mail-to, mac-services-insert-text)
7256 (mac-dispatch-apple-event): Add docstrings.
7257 (x-get-selection, mac-select-convert-to-string): Select coding
7258 system from `utf-16be' and `utf-16le' using `byteorder'.
7259
7260 2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
7261
7262 * subr.el (lazy-completion-table): Don't be fooled if the var holds
7263 a "list" (lambda ...) rather than a real completion list.
7264
7265 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
7266 lexical-let when encountering ((lambda (...) ...) ...).
7267
7268 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
7269
7270 * progmodes/sh-script.el (sh-mode):
7271 * language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
7272 * textmodes/picture.el (picture-mode): Update docstrings.
7273
7274 2005-12-17 Eli Zaretskii <eliz@gnu.org>
7275
7276 * makefile.w32-in (autoloads, custom-deps): Warn that parts of
7277 commands enclosed in $(ARGQUOTE)s should not be split between two
7278 lines, as that will break with GNU Make >3.80, when sh.exe is used
7279 and arg quoting is with '..'.
7280 (autoloads): Don't break the quoted --eval expression between
7281 several lines.
7282
7283 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
7284
7285 * emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
7286 Capture error from printing circular structures.
7287
7288 2005-12-17 Martin Rudalics <rudalics@gmx.at>
7289
7290 * wid-edit.el (widget-checkbox-action): Clear undo info.
7291
7292 2005-12-16 Bill Wohler <wohler@newt.com>
7293
7294 * menu-bar.el (kill-this-buffer): Set a good example by using menu
7295 bar, not menubar in comment.
7296
7297 2005-12-16 Stefan Monnier <monnier@iro.umontreal.ca>
7298
7299 * progmodes/cc-engine.el (c-after-change-check-<>-operators):
7300 After-change-functions should not clobber the match data.
7301
7302 2005-12-16 Juri Linkov <juri@jurta.org>
7303
7304 * simple.el (choose-completion): Use `buffer-substring-no-properties'
7305 instead of `buffer-substring'.
7306 (completion-common-substring): Doc fix.
7307 (completion-setup-function): Use minibuffer-completion-contents
7308 instead of minibuffer-contents. Don't set common-string-length
7309 initially. Remove special handling of partial-completion-mode.
7310 Move computation of completion-base-size into one cond.
7311 Call completion-base-size-function in mainbuf. In computation of
7312 completion-base-size for file name completion don't move point to
7313 the end of the minibuffer. Move computation of common-string-length
7314 into one cond. Start putting faces only when common-string-length>=0.
7315 Add condition to put completions-common-part when
7316 common-string-length>0.
7317
7318 * complete.el (PC-do-completion): Remove `(equal (point) beg)' to
7319 place point at the first different character in the minibuffer
7320 even if this position is at the beginning of the minibuffer.
7321
7322 * info.el (Info-read-node-name-1): In completion-base-size-function's
7323 lambda return 1 if common-substring or minibuffer-completion-contents
7324 starts with (, and 0 otherwise.
7325
7326 * emacs-lisp/crm.el (crm-minibuffer-completion-help):
7327 Use `crm-current-element' for second arg of `display-completion-list'.
7328
7329 2005-12-16 Klaus Zeitler <kzeitler@lucent.com>
7330
7331 * files.el (set-auto-mode): Look for an interpreter specified on
7332 the first line also if search for mode specification succeeded,
7333 but the mode is not known.
7334
7335 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
7336
7337 * textmodes/org.el (org-tags-match-list-sublevels): New option.
7338 (org-open-at-point): Implement tag searches as links.
7339 (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
7340 (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
7341 (org-tags-sparse-tree, org-tags-view, org-set-tags)
7342 (org-agenda-dispatch): New commands.
7343 (org-use-tag-inheritance, org-tags-column): New options.
7344 (org-tab-follows-link, org-return-follows-link): New options.
7345 (org-tags): New customize group.
7346 (org-start-icalendar-file): Get local time zone.
7347 (org-tags-completion-function): New function.
7348 (org-set-font-lock-defaults): Make sure links will also be
7349 highlighted inside headlines.
7350
7351 2005-12-16 Mark Plaksin <happy@usg.edu> (tiny change)
7352
7353 * term.el (term-emulate-terminal):
7354 Let term-handle-ansi-terminal-messages override what Bash says about
7355 its current directory.
7356
7357 2005-12-16 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
7358
7359 * bindings.el (last-buffer): Move to simple.el.
7360 * simple.el (last-buffer): Move here.
7361 (get-next-valid-buffer): New function.
7362 (next-buffer): Use frame-local buffer list, maintain buried buffer list.
7363 (prev-buffer): Ditto. Rename to `previous-buffer'.
7364
7365 * menu-bar.el (menu-bar-update-buffers): Update uses of `prev-buffer'.
7366 * bindings.el (global-map): Ditto.
7367
7368 2005-12-15 Luc Teirlinck <teirllm@auburn.edu>
7369
7370 * cus-edit.el: Introductory comment change.
7371 (custom-magic-alist): Change message string for the `rogue' state.
7372
7373 2005-12-15 Richard M. Stallman <rms@gnu.org>
7374
7375 * tooltip.el: Delete defcustom variable :tag names.
7376
7377 * complete.el (partial-completion-mode): Doc fix.
7378
7379 * textmodes/flyspell.el (flyspell-external-point-words):
7380 Use save-excursion to ensure we don't move backward in the
7381 search loop, not even one character.
7382 (flyspell-delete-all-overlays): Use remove-overlays directly.
7383
7384 * textmodes/ispell.el (ispell-current-personal-dictionary): New var.
7385 (ispell-start-process): Set that variable.
7386 Clear ispell-buffer-local-name.
7387 (ispell-internal-change-dictionary):
7388 Set ispell-current-dictionary after killing process.
7389 (ispell-buffer-local-dict):
7390 Don't set spell-personal-dictionary after killing process.
7391 (ispell-buffer-local-words): Don't clear out ispell-buffer-local-name.
7392 (ispell-tex-skip-alists, ispell-html-skip-alists)
7393 (ispell-skip-region-alist): Mark as risky.
7394
7395 * net/newsticker.el (newsticker--retrieval-timer-list)
7396 (newsticker--display-timer, newsticker-running-p)
7397 (newsticker-ticker-running-p): Definitions moved up.
7398
7399 2005-12-16 Nick Roberts <nickrob@snap.net.nz>
7400
7401 * progmodes/gdb-ui.el (gdb-many-windows): Echo new state in minibuffer.
7402
7403 2005-12-15 David Ponce <david@dponce.com>
7404
7405 * recentf.el (recentf-dialog-goto-first): Fix missing error condition.
7406 (recentf-edit-list, recentf-open-files): Signal an error when
7407 there is no recent file.
7408
7409 2005-12-14 Lennart Borgman <lennart.borgman.073@student.lu.se>
7410
7411 * textmodes/texinfmt.el (texinfo-format-region): Set buffer to
7412 read-only except for texinfo-format-region evaluation.
7413
7414 2005-12-14 Richard M. Stallman <rms@gnu.org>
7415
7416 * vc.el (vc-default-previous-version, vc-default-next-version)
7417 (vc-do-command): Doc fixes.
7418
7419 2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
7420
7421 * textmodes/bibtex.el (bibtex-expand-strings)
7422 (bibtex-autokey-expand-string, bibtex-name-part)
7423 (bibtex-entry-type-whitespace, bibtex-entry-type-str)
7424 (bibtex-any-entry-maybe-empty-head, bibtex-string-type)
7425 (bibtex-preamble-prefix, bibtex-string-empty-key): New variables.
7426 (bibtex-entry-type, bibtex-entry-head): Match only valid entries.
7427 (bibtex-entry-postfix, bibtex-known-entry-type-re)
7428 (bibtex-valid-entry-re, bibtex-any-valid-entry-re)
7429 (bibtex-valid-entry-whitespace-re, bibtex-empty-field-re)
7430 (bibtex-field-name-for-parsing, bibtex-remove-delimiters-string)
7431 (bibtex-beginning-of-last-entry): Remove.
7432 (bibtex-parse-field-name): Use bibtex-field-name. Issue error
7433 message if comma is missing but buffer is read-only.
7434 (bibtex-parse-field-text): Handle whitespaces at the end of field
7435 text. Return 3-element list with beginning and end of field text
7436 and end of field.
7437 (bibtex-end-of-text-in-field, bibtex-end-of-field): Change accordingly.
7438 (bibtex-parse-field): Remove arg name. Use bibtex-field-name.
7439 (bibtex-search-forward-field, bibtex-search-backward-field):
7440 Search always delimited by limits of entry. Use more efficient
7441 search algorithms.
7442 (bibtex-name-in-field): Use bibtex-start-of-name-in-field and
7443 bibtex-end-of-name-in-field.
7444 (bibtex-text-in-field-bounds): Handle BibTeX strings when
7445 extracting the content of a field.
7446 (bibtex-text-in-field): Use search limits.
7447 (bibtex-parse-string-prefix): Handle empty string keys based on
7448 bibtex-string-empty-key.
7449 (bibtex-parse-string): Fix docstring.
7450 (bibtex-text-in-string): Use bibtex-text-in-field-bounds.
7451 (bibtex-preamble-prefix, bibtex-strings): New functions.
7452 (bibtex-skip-to-valid-entry): Include preceding whitespace in
7453 BibTeX entries (consistent with other BibTeX functions).
7454 (bibtex-map-entries): Use bibtex-skip-to-valid-entry.
7455 (bibtex-search-entry): Fix docstring. Simplify.
7456 (bibtex-flash-head, bibtex-complete-string-cleanup)
7457 (bibtex-count-entries, bibtex-sort-buffer): Simplify.
7458 (bibtex-beginning-of-first-entry): Use bibtex-skip-to-valid-entry.
7459 (bibtex-parse-entry): New optional arg content.
7460 (bibtex-format-entry, bibtex-autofill-entry, bibtex-url): Use it.
7461 Use bibtex-text-in-field-bounds.
7462 (bibtex-print-help-message): Handle BibTeX strings and preambles.
7463 (bibtex-end-of-entry): Use bibtex-preamble-prefix and
7464 bibtex-parse-string-postfix.
7465 (bibtex-find-text-internal): New function.
7466 (bibtex-remove-delimiters): Use it.
7467 (bibtex-find-text): Use it. New optional arg help.
7468 (bibtex-complete): Handle BibTeX string and preamble entries.
7469 (bibtex-Preamble): Fix order of closing delimiters.
7470
7471 2005-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
7472
7473 * vc.el (vc-default-revert): New fun.
7474
7475 * vc-mcvs.el (vc-mcvs-revert): Fix call to vc-default-revert.
7476
7477 2005-12-14 Romain Francoise <romain@orebokech.com>
7478
7479 * font-lock.el (font-lock-keywords-alist): Rename `append' to `how'.
7480 (font-lock-add-keywords, font-lock-update-removed-keyword-alist):
7481 (font-lock-remove-keywords): Likewise.
7482
7483 2005-12-14 Juri Linkov <juri@jurta.org>
7484
7485 * log-view.el (log-view-diff): Doc fix.
7486
7487 * isearch.el (isearch-query-replace): Use (mark) instead of
7488 isearch-opoint if mark is active in transient-mark-mode.
7489
7490 2005-12-14 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
7491
7492 * isearch.el (isearch-query-replace): Check for isearch-other-end.
7493
7494 2005-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
7495
7496 * progmodes/cpp.el (cpp-face): New widget.
7497 (cpp-known-face, cpp-unknown-face, cpp-edit-list): Use it.
7498
7499 2005-12-14 Juri Linkov <juri@jurta.org>
7500
7501 * help-macro.el (make-help-screen): Bind `inhibit-read-only' to t
7502 around `erase-buffer' and `insert'.
7503
7504 * descr-text.el (describe-text-properties): Replace buffer name
7505 "*Help-2*" with "*Help*<2>".
7506 (describe-char): Add functions print-help-return-message,
7507 toggle-read-only. Use help-setup-xref with nil to not store
7508 describe-char in help-xref-stack. Use help-make-xrefs to
7509 make [back] button.
7510
7511 * desktop.el (desktop-minor-mode-table): Add vc-dired-mode with nil.
7512
7513 * wdired.el (wdired-old-point): New internal variable.
7514 (wdired-change-to-wdired-mode): Set it buffer-locally.
7515 (wdired-abort-changes): Restore point after aborting changes.
7516
7517 2005-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
7518
7519 * vc.el (vc-do-command): Add a new value t for okstatus.
7520
7521 * vc-svn.el (vc-svn-registered): Use it to avoid popping up a spurious
7522 frame in case of errors.
7523
7524 2005-12-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7525
7526 * menu-bar.el (menu-bar-showhide-fringe-menu): Move "On the Right"
7527 so it comes after "On the Left" in the menu.
7528
7529 2005-12-12 Luc Teirlinck <teirllm@auburn.edu>
7530
7531 * cus-edit.el (customize-apropos, customize-apropos-options)
7532 (customize-apropos-faces, customize-apropos-groups): Doc fixes.
7533
7534 2005-12-12 Bill Wohler <wohler@newt.com>
7535
7536 * vc-svn.el (vc-svn-registered): Fix problem of visiting
7537 non-writable Subversion-controlled files by saving window
7538 configuration before calling vc-do-command. vc-do-command calls
7539 pop-to-buffer on error which is unexpected during registration.
7540
7541 2005-12-12 Jay Belanger <belanger@truman.edu>
7542
7543 * calc/README: Update the summary of changes.
7544
7545 2005-12-12 Stefan Monnier <monnier@iro.umontreal.ca>
7546
7547 * descr-text.el (describe-char): Rework last fix to solve the problem
7548 is the same way it's solved for everything else in that function
7549 (i.e. by extracting the info before setting up the *Help* buffer).
7550
7551 2005-12-12 Kim F. Storm <storm@cua.dk>
7552
7553 * subr.el (version-regexp-alist): Allow space as separator before
7554 non-numeric part, e.g. "1.0 alpha".
7555 (version-to-list): Interpret .X.Y version as 0.X.Y version.
7556
7557 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
7558
7559 * textmodes/org.el (org-agenda, org-timeline, org-todo):
7560 Implement Logging and the keep-modes setting.
7561 (org-get-category): Make sure a string is returned.
7562 (org-log-done): New function.
7563 (org-log-done, org-closed-string): New options.
7564
7565 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7566
7567 * tooltip.el (tooltip-y-offset): Change default to 20.
7568
7569 2005-12-12 Richard M. Stallman <rms@gnu.org>
7570
7571 * mouse.el (mouse-drag-vertical-line): Use adjust-window-trailing-edge.
7572
7573 * frame.el (display-hourglass): Doc fix.
7574
7575 * help.el (help-for-help-internal): Simplify entry for `a'.
7576
7577 * info.el (Info-on-current-buffer): Doc fix.
7578 (info-insert-file-contents): Don't test (featurep 'jka-compr).
7579
7580 * startup.el (inhibit-splash-screen): Make this the real name.
7581 (inhibit-startup-message): Make this the alias.
7582 (command-line): Find only simple.el, and use its directory
7583 to fill in other preloaded files' names.
7584 (command-line): Deactivate the mark if deactivate-mark is set.
7585
7586 * international/mule.el (load-with-code-conversion):
7587 Bind deactivate-mark.
7588
7589 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
7590
7591 2005-12-11 Luc Teirlinck <teirllm@auburn.edu>
7592
7593 * cus-edit.el (customize-apropos): Avoid listing an option more
7594 than once under different aliases. No longer list user options
7595 that are not defined with defcustom (unless a prefix arg is given).
7596 Doc fix.
7597 (customize-apropos-options): Doc fix.
7598
7599 2005-12-11 Juri Linkov <juri@jurta.org>
7600
7601 * frame.el (set-background-color, set-foreground-color)
7602 (set-cursor-color, set-mouse-color, set-border-color):
7603 Add explicit prompts to read colors by `facemenu-read-color'.
7604 (show-trailing-whitespace, blink-cursor-delay)
7605 (blink-cursor-interval, display-hourglass, hourglass-delay):
7606 Remove tags.
7607 (display-hourglass, hourglass-delay): Doc fix.
7608 (cursor-in-non-selected-windows): Capitalize words in tag.
7609
7610 * faces.el (frame-background-mode): Replace `choice-item' keywords
7611 with `const' to not make [default] button. Change default value tag
7612 from `default' to `automatic'. Doc fix.
7613 (trailing-whitespace) <defface>: Change group `whitespace' to
7614 `whitespace-faces'.
7615
7616 2005-12-11 Richard M. Stallman <rms@gnu.org>
7617
7618 * buff-menu.el (Buffer-menu-sort-column): Not a user variable.
7619
7620 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7621
7622 * term/mac-win.el: Create keymap for mac-apple-event-map.
7623
7624 2005-12-11 Nick Roberts <nickrob@snap.net.nz>
7625
7626 * tooltip.el (tooltip-mode): Move to start of file so that it
7627 appears at top of customize buffer.
7628
7629 * progmodes/gud.el (gud-tooltip-modes, gud-tooltip-display):
7630 Add the gud groupname.
7631 (gud-tooltip-mode): Add the tooltip groupname.
7632 (gud-tooltip-echo-area): Add the gud groupname. Remove tag to
7633 avoid conflict with tooltip-use-echo-area.
7634
7635 2005-12-10 Romain Francoise <romain@orebokech.com>
7636
7637 * help.el (help-for-help-internal): Add `r' in doc string.
7638
7639 2005-12-10 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
7640
7641 * align.el (align-regexp, align-highlight-rule):
7642 Use region-beginning and region-end instead of point and mark, so that
7643 repetition (with `repeat-complex-command') recomputes the region
7644 bounds.
7645
7646 2005-12-10 Lennart Borgman <lennart.borgman.073@student.lu.se>
7647
7648 * window.el (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
7649 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
7650 (bw-refresh-edges, bw-adjust-window, bw-balance-sub): New functions.
7651 (balance-windows): Rewrite using the above new functions.
7652
7653 2005-12-10 David Koppelman <koppel@ece.lsu.edu>
7654
7655 * hi-lock.el (hi-lock-mode): Rename from hi-lock-buffer-mode;
7656 react if global-hi-lock-mode seems intended.
7657 (global-hi-lock-mode) Renamed from hi-lock-mode.
7658 (hi-lock-archaic-interface-message-used)
7659 (hi-lock-archaic-interface-deduce): New variables.
7660 (turn-on-hi-lock-if-enabled, hi-lock-line-face-buffer)
7661 (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
7662 (hi-lock-find-patterns, hi-lock-font-lock-hook):
7663 Replace hi-lock-buffer-mode with hi-lock-mode.
7664
7665 2005-12-10 Kevin Rodgers <ihs_4664@yahoo.com>
7666
7667 * emacs-lisp/lisp.el (lisp-complete-symbol): Regenerate the
7668 completion list, even after a partial completion has been
7669 inserted in the current buffer. If there are more than 1
7670 completion, redisplay the *Completions* buffer; if the
7671 completion is unique, delete the *Completions* window.
7672
7673 2005-12-10 Eli Zaretskii <eliz@gnu.org>
7674
7675 * mail/rmail.el (rmail-next-same-subject): Handle multiple "Re: "
7676 strings and long subject lines that were broken into multiple
7677 lines at arbitrary places. Handle subjects that have "Re: " in
7678 the middle.
7679
7680 2005-12-10 John W. Eaton <jwe@octave.org>
7681
7682 * emacs/octave-mod.el (octave-electric-space): Don't indent
7683 comments or strings if octave-auto-indent is nil.
7684
7685 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7686
7687 * term/mac-win.el: Require url when compiling.
7688 Call mac-process-deferred-apple-events after loading init files.
7689 (mac-apple-event-map): New defvar. Define event handlers in it.
7690 (core-event, internet-event): New Apple event class symbols.
7691 (open-application, reopen-application, open-documents)
7692 (print-documents, open-contents, quit-application)
7693 (application-died, show-preferences, autosave-now, get-url):
7694 New Apple event ID symbols.
7695 (about): New HICommand ID symbol.
7696 (mac-event-spec, mac-event-ae): New macros.
7697 (mac-ae-parameter, mac-ae-list, mac-bytes-to-integer)
7698 (mac-ae-selection-range, mac-ae-text-for-search)
7699 (mac-ae-open-documents, mac-ae-text, mac-ae-get-url): New functions.
7700 (mac-application-menu-map): Remove keymap. Handlers for HICommand
7701 and Services menu events are now defined in mac-apple-event-map.
7702 (mac-drag-n-drop): Remove selection range handling.
7703
7704 2005-12-10 Kenichi Handa <handa@m17n.org>
7705
7706 * simple.el (zap-to-char):
7707 * isearch.el (isearch-process-search-char): Translate CHAR by
7708 translation-table-for-input.
7709
7710 2005-12-09 Chong Yidong <cyd@stupidchicken.com>
7711
7712 * foldout.el (foldout-exit-fold): Properly hide subtree.
7713
7714 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
7715
7716 * files.el (save-buffer):
7717 * international/ucs-tables.el (ucs-set-table-for-input):
7718 * mail/mail-extr.el (mail-extract-address-components):
7719 * mail/sendmail.el (mail-mode): Reformat doc string.
7720
7721 2005-12-09 Juri Linkov <juri@jurta.org>
7722
7723 * isearch.el (isearch-highlight): Change main overlay priority
7724 from 1 to 1001. Simplify.
7725 (isearch-lazy-highlight-update): Change lazy overlay priority
7726 from 0 to 1000.
7727
7728 * replace.el (replace-highlight): Change overlay priority from
7729 1 to 1001.
7730
7731 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
7732 Change overlay priority from 1 to 1001. Reuse existing overlay.
7733
7734 * compare-w.el (compare-windows-highlight): Change overlay
7735 priority from 1 to 1000.
7736
7737 * menu-bar.el (menu-bar-edit-menu): Add listp around
7738 pending-undo-list to disable menu item "undo" when pending
7739 undo list is empty.
7740
7741 * locate.el (locate): Disable undo in *Locate* buffer.
7742
7743 2005-12-09 Kim F. Storm <storm@cua.dk>
7744
7745 * mail/smtpmail.el (smtpmail-via-smtp): Disable undo in SMTP buffer.
7746
7747 2005-12-09 David Ponce <david@dponce.com>
7748
7749 * recentf.el: Improvement of the menu code.
7750 (recentf-enabled-p): Move before first use. Use `kill-emacs-hook'
7751 instead of menu hook.
7752 (recentf-show-menu, recentf-hide-menu): New functions.
7753 (recentf-menu-customization-changed, recentf-mode): Use them.
7754 (recentf-menu-action, recentf-max-menu-items)
7755 (recentf-menu-open-all-flag, recentf-menu-append-commands-flag)
7756 (recentf-arrange-by-rule-others)
7757 (recentf-arrange-by-rules-min-items)
7758 (recentf-arrange-by-rule-subfilter) : Don't use
7759 `recentf-menu-customization-changed'.
7760 (recentf-arrange-rules): Likewise. Accept functions to compute
7761 sub-menu titles.
7762 (recentf-menu-filter): Likewise. Doc fix.
7763 (recentf-menu-value-shortcut): Doc fix.
7764 (recentf-dump-variable): Quote atom value.
7765 (recentf-make-menu-items): Update to use it as a menu filter.
7766 (recentf-match-rule): New function.
7767 (recentf-arrange-by-rule): Use it.
7768 (recentf-indirect-mode-rule): New function.
7769 (recentf-build-mode-rules): Use it.
7770 (recentf-dir-rule): New function.
7771 (recentf-arrange-by-dir): Use it.
7772 (recentf-filter-changer-current): Rename from
7773 `recentf-filter-changer-state'. All references updated.
7774 (recentf-filter-changer-alist): Update filter names.
7775 (recentf-filter-changer-select): New function.
7776 (recentf-filter-changer): Use it. Make a sub-menu from filters
7777 available in `recentf-filter-changer-alist'.
7778 (recentf-data-cache, recentf-clear-data)
7779 (recentf-update-menu): Remove. All references updated.
7780 (recentf-match-rule-p, recentf-build-dir-rules)
7781 (recentf-filter-changer-goto-next)
7782 (recentf-filter-changer-get-current)
7783 (recentf-filter-changer-get-next): Remove.
7784
7785 2005-12-08 Luc Teirlinck <teirllm@auburn.edu>
7786
7787 * cus-edit.el (custom-buffer-create-internal): Relabel the whole
7788 buffer "Reset" button to "Reset to Current" for consistency with
7789 the State buttons.
7790
7791 2005-12-08 John Paul Wallington <jpw@pobox.com>
7792
7793 * ibuf-ext.el (define-ibuffer-filter filename):
7794 If `dired-directory' is a list then really use its car.
7795
7796 2005-12-08 Kim F. Storm <storm@cua.dk>
7797
7798 * emulation/cua-rect.el (cua--rectangle-aux-replace):
7799 Fix indention of text on right side of replaced rectangle.
7800
7801 2005-12-09 Nick Roberts <nickrob@snap.net.nz>
7802
7803 * progmodes/gud.el (gud-speedbar-buttons, gud-tooltip-tips):
7804 No need to check gud-comint-buffer is bound.
7805 (gdb): Prevent multiple debugging when first session uses gdba.
7806
7807 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
7808
7809 CC Mode update to 5.31.
7810
7811 * progmodes/cc-subword.el: Add a dummy `c-subword-mode' for
7812 Emacsen which lack `define-minor-mode'. (Currently Emacs <21.
7813 We might do this function properly in the future).
7814
7815 * progmodes/cc-cmds.el, cc-defs.el, cc-styles.el, cc-vars.el:
7816 New macros c-sentence-end and c-default-value-sentence end, to cope
7817 with Emacs 22's new function `sentence-end'.
7818
7819 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
7820
7821 * progmodes/cc-cmds.el (c-show-syntactic-information): Solve the
7822 compat issue using `c-put-overlay' and `c-delete-overlay'.
7823
7824 * progmodes/cc-defs.el (c-put-overlay, c-delete-overlay):
7825 New compat macros to handle overlays/extents.
7826
7827 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
7828
7829 * progmodes/cc-fix.el: Add definitions of the macros push and pop
7830 (for GNU Emacs 20.4)
7831
7832 * progmodes/cc-defs.el:
7833 (i) Load cc-fix.elc for `push' and `pop' (for GNU Emacs 20.4)
7834
7835 * progmodes/cc-cmds.el (c-show-syntactic-information): Change the
7836 highlighting mechanism so it will work in XEmacs too.
7837
7838 * progmodes/cc-defs.el: Insert c-int-to-char.
7839
7840 * progmodes/cc-langs.el (c-nonsymbol-token-char-list): Insert a
7841 call to the new macro c-int-to-char. This solves XEmacs's
7842 regarding characters as different from integers.
7843
7844 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
7845
7846 * progmodes/cc-fonts.el (c-make-syntactic-matcher):
7847 New internal helper.
7848
7849 (c-cpp-matchers, c-basic-matchers-before): Use the `eval'
7850 construct to make the indirect face lookup work in XEmacs.
7851
7852 (c-cpp-matchers): Append the negation char face to the existing
7853 fontification, so that the cpp face doesn't disappear.
7854 Use `c-make-syntactic-matcher' to avoid negation chars in comments
7855 and strings.
7856
7857 * progmodes/cc-fonts.el (c-negation-char-face-name): New variable
7858 to map to `font-lock-negation-char-face' in emacsen where it exists.
7859
7860 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
7861
7862 * progmodes/cc-mode.el: Bind c-subword-mode to C-c C-w.
7863
7864 * progmodes/cc-subword.el, cc-cmds.el, cc-mode.el:
7865 Rename "c-subword-move-mode" as "c-subword-mode".
7866
7867 * progmodes/cc-mode.el: Added tty suitable bindings for C-c
7868 <delete> and C-c C-<delete>. (To the c-hungry- delete functions).
7869
7870 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
7871
7872 * progmodes/cc-mode.el: Added autoload directive for
7873 `c-subword-move-mode' for use in older emacsen.
7874
7875 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
7876
7877 * progmodes/cc-mode.el:
7878 (i) Insert a binding for C-c C-backspace into
7879 c-bind-special-erase-keys which works in TTYs.
7880 (ii) Make sure that when file styles are used, any explicitly
7881 given style variables take priority over those in the style.
7882 Do this by calling `hack-local-variables' a second time.
7883
7884 * progmodes/cc-vars.el: Add language specific customization
7885 widgets for AWK to c-doc-comment-style, c-require-final-newline
7886 and c-default-style. Add a defcustom for awk-mode-hook.
7887 Give c-syntactic-element and c-syntactic-context doc-strings by
7888 directly setting their `variable-documentation' propery.
7889 This allows Emacs 22.1 to read these with C-h v.
7890
7891 * progmodes/cc-awk.el: Apply a tidy-up patch (from Stefan Monnier).
7892
7893 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
7894
7895 * progmodes/cc-fonts.el, cc-vars.el
7896 (gtkdoc-font-lock-doc-comments, gtkdoc-font-lock-doc-protection)
7897 (gtkdoc-font-lock-keywords): GtkDoc patterns contributed by
7898 Masatake YAMATO.
7899
7900 (c-doc-comment-style): Made GtkDoc default in C mode.
7901
7902 * progmodes/cc-mode.el: Fixed key bindings for C-c C-<backspace>
7903 and C-c C-<delete>.
7904
7905 (c-bind-special-erase-keys): New function for use on
7906 `normal-erase-is-backspace-hook' to bind C-c C-<delete> correctly.
7907
7908 * progmodes/cc-cmds.el (c-hungry-delete): New function to fix
7909 <delete> key behavior in XEmacs according to `delete-forward-p'.
7910 C.f. `c-electric-delete'.
7911
7912 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
7913
7914 * progmodes/cc-mode.el: Give c-hungry-backspace and
7915 c-hungry-delete-forward permanent key bindings.
7916
7917 * progmodes/cc-cmds.el (c-electric-semi&comma):
7918 Bind c-syntactic-context for calls to "criteria functions", for
7919 consistency with other calls to user functions.
7920
7921 * progmodes/cc-cmds.el (c-indent-command): Expunge use of
7922 `current-prefix-arg', since this might be the prefix arg to a
7923 command which calls c-indent-command as a function. Change the
7924 interactive spec from "p" to "P".
7925
7926 * progmodes/cc-styles.el: Amend the doc-string of c-set-style, in
7927 reponse to a report from Joseph Kiniry <kiniry@acm.org> that it
7928 was difficult to understand.
7929
7930 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
7931
7932 * progmodes/cc-engine.el (c-on-identifier): Fix bug when at the
7933 first char of an identifier.
7934
7935 * progmodes/cc-engine.el (c-on-identifier): Handle the "operator
7936 +" syntax in C++.
7937
7938 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
7939
7940 * progmodes/cc-cmds.el (c-mask-paragraph): Correct, so that
7941 auto-fill doesn't split a c-comment's last word from a hanging
7942 "*/" when a space is typed between them after fill-column.
7943
7944 * progmodes/cc-defs.el: New macro c-delete-and-extract-region.
7945
7946 * progmodes/cc-styles.el (c-set-style)
7947 (c-setup-paragraph-variables): Abort the command if we're not in a
7948 CC Mode buffer.
7949
7950 * progmodes/cc-align.el (c-lineup-C-comments): Correct indentation
7951 with blank comment-prefix, and a blank line as the comment's
7952 second line.
7953
7954 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
7955
7956 * progmodes/cc-fonts.el (c-cpp-matchers, c-basic-matchers-before):
7957 Incorporate the patterns added in the Emacs development branch
7958 for the new Emacs 22 face `font-lock-negation-char-face'.
7959
7960 * progmodes/cc-fonts.el (c-invalid-face-name): Use "red1" instead
7961 of "red" since it stands out better in xterms and DOS terminals.
7962
7963 * progmodes/cc-engine.el (c-literal-faces):
7964 Add `font-lock-comment-delimiter-face' which is new in Emacs 22.
7965
7966 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
7967
7968 * progmodes/cc-cmds.el: Make C-c C-a (`c-toggle-auto-newline')
7969 forcibly enable c-electric-flag.
7970
7971 * progmodes/cc-vars.el, cc-cmds.el: New clean-up
7972 `comment-close-slash' on c-electric-slash: if enabled, typing `/' just
7973 after the comment-prefix of a C-style comment will close that comment.
7974
7975 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
7976
7977 * progmodes/cc-fonts.el (c-basic-matchers-before)
7978 (c-complex-decl-matchers): Fix the "not-arrow-prefix" regexp used
7979 in Pike.
7980
7981 * progmodes/cc-langs.el (c-other-op-syntax-tokens): Only C++ has
7982 digraphs.
7983
7984 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el
7985 (c-cpp-message-directives, c-cpp-include-directives)
7986 (c-opt-cpp-macro-define, c-opt-cpp-macro-define-start)
7987 (c-cpp-expr-directives): Introduce new language constants to
7988 control cpp syntax in a cleaner way.
7989
7990 (c-cpp-expr-functions): Rename from c-cpp-defined-fns.
7991
7992 (c-cpp-matchers, c-forward-to-cpp-define-body): Use them.
7993
7994 * progmodes/cc-langs.el, cc-fonts.el (c-string-escaped-newlines)
7995 (c-multiline-string-start-char): New language constants and
7996 variables to specify how newlines in string literals work.
7997
7998 (c-font-lock-invalid-string): Use them.
7999
8000 * progmodes/cc-cmds.el (c-try-one-liner): Robustness fix if an
8001 unbalanced close brace is entered. Optimization by avoiding going
8002 back over arbitrarily large blocks. Removed hints that this
8003 function only would be relevant/useful in AWK.
8004
8005 (c-electric-brace): Indent syntactically after the cleanups since
8006 lineup functions might do it differently then.
8007
8008 * progmodes/cc-engine.el, cc-langs.el
8009 (c-opt-op-identifier-prefix): New language constant and variable.
8010
8011 (c-just-after-func-arglist-p, c-after-special-operator-id)
8012 (c-search-decl-header-end, c-inside-bracelist-p): Use it.
8013
8014 * progmodes/cc-align.el, cc-engine.el
8015 (c-after-special-operator-id): New helper to handle C++ operator
8016 identifiers.
8017
8018 (c-lineup-topmost-intro-cont, c-just-after-func-arglist-p)
8019 (c-guess-basic-syntax): Handle C++ operator identifiers in
8020 declarations.
8021
8022 * progmodes/cc-langs.el (c-assignment-operators): Add the
8023 trigraph version of ^= too.
8024
8025 * progmodes/cc-langs.el (c-assignment-operators): Add the
8026 trigraph version of |= in C++.
8027
8028 * progmodes/cc-fonts.el (c-font-lock-declarators):
8029 Handle `c-decl-hangon-kwds' after the identifier name.
8030
8031 * progmodes/cc-engine.el (c-guess-basic-syntax): When deciding
8032 whether an arglist is "nonempty", ignore a comment after the open
8033 paren if it isn't followed by a non-comment token on the same line.
8034
8035 * progmodes/cc-engine.el (c-guess-basic-syntax): Case 4:
8036 Enable heuristics below the point to cope with classes inside special
8037 brace lists in Pike.
8038
8039 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8040
8041 * progmodes/cc-cmds.el: Amend c-point-syntax to handle macros.
8042
8043 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8044
8045 * progmodes/cc-guess.el (cc-guess-install): New function to
8046 install an already guessed style in another buffer.
8047
8048 * progmodes/cc-defs.el (c-tentative-buffer-changes): No longer
8049 sets `inhibit-read-only' - `c-save-buffer-state' should be used
8050 anyway if the change always is undone.
8051
8052 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8053
8054 Implement togglable electricity:
8055
8056 * progmodes/cc-defs.el: Enhance c-save-buffer-state's doc-string,
8057 saying when it should be used.
8058
8059 * progmodes/cc-engine.el: Add the new buffer-local variable,
8060 c-electric-flag.
8061
8062 * progmodes/cc-langs.el: Change the name of c-toggle-auto-state to
8063 c-toggle-auto-newline.
8064
8065 * progmodes/cc-mode.el: Rename c-toggle-auto-state to
8066 c-toggle-auto-newline. Remove the binding for
8067 c-toggle-auto-hungry-state. Add the binding C-c C-l for the new
8068 c-toggle-electric-state.
8069
8070 * progmodes/cc-vars.el: Make c-syntactic-indentation buffer local.
8071
8072 * progmodes/cc-cmds.el: Add `c-bytecomp-defun's for
8073 c-\(forward\|backward\)-subword.
8074 (c-update-modeline): Add the new modeline flag `l' for
8075 `c-electric-flag'. Make the auto-newline flag `a' dependent on `l'.
8076 (c-toggle-auto-state): Rename it to `c-toggle-auto-newline'.
8077 Make the old name an alias of the new name.
8078 (c-toggle-electric-state): New function.
8079 (c-electric-\(pound\|brace\|slash\|star\|semi&comma\|colon\|lt-gt\|paren\|continued-statement\)):
8080 Adapt these functions to do electric things only when
8081 c-electric-flag is non-nil.
8082 (c-point-syntax, c-brace-newlines, c-try-oneliner): Extract these
8083 new functions from c-electric-brace.
8084 (c-point-syntax): Add a check for "virtual semicolons" in AWK
8085 mode, so that the tentative extra newline doesn't change the
8086 syntax of the following brace.
8087 (c-electric-brace): Restructure by extracting the above functions.
8088 Tidy up the coding somewhat.
8089 (c-electric-semi&comma, c-electric-colon, c-electric-paren):
8090 restructure a bit.
8091
8092 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8093
8094 * progmodes/cc-cmds.el (c-show-syntactic-information): Show the
8095 anchor position(s) using faces. Thanks to Masatake YAMATO for the idea.
8096
8097 * progmodes/cc-mode.el, cc-cmds.el, cc-defs.el, cc-engine.el
8098 (c-submode-indicators): Change name from `c-auto-hungry-string'
8099 since it's now used to track another submode.
8100
8101 (c-update-modeline): Convert to function and extended to check
8102 `c-subword-move-mode'.
8103
8104 (c-forward-into-nomenclature, c-backward-into-nomenclature):
8105 Convert to compat aliases for `c-forward-subword' and
8106 `c-backward-subword'.
8107
8108 * progmodes/cc-subword.el: New functions and minor mode to handle
8109 SillyCapsedStyleIndentifiers, contributed by Masatake YAMATO:
8110
8111 (c-forward-subword, c-backward-subword, c-mark-subword)
8112 (c-kill-subword, c-backward-kill-subword, c-transpose-subwords)
8113 (c-capitalize-subword, c-downcase-subword, c-upcase-subword):
8114 Functions corresponding to the standard word handling functions.
8115
8116 (c-subword-move-mode): Minor mode that replaces all the standard
8117 word handling functions with their subword equivalences.
8118
8119 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8120
8121 * progmodes/cc-vars.el (c-cleanup-list): Insert a customization
8122 entry for one-liner-defun.
8123
8124 * progmodes/cc-defs.el: Give c-tentative-buffer-changes its own
8125 name in its def-edebug-spec.
8126
8127 * progmodes/cc-cmds.el (c-electric-brace): Make the
8128 one-liner-defun clean-up work with empty-defun-braces. o-l-d now
8129 compacts space before a comment, if this will make things fit on
8130 one line.
8131
8132 Introduce an "awk" style, mainly for auto-newline and clean-ups.
8133
8134 * progmodes/cc-align.el: New function c-snug-1line-defun-close
8135
8136 * progmodes/cc-cmds.el: In c-electric-brace, add code for new
8137 clean-up one-liner-defun.
8138
8139 * progmodes/cc-styles.el: Add the new "awk" style.
8140
8141 * progmodes/cc-vars.el: Add description of one-liner-defun to
8142 c-cleanup-list's doc-string. New user options,
8143 c-max-one-liner-length. In c-default-style, set the default style
8144 for AWK to "awk".
8145
8146 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8147
8148 * progmodes/cc-engine.el (c-forward-label): Fix fontification of
8149 macros inside labels.
8150
8151 * progmodes/cc-engine.el (c-looking-at-bos): Obsolete in favor of
8152 `c-at-statement-start-p' and `c-at-expression-start-p'.
8153
8154 * progmodes/cc-defs.el (c-tnt-chng-record-state): Don't signal an
8155 error if the mark isn't set.
8156
8157 * progmodes/cc-engine.el (c-guess-continued-construct)
8158 (c-guess-basic-syntax): Use `c-forward-decl-or-cast-1' to more
8159 accurately detect functions inside functions.
8160
8161 * progmodes/cc-engine.el (c-at-expression-start-p): New function
8162 like `c-at-statement-start-p' that additionally recognizes commas
8163 and expression parentheses as delimiters.
8164
8165 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Add flag
8166 to avoid heuristics that doesn't work for unclosed blocks.
8167 (c-at-statement-start-p): New function.
8168
8169 * progmodes/cc-engine.el, cc-fonts.el: Fixes in handling of
8170 Objective-C directives, e.g. directives spanning lines should work
8171 reasonably well now.
8172
8173 (c-put-c-type-property, c-clear-c-type-property): New helpers.
8174
8175 (c-forward-objc-directive): New function to move over any ObjC
8176 directive.
8177
8178 (c-just-after-func-arglist-p, c-guess-basic-syntax)
8179 (c-basic-matchers-before): Use it.
8180
8181 (c-font-lock-objc-iip-decl): Remove.
8182
8183 * progmodes/cc-engine.el (c-guess-basic-syntax): Some improvement
8184 in the template arglist recognition.
8185
8186 * progmodes/cc-styles.el (c-style-alist): Fix several
8187 inconsistencies in the Whitesmith style.
8188
8189 * progmodes/cc-align.el (c-lineup-after-whitesmith-blocks):
8190 New lineup function to get lines after Whitesmith style blocks
8191 correctly indented.
8192
8193 (c-lineup-whitesmith-in-block): Back out the compensation for
8194 opening parens since it's done using `add' lists in the style
8195 definition instead. Don't use the anchor position since it varies
8196 too much between the syntactic symbols. :P
8197
8198 * progmodes/cc-vars.el (c-valid-offset): Update.
8199
8200 * progmodes/cc-engine.el (c-evaluate-offset): Extend to handle
8201 lists where the offsets are combined according to several
8202 different methods: `first', `min', `max', and `add'.
8203 Report offset evaluation errors with `c-benign-error' so that some kind
8204 of reindentation still is done.
8205
8206 * progmodes/cc-engine.el (c-guess-basic-syntax):
8207 Anchor `arglist-intro' the same way as `arglist-cont-nonempty' and
8208 `arglist-close'.
8209
8210 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix similar
8211 situations for `arglist-cont-nonempty' and `arglist-close'.
8212
8213 * progmodes/cc-langs.el (c-opt-identifier-concat-key-depth): New const.
8214
8215 * progmodes/cc-defs.el: Use `cc-bytecomp-fboundp' and
8216 cc-bytecomp-boundp' in a number of places.
8217
8218 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a
8219 macro related issue.
8220
8221 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8222
8223 * progmodes/cc-awk.el: Change the terminology of regexps: A char
8224 list is now [asdf], a char class [:alpha:].
8225 Include code for char classes.
8226 Set c-awk-NL-prop on lines ending in open strings. (Bug fix.)
8227 Add character classes (e.g. "[:alpha:]") into AWK Mode's regexps.
8228
8229 Remove (nearly all of) the cruft associated with AWK Mode's former
8230 concept of "virtual semicolons":
8231
8232 Adapt c-beginning-of-statement, c-end-of-statement (together with
8233 subfunctions) to use the new notion of "virtual semicolon" in
8234 place of the old awkward special handling for AWK. There remains
8235 much cruft in cc-awk.el, cc-cmds.el and cc-engine.el to clear out.
8236 * progmodes/cc-cmds.el:
8237 (c-ascertain-adjacent-literal): In the backwards direction, now
8238 recognises AWK regexp delimiters as string delimiters.
8239 (c-after-statement-terminator-p): Adapt for virtual semicolons;
8240 check more rigorously for "end of macro".
8241 (c-back-over-illiterals, c-forward-over-illiterals): Adapt for
8242 virtual semicolons;
8243 (c-beginning-of-statement): Adapt for virtual semicolons; Separate
8244 out the code for forward movement into ...
8245 (c-end-of-statement): Now contains the code for forward movement,
8246 adapted for virtual semicolons.
8247
8248 * progmodes/cc-engine.el:
8249 (c-ws*-string-limit-regexp): New regexp.
8250 (c-forward-single-comment, c-backward-single-comment): Comment out
8251 the (now redundant) "special" AWK stuff.
8252
8253 * progmodes/cc-styles.el, cc-vars.el: Change the settings of
8254 c-string-par-start, c-string-par-separate to be more like Text
8255 Mode than Fundamental Mode.
8256
8257 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8258
8259 * progmodes/cc-fonts.el (c-font-lock-declarations): Always narrow
8260 to the fontified region so that fontification doesn't occur
8261 outside it (could happen e.g. when fontifying a line with an
8262 unfinished declaration).
8263
8264 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8265
8266 * progmodes/cc-awk.el: Move regexps for analysing AWK code to near the
8267 start of the file. ^L now separate sections of the file.
8268 (c-awk-non-eol-esc-pair-re, c-awk-blank-or-comment-line-re)
8269 (c-awk-one-line-possibly-open-string-re)
8270 (c-awk-regexp-one-line-possibly-open-char-class-re)
8271 (c-awk-one-line-possibly-open-regexp-re)
8272 (c-awk-one-line-non-syn-ws*-re): New defonsts.
8273 (c-awk-at-vsemi-p, c-awk-vsemi-status-unknown-p): New functions.
8274
8275 Amend the concept of "virtual semicolons" (in the indentation
8276 engine) for languages like AWK, such that they are now
8277 conceptually attached to end of the last token of a statement, not
8278 the end of the line. (In AWK Mode, however, the pertinent text
8279 property is still physically set on the EOL.) Remove the specific
8280 tests for awk-mode, thus facilitating the introduction of other
8281 language modes where EOLs can end statements.
8282 (Note: The funtionality in cc-cmds.el, specifically
8283 c-beginning/end-of-statement has yet to be amended.)
8284
8285 * progmodes/cc-defs.el (c-at-vsemi-p, c-vsemi-status-unknown-p):
8286 New macros.
8287
8288 * progmodes/cc-langs.el: Added `#' into AWK Mode's value of
8289 c-stmt-delim-chars. New c-lang-defvars: c-at-vsemi-p-fn,
8290 c-vsemi-status-unknown-p-fn (in a new page).
8291
8292 * progmodes/cc-engine.el: In c-beginning-of-statement-1,
8293 c-crosses-statement-barrier-p, c-guess-basic-syntax, replace
8294 numerous awkward forms like
8295 (if (c-major-mode-is 'awk-mode) (c-awk-prev-line-incomplete-p))
8296 with (c-at-vsemi-p). Fix a few typos. In c-guess-basic-syntax, new
8297 variable before-ws-ip, the place just after char-before-ip appears.
8298
8299 * progmodes/cc-mode.el: Fix what's almost a semantic ambiguity in
8300 a comment.
8301
8302 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8303
8304 * progmodes/cc-cmds.el (c-electric-brace): Clean up using
8305 `c-tentative-buffer-changes'.
8306
8307 * progmodes/cc-defs.el (c-region-is-active-p): Simplify and
8308 convert to macro to choose between Emacs and XEmacs at compile time.
8309
8310 (c-set-region-active): New set counterpart to `c-region-is-active-p'.
8311
8312 (c-tentative-buffer-changes): New macro to handle temporary buffer
8313 changes in a convenient way.
8314
8315 (c-tnt-chng-record-state, c-tnt-chng-cleanup): Internal helpers
8316 for `c-tentative-buffer-changes'.
8317
8318 * progmodes/cc-engine.el (c-looking-at-inexpr-block): Tighten up
8319 the checks for paren sexps between the point and the keyword, to
8320 avoid some false alarms.
8321
8322 * progmodes/cc-engine.el, cc-langs.el (c-looking-at-inexpr-block):
8323 Fixed a situation where an error could be thrown for unbalanced
8324 parens. Changed to make use of c-keyword-member' to avoid some
8325 repeated regexp matches.
8326
8327 (c-opt-lambda-key, c-opt-inexpr-block-key, c-opt-inexpr-class-key):
8328 These language variable are no longer necessary.
8329
8330 (c-block-stmt-kwds): New language constant used by
8331 c-looking-at-inexpr-block'.
8332
8333 (c-guess-basic-syntax): Remove an optional check that looked at
8334 the existence of the now removed language variables.
8335
8336 * progmodes/cc-engine.el (c-fdoc-shift-type-backward)
8337 (c-forward-decl-or-cast-1): Fix invalid recognition of C++ style
8338 object instantiation expressions as declarations in some contexts.
8339 This bug only affected languages where the declarator can't be
8340 enclosed in parentheses.
8341
8342 * progmodes/cc-styles.el (c-style-alist): Fix the GNU style to
8343 insert newlines before and after substatement braces.
8344
8345 * progmodes/cc-engine.el: Improved the heuristics for recognizing
8346 function declaration headers and the handling of C++ style member
8347 init lists.
8348
8349 (c-just-after-func-arglist-p): Rewritten to use
8350 `c-forward-decl-or-cast-1'. Now behaves a bit differently too.
8351
8352 (c-beginning-of-member-init-list): Remove since it isn't used anymore.
8353
8354 (c-guess-basic-syntax): Adapt case 5B for the new
8355 `c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3.
8356 Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
8357 covers all cases now).
8358
8359 * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
8360
8361 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8362
8363 * progmodes/cc-cmds.el, cc-styles.el, cc-vars.el: New variables
8364 c-string-par-start/separate c-sentence-end-with-esc-eol,
8365 initialised in c-setup-paragraph-variables, used in string
8366 scanning subroutines of c-beginning-of-statement.
8367
8368 * progmodes/cc-cmds.el (c-electric-brace): Don't delete a comment
8369 which precedes the newly inserted `{'.
8370
8371 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8372
8373 * progmodes/cc-engine.el, cc-langs.el: Rewrote the recognition
8374 function for declaration level blocks. It should now cope with
8375 templates better and also be a lot more comprehensible.
8376
8377 (c-looking-at-decl-block): The new function.
8378
8379 (c-search-uplist-for-classkey): The old one. It's now a wrapper
8380 for compatibility.
8381
8382 (c-add-class-syntax, c-guess-continued-construct)
8383 (c-guess-basic-syntax): Adapt for `c-looking-at-decl-block'.
8384
8385 (c-decl-block-key): Change to tell apart ambiguous and
8386 unambiguous keywords. Pike specials are now handled directly in
8387 the code instead.
8388
8389 (c-block-prefix-disallowed-chars, c-block-prefix-charset):
8390 New language constants and variables to make the backward skip in
8391 `c-looking-at-decl-block' as tight as possible.
8392
8393 (c-nonsymbol-token-char-list): New language constant.
8394
8395 * progmodes/cc-engine.el (c-backward-<>-arglist): New function to
8396 find balanced template arglists backwards.
8397
8398 * progmodes/cc-defs.el (c-make-bare-char-alt): New helper for
8399 making char classes for `c-syntactic-skip-backward'.
8400
8401 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify case
8402 16D - can't be a class-close at that point.
8403
8404 * progmodes/cc-engine.el (c-guess-basic-syntax)
8405 (c-add-class-syntax): Don't narrow out the enclosing declaration
8406 level. This makes everything a lot easier, and it was actually
8407 only four small places that needed it to work. Some places that
8408 previously did `widen' are removed now, which has the effect that
8409 `c-guess-basic-syntax' never will look at things outside the
8410 current narrowment now. The anchor position for `topmost-intro'
8411 is affected by this, but it was so bogus it was basically useless
8412 before, and now it's equally bogus but in a slightly different way.
8413
8414 (c-narrow-out-enclosing-class): Gone.
8415
8416 (c-most-enclosing-brace, c-least-enclosing-brace): Don't filter to
8417 the narrowed region.
8418
8419 (c-least-enclosing-brace): Remove silly optional argument.
8420
8421 * progmodes/cc-engine.el (c-beginning-of-decl-1): Fix bug where
8422 the point could be left directly after an open paren when finding
8423 the beginning of the first decl in the block.
8424
8425 * progmodes/cc-engine.el, cc-fonts.el (c-forward-keyword-clause):
8426 Specify which submatch to use.
8427
8428 * progmodes/cc-langs.el (c-symbol-start): Include `@' in ObjC.
8429
8430 (c-decl-start-re): No longer any need for special treatment of
8431 ObjC due to the above.
8432
8433 (c-other-block-decl-kwds): Handle "extern" in ObjC too since it
8434 presumably follows C in that regard.
8435
8436 * progmodes/cc-langs.el (c-identifier-ops, c-after-id-concat-ops):
8437 New language constants to specify operator tokens inside
8438 identifiers in a more high level way.
8439
8440 (c-opt-identifier-prefix-key): New internal language constant.
8441
8442 (c-opt-identifier-concat-key, c-opt-after-id-concat-key)
8443 (c-identifier-start, c-identifier-key): Now completely calculated
8444 from other constants.
8445
8446 (c-identifier-last-sym-match): Decommission since it's no longer used.
8447
8448 (c-operators): Use `c-identifier-ops'. Document `postfix-if-paren'.
8449
8450 * progmodes/cc-engine.el (c-forward-name): Remove the
8451 optimization when c-identifier-key is equal to c-symbol-key since
8452 it doesn't work in byte compiled files. Don't record empty
8453 regions as identifiers.
8454
8455 * progmodes/cc-langs.el (c-filter-ops): New helper function to
8456 simplify access to `c-operators' and its likes.
8457
8458 (c-operator-list, c-all-op-syntax-tokens)
8459 (c-nonsymbol-token-regexp, c-<>-multichar-token-regexp)
8460 (c-<-op-cont-regexp, c->-op-cont-regexp, c-expr-kwds)
8461 (c-primary-expr-regexp, c-cast-parens): Use it.
8462
8463 * progmodes/cc-defs.el (c-lang-const): Fixes to allow use without
8464 an explicit language in functions.
8465
8466 * progmodes/cc-defs.el (c-make-keywords-re): Add an appendable
8467 variant of adornment.
8468
8469 * progmodes/cc-langs.el (c-any-class-key): Remove unused language
8470 variable.
8471
8472 (c-type-decl-prefix-key): Remove some now unnecessary cruft from
8473 the Pike value.
8474
8475 * progmodes/cc-engine.el (c-on-identifier)
8476 (c-simple-skip-symbol-backward): Small fix for handling "-"
8477 correctly in `skip-chars-backward'. Affected the operator lfun
8478 syntax in Pike.
8479
8480 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Disable the
8481 diagnostic message about precompiled language vars not being used.
8482
8483 * progmodes/cc-langs.el (c-paren-nontype-kwds): The GCC keyword
8484 "__attribute__" is followed by a parenthesis.
8485
8486 (c-type-start-kwds, c-prefix-spec-kwds, c-prefix-spec-kwds-re)
8487 (c-specifier-key, c-not-decl-init-keywords): Some cleanup using new
8488 language constants `c-type-start-kwds' and `c-prefix-spec-kwds'.
8489
8490 * progmodes/cc-fonts.el, cc-langs.el, cc-engine.el:
8491 Internal cleanups to properly detect the declared identifiers in
8492 various declarations.
8493
8494 (c-decl-start-kwds): New language constant to recognize
8495 declarations that can start anywhere. Used for class declarations
8496 in Pike.
8497
8498 (c-specifier-key, c-not-decl-init-keywords)
8499 (c-decl-prefix-or-start-re, c-find-decl-prefix-search)
8500 (c-find-decl-spots): Implement `c-decl-start-kwds'.
8501
8502 (c-other-decl-kwds, c-postfix-decl-spec-kwds, c-decl-hangon-kwds)
8503 (c-decl-hangon-key, c-forward-decl-or-cast-1): Separate the
8504 handling of the compiler specific extension keywords into a new
8505 language constant `c-decl-hangon-kwds' that defines keyword
8506 clauses to be ignored in declarations.
8507
8508 (c-forward-id-comma-list, c-forward-keyword-clause): Don't skip
8509 past unrecognized tokens when handling `c-colon-type-list-kwds'.
8510 Necessary to stop at the declared identifier in e.g. IDL valuetype
8511 declarations.
8512
8513 (c-typedef-decl-kwds, c-typeless-decl-kwds, c-type-list-kwds)
8514 (c-prefix-spec-kwds-re, c-postfix-spec-kwds)
8515 (c-after-suffixed-type-decl-key, c-opt-postfix-decl-spec-key)
8516 (c-forward-decl-or-cast-1): Recognize the declared identifier in
8517 class and enum declarations as such and not as part of the type.
8518
8519 (c-forward-decl-or-cast-1, c-forward-label): Relax the
8520 interpretation of PRECEDING-TOKEN-END when there's no preceding token.
8521
8522 (c-forward-decl-or-cast-1): Don't disregard sure signs of
8523 declarations when there's some syntax error later on.
8524
8525 (c-complex-decl-matchers): Did away with a reference to
8526 `c-specifier-key'.
8527
8528 * progmodes/cc-engine.el (c-maybe-labelp): Provide no default
8529 value - this variable is always dynamically bound.
8530
8531 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el, cc-menus.el
8532 * cc-mode.el, cc-styles.el, cc-vars.el, cc-align.el, cc-awk.el
8533 * cc-cmds.el, cc-defs.el: Change the policy for marking up
8534 functions that might do hidden buffer changes: All such internal
8535 functions are now marked instead of those that don't.
8536
8537 (c-beginning-of-macro, c-end-of-macro, c-(forward|backward)-comments)
8538 (c-(forward|backward)-single-comment, c-parse-state, c-on-identifier)
8539 (c-(fast-|slow-|)in-literal, c-literal-limits, c-collect-line-comments)
8540 (c-literal-type): Allow these functions to make hidden buffer changes,
8541 so that they are free to use text property caching later on.
8542
8543 (c-electric-backspace, c-electric-delete-forward, c-electric-pound)
8544 (c-electric-brace, c-electric-slash, c-electric-star)
8545 (c-electric-semi&comma, c-electric-colon, c-electric-lt-gt)
8546 (c-electric-paren, c-electric-continued-statement, c-indent-command)
8547 (c-indent-region, c-mask-paragraph, c-indent-new-comment-line)
8548 (c-context-line-break): Add `c-save-buffer-state' calls to comply
8549 with the changed semantics of the functions above.
8550
8551 * progmodes/cc-engine.el (c-beginning-of-statement-1): Fix a bug
8552 when macros occur in obscure places. Optimized the sexp movement
8553 a bit.
8554
8555 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8556
8557 Enhancements for c-beginning-of-statement to work in AWK Mode:
8558
8559 * progmodes/cc-awk.el: Supersede c-awk-NL-prop value `;'
8560 (completed statement) with `}' (statement completed by closing
8561 brace or semicolon) and `$' (statement completed by EOL).
8562
8563 (c-awk-virtual-semicolon-ends-prev-line-p)
8564 (c-awk-virtual-semicolon-ends-line-p)
8565 (c-awk-skip-semantic-ws-forward, c-awk-skip-semantic-ws-backward)
8566 (c-awk-at-statement-end-p): New functions.
8567
8568 * progmodes/cc-cmds.el: Simplify the structure of functions
8569 c-forward-over-illiterals, c-back-over-illiterals. Enhance these
8570 two functions and c-beginning-of-statement to handle AWK Mode.
8571
8572 * progmodes/cc-engine.el: Enhance c-forward-single-comment,
8573 c-backward-single-comment for AWK mode. Attempt to clarify their
8574 doc-strings.
8575
8576 * progmodes/cc-mode.el: Put M-a and M-e into awk-mode-map.
8577
8578 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8579
8580 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el: Cleaned up the
8581 label handling. Labels are now recognized in a uniform and more
8582 robust way, regardless of context. Text properties are put on all
8583 labels to recognize the following declarations better.
8584 Multiword labels are handled both in indentation and fontification for
8585 the benefit of language extensions like Qt. For consistency, keywords
8586 in labels are now fontified with the label face instead.
8587 That also applies to "case" and "default".
8588
8589 (c-beginning-of-statement-1): Fix some bugs in the label
8590 handling. Disregard `c-nonlabel-token-key' in labels that begin
8591 with `c-label-kwds'.
8592
8593 (c-find-decl-spots): Support that the callback adds more
8594 `c-decl-end' spots to find.
8595
8596 (c-forward-decl-or-cast-1): Don't treat a list of plain
8597 identifiers followed by a colon as a declaration.
8598
8599 (c-forward-label): New function to recognize labels.
8600
8601 (c-guess-basic-syntax): Replace uses of `c-label-key' with
8602 `c-forward-label'. Moved the label recognition cases (14 and 15)
8603 earlier since they aren't so context sensitive now. Handle labels
8604 on the top level gracefully. Moved access label recognition to
8605 the generic label case (CASE 15) - removed CASE 5E.
8606
8607 (c-font-lock-declarations): Add recognition of labels in the
8608 same round since we need to handle labels in parallell with other
8609 declarations to recognize both accurately. It should also improve
8610 speed.
8611
8612 (c-simple-decl-matchers, c-basic-matchers-after):
8613 Move `c-font-lock-labels' so that it only is used on decoration level 2
8614 since `c-font-lock-declarations' handles it otherwise.
8615
8616 (c-complex-decl-matchers): Remove the simplistic recognition of
8617 access labels.
8618
8619 (c-decl-prefix-re): Remove the kludges that was necessary to cope
8620 with labels earlier.
8621
8622 (c-decl-start-re): New language variable to make
8623 `c-font-lock-declarations' stop for the special protection labels
8624 in Objective-C that start with `@'.
8625
8626 (c-label-key): Remove since it's no longer used.
8627
8628 (c-recognize-colon-labels, c-label-prefix-re): New language
8629 constants to support recognition of generic colon-terminated labels.
8630
8631 (c-type-decl-end-used): `c-decl-end' is now used whenever there
8632 are colon terminated labels.
8633
8634 * progmodes/cc-align.el (c-lineup-arglist): Fix bug when the
8635 first argument starts with a special brace list.
8636
8637 * progmodes/cc-engine.el, cc-fonts.el (c-forward-decl-or-cast-1)
8638 (c-font-lock-declarations): Break out the declaration and cast
8639 recognition from `c-font-lock-declarations' to a new function, so
8640 that it can be used in the indentation engine.
8641
8642 * progmodes/cc-engine.el (c-find-decl-spots): Fix bug in backing
8643 up to the start of the literal. Fixed bug with the point on the
8644 wrong side of the search limit that could happen when the start
8645 position is inside a literal.
8646
8647 * progmodes/cc-engine.el (c-parse-state)
8648 (c-invalidate-state-cache): Modify the use of `c-state-cache-end'
8649 so that it's kept a little bit back to increase the hit rate.
8650
8651 (c-parse-state): Change the macro handling and fixed some
8652 glitches. Macro context is checked more often than necessary now,
8653 but otoh less garbage conses are generated.
8654
8655 * progmodes/cc-engine.el (c-parse-state)
8656 (c-invalidate-state-cache): Cache the last position where
8657 `c-state-cache' applies. This can speed up refontification quite
8658 a bit in blocks where there are many non-brace parens before the point.
8659
8660 (c-state-cache-end): New variable for this.
8661
8662 (c-guess-basic-syntax, c-debug-parse-state): Adapt for the new
8663 cache variable.
8664
8665 * progmodes/cc-engine.el (c-find-decl-spots): Take more care to
8666 get close initial continue positions when the start position is
8667 inside a literal or macro. Do not call the callback for spots
8668 before the start position (which can happen e.g. for `c-decl-end'
8669 spots inside comments). Optimize better in special cases when the
8670 region is a single line inside a literal or macro (typically when
8671 the current line is refontified).
8672
8673 * progmodes/cc-engine.el (c-guess-basic-syntax): Simplify calls
8674 to `c-add-stmt-syntax' - there's no need to explicitly whack off
8675 entries from the paren state.
8676
8677 * progmodes/cc-engine.el (c-add-stmt-syntax): Narrow down the
8678 special case for "else if" clauses.
8679
8680 * progmodes/cc-engine.el (c-looking-at-inexpr-block)
8681 (c-add-stmt-syntax): Use `c-recognize-paren-inexpr-blocks'.
8682
8683 * progmodes/cc-langs.el (c-recognize-paren-inexpr-blocks):
8684 New language variable to recognize the gcc extension with statement
8685 blocks inside expressions.
8686
8687 * progmodes/cc-engine.el (c-add-stmt-syntax): Restructure to make
8688 it somewhat more comprehensible. The argument AT-BLOCK-START is
8689 no longer used and hence removed.
8690
8691 (c-guess-continued-construct, c-guess-basic-syntax): Update calls
8692 to `c-add-stmt-syntax'.
8693
8694 * progmodes/cc-engine.el (c-backward-to-decl-anchor):
8695 Use `c-beginning-of-statement-1' instead of duplicating parts of it.
8696 This fixes bogus label recognition.
8697
8698 * progmodes/cc-engine.el (c-add-type, c-check-type)
8699 (c-forward-name, c-forward-type): Improve storage of template
8700 types in `c-found-types' so that they can be recognized better.
8701
8702 (c-syntactic-content): Add option to skip past nested parens.
8703
8704 * progmodes/cc-engine.el (c-forward-name):
8705 Set `c-last-identifier-range' all the time. It's less work that way.
8706 Handle that there might not be an identifier to store in
8707 `c-last-identifier-range'.
8708
8709 (c-forward-type): Handle that `c-last-identifier-range' might be
8710 nil from `c-forward-name'.
8711
8712 * progmodes/cc-defs.el (c-safe-scan-lists)
8713 (c-(go-)?(up|down)-list-(forward|backward)): Add limit arguments.
8714
8715 * progmodes/cc-defs.el (c-save-buffer-state): Use `unwind-protect'
8716 to work even if the form fails.
8717
8718 * progmodes/cc-engine.el (c-parse-state): Speedup when moving far
8719 down in a large file in one go.
8720
8721 (c-get-fallback-start-pos): New helper function for `c-parse-state'.
8722
8723 * progmodes/cc-align.el (c-lineup-assignments): New lineup
8724 function which is like `c-lineup-math' but returns nil instead of
8725 `c-basic-offset' when it doesn't match.
8726
8727 (c-lineup-math): Change to use `c-lineup-assignments'.
8728
8729 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8730
8731 * progmodes/cc-cmds.el: Fix some bugs in subfunctions of
8732 c-beginning-of-statement. New subfunctions
8733 c-in-comment-line-prefix-p, c-narrow-to-comment-innards.
8734
8735 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8736
8737 * progmodes/cc-fonts.el, cc-langs.el: Use `c-simple-ws' instead of
8738 hardcoded char classes whereever possible. Changed a couple of
8739 places to use skip by syntax instead of skip by char class.
8740
8741 * progmodes/cc-langs.el (c-unterminated-block-comment-regexp):
8742 Fix a bug in the regexp that caused extreme backtracking.
8743
8744 * progmodes/cc-langs.el (c-block-comment-starter)
8745 (c-block-comment-ender): New language constants to specify in a
8746 single place how block comments look.
8747
8748 (c-comment-start-regexp, c-block-comment-start-regexp)
8749 (comment-start, comment-end, comment-start-skip)
8750 (c-syntactic-ws-start, c-syntactic-ws-end, c-nonwhite-syntactic-ws)
8751 (c-syntactic-ws, c-nonempty-syntactic-ws)
8752 (c-single-line-syntactic-ws, c-syntactic-eol): Now built from
8753 `c-line-comment-starter', `c-block-comment-starter' and
8754 `c-block-comment-ender'.
8755
8756 (c-block-comment-regexp, c-unterminated-block-comment-regexp):
8757 New language constants to break up things a bit.
8758
8759 (c-simple-ws): New language constant for simple whitespace.
8760
8761 * progmodes/cc-defs.el (c-concat-separated): New convenience function.
8762
8763 * progmodes/cc-defs.el (c-make-keywords-re): Add kludge for bug
8764 in `regexp-opt' in Emacs 20 and XEmacs when strings contain
8765 newlines. Allow and ignore nil elements in the list.
8766
8767 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8768
8769 * progmodes/cc-cmds.el: Comment out a (n almost certainly
8770 superfluous) check, (eq here (point-max)) in c-beginning-of-statement.
8771
8772 * progmodes/cc-cmds.el: Tidy up the comments in
8773 c-beginning-of-statement and subfunctions.
8774
8775 * progmodes/cc-awk.el: Replace calls to put-text-property to the
8776 more flexible c-put-char-property and c-clear-char-properties.
8777 Add the author's email address.
8778
8779 * progmodes/cc-langs.el (c-block-comment-start-regexp): New variable.
8780
8781 * progmodes/cc-cmds.el: Fix bug with M-e, when point is inside the
8782 closing "*/" of a block comment.
8783
8784 * progmodes/cc-cmds.el: Tidy c-beginning-of-sentence (and
8785 subfunctions) so that it works at BOB and EOB.
8786
8787 * progmodes/cc-cmds.el, cc-vars.el: More updating of
8788 c-beginning-of-statement, including new variable
8789 c-block-comment-start-regexp.
8790
8791 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8792
8793 * progmodes/cc-langs.el (c-known-type-key): Optimize simple
8794 symbols from `*-font-lock-extra-types' so that there's no need to
8795 use `regexp-opt' on those lists.
8796
8797 * progmodes/cc-langs.el (c-type-decl-suffix-key): Fix when
8798 `c-type-modifier-kwds' is empty.
8799
8800 * progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix when
8801 there are several strings on the same line.
8802
8803 * progmodes/cc-engine.el (c-literal-limits): Remove the
8804 compatibility function for older emacsen. `c-literal-limits-fast'
8805 has now taken the place of this function.
8806
8807 * progmodes/cc-vars.el (c-emacs-features): Remove compatibility
8808 with older emacsen: We now require `pps-extended-state'.
8809
8810 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8811
8812 * progmodes/cc-cmds.el: New function c-beginning-of-sentence,
8813 which obviates the need to hack sentence-end. This now handles
8814 escaped newlines in strings correctly. Correct minor bugs in
8815 c-move-over-sentence and in c-beginning-of-statement.
8816
8817 * progmodes/cc-cmds.el (c-beginning-of-statement (and
8818 subfunctions)): Adapt c-\(back\|forward\)-over-illiterals such
8819 that movement over macros and code are rigorously separated from
8820 eachother. Correct a few incidental bugs.
8821
8822 * progmodes/cc-cmds.el: Restructure c-beginning-of-statement:
8823 Improve its doc-string. Improve the handling of certain specific cases.
8824
8825 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8826
8827 * progmodes/cc-engine.el, cc-fonts.el, cc-langs.el
8828 (c-guess-basic-syntax): Change the way class-level labels are
8829 recognized; they can now contain essentially any symbols.
8830
8831 (c-opt-extra-label-key): New language variable to cope with the
8832 special protection label syntax in Objective-C.
8833
8834 (c-opt-access-key): Remove; this is now handled better by
8835 `c-nonlabel-token-key' and `c-opt-extra-label-key'.
8836
8837 (c-complex-decl-matchers): Update to handle that
8838 `c-opt-access-key' no longer exists.
8839
8840 * progmodes/cc-engine.el (c-guess-basic-syntax): Make use of the
8841 improved label recognition in `c-beginning-of-statement-1'.
8842
8843 * progmodes/cc-engine.el (c-beginning-of-member-init-list):
8844 Recognize bitfields better.
8845
8846 * progmodes/cc-engine.el (c-beginning-of-inheritance-list):
8847 Remove some cruft and fixed a bug that could cause it to go to a
8848 position further down.
8849
8850 * progmodes/cc-langs.el, cc-engine.el
8851 (c-beginning-of-statement-1): Improve detection of labels in
8852 declaration contexts.
8853
8854 (c-beginning-of-decl-1): Use it.
8855
8856 (c-nonlabel-token-key): New language constant and variable needed
8857 by `c-beginning-of-statement-1'.
8858
8859 * progmodes/cc-engine.el (c-guess-basic-syntax): Fix bug that
8860 manifested itself due to the correction in `c-forward-sexp'.
8861
8862 * progmodes/cc-defs.el (c-forward-sexp, c-backward-sexp):
8863 Make these behave as documented when used at the buffer limits.
8864
8865 * progmodes/cc-mode.el, cc-engine.el, cc-langs.el
8866 (c-type-decl-end-used): Made this a language variable.
8867
8868 * progmodes/cc-mode.el (c-after-change): Widen the buffer to work
8869 correctly when `combine-after-change-calls' is used together with
8870 temporary narrowings.
8871
8872 * progmodes/cc-engine.el (c-beginning-of-statement-1):
8873 Report labels correctly when the start point is immediately after the
8874 colon.
8875
8876 * progmodes/cc-defs.el (c-parse-sexp-lookup-properties):
8877 Remove since it isn't used anymore.
8878
8879 * progmodes/cc-cmds.el (c-electric-lt-gt): Detect and mark angle
8880 bracket arglists such as template parens in C++.
8881
8882 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix a bug
8883 in the last check-in. Some optimization.
8884
8885 * progmodes/cc-engine.el (c-syntactic-skip-backward): Fix bug
8886 where it could stop at the same level in a preceding sexp when
8887 PAREN-LEVEL is set.
8888
8889 * progmodes/cc-mode.el (c-basic-common-init): Turn on syntax-table
8890 text property lookup only when it's needed.
8891
8892 * progmodes/cc-langs.el, cc-engine.el, cc-fonts.el, cc-mode.el:
8893 Change the policy for paren marked angle brackets to be more
8894 persistent; once marked they remain marked even when they're found
8895 to be unbalanced in the searched region. This should keep the
8896 paren syntax around even when individual lines are refontified in
8897 multiline template arglists.
8898
8899 (c-parse-and-markup-<>-arglists): New dynamically bound variable
8900 to control markup so that incorrect angle bracket arglists aren't
8901 marked in contexts where the correct value for
8902 `c-disallow-comma-in-<>-arglists' isn't known.
8903
8904 (c-forward-<>-arglist, c-forward-<>-arglist-recur): The reparse
8905 argument has become `c-parse-and-markup-<>-arglists'.
8906
8907 (c-remove-<>-arglist-properties): Remove - no longer used.
8908
8909 (c-after-change-check-<>-operators): New function used on
8910 `after-change-functions' to avoid that "<" and ">" characters that
8911 are part of longer operators have paren syntax.
8912
8913 (c-<>-multichar-token-regexp): New language variable used by
8914 `c-after-change-check-<>-operators'.
8915
8916 (c-after-change): Call `c-after-change-check-<>-operators'.
8917
8918 (c-font-lock-<>-arglists): Use the context properties set by
8919 `c-font-lock-declarations' to set `c-disallow-comma-in-<>-arglists'
8920 correctly to avoid doing invalid markup.
8921
8922 (c-font-lock-declarations): Remove code that undoes the invalid
8923 markup done by `c-font-lock-<>-arglists'.
8924
8925 (c-complex-decl-matchers): `c-font-lock-<>-arglists' now runs
8926 after `c-font-lock-declarations'.
8927
8928 * progmodes/cc-engine.el (c-syntactic-skip-backward):
8929 Add paren-level feature.
8930
8931 (c-guess-basic-syntax): Improve the anchor position for
8932 `template-args-cont' in nested template arglists. There's still
8933 much to be desired in this area, though.
8934
8935 2005-12-08 Alan Mackenzie <bug-cc-mode@gnu.org>
8936
8937 * progmodes/cc-cmds.el, cc-engine.el, cc-langs.el, cc-vars.el:
8938 Make the "Text Filling and Line Breaking" commands work for AWK buffers.
8939
8940 2005-12-08 Martin Stjernholm <bug-cc-mode@gnu.org>
8941
8942 * progmodes/cc-defs.el, cc-engine.el (c-mode-is-new-awk-p):
8943 Removed; (c-major-mode-is 'awk-mode) can be used instead now.
8944
8945 * progmodes/cc-mode.el: Always set up AWK mode since emacsen where
8946 it doesn't work no longer are supported.
8947
8948 * progmodes/cc-mode.el, cc-styles.el, cc-vars.el, cc-defs.el
8949 * cc-engine.el, cc-fonts.el, cc-langs.el, cc-cmds.el: CC Mode now
8950 requires support for the syntax-table' text property, which rules
8951 out Emacs 19 and XEmacs < 21.4. Removed various compatibility
8952 cruft associated with those versions.
8953
8954 * progmodes/cc-defs.el, cc-fix.el: CC Mode now requires support
8955 for the `syntax-table' text property, which rules out Emacs 19 and
8956 XEmacs < 21.4. Removed various compatibility cruft associated
8957 with those versions.
8958
8959 * progmodes/cc-vars.el (c-emacs-features): CC Mode now requires
8960 support for the `syntax-table' text property.
8961
8962 * progmodes/cc-fonts.el (c-nonbreakable-space-face): Remove the
8963 variable and use an extra quoted face name instead. All the
8964 emacsen flavors handle that correctly.
8965
8966 * progmodes/cc-fonts.el (c-font-lock-complex-decl-prepare)
8967 (c-font-lock-declarators, c-font-lock-declarations)
8968 (c-complex-decl-matchers, c-basic-matchers-after): Use a text
8969 property to mark the items in in declarator lists to handle
8970 refontification inside multiline declarations better.
8971
8972 * progmodes/cc-fonts.el (c-font-lock-declarations): Recognize a
8973 construct like "a * b = c;" as a declaration.
8974
8975 2005-12-08 Kim F. Storm <storm@cua.dk>
8976
8977 * emulation/cua-base.el (cua-use-hyper-key): Replace by ...
8978 (cua-rectangle-modifier-key): ... this. New defcustom. Can now
8979 select either meta, hyper, or super modifier for rectangle commands.
8980 (cua--rectangle-modifier-key): New defvar.
8981 (cua--M/H-key): Use it. Remove special case for `space'.
8982 (cua--init-keymaps): Initialize it from cua-rectangle-modifier-key
8983 on X, to meta otherwise. Always bind C-return to toggle
8984 rectangle. Pass ?\s instead of `space' to cua--M/H-key.
8985
8986 * emulation/cua-rect.el (cua-help-for-rectangle):
8987 Use cua--rectangle-modifier-key. Handle super modifier too.
8988 (cua--init-rectangles): Always bind C-return to toggle rectangle.
8989 Pass ?\s instead of `space' to cua--M/H-key and cua--rect-M/H-key.
8990
8991 * ido.el: Move Acknowledgements and History after Commentary.
8992 Minor changes to Commentary.
8993
8994 * emulation/cua-base.el (cua--select-keymaps): Enable repeat
8995 keymap if cua--prefix-override-timer is `shift'.
8996 (cua--shift-control-prefix): New function; emulate "type prefix
8997 key twice" functionality to handle shifted prefix key override.
8998 (cua--shift-control-c-prefix, cua--shift-control-x-prefix):
8999 New commands.
9000 (cua--init-keymaps): Bind them to S-C-c and S-C-x.
9001
9002 2005-12-08 Carsten Dominik <dominik@science.uva.nl>
9003
9004 * textmodes/org.el (org-insert-heading): Try to do items before
9005 headings.
9006 (org-agenda-mode): Quote `org-agenda-mode-hook'.
9007 (org-insert-item): New function.
9008 (org-renumber-ordered-list): Don't skip to higher level lists.
9009
9010 2005-12-08 Juri Linkov <juri@jurta.org>
9011
9012 * info.el (Info-mode-map): Bind M-TAB to `Info-prev-reference'.
9013
9014 * button.el (button-buffer-map): Bind M-TAB to `backward-button'.
9015
9016 * wid-edit.el (widget-keymap): Bind M-TAB to `widget-backward'.
9017
9018 * pcvs.el (defun-cvs-mode): Put `definition-name' property on
9019 the constructed function name fun-1.
9020
9021 * cus-edit.el (custom-add-parent-links): Filter out custom-group-link,
9022 because such links don't lead to parent documentation.
9023
9024 2005-12-08 Kenichi Handa <handa@m17n.org>
9025
9026 * descr-text.el (describe-char): Use *Help-2* buffer if the
9027 current buffer is *Help*. Call describe-text-properties while
9028 setting the original buffer.
9029
9030 2005-12-07 Bill Wohler <wohler@newt.com>
9031
9032 * files.el (auto-mode-alist): Remove mh-letter-mode. Unnecessary,
9033 and causes problems with non-MH users (such as Gnus users).
9034
9035 2005-12-08 Nick Roberts <nickrob@snap.net.nz>
9036
9037 * progmodes/gdb-ui.el (gdb-find-file-unhook): Delete variable.
9038 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode): Delete functions.
9039 (gdb-set-gud-minor-mode-existing-buffers, gdb-init-2): Use GDB
9040 command "info sources". Move calls to GDB command "list".
9041 (gdb-find-file-hook): Just use gdb-source-file-list.
9042 (gdb-source-file-regexp): Use regexp for pre-GDB 6.4.
9043 (gdb-source-file-regexp-1): New regexp for GDB 6.4+ only.
9044 (gdb-set-gud-minor-mode-existing-buffers-1): Use it.
9045 (gdb-data-list-register-values-handler): Use correct trigger name.
9046
9047 2005-12-07 Kim F. Storm <storm@cua.dk>
9048
9049 * ido.el (ido-completion-map): Rename from ido-mode-map.
9050 (ido-common-completion-map, ido-file-completion-map)
9051 (ido-file-dir-completion-map, ido-buffer-completion-map):
9052 Rename from ido-mode-....-map.
9053 (ido-init-completion-maps): Rename from ido-init-mode-maps.
9054 (ido-setup-completion-map): Rename from ido-define-mode-map.
9055 (ido-read-internal): Bind minibuffer-local-filename-completion-map
9056 to ido-completion-map.
9057
9058 2005-12-07 Kenichi Handa <handa@m17n.org>
9059
9060 * international/mule-cmds.el
9061 (set-display-table-and-terminal-coding-system): If the coding
9062 system specified in `unibyte-display' property is different from
9063 the arg coding-system, don't setup standard-display-table.
9064
9065 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
9066
9067 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
9068 that comments end at \n, regardless of selective-display.
9069
9070 2005-12-07 Nick Roberts <nickrob@snap.net.nz>
9071
9072 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
9073 (gdb-version): New variables.
9074 (gdb-source-file-list, gdb-register-names)
9075 (gdb-changed-registers): New variables for use with GDB 6.4+.
9076 (gdb-ann3): Replace with...
9077 (gdb-init-1, gdb-init-2): ...two new functions.
9078 (gdba, gdb-prompt): Call gdb-init-1.
9079 (gdb-get-version): New function. Call gdb-init-2 from here.
9080 (gud-watch): Make it work with mouse events too.
9081 (gdb-post-prompt): Don't add to queue until GDB version is known.
9082 (gdb-speedbar-expand-node, gdb-post-prompt, gdb-registers-mode)
9083 (gdb-locals-mode): Use gdb-version.
9084 (gdb-memory-format-map, gdb-memory-unit-map)
9085 (gdb-locals-watch-map): Rename from gdb-*-*-keymap.
9086 (gdb-locals-font-lock-keywords-1)
9087 (gdb-locals-font-lock-keywords-2): New variables.
9088 (gdb-find-file-hook): Make it work with GDB 6.4+ too.
9089 (gdb-set-gud-minor-mode-existing-buffers-1)
9090 (gdb-var-list-children-1, gdb-var-list-children-handler-1)
9091 (gdb-var-update-1, gdb-var-update-handler-1)
9092 (gdb-data-list-register-values-handler)
9093 (gdb-data-list-register-values-custom)
9094 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
9095 (gdb-stack-list-locals-handler, gdb-get-register-names):
9096 New functions for use with GDB 6.4+.
9097 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
9098 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
9099 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
9100 (gdb-stack-list-locals-regexp)
9101 (gdb-data-list-register-names-regexp): New regexps for use with
9102 GDB 6.4+.
9103
9104 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
9105
9106 * progmodes/cc-defs.el (c-emacs-features): Don't assume point-min==1.
9107
9108 2005-12-06 Nozomu Ando <nand@mac.com> (tiny patch)
9109
9110 * mail/smtpmail.el (smtpmail-try-auth-methods): Make password
9111 prompts work for AUTH PLAIN. Also reported by Steve Allan
9112 <seallan@verizon.net>.
9113
9114 2005-12-06 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
9115
9116 * frame.el (set-frame-parameter): Add doc string.
9117
9118 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
9119
9120 * textmodes/org.el (org-occur-highlights): New variable.
9121 (org-highlight-new-match, org-remove-occur-highlights): New functions.
9122 (org-highlight-sparse-tree-matches): New option.
9123 (org-do-occur): New function.
9124 (org-get-heading): Make it work also at beginning of line.
9125 (org-category-table): New variable.
9126 (org-get-category-table, org-get-category)
9127 (org-camel-to-words, org-link-search): New functions.
9128 (org-select-this-todo-keyword): New variable.
9129 (org-todo-list): New command.
9130 (org-shiftright, org-shiftleft): New commands.
9131 (org-agenda-todo): Add prefix argument.
9132 (org-show-hierarchy-above): New option.
9133 (org-show-todo-tree): Numerical prefix creates tree for specific
9134 TODO keyword.
9135 (org-outline-level): New function, to assign a level to plain
9136 lists items.
9137 (org-cycle-include-plain-lists): New option.
9138 (org-mode): Use `org-outline-level' as value of `outline-level'.
9139 (org-cycle): Temporarily switch `outline-regexp' if
9140 `org-cycle-include-plain-lists' is non-nil.
9141 (org-start-icalendar-file): Fix format bug.
9142 (org-agenda-get-day-entries): Create category table.
9143 (org-agenda-get-todos, org-agenda-get-timestamps)
9144 (org-agenda-get-deadlines, org-agenda-get-scheduled)
9145 (org-agenda-get-blocks): Use `org-get-category'.
9146 (org-context-in-file-links): Rename from
9147 `org-line-numbers-in-file-links'.
9148
9149 2005-12-06 Romain Francoise <romain@orebokech.com>
9150
9151 * window.el (balance-windows): Delete extraneous third arg in call
9152 to `enlarge-window'.
9153
9154 2005-12-06 Kenichi Handa <handa@m17n.org>
9155
9156 * international/kinsoku.el (kinsoku-longer): Check eolp, not eobp.
9157
9158 2005-12-06 Nick Roberts <nickrob@snap.net.nz>
9159
9160 * progmodes/gdb-ui.el (gdb-var-create-handler)
9161 (gdb-var-evaluate-expression-handler, gdb-frame-handler)
9162 (gdb-var-list-children-handler, gdb-var-update-handler):
9163 Current buffer is already gdb-partial-output-buffer, don't
9164 make it current again.
9165
9166 2005-12-05 Luc Teirlinck <teirllm@auburn.edu>
9167
9168 * buff-menu.el (Buffer-menu-use-frame-buffer-list): New user option.
9169 (list-buffers-noselect): Use it.
9170
9171 2005-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
9172
9173 * mail/sendmail.el: Remove unnecessary leading-star in docstrings.
9174 (mail-yank-ignored-headers): Use regexp-opt.
9175 (mail-mode-map): Move initialization into declaration.
9176 (mail-sent-via): Remove unused shadowed var `to-line'.
9177 (mail-mailer-swallows-blank-line): Use with-temp-buffer.
9178 (mail-bury, sendmail-send-it, mail-do-fcc): Use with-current-buffer.
9179 (mail-do-fcc): Use dolist and push.
9180 (mail-mode-fill-paragraph): Pass the arg to fill-region-as-paragraph.
9181 (mail-yank-ignored-headers): Don't autoload.
9182
9183 2005-12-05 Kenichi Handa <handa@m17n.org>
9184
9185 * international/mule-cmds.el (set-language-info-internal): New fun.
9186 (set-language-info): Call set-language-info-internal to update
9187 language-info-alist. If LANG-ENV is the current one, call
9188 set-language-environment to make INFO effective now.
9189 (set-language-info-alist): Likewise.
9190 (locale-language-names): With locale "en", use English
9191 lang. env. but set the default codings to iso-8859-1.
9192
9193 2005-12-04 Nick Roberts <nickrob@snap.net.nz>
9194
9195 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer)
9196 (gdb-speedbar-auto-raise): Echo new state in minibuffer.
9197 (gdb-var-create-handler, gdb-assembler-custom): Use search-forward
9198 for plain strings.
9199 (gdb-frames-mode): Remove redundant call to font-lock-mode.
9200 (gdb-all-registers): Rename from toggle-gdb-all-registers.
9201 Create registers buffer if necessary. Echo new state in minibuffer.
9202 (gdb-registers-mode-map, gdb-registers-mode): Use gdb-all-registers.
9203
9204 2005-12-03 Chong Yidong <cyd@stupidchicken.com>
9205
9206 * info.el (Info-fontify-node): Match external links using
9207 non-directory part of filename.
9208
9209 2005-12-04 Juri Linkov <juri@jurta.org>
9210
9211 * font-core.el (global-font-lock-mode): Use define-global-minor-mode
9212 instead of easy-mmode-define-global-mode. Add `:group font-lock'.
9213 (font-lock-mode): Replace `:group font-lock' with `nil nil nil'
9214 because there is no customization option for it.
9215
9216 * font-lock.el (lisp-font-lock-keywords-1):
9217 Add define-global-minor-mode.
9218
9219 * emacs-lisp/autoload.el (make-autoload): Add define-global-minor-mode.
9220
9221 * emacs-lisp/derived.el (define-derived-mode): Put `definition-name'
9222 properties on the constructed variable names.
9223
9224 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
9225 Put `definition-name' properties on the constructed function names
9226 next-sym and prev-sym.
9227
9228 * emacs-lisp/find-func.el (find-function-regexp):
9229 Add define-global-minor-mode. Replace `easy-mmode-define-global-mode'
9230 with `easy-mmode-define-[a-z-]+'. Add easy-menu-define.
9231 (find-variable-regexp): Add easy-mmode-defmap, easy-mmode-defsyntax
9232 and easy-menu-define.
9233
9234 * emacs-lisp/lisp-mode.el: Put `doc-string-elt' property on
9235 easy-mmode-define-global-mode and define-global-minor-mode.
9236 (lisp-imenu-generic-expression): Add define-global-minor-mode.
9237
9238 * progmodes/cwarn.el (global-cwarn-mode): Use define-global-minor-mode
9239 instead of easy-mmode-define-global-mode.
9240
9241 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
9242 Use define-minor-mode instead of easy-mmode-define-minor-mode.
9243
9244 * cus-edit.el (customize-group, customize-group-other-window):
9245 Filter out autoloaded options from the group completion list by
9246 using heuristics that autoloaded groups don't have `custom-autoload'
9247 property on their symbols (they have only `custom-loads').
9248
9249 * simple.el (completion-setup-function): Put completions-common-part
9250 face on complete completion string too (i.e. completion string
9251 without completions-first-difference face).
9252
9253 * man.el (Man-section-regexp): Add 0-9 to support "3X11" sections.
9254
9255 2005-12-03 Eli Zaretskii <eliz@gnu.org>
9256
9257 * view.el (view-mode): Doc fix.
9258
9259 * disp-table.el (standard-display-european): Add to the warning
9260 message a reference to the doc string.
9261
9262 * play/yow.el (apropos-zippy): Call print-help-return-message,
9263 similar to other Help and Apropos commands.
9264
9265 * help.el (print-help-return-message): If pop-up-frames is
9266 non-nil, set up help-return-method to delete the help window and,
9267 possibly, its frame as well, and don't display message about
9268 scrolling the help window. Doc fix.
9269 (help-return-method): Doc fix.
9270
9271 2005-12-03 Martin Rudalics <rudalics@gmx.at>
9272
9273 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Fix bug
9274 whereby names of length one or names starting with a
9275 symbol-constituent character would not be returned.
9276
9277 2005-12-03 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
9278
9279 * subr.el (atomic-change-group): Add edebug and indentation spec.
9280
9281 2005-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
9282
9283 * completion.el (save-completions-file-name): Fix typo in last change.
9284
9285 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9286
9287 * info.el: Move back/forward history to the beginning of the tool bar.
9288
9289 2005-12-02 Ken Manheimer <ken.manheimer@gmail.com>
9290
9291 * allout.el (eval-when-compile): Remove unnecessary load of cl.
9292 Add fset of allout-real-isearch-abort during compile to fix
9293 byte-compilation warnings.
9294 (allout-mode-p): Move definition of this macro above all uses, or
9295 byte compilation in barren emacs (eg, during emacs build) will
9296 lack the definition.
9297 (allout-mode): Move this variable above any uses, or byte
9298 compilation will fail.
9299 (allout-resolve-xref): Remove use of personal file-reference function.
9300 (allout-toggle-current-subtree-encryption): Do the current (ie,
9301 visible containing) topic, rather than nearest around point. Doc fix.
9302 (allout-toggle-subtree-encryption): New function, workhorse that
9303 works on nearest topic containing point.
9304 (allout-encrypt-string): Signal requirement for newer version of pgg.
9305 (allout-resumptions): Doc fix.
9306
9307 2005-12-02 Eli Zaretskii <eliz@gnu.org>
9308
9309 * international/latexenc.el (latex-inputenc-coding-alist): Doc fix.
9310
9311 2005-12-02 Agustin Martin <agustin.martin@hispalinux.es>
9312
9313 * textmodes/flyspell.el (flyspell-external-point-words):
9314 Consider a misspelling as found in the string search if: (a) misspelling
9315 and found string lengths match, or (b) misspelling is found as
9316 element in a boundary-chars separated longer string, or (c)
9317 ispell-program-name is really ispell and misspelling is found as
9318 part of a TeX string. After successful match move beginning of
9319 search region to end of match. Warn about not found misspellings
9320 once the process is done.
9321 (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode.
9322
9323 2005-12-02 Nick Roberts <nickrob@snap.net.nz>
9324
9325 * progmodes/gud.el (gud-menu-map): Put gud-finish back on the
9326 tool bar (removed inadvertently).
9327
9328 2005-12-02 Juri Linkov <juri@jurta.org>
9329
9330 * log-view.el (log-view-diff): Clarify doc string.
9331
9332 2005-12-01 Bill Wohler <wohler@newt.com>
9333
9334 * Makefile.in (mh-loaddefs.el): Reinsert Change Log as its absence
9335 triggers lm-verify errors.
9336
9337 2005-12-01 Luc Teirlinck <teirllm@auburn.edu>
9338
9339 * simple.el (transient-mark-mode, line-number-mode)
9340 (column-number-mode, size-indication-mode): Remove `:require nil'.
9341
9342 2005-12-01 Nick Roberts <nickrob@snap.net.nz>
9343
9344 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-2 to gdb-mouse-until
9345 in the margin also.
9346 (gdb-breakpoints-mode-map): Use D instead of d for
9347 gdb-delete-breakpoint.
9348 (gdb-get-frame-number): Require a number to match on.
9349 (gdb-threads-mode-map): Add follow-link binding.
9350
9351 2005-11-30 Jason Rumney <jasonr@gnu.org>
9352
9353 * isearch.el (isearch-mode-map): Avoid exiting search on
9354 language-change event.
9355
9356 2005-11-30 Romain Francoise <romain@orebokech.com>
9357
9358 * speedbar.el (speedbar-default-position): New defcustom.
9359 (speedbar-frame-reposition-smartly): Use it.
9360
9361 * dframe.el (dframe-reposition-frame-emacs): Fix position
9362 computation for `left' location.
9363 Update copyright year.
9364
9365 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
9366
9367 * help.el (help-map): Move initialization into declaration.
9368
9369 * emacs-lisp/autoload.el (make-autoload): Handle defgroup specially.
9370
9371 * help-fns.el (help-argument-name): Don't autoload.
9372 It's useless and triggers a bug in cus-dep.el causing ldefs-boot
9373 to be re-loaded when customizing the `help' group.
9374
9375 2005-11-30 John Paul Wallington <jpw@gnu.org>
9376
9377 * help-fns.el (describe-function-1): Fill arglist output.
9378
9379 2005-11-30 Kim F. Storm <storm@cua.dk>
9380
9381 * emulation/cua-rect.el (cua--rectangle-overlays): Make permanent-local.
9382 (cua--rectangle-post-command): Cleanup overlays and deactivate mark
9383 after revert-buffer (or anything else which kills all local variables).
9384
9385 * apropos.el (apropos-parse-pattern): Doc fix.
9386 Set apropos-regexp directly, rather than expecting callers to do so.
9387 (apropos-command, apropos, apropos-value, apropos-documentation):
9388 Simplify calls to apropos-parse-pattern.
9389
9390 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
9391
9392 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
9393 (hi-lock-face-phrase-buffer): Use hi-yellow face.
9394 (hi-lock-write-interactive-patterns): Use comment-region.
9395
9396 * longlines.el (longlines-mode): Add mail-setup-hook.
9397
9398 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
9399
9400 * simple.el (sendmail-user-agent-compose, next-line):
9401 Conditionally use hard-newline.
9402
9403 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
9404
9405 * international/latexenc.el (latex-inputenc-coding-alist):
9406 Reword doc string.
9407
9408 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
9409
9410 * help.el (describe-key-briefly, describe-key): Recognize default
9411 bindings.
9412
9413 2005-11-29 Romain Francoise <romain@orebokech.com>
9414
9415 * view.el (view-inhibit-help-message): New defcustom.
9416 (view-mode-enter): Use it.
9417
9418 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
9419
9420 * ediff-wind.el (ediff-setup-control-frame, ediff-make-wide-display):
9421 Preserve user position.
9422
9423 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
9424
9425 * font-lock.el: Throw error if facemenu is not loaded to prevent
9426 accidental change of loading order in loadup.el. (Suggested by RMS.)
9427
9428 * loadup.el: Add comment explaining why facemenu must be loaded
9429 before font-lock.
9430
9431 2005-11-28 Jay Belanger <belanger@truman.edu>
9432
9433 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
9434 (calc-dispatch-map): Add more keys for `calc-same-interface'.
9435
9436 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
9437
9438 * calc/calc-embed.el (calc-do-embedded): Update help message.
9439
9440 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
9441
9442 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
9443
9444 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
9445
9446 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
9447 called-interactively-p.
9448 (elp-profilable-p): Rename from elp-not-profilable-p.
9449 Invert result and take into account macros and autoloaded functions.
9450 (elp-instrument-function): Update call.
9451 (elp-instrument-package): Update call. Add completion.
9452 (elp-pack-number): Use match-string.
9453 (elp-results-jump-to-definition-by-mouse): Merge into
9454 elp-results-jump-to-definition and then remove.
9455 (elp-output-insert-symname): Make help echo text single-line.
9456
9457 * replace.el (query-replace-map): Move initialization into declaration.
9458 (occur-engine): Use with-current-buffer.
9459 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
9460 (occur-mode-mouse-goto): Replace with an alias.
9461
9462 2005-11-28 Juri Linkov <juri@jurta.org>
9463
9464 * simple.el (quoted-insert): Let-bind input-method-function to nil.
9465
9466 * term/w32-win.el: Bind [S-tab] to [backtab].
9467
9468 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
9469 `Info-find-file' to t.
9470
9471 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
9472 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
9473 and same-window-regexps.
9474 (occur-next-error): Don't move point for arg 0.
9475
9476 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
9477
9478 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
9479
9480 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
9481
9482 * log-edit.el (log-edit-changelog-use-first): New var.
9483 (log-edit-changelog-ours-p): Use it.
9484 (log-edit-insert-changelog): Set it with new arg `use-first'.
9485 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
9486 (log-edit-hook): Add them to the list of suggested options.
9487
9488 * textmodes/flyspell.el (flyspell-last-buffer): New var.
9489 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
9490 redundant work.
9491 (flyspell-mode-on): Use add-hook for after-change-functions.
9492 (flyspell-mode-off): Use remove-hook for after-change-functions.
9493 (flyspell-changes): Make it buffer-local.
9494 (flyspell-after-change-function): Make it non-interactive. Use push.
9495 (flyspell-post-command-hook): Check input-pending-p while processing
9496 the potentially long list of buffer changes.
9497
9498 2005-11-28 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
9499
9500 * buff-menu.el (list-buffers-noselect): Display the selected
9501 frame's buffer list, not the global one.
9502
9503 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
9504
9505 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
9506 that (list last-input-event) works as in interactive spec.
9507
9508 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
9509
9510 * loadup.el ("facemenu"): Load facemenu before font-lock, because
9511 `facemenu-keymap' needs to be defined when font-lock is loaded.
9512 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
9513
9514 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
9515
9516 * completion.el: Remove useless leading * in defcustom docstrings.
9517 (save-completions-file-name): Use ~/.emacs.d if available.
9518 (completion-standard-syntax-table): Rename from
9519 cmpl-standard-syntax-table and fold initialization into declaration,
9520 thus removing cmpl-make-standard-completion-syntax-table.
9521 (completion-lisp-syntax-table, completion-c-syntax-table)
9522 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
9523 (cmpl-saved-syntax, cmpl-saved-point): Remove.
9524 (symbol-under-point, symbol-before-point)
9525 (symbol-under-or-before-point, symbol-before-point-for-complete)
9526 (add-completions-from-c-buffer): Use with-syntax-table.
9527 (make-completion): Don't return a list of completion entries.
9528 Update callers.
9529 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
9530 (completion-initialize): Rename from initialize-completions.
9531 (completion-find-file-hook): Rename from cmpl-find-file-hook.
9532 (kill-emacs-save-completions): Collect stats here.
9533 (save-completions-to-file, load-completions-from-file):
9534 Use with-current-buffer.
9535 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
9536 into a function. Move all calls to toplevel.
9537 (completion-lisp-mode-hook): New fun.
9538 (completion-c-mode-hook, completion-setup-fortran-mode):
9539 Set the syntax-table here. Use local-set-key.
9540 (completion-saved-bindings): New var.
9541 (dynamic-completion-mode): Make it into a proper minor mode.
9542 (load-completions-from-file): Remove unused var `num-uses'.
9543
9544 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
9545 constructor if it is explicitly overridden.
9546
9547 * complete.el (PC-completion-as-file-name-predicate):
9548 Use minibuffer-completing-file-name.
9549 (partial-completion-mode): Use find-file-not-found-functions.
9550 (PC-lisp-complete-symbol): Use with-syntax-table.
9551 (PC-look-for-include-file): Remove dead setq.
9552 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
9553 (PC-complete): Use with-current-buffer.
9554
9555 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
9556 escape single quotes.
9557
9558 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
9559
9560 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
9561 of `if' whose condition always returned nil. Doc fix.
9562
9563 * buff-menu.el (Buffer-menu-revert-function): Make the selected
9564 window's buffer the current buffer around the call to
9565 `list-buffers-noselect'. This is necessary to mark that buffer
9566 with a `.' in the Buffer Menu when called from Lisp, for instance
9567 by Auto Revert Mode.
9568
9569 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
9570
9571 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
9572 attaching to it.
9573 (gdb-pre-prompt): Make sure gdb-error is reset.
9574
9575 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
9576 with a child process, detect it.
9577 (gud-speedbar-buttons): Match regexp more carefully.
9578
9579 2005-11-27 Richard M. Stallman <rms@gnu.org>
9580
9581 * mouse.el (mouse-drag-move-window-bottom):
9582 Use adjust-window-trailing-edge.
9583
9584 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
9585
9586 * simple.el (blink-matching-open): Ignore
9587 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
9588 (blink-matching-paren-on-screen): Update docstring.
9589
9590 * paren.el (show-paren-mode): No longer change
9591 `blink-matching-paren-on-screen'.
9592
9593 2005-11-27 John Paul Wallington <jpw@pobox.com>
9594
9595 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
9596 (gdb-threads-select, gdb-edit-register-value):
9597 Use `posn-set-point' instead of `mouse-set-point' because the
9598 latter is not fbound when configured without X.
9599
9600 2005-11-27 Kim F. Storm <storm@cua.dk>
9601
9602 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
9603 existing face when partially highlighting a TAB in a rectangle.
9604
9605 2005-11-26 Kim F. Storm <storm@cua.dk>
9606
9607 * ido.el (ido-mode-map): Doc fix.
9608 (ido-mode-common-map, ido-mode-file-map)
9609 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
9610 (ido-define-mode-map): Rewrite. Select one of the new maps as
9611 parent for ido-mode-map instead of building from scratch.
9612 (ido-init-mode-maps): New defun to initialize new maps.
9613 (ido-mode): Call it.
9614 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
9615 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
9616
9617 2005-11-26 John Paul Wallington <jpw@pobox.com>
9618
9619 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
9620 `mouse-set-point' because the latter is not fbound when configured
9621 without X.
9622
9623 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
9624
9625 * files.el (file-relative-name): Doc fix.
9626
9627 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
9628
9629 * progmodes/octave-inf.el (inferior-octave-startup): Force a
9630 non-empty string for secondary prompt PS2.
9631
9632 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
9633
9634 * progmodes/compile.el (compilation-setup): Fix last change.
9635
9636 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
9637
9638 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
9639 (gdb-mouse-toggle-breakpoint-margin)
9640 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
9641 Add gdb-server-prefix to keep out of command history.
9642 (gdb-edit-register-value): New function.
9643 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
9644 (gdb-info-registers-custom): Use above map.
9645
9646 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
9647
9648 * custom.el (enable-theme): Signal error if argument is not a
9649 theme. Don't recalculate a face if it's not loaded yet.
9650
9651 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
9652 the `user' theme is in effect.
9653
9654 * info.el (Info-on-current-buffer): Record actual filename in
9655 Info-current-file, instead of t, or a fake filename if a non-file
9656 buffer. Make autoload.
9657 (Info-find-node, Info-revert-find-node): No need to check for
9658 Info-current-file nil.
9659 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
9660 Info-current-file is now never `t'.
9661 (Info-fontify-node): Many simplifications due to Info-current-file
9662 always being valid. Use Info-find-file to find node filename.
9663
9664 2005-11-25 David Kastrup <dak@gnu.org>
9665
9666 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
9667 new character, then delete" in order to preserve markers.
9668
9669 2005-11-25 David Ponce <david@dponce.com>
9670
9671 * recentf.el (recentf-arrange-by-rule): Handle a special
9672 `auto-mode-alist'-like "strip suffix" rule.
9673 (recentf-build-mode-rules): Handle second level auto-mode entries.
9674
9675 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
9676
9677 * viper-keym.el (viper-ESC-key): Use different values in terminal and
9678 window modes.
9679
9680 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
9681 jde-javadoc-checker-report-mode.
9682
9683 * ediff-wind (ediff-make-wide-display): Slight simplification.
9684
9685 * ediff.el (ediff-date): Change the date of last update.
9686
9687 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
9688
9689 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
9690 Use define-minor-mode, and make it a local mode. Turn on font-lock.
9691 (hi-lock-mode): New global minor mode.
9692 (turn-on-hi-lock-if-enabled): New function.
9693 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
9694 Change arguments to regexp and face instead of a font-lock pattern.
9695 Directly set face property, instead of refontifying.
9696 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
9697 (hi-lock-find-patterns): Use line-number-at-pos.
9698
9699 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
9700 arguments for hi-lock-set-pattern.
9701 (hi-lock-unface-buffer, hi-lock-set-file-patterns):
9702 Call font-lock-fontify-buffer.
9703 (hi-lock-find-file-hook, hi-lock-current-line)
9704 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
9705
9706 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
9707 turned off.
9708
9709 * progmodes/compile.el (compilation-setup): Don't fiddle with
9710 font-lock-defaults.
9711
9712 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
9713
9714 * progmodes/gdb-ui.el (gdb-var-create-handler)
9715 (gdb-var-list-children-handler): Find values for all variable
9716 objects. gud-speedbar-buttons decides whether to display them.
9717
9718 2005-11-24 Romain Francoise <romain@orebokech.com>
9719
9720 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
9721 buffer name with a space.
9722
9723 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
9724
9725 * textmodes/org.el (org-export-plain-list-max-depth): Rename from
9726 `org-export-local-list-max-depth'. Change default value to 3.
9727 (org-auto-renumber-ordered-lists)
9728 (org-plain-list-ordered-item-terminator): New options.
9729 (org-at-item-p, org-beginning-of-item, org-end-of-item)
9730 (org-get-indentation, org-get-string-indentation)
9731 (org-maybe-renumber-ordered-list, org-renumber-ordered-list):
9732 New functions.
9733 (org-move-item-down, org-move-item-up): New commands.
9734 (org-export-as-html): New classes for CSS support. Bug fix in
9735 regular expression detecting fixed-width regions. Respect
9736 `org-local-list-ordered-item-terminator'.
9737 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
9738 also a list item.
9739 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
9740 New item moving functions.
9741
9742 2005-11-24 Juri Linkov <juri@jurta.org>
9743
9744 * isearch.el (isearch-repeat): With empty search ring set
9745 `isearch-error' to the error string instead of signaling error
9746 with the function `error'.
9747
9748 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9749
9750 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
9751
9752 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
9753
9754 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
9755 and variable.
9756 (gdb-var-create-handler, gdb-var-list-children-handler):
9757 Don't match on "char **...".
9758 (gdb-var-update-handler): Find values for all variable objects.
9759 (gdb-info-frames-custom): Identify frames by leading "#".
9760
9761 * progmodes/gud.el (gud-speedbar-menu-items): Add
9762 gdb-speedbar-auto-raise as radio button.
9763 (gud-speedbar-buttons): Raise speedbar if requested.
9764 Don't match on "char **...".
9765 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
9766 Make it editable.
9767
9768 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
9769
9770 * info.el (Info-fontify-node): Handle the case where
9771 Info-current-file is t.
9772
9773 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
9774
9775 * simple.el (blink-matching-open): Fix off-by-one in last change.
9776
9777 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9778
9779 * term/mac-win.el: Don't change default directory.
9780
9781 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
9782
9783 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
9784 buffers correctly. (It used to throw an error in such buffers.)
9785 Make it ask for confirmation in group buffers and other Custom
9786 buffers containing more than one customization item.
9787
9788 2005-11-22 John Paul Wallington <jpw@gnu.org>
9789
9790 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
9791 property on mail and url overlays.
9792 (goto-address-at-point): Use `posn-set-point' instead of
9793 `mouse-set-point' because the latter is not fbound when configured
9794 without X.
9795
9796 2005-11-22 Lars Hansen <larsh@soem.dk>
9797
9798 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
9799 (ls-lisp-classify, ls-lisp-format): Delete call to
9800 ls-lisp-parse-symlink.
9801 (ls-lisp-handle-switches): Handle symlinks to directories as
9802 directories when ls-lisp-dirs-first in non-nil.
9803
9804 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
9805
9806 * startup.el (command-line): Make sure that loaddefs.el is handled
9807 correctly in load-history.
9808
9809 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
9810
9811 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
9812 (gdb-struct-string, gdb-array-string): New constants.
9813 (gdb-info-locals-handler): Use them.
9814 (gdb-reset): Reset gdb-var-list to nil.
9815
9816 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
9817
9818 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
9819 in patterns.
9820
9821 2005-11-21 Juri Linkov <juri@jurta.org>
9822
9823 * custom.el (defcustom): Update link types in docstring.
9824
9825 2005-11-20 Martin Rudalics <rudalics@gmx.at>
9826
9827 * custom.el (defgroup): Add doc-string-elt info.
9828
9829 * widget.el (define-widget): Don't use declare for the doc-string-elt.
9830
9831 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9832
9833 * newcomment.el (comment-enter-backward): Fix last fix.
9834
9835 * simple.el (blink-matching-open):
9836 * paren.el (show-paren-function): Allow new paren-class info.
9837
9838 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
9839
9840 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
9841 handled automagically.
9842
9843 2005-11-20 Andreas Schwab <schwab@suse.de>
9844
9845 * descr-text.el (describe-char): When copying overlays put them
9846 over the full char description instead of just the first character
9847 of it.
9848
9849 2005-11-20 Juri Linkov <juri@jurta.org>
9850
9851 * simple.el (what-cursor-position):
9852 * descr-text.el (describe-char): Use Lisp-readable syntax
9853 for octal and hex. Reorder decimal, octal and hex values.
9854 Remove excess whitespace in the output. Use `=' in `column='
9855 like in `point=' and `Hscroll='.
9856
9857 * international/mule-cmds.el (encoded-string-description):
9858 Use Lisp-readable syntax for hex.
9859
9860 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9861
9862 * newcomment.el (comment-enter-backward): Handle the case where the
9863 comment is closed by EOB.
9864
9865 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
9866
9867 * longlines.el (longlines-before-revert-hook)
9868 (longlines-after-revert-hook): New functions.
9869 (longlines-mode): Turn off longlines temporarily when reverting.
9870 Add a message-setup-hook.
9871 (longlines-decode-buffer): New function.
9872 (longlines-wrap-line): Preserve marker positions.
9873
9874 2005-11-19 Andreas Schwab <schwab@suse.de>
9875
9876 * emacs-lisp/shadow.el: Handle compressed files.
9877
9878 2005-11-19 Romain Francoise <romain@orebokech.com>
9879
9880 * net/browse-url.el (browse-url-default-browser): Signal an error
9881 if no usable browser can be found, rather than try to load w3.
9882
9883 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
9884
9885 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
9886 replacing existing properties.
9887 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
9888 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
9889 tty specs.
9890 (rcirc-server-prefix, rcirc-server): New faces.
9891 (rcirc-url-regexp): Generate with rx macro.
9892 (rcirc-last-server-message-time): New variable.
9893 (rcirc-filter): Record time of last message.
9894 (rcirc-keepalive): Kill processes that did not send a message
9895 since the last ping.
9896 (rcirc-mode): Give rcirc-topic a local binding here.
9897
9898 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org>
9899
9900 * subr.el (read-passwd): Fontify the prompt as we do with other
9901 prompts.
9902
9903 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
9904
9905 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
9906 binding buffer-read-only to nil.
9907
9908 2005-11-19 Eli Zaretskii <eliz@gnu.org>
9909
9910 * complete.el (partial-completion-mode):
9911 Mention completion-auto-help in the doc string.
9912
9913 * man.el (Man-highlight-references): Doc fix. Reformat code in a
9914 more Lisp-ish way.
9915
9916 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
9917
9918 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
9919 digits, not 8, to avoid misalignment for files larger than 100MB.
9920
9921 2005-11-19 Eli Zaretskii <eliz@gnu.org>
9922
9923 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
9924 Mention "keyboard shortcuts" in the help text.
9925
9926 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9927
9928 * startup.el (fancy-splash-default-action): Discard only
9929 mouse-down and succeeding mouse-up events in the splash screen
9930 window so that drag-n-drop event can be processed.
9931
9932 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
9933
9934 * longlines.el (longlines-mode): Add hacks for mail-mode and
9935 message-mode.
9936
9937 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
9938
9939 * textmodes/org.el (org-table-sort-lines): New command.
9940 (org-tbl-menu): Add entry for `org-table-sort-lines'.
9941 (org-add-file): Command removed, use `org-agenda-file-to-front'
9942 instead.
9943 (org-export-icalendar): Use `org-icalendar-combined-name'.
9944 (org-cycle-agenda-files, org-agenda-file-to-end)
9945 (org-agenda-file-to-front): New commands.
9946 (org-table-tab-jumps-over-hlines, org-export-html-style):
9947 New options.
9948 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
9949 (org-at-table.el-p, org-set-autofill-regexps, org-html-protect):
9950 New functions.
9951 (org-fill-paragraph): Call `org-table-align' in tables.
9952 (org-mode): Call `org-set-autofill-regexps'.
9953 (org-export-as-html): Support for local handformatted lists.
9954 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
9955 (org-export-local-list-max-depth): New option.
9956 (org-html-expand): Use `org-html-protect'.
9957
9958 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
9959
9960 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
9961 to "p".
9962 (gdb): Move definition of gud-pp to...
9963
9964 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
9965 speedbar.
9966 (gdb-find-watch-expression): New function.
9967
9968 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
9969
9970 * faces.el (face-attribute, set-face-attribute): Mention existence
9971 of `:ignore-defface' setting in docstring.
9972
9973 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
9974
9975 * simple.el (completion-setup-function): Fix last change.
9976
9977 2005-11-17 John Paul Wallington <jpw@pobox.com>
9978
9979 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
9980 Use `posn-set-point' instead of `mouse-set-point' because the
9981 latter is not fbound when configured without X.
9982
9983 * comint.el (comint-insert-input): Likewise.
9984
9985 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
9986
9987 * simple.el (hard-newline): New variable.
9988 (sendmail-user-agent-compose, next-line): Use it.
9989
9990 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
9991 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
9992 (mail-mail-reply-to, mail-mail-followup-to)
9993 (mail-position-on-field, mail-signature, mail-yank-original)
9994 (mail-attach-file): Likewise.
9995
9996 * mail/mailheader.el (mail-header-format)
9997 (mail-header-format-function): Likewise.
9998
9999 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
10000
10001 2005-11-17 Juri Linkov <juri@jurta.org>
10002
10003 * font-lock.el (font-lock-faces): Rename this defgroup from
10004 `font-lock-highlighting-faces'.
10005 (font-lock-comment-face, font-lock-comment-delimiter-face)
10006 (font-lock-string-face, font-lock-doc-face)
10007 (font-lock-keyword-face, font-lock-builtin-face)
10008 (font-lock-function-name-face, font-lock-variable-name-face)
10009 (font-lock-type-face, font-lock-constant-face)
10010 (font-lock-warning-face, font-lock-negation-char-face)
10011 (font-lock-preprocessor-face)
10012 (font-lock-regexp-grouping-backslash)
10013 (font-lock-regexp-grouping-construct): Rename :group from
10014 `font-lock-highlighting-faces' to `font-lock-faces'.
10015
10016 * cus-edit.el (lisp, c, tex):
10017 * progmodes/ada-mode.el (ada):
10018 * progmodes/asm-mode.el (asm):
10019 * progmodes/cperl-mode.el (cperl-faces):
10020 * progmodes/cpp.el (cpp):
10021 * progmodes/dcl-mode.el (dcl):
10022 * progmodes/f90.el (f90):
10023 * progmodes/fortran.el (fortran):
10024 * progmodes/icon.el (icon):
10025 * progmodes/idlwave.el (idlwave-misc):
10026 * progmodes/m4-mode.el (m4):
10027 * progmodes/make-mode.el (makefile):
10028 * progmodes/meta-mode.el (meta-font):
10029 * progmodes/modula2.el (modula2):
10030 * progmodes/octave-mod.el (octave):
10031 * progmodes/pascal.el (pascal):
10032 * progmodes/perl-mode.el (perl):
10033 * progmodes/prolog.el (prolog):
10034 * progmodes/ps-mode.el (PostScript-edit):
10035 * progmodes/scheme.el (scheme):
10036 * progmodes/sh-script.el (sh-script):
10037 * progmodes/simula.el (simula):
10038 * progmodes/tcl.el (tcl):
10039 * textmodes/nroff-mode.el (nroff):
10040 * textmodes/reftex-vars.el (reftex-fontification-configurations):
10041 * textmodes/sgml-mode.el (sgml):
10042 * textmodes/texinfo.el (texinfo):
10043 Add :link (custom-group-link font-lock-faces) to defgroup.
10044
10045 * hi-lock.el (hi-lock): Rename this defgroup from
10046 `hi-lock-interactive-text-highlighting'. Change parent group from
10047 `faces' to `font-lock'. Add link to the manual.
10048 (hi-lock-mode, hi-lock-file-patterns-range)
10049 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
10050 `hi-lock-interactive-text-highlighting' to `hi-lock'.
10051 (hi-lock-faces): Add :group `faces'.
10052
10053 * cus-edit.el (custom-variable-prompt): Clarify the code.
10054
10055 * faces.el (face-read-string): Set the default value arg of
10056 completing-read.
10057
10058 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
10059
10060 * rfn-eshadow.el (file-name-shadow-properties)
10061 (file-name-shadow-tty-properties, file-name-shadow-mode):
10062 Remove autoloads, because the file is now preloaded.
10063
10064 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
10065
10066 * printing.el (easy-menu-intern): Don't define.
10067 (pr-get-symbol): Use easy-menu-intern only if defined.
10068
10069 * simple.el (blink-matching-open): Simplify a bit.
10070 (completion-setup-function): Fix the case of partial-completion-mode
10071 when the minibuffer's contents start with "-".
10072 Obey completion-base-size-function even when
10073 minibuffer-completing-file-name is non-nil.
10074
10075 2005-11-16 Richard M. Stallman <rms@gnu.org>
10076
10077 * net/eudcb-ph.el (eudc-ph-open-session):
10078 Use set-process-query-on-exit-flag.
10079
10080 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
10081
10082 * international/ucs-tables.el (ucs-set-table-for-input):
10083 Use make-local-variable, not make-variable-buffer-local.
10084
10085 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
10086 Improve warning message text.
10087
10088 * savehist.el (savehist-save-hook): Add :group.
10089
10090 * menu-bar.el (menu-bar-help-menu):
10091 Rename Find Extra Packages to External Packages.
10092
10093 * cus-edit.el (Custom-reset-standard): Verify that
10094 :custom-standard-value prop exists before calling it.
10095
10096 * apropos.el (apropos-calc-scores): Use apropos-pattern.
10097
10098 2005-11-16 Martin Rudalics <rudalics@gmx.at>
10099
10100 * wid-edit.el (color): Enclose %t in %{...%}.
10101
10102 * cus-edit.el (face): Enclose %t in %{...%}.
10103
10104 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
10105
10106 * savehist.el (savehist-mode-hook): Re-add the var.
10107 (savehist-mode): Use it.
10108
10109 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
10110
10111 * textmodes/flyspell.el: Fix commenting convention.
10112 Remove unnecessary leading * in custom docstrings.
10113 (flyspell-emacs): Remove unused var.
10114 (flyspell-delete-region-overlays): Use remove-overlays.
10115 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
10116 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
10117 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
10118 (flyspell-debug-signal-word-checked): Use with-current-buffer.
10119 (make-flyspell-overlay): Don't locally reuse a global name.
10120 (flyspell-highlight-incorrect-region)
10121 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
10122 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
10123 (flyspell-notify-misspell): Remove unused args `start' and `end'.
10124 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
10125 Wrap calls to accept-process-output inside with-local-quit since it's
10126 often called from a post-command-hook.
10127 (flyspell-correct-word, flyspell-auto-correct-word):
10128 Use ispell-send-string.
10129 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
10130
10131 * calendar/diary-lib.el (diary-list-entries): Also hide the
10132 terminating newline.
10133
10134 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
10135
10136 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
10137 window-system, to allow fonts on tty.
10138
10139 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
10140
10141 * progmodes/gud.el (gud-speedbar-item-info): New function.
10142 (gud-install-speedbar-variables): Use it to display data type
10143 of watch expression as a tooltip in speedbar.
10144
10145 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
10146
10147 * font-core.el (global-font-lock-mode): Add :version keyword,
10148 because default was changed.
10149
10150 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
10151
10152 * startup.el (command-line): Use `custom-reevaluate-setting' for
10153 `file-name-shadow-mode'.
10154
10155 * loadup.el: Preload rfn-eshadow.
10156
10157 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
10158 Add :version keyword.
10159 (file-name-shadow-properties, file-name-shadow-tty-properties)
10160 (file-name-shadow): Add :version keyword.
10161
10162 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
10163 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
10164 in the custom-group property of the symbol frames and the fringe
10165 group got no link to its parent group frames.
10166 Doc fix.
10167
10168 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
10169
10170 * progmodes/gud.el (gud-stop-subjob): New function.
10171 (gud-menu-map, gud-tool-bar-map): Use it.
10172
10173 2005-11-16 Kim F. Storm <storm@cua.dk>
10174
10175 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
10176 than kill it.
10177 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
10178 to a more useful/logical place.
10179
10180 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
10181
10182 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
10183 go buttons complementary.
10184
10185 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
10186
10187 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
10188 (rfn-eshadow-sifn-equal): New function.
10189 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
10190
10191 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
10192
10193 * viper-utils.el (viper-non-word-characters-reformed-vi):
10194 Quote `-' in string.
10195
10196 * viper.el (viper-emacs-state-mode-list): Ensure that
10197 rcirc-mode buffers come up in Emacs state.
10198
10199 * ediff-util.el (ediff-make-temp-file): Use proper file-name-handler
10200 operation.
10201
10202 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
10203
10204 * term.el (term-termcap-format): Fix typos.
10205 (term-down): Fix the negative argument case.
10206
10207 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
10208
10209 * progmodes/gdb-ui.el: Remove face-alias left over from change on
10210 2005-08-15.
10211 (gdb-ann3): New command gud-go.
10212 (menu): Accomodate gdb-mi.el.
10213 (gdb-assembler-custom): Make buffer of selected window current
10214 so that set-window-point works.
10215
10216 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
10217 buttons and include new ones.
10218
10219 2005-11-16 Kim F. Storm <storm@cua.dk>
10220
10221 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
10222 (gud-menu-map): Use it.
10223
10224 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
10225
10226 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
10227 that works correctly for Custom and that does not override a user
10228 who disables it.
10229
10230 * help-mode.el (help-make-xrefs, help-xref-on-pp)
10231 (help-xref-interned, help-follow): Make hyperlinks for variables
10232 that are unbound, but have a non-nil variable-documentation property.
10233
10234 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
10235 mode hook. (It conflicted with defcustoms for some mode hooks.)
10236 Use the `variable-documentation' property to give the mode hook a
10237 docstring and expand that docstring.
10238
10239 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
10240
10241 * savehist.el (savehist-mode): Don't bother with
10242 `custom-set-minor-mode'.
10243 (savehist-coding-system): Check XEmacs version.
10244 (history-length): Declare also at run time.
10245 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
10246 Don't set the customize state.
10247 (savehist-minibuffer-hook): Special case for when
10248 minibuffer-history-variable is equal to t.
10249
10250 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
10251
10252 * files.el (write-file): Refresh VC status.
10253
10254 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
10255 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
10256 than fundamental-mode to see if the mode was set.
10257
10258 2005-11-14 Romain Francoise <romain@orebokech.com>
10259
10260 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
10261 dummy function in `eval-when-compile' to avoid compiler warning.
10262 Require `man' at compile time.
10263
10264 2005-11-14 Jay Belanger <belanger@truman.edu>
10265
10266 * calc-alg.el (calcFunc-write-out-power): Rename it to
10267 calcFunc-powerexpand.
10268 (math-write-out-power): Rename it to math-powerexpand; have it
10269 handle negative exponents.
10270 (calc-writeoutpower): Rename it to calc-powerexpand.
10271
10272 * calc-ext.el: Change calcFunc-writeoutpower and
10273 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
10274 autoloads.
10275 Add calcFunc-ldiv to autoloads.
10276
10277 * calc-arith.el (calcFunc-ldiv): New function.
10278
10279 * calc.el (calc-left-divide): New function.
10280
10281 2005-11-14 Juri Linkov <juri@jurta.org>
10282
10283 * cus-edit.el (custom-variable-prompt): Set the default value arg
10284 of completing-read.
10285
10286 * cus-dep.el (custom-make-dependencies): Reverse the list of
10287 found dependencies.
10288
10289 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
10290
10291 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
10292 Highlighting" entry, it is on by default now.
10293 (menu-bar-options-save): Do not save global-font-lock-mode.
10294
10295 2005-11-13 Richard M. Stallman <rms@gnu.org>
10296
10297 * textmodes/flyspell.el (flyspell-large-region):
10298 Call flyspell-accept-buffer-local-defs.
10299
10300 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
10301
10302 * textmodes/flyspell.el (flyspell-notify-misspell):
10303 Fix misspelling of "Misspelling".
10304 (flyspell-process-localwords): New function.
10305 (flyspell-large-region): Call flyspell-process-localwords and
10306 flyspell-delete-region-overlays.
10307 (flyspell-delete-region-overlays): New function.
10308 (flyspell-delete-all-overlays): Call that.
10309
10310 2005-11-13 Richard M. Stallman <rms@gnu.org>
10311
10312 * help.el (help-for-help-internal): Improve doc of C-h a.
10313 (describe-key): Improve prompt; doc fix.
10314
10315 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
10316
10317 * vc-svn.el (vc-svn-registered): Catch all errors.
10318
10319 * cus-dep.el (custom-make-dependencies): Typo.
10320
10321 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
10322
10323 * net/tramp-util.el (top): Fix compilation warning.
10324
10325 2005-11-13 Kim F. Storm <storm@cua.dk>
10326
10327 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
10328
10329 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
10330
10331 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
10332 (gud-speedbar-buttons): Match on "const char *" too.
10333
10334 * progmodes/gdb-ui.el (gdb-var-create-handler)
10335 (gdb-var-list-children-handler): Match on "const char *" too.
10336 (gdb-var-evaluate-expression-handler): Match on empty string.
10337 (gdb-var-update-handler): Only call
10338 gdb-var-evaluate-expression-handler when required.
10339
10340 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
10341
10342 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
10343 selected window. This still doesn't work for speedbar.
10344 (gud-speedbar-buttons): Handle string expressions properly.
10345
10346 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
10347 (gdb-var-create-handler): Handle string expressions properly.
10348 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
10349 Handle string expressions properly. Move "type" field into regexp.
10350
10351 2005-11-12 Karl Fogel <kfogel@red-bean.com>
10352
10353 * bookmark.el (bookmark-maybe-message): New function to reduce
10354 code duplication: invokes `message' iff baud-rate is high enough.
10355 (bookmark-write-file): Use above instead of an inline conditional.
10356 (bookmark-load): Same.
10357
10358 2005-11-12 Karl Fogel <kfogel@red-bean.com>
10359
10360 * bookmark.el (bookmark-write-file): Don't visit the destination
10361 file, just write the data to it using write-region. This is
10362 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
10363 change to avoid visiting the file in the first place.
10364
10365 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
10366
10367 * hi-lock.el (hi-lock-mode): Set the default value of
10368 font-lock-defaults.
10369
10370 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
10371
10372 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
10373 arg to `file-attributes'.
10374 (find-lisp-format): The UID and GID can now be strings.
10375
10376 2005-11-12 Kim F. Storm <storm@cua.dk>
10377
10378 * help.el (help-map): Bind C-h d to apropos-documentation.
10379
10380 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
10381 when point is at end-of-buffer.
10382
10383 * apropos.el (apropos-match-face): Doc fix.
10384 (apropos-sort-by-scores): Add new choice `verbose'.
10385 (apropos-documentation-sort-by-scores): New defcustom.
10386 (apropos-pattern): Now contains the pattern entered by the user.
10387 (apropos-pattern-quoted): New defvar.
10388 (apropos-regexp): New defvar, containing the regexp corresponding
10389 to apropos-pattern.
10390 (apropos-all-words-regexp): Rename from apropos-all-regexp.
10391 (apropos-read-pattern): New defun. Use it to read pattern arg in
10392 interactive calls; returns list of words for a word list, and
10393 string for a regexp.
10394 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
10395 parses a list of words or regexp as returned by apropos-read-pattern.
10396 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
10397 (apropos-score-doc): Return a very high score if the string
10398 entered by the user matches literally.
10399 (apropos-variable): Doc fix. Use apropos-read-pattern.
10400 (apropos-command): Doc fix. Use apropos-read-pattern and
10401 apropos-parse-pattern. Call apropos-print with nosubst=t.
10402 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
10403 apropos-parse-pattern.
10404 (apropos-documentation): Doc fix. Use apropos-read-pattern and
10405 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
10406 apropos-documentation-sort-by-scores. Call apropos-print with
10407 nosubst=t.
10408 (apropos-documentation-internal): Pass doc string through
10409 substitute-key-definition before adding text properties.
10410 Highlight substring matching literal user input if possible.
10411 (apropos-documentation-check-doc-file): Remove locals beg and end.
10412 Fix calculation of score (as added twice). Pass doc string through
10413 substitute-key-definition before adding text properties.
10414 (apropos-documentation-check-elc-file): Pass doc string through
10415 substitute-key-definition before adding text properties.
10416 Highlight substring matching literal user input if possible.
10417 (apropos-print): Add new arg NOSUBST; if set, command and variable
10418 doc strings have already been passed through substitute-key-definition.
10419 Add code to handle apropos-accumulator items without score element
10420 for backwards compatibility (e.g. with woman package).
10421 Only show scores if apropos-sort-by-scores is `verbose'.
10422
10423 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
10424
10425 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
10426 Add jka-compr-load-suffixes to load-suffixes.
10427
10428 * jka-compr.el: Require jka-cmpr-hook.
10429 (jka-compr-info-compress-message, jka-compr-info-compress-program)
10430 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
10431 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
10432 (jka-compr-info-can-append, jka-compr-info-strip-extension)
10433 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
10434 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
10435 (jka-compr-uninstall): Remove entries from
10436 jka-compr-added-to-file-coding-system-alist after they are used.
10437 (jka-compr-error): Remove unused var `curbuf'.
10438 (jka-compr-file-local-copy): Remove unused var `notfound'.
10439
10440 2005-11-10 Romain Francoise <romain@orebokech.com>
10441
10442 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
10443
10444 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
10445
10446 * progmodes/gud.el (gud-menu-map): Move parentheses.
10447 (gdb): New command gud-pv.
10448
10449 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
10450
10451 * tar-mode.el: Remove spurious or unnecessary leading stars
10452 in docstrings.
10453 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
10454 (tar-parse-octal-integer-safe): Use mapc.
10455 (tar-header-block-summarize): Remove unused var `ck'.
10456 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
10457 cleared before. Obey default-enable-multibyte-characters.
10458 Use mapconcat. Simplify setting of tar-header-offset.
10459 (tar-mode-map): Move initialization inside delcaration.
10460 (tar-flag-deleted): Use `abs'.
10461 (tar-expunge-internal): Remove unused var `line'.
10462 (tar-expunge-internal): Don't hardcode point-min==1.
10463 (tar-expunge): Widen while doing set-buffer-multibyte.
10464 (tar-rename-entry): Use file-name-coding-system.
10465 (tar-alter-one-field): Don't hardcode point-min==1.
10466 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
10467 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
10468
10469 2005-11-10 Masatake YAMATO <jet@gyve.org>
10470
10471 * add-log.el (add-log-current-defun): Handle class::method
10472 notation of c++. Fix incorrect comment.
10473
10474 2005-11-10 Alan Mackenzie <acm@muc.de>
10475
10476 * help-fns.el (describe-variable): Make C-h v work when a variable
10477 has variable documentation yet is unbound.
10478
10479 2005-11-10 Masatake YAMATO <jet@gyve.org>
10480
10481 * man.el (Man-highlight-references): Set an empty
10482 string to `Man-arguments' if it is nil.
10483 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
10484
10485 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
10486
10487 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
10488 commenting conventions.
10489
10490 * cus-dep.el (custom-make-dependencies): Simplify.
10491 Better follow the commenting conventions.
10492
10493 2005-11-09 Richard M. Stallman <rms@gnu.org>
10494
10495 * apropos.el (apropos-pattern): Rename from apropos-regexp.
10496 (apropos-orig-pattern): Rename from apropos-orig-regexp.
10497 All uses changed.
10498 (apropos-rewrite-regexp): Doc fix.
10499 (apropos-variable, apropos-command, apropos, apropos-value):
10500 Change prompt; carry through the argument renaming.
10501
10502 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
10503
10504 * find-lisp.el: Require dired.
10505 (find-lisp-find-dired-internal): Do not call
10506 `abbreviate-file-name' on DIR.
10507
10508 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
10509
10510 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
10511
10512 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
10513
10514 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
10515 when using the speedbar.
10516 (gdb): New command gud-pp.
10517 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
10518
10519 2005-11-09 Juri Linkov <juri@jurta.org>
10520
10521 * replace.el (occur-excluded-properties): New defcustom.
10522 (occur-1, occur-engine, occur-accumulate-lines): Use it.
10523
10524 2005-11-08 Jay Belanger <belanger@truman.edu>
10525
10526 * calc/calc-units.el (math-convert-units): Replace any composite
10527 unit by its definition.
10528
10529 2005-11-08 Lars Hansen <larsh@soem.dk>
10530
10531 * emacs-lisp/autoload.el (update-directory-autoloads):
10532 Add obsolete function alias.
10533
10534 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
10535
10536 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
10537 comment-indent-function.
10538 (lisp-comment-indent): Replace by an alias for comment-indent-default.
10539
10540 * reveal.el (reveal-post-command): Rework the handling of
10541 reveal-open-spots, so as to be more reliable. There were several
10542 tricky corner cases where an open spot might be lost, or where
10543 a closed spot might end up on the list of open spots.
10544 Only reveal text that's ellipsised.
10545
10546 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
10547
10548 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
10549
10550 2005-11-07 John Paul Wallington <jpw@gnu.org>
10551
10552 * ibuffer.el (ibuffer): Search iconified frames too when
10553 getting Ibuffer buffer's window.
10554
10555 2005-11-06 Richard M. Stallman <rms@gnu.org>
10556
10557 * progmodes/compile.el (compilation-internal-error-properties):
10558 save-excursion around the computation of MARKER.
10559
10560 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
10561
10562 * textmodes/flyspell.el (flyspell-external-point-words):
10563 flyspell-get-word returns a list, not just a string.
10564
10565 2005-11-06 John Paul Wallington <jpw@pobox.com>
10566
10567 * ibuffer.el (ibuffer): Search all visible frames when getting
10568 Ibuffer buffer's window.
10569
10570 2005-11-07 Masatake YAMATO <jet@gyve.org>
10571
10572 * man.el (Man-reference-regexp): Accept spaces between
10573 `Man-name-regexp' and `Man-section-regexp'.
10574 (Man-apropos-regexp): New variable.
10575 (Man-abstract-xref-man-page): Use value for `Man-target-string'
10576 if available.
10577 (Man-highlight-references, Man-highlight-references0):
10578 Handle the case when `Man-arguments' includes "-k".
10579 (Man-highlight-references0): Rename the argument `TARGET-POS' to
10580 `TARGET'. `TARGET' can be a number, function or nil.
10581
10582 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
10583
10584 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
10585 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
10586 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
10587 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
10588 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
10589 (gdb-send-item): Use buffer-local-value and simplify.
10590
10591 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
10592
10593 * startup.el (command-line): Use `custom-reevaluate-setting' for
10594 `global-font-lock-mode'.
10595
10596 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
10597 by default, except in batch mode or when the -D option is given.
10598
10599 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
10600 specified keyword args on to `define-minor-mode'. Update docstring.
10601
10602 2005-11-05 Romain Francoise <romain@orebokech.com>
10603
10604 * replace.el (occur-engine): Add marker at end of line, too.
10605
10606 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
10607
10608 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
10609 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
10610 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
10611 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
10612 argument to all these routines, so the passphrase can be managed
10613 externally and passed in to the system.
10614 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
10615 pgg-add-passphrase-to-cache function.
10616
10617 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
10618 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
10619 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
10620 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
10621 argument to all these routines, so the passphrase can be managed
10622 externally and passed in to the system.
10623 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
10624 function.
10625
10626 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
10627
10628 * font-lock.el: Don't deal with font-lock-face-attributes here,
10629 move the code ...
10630
10631 * startup.el (command-line): ... here. Use face-spec-set instead
10632 of custom-declare-face.
10633
10634 * faces.el (face-spec-set): Reset the face if spec is not nil.
10635
10636 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
10637
10638 * newcomment.el (comment-region-internal): Box more tightly in the
10639 common case where there's no TAB in the boxed text.
10640
10641 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10642
10643 * info.el (info-tool-bar-map): Use images prev-node, next-node and
10644 up-node.
10645
10646 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
10647
10648 * newsticker.el: Commentary updated. Code formatting changed.
10649 (newsticker-version): Change to "1.9".
10650 (newsticker, newsticker-feed): Doc fix.
10651 (newsticker-url-list): Doc fix. Add option "Weekly".
10652 (newsticker-retrieval-interval): Add option "Weekly".
10653 (newsticker-headline-processing): Doc fix.
10654 (newsticker-auto-mark-filter): Remove.
10655 (newsticker-auto-mark-filter-list): New.
10656 (newsticker-layout, newsticker-sort-method): Doc fix.
10657 (newsticker-hide-old-items-in-newsticker-buffer)
10658 (newsticker-heading-format, newsticker-item-format)
10659 (newsticker-desc-format): Doc fix.
10660 (newsticker-show-all-rss-elements): Remove.
10661 (newsticker-show-all-news-elements): New.
10662 (newsticker-faces, newsticker-ticker): Doc fix.
10663 (remove-from-invisibility-spec): Code formatting.
10664 (newsticker--process-ids): New.
10665 (newsticker-mode): Doc fix.
10666 (newsticker-mode): Change mode-line-format.
10667 (newsticker-start): Remove debug output.
10668 (newsticker-start-ticker): Doc fix. Add autoload cookie.
10669 (newsticker-w3m-show-inline-images): Code formatting.
10670 (newsticker-next-item): Call `force-mode-line-update'.
10671 (newsticker-previous-item): Call `force-mode-line-update'.
10672 (newsticker-next-feed): Call `force-mode-line-update'.
10673 (newsticker-previous-feed): Call `force-mode-line-update'.
10674 (newsticker-mark-all-items-at-point-as-read): Code formatting.
10675 (newsticker-show-old-items): Do not show descs.
10676 (newsticker-hide-entry): Hide too much.
10677 (newsticker-hide-entry, newsticker-show-entry)
10678 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
10679 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
10680 (newsticker-toggle-auto-narrow-to-item): Code formatting.
10681 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
10682 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
10683 (newsticker-get-news): Call `force-mode-line-update'.
10684 Collect process ids.
10685 (newsticker--sentinel): Change coding system handling.
10686 Move image retrieval to new functions newsticker--get-logo-url-*.
10687 Move feed parsing to new functions newsticker--parse-*.
10688 Update list of process ids.
10689 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
10690 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
10691 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
10692 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
10693 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10694 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
10695 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
10696 (newsticker--decode-coding-string): Remove.
10697 (newsticker--decode-numeric-entities): Check input. Format code.
10698 (newsticker--remove-whitespace): Check input.
10699 (newsticker--do-forget-preformatted): Doc fix.
10700 (newsticker--decode-rfc822-date): Allow for missing time.
10701 (newsticker--update-process-ids): New.
10702 (newsticker--image-sentinel): Change comment.
10703 (newsticker--image-read): Change error message.
10704 (newsticker--imenu-goto): Doc fix. Show headline title.
10705 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
10706 (newsticker--buffer-do-insert-text): Clean whitespace in
10707 html-rendered headline title. Code formatting.
10708 Call `newsticker--buffer-print-extra-elements'.
10709 (newsticker--buffer-print-extra-element): Remove.
10710 (newsticker--buffer-print-extra-elements): New.
10711 (newsticker--buffer-do-print-extra-element): New.
10712 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
10713 large sizes.
10714 (newsticker--run-auto-mark-filter)
10715 (newsticker--do-run-auto-mark-filter):
10716 Use `newsticker-auto-mark-filter-list'.
10717
10718 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
10719
10720 * net/rcirc.el: Use split-string OMIT-NULLS argument.
10721 (rcirc-print): Force redisplay before running hooks. Do long
10722 buffer truncation after making new text read-only. Deal with nil
10723 text when decoding strings. If TARGET is nil, use either the
10724 currently selected buffer, if it is an rcirc buffer and of the
10725 same process or the process buffer.
10726 (rcirc-mode): Remove header-line. Recompute short buffer names.
10727 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
10728 (rcirc-short-buffer-name): Add variable.
10729 (rcirc-kill-buffer-hook): Recompute short buffer names.
10730 Remove nick from private channel.
10731 (rcirc-send-input): Send command text to current-buffer.
10732 Don't clear overlay arrow here.
10733 (rcirc-short-buffer-name): Return a short buffer name.
10734 (rcirc-update-short-buffer-names, rcirc-abbreviate)
10735 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
10736 buffer-name abbreviations.
10737 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
10738 Do not touch nick-table when killing a parted channel.
10739 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
10740 Clear arrow from current buffer if it is now hidden.
10741 (rcirc-current-buffer): Add variable.
10742 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
10743 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
10744 Remove -face from names.
10745 (rcirc-update-activity-string): Print "DND" when globally ignoring
10746 activity.
10747 (rcirc-ignore-buffer-activity-flag): Rename from
10748 rcirc-ignore-channel-activity.
10749 (rcirc-ignore-all-activity-flag): Doc fix.
10750 (rcirc-channels): Remove variable.
10751 (rcirc-kill-buffer-hook):
10752 (rcirc-get-buffer-create): Add nick to private channel.
10753 (rcirc-multiline-edit-submit): Remove tabs.
10754 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
10755 folded.
10756 (rcirc-remove-nick-channel): Bug fix.
10757 (rcirc-toggle-ignore-buffer-activity): Rename from
10758 rcirc-toggle-ignore-channel-activity.
10759 (rcirc-record-activity): Add buffers to the front of the list.
10760 (rcirc-update-activity): Remove killed buffers from list.
10761 (rcirc-process-server-response-1): Remove last argument if it is
10762 null before calling handler.
10763 (rcirc): Add "rcirc" defcustom prefix.
10764 (rcirc-prompt): Simplify default prompt.
10765 Use custom-initialize-default.
10766 (rcirc-private-chats): Remove variable.
10767 (rcirc-prompt): Change initialization.
10768 (rcirc-version): Remove function.
10769 (rcirc-id-string): Add constant.
10770 (rcirc-last-buffer): Remove variable.
10771 (rcirc-buffer-alist): Add variable.
10772 (rcirc-connect): Update variable setup.
10773 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
10774 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
10775 default.
10776 (rcirc-handler-generic): Trigger activity.
10777 (rcirc-send-message): Create the buffor of the target.
10778 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
10779 (rcirc-get-buffer): Just return nil if there is no matching buffer.
10780 (rcirc-multiline-edit-cancel): Remove function.
10781 (rcirc-set-last-buffer): Remove function.
10782 (rcirc-get-any-buffer): Add function.
10783 (rcirc-join-channels): Don't print /join text.
10784 (rcirc-toggle-ignore-channel-activity): Add and update echo area
10785 messages.
10786 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
10787 (rcirc-handler-NOTICE): Recognize CTCP responses.
10788 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
10789 constructing TOPIC string for buffers we are not JOINed.
10790 (rcirc-handler-CTCP-response): Add handler.
10791 (rcirc-multiline-edit-submit): Restore the window-configuration
10792 before adjusting point.
10793 (rcirc): Add customization group.
10794 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
10795 (rcirc-user-full-name, rcirc-startup-channels-alist)
10796 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
10797 (rcirc-ignore-all-activity-flag, rcirc-time-format)
10798 (rcirc-input-ring-size, rcirc-read-only-flag)
10799 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
10800 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
10801 Change defvar to defcustom.
10802 (rcirc-update-prompt): Add optional ALL arg, which will update
10803 prompts in all rcirc buffers. Regexp quote replacement text.
10804 (rcirc-fill-column): Accept frame-width as a value.
10805 (rcirc-set-changed): Add function.
10806 (rcirc-next-active-buffer): Write more meaningful messages.
10807 (rcirc-faces): Add customization group.
10808 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
10809 (rcirc-nick-in-message-face, rcirc-prompt-face)
10810 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
10811 (with-rcirc-process-buffer): Move before first usage.
10812 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
10813 (rcirc-debug-flag): Rename from `rcirc-log-p'.
10814 (rcirc-debug): Rename from `rcirc-log'.
10815 (rcirc-format-response-string): Do not print `-' chars for a
10816 NOTICE with no sender. Simplify output of server responses.
10817
10818 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
10819
10820 (rcirc-browse-url-map, rcirc-browse-url-at-point)
10821 (rcirc-browse-url-at-mouse, rcirc-mangle-text):
10822 Make urls mouse and RET clickable.
10823
10824 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
10825
10826 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
10827
10828 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
10829
10830 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
10831 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
10832 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
10833 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
10834 argument to all these routines, so the passphrase can be managed
10835 externally and passed in to the system.
10836 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
10837 pgg-add-passphrase-to-cache function.
10838
10839 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
10840 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
10841 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
10842 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional PASSPHRASE
10843 argument to all these routines, so the passphrase can be managed
10844 externally and passed in to the system.
10845 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
10846 function.
10847
10848 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
10849
10850 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
10851 from goto-address-url-regexp.
10852
10853 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
10854
10855 * textmodes/org.el (org-read-date, org-goto-calendar)
10856 (org-recenter-calendar, org-agenda-goto-calendar):
10857 Temporarily clear `calendar-move-hook'.
10858
10859 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
10860
10861 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
10862 merging.
10863
10864 * ediff-util.el (ediff-previous-difference): Don't skip regions that
10865 have merge clashes.
10866
10867 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10868
10869 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
10870 Undo previous change.
10871
10872 * startup.el (command-line): Use `custom-reevaluate-setting' for
10873 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
10874 tty-register-default-colors on Mac.
10875
10876 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
10877
10878 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
10879 (gdb-buffer-type): Make it automatically buffer local...
10880 (gdb-get-create-buffer): ...and set it accordingly.
10881 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
10882 actually work.
10883
10884 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
10885
10886 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
10887 not red.
10888
10889 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
10890
10891 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
10892 case GUD buffer is not visible.
10893 (gdb-goto-breakpoint): Try to force display in source buffer.
10894 (gdb-frame-gdb-buffer): Copy other similar functions.
10895 (gdb-restore-windows): Don't display source if not asked for.
10896 (gdb-assembler-buffer-name): Don't capitalise.
10897
10898 2005-11-03 Richard M. Stallman <rms@gnu.org>
10899
10900 * wid-edit.el (key-sequence): New widget type.
10901
10902 * simple.el (set-mark-command-repeat-pop): New variable.
10903 (set-mark-command): Only interpret plan C-@ after a pop as a pop
10904 if set-mark-command-repeat-pop is true.
10905
10906 * info.el (Info-fontify-node): Don't display extra "see" if there
10907 already is one here.
10908
10909 * mouse.el: Fix special handling of DEL after dragging a region:
10910 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
10911 (mouse-region-delete-keys): Change to defcustom. Add [backspace].
10912
10913 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
10914
10915 * textmodes/ispell.el (ispell-command-loop): Change `i' description
10916 not to assume it pertains to an affix.
10917
10918 * textmodes/flyspell.el (flyspell-post-command-hook):
10919 Bind deactivate-mark to prevent deactivation.
10920
10921 2005-11-03 Lars Hansen <larsh@soem.dk>
10922
10923 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
10924 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
10925 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
10926
10927 2005-11-03 Romain Francoise <romain@orebokech.com>
10928
10929 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
10930 Update copyright years.
10931
10932 2005-11-03 Sam Steingold <sds@gnu.org>
10933
10934 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
10935 Use system-type instead of window-system because window-system is not
10936 correctly defined during loadup.
10937
10938 2005-11-02 Mark A. Hershberger <mah@everybody.org>
10939
10940 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
10941 (xml-parse-tag): Join strings separated by a comment properly.
10942
10943 2005-11-02 Andreas Schwab <schwab@suse.de>
10944
10945 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
10946
10947 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
10948
10949 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
10950 (byte-optimize-pure-func): Quote the eval'd value.
10951
10952 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
10953 Rename from perl-font-lock-syntactic-face-function.
10954 Change the calling convention so it can be used as a font-lock MATCHER.
10955 Do the parse-partial-sexp loop outselves.
10956 (perl-font-lock-syntactic-keywords): Use it.
10957 (perl-mode): Don't set font-lock-syntactic-face-function any more.
10958
10959 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
10960
10961 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
10962 disassembly buffer too.
10963 (gdb-exited): Remove overlay arrows when execution has finished.
10964 (gdb-info-frames-custom, gdb-info-threads-custom)
10965 (gdb-info-registers-custom): Don't add inappropriate text
10966 properties if inferior is not active.
10967
10968 2005-11-02 Glenn Morris <rgm@gnu.org>
10969
10970 * progmodes/fortran.el (fortran-blink-match):
10971 Use `blink-matching-delay'.
10972
10973 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
10974
10975 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
10976
10977 2005-11-02 Lars Hansen <larsh@soem.dk>
10978
10979 * net/tramp.el (tramp-action-out-of-band): Handle scp message
10980 "Permission denied".
10981
10982 2005-11-01 Richard M. Stallman <rms@gnu.org>
10983
10984 * textmodes/flyspell.el (flyspell-external-point-words):
10985 Pass nil to flyspell-get-word.
10986
10987 2005-11-02 Kim F. Storm <storm@cua.dk>
10988
10989 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
10990 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
10991
10992 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
10993
10994 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
10995 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
10996 (calendar-mouse-print-dates): Add optional `event' argument.
10997 Update interactive-spec.
10998 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
10999 Use `calendar-event-to-date' instead of `event'.
11000
11001 2005-11-02 Masatake YAMATO <jet@gyve.org>
11002
11003 * progmodes/ld-script.el (ld-script-builtins):
11004 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
11005 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
11006 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
11007
11008 2005-11-01 Romain Francoise <romain@orebokech.com>
11009
11010 * vc-sccs.el: Update copyright year.
11011 * ezimage.el: Likewise.
11012
11013 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
11014
11015 * info.el (Info-fontify-node): Use `string-width' for fontifying
11016 underlined titles.
11017
11018 2005-11-01 Juri Linkov <juri@jurta.org>
11019
11020 * info.el (Info-fontify-node): Downcase node header keywords Node,
11021 Prev, Next, Up before comparison.
11022 (Info-history): Insert absolute directory name, and put invisible
11023 property on it.
11024
11025 2005-11-01 Juri Linkov <juri@jurta.org>
11026
11027 * info.el (Info-file-supports-index-cookies): New variable.
11028 (Info-find-node-2): Check makeinfo version for index cookie support.
11029 (Info-index-nodes): Search for nodes with index cookies only when
11030 Info-file-supports-index-cookies is t. Otherwise, search nodes
11031 with "Index" in the node name.
11032 (Info-index-node): Search index cookie in the current node only when
11033 Info-file-supports-index-cookies is t. Otherwise, check the word
11034 "Index" in the node name.
11035 (Info-find-emacs-command-nodes): Remove code that searches nodes
11036 with "Index" node name in the top menu.
11037
11038 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
11039
11040 * progmodes/scheme.el (scheme-mode-variables): Use the default
11041 comment-indent-function.
11042
11043 * faces.el (face-attribute): Handle the case where a face inherits from
11044 a non-existent face.
11045
11046 * simple.el (eval-expression-print-format): Use lisp-readable syntax
11047 for octal and hexa output, and merge the char into the paren.
11048 (kill-new): Use push.
11049 (copy-to-buffer): Use with-current-buffer.
11050 (completion-setup-function): Move code in loop to remove redundancy.
11051 (minibuffer-local-must-match-map): Don't add bindings that duplicate
11052 those inherited from minibuffer-local-completion-map.
11053
11054 * savehist.el (savehist-mode) <defcustom>:
11055 Use custom-set-minor-mode if available.
11056 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
11057 and emit a message if applicable.
11058
11059 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
11060
11061 * savehist.el: Sync up to version 19.
11062 (savehist-mode): New minor mode.
11063 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
11064 (savehist-length): Remove (use history-length instead).
11065 (savehist-file-modes): Rename from savehist-modes.
11066 (savehist-save-hook, savehist-loaded): New vars.
11067 (savehist-load): Use savehist-mode. Try to smooth up transition from
11068 old format to new format.
11069 (savehist-install): Allow savehist-autosave-interval to be nil.
11070 (savehist-save): Run the new hook. Be more careful to only trim the
11071 history variables.
11072 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
11073 (savehist-printable): Print into a buffer rather than char-by-char.
11074
11075 2005-11-01 John Wiegley <johnw@newartisans.com>
11076
11077 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
11078 toggle-ignore keybinding (C-a). The author said it had been
11079 disabled much earlier due to a possible incompatibility, but after
11080 many months of usage I have encountered no problems (and it is a
11081 rather useful option, especially for switching to " *temp*").
11082
11083 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
11084 support for OS/X's AddressBook, by calling out to the open source
11085 program "contacts" (installable through Fink).
11086
11087 * net/eudc.el (eudc-expand-inline): If the
11088 `eudc-multiple-match-handling-method' is set to `all', delete the
11089 query string before inserting the query result.
11090
11091 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
11092 flag, to prevent Eshell from using the system ls when
11093 `eshell-ls-insert-directory' is in used.
11094 (eshell-ls-insert-directory): Disable font-lock in directory
11095 buffer so that Eshell's own fontification is seen. This broke
11096 recently due to changes in font-lock, so this goes back to version
11097 21 behavior.
11098
11099 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
11100
11101 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
11102 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
11103 (gdb-many-windows): Doc fix.
11104
11105 2005-10-31 Romain Francoise <romain@orebokech.com>
11106
11107 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
11108
11109 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
11110
11111 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
11112 that global-font-lock-mode can be enabled by default.
11113
11114 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
11115 (font-lock-add-keywords, font-lock-remove-keywords)
11116 (font-lock-fontify-buffer): Remove autoload cookies.
11117
11118 * jit-lock.el (jit-lock-register): Likewise.
11119
11120 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
11121
11122 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
11123
11124 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
11125 intact if there is no gud-comint-buffer.
11126
11127 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
11128
11129 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
11130 old prompt comint-prompt-read-only is t and GDB commands are
11131 issued from tool bar etc.
11132
11133 2005-10-31 Masatake YAMATO <jet@gyve.org>
11134
11135 * vc.el (vc-directory-exclusion-list): Add "{arch}".
11136
11137 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
11138
11139 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
11140 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
11141
11142 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
11143
11144 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
11145 starting at beginning of line. Fontification is messed up when
11146 `open-paren-in-column-0-is-defun-start' set to t.
11147 Reported by John Paul Wallington <jpw@pobox.com>.
11148
11149 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
11150
11151 * comint.el (comint-send-input): Call `comint-update-fence' when
11152 `comint-process-echoes' and `comint-prompt-read-only' are both
11153 non-nil, to avoid leftover read-only newline.
11154
11155 2005-10-30 Richard M. Stallman <rms@gnu.org>
11156
11157 * textmodes/flyspell.el (flyspell-external-point-words):
11158 Detect when WORD can't be checked properly because
11159 flyspell-get-word finds just part of it, and move on.
11160
11161 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
11162 boundarychar for Polish.
11163 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
11164 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
11165
11166 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
11167
11168 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
11169 (gdb-registers-font-lock-keywords): Delete.
11170 (gdb-registers-mode): Don't fontify.
11171 (gdb-info-registers-custom): Use text properties instead as, in
11172 future, changed register values will use font-lock-warning-face.
11173 (gdb-local-font-lock-keywords): Rename to...
11174 (gdb-locals-font-lock-keywords): ...for consistency.
11175
11176 2005-10-30 Andre Spiegel <spiegel@gnu.org>
11177
11178 * vc.el (vc-switch-backend): Better error message if the buffer is
11179 not visiting a file under version control.
11180
11181 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
11182
11183 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
11184
11185 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
11186 ~/.emacs.d/.emacs.
11187
11188 2005-10-29 Richard M. Stallman <rms@gnu.org>
11189
11190 * replace.el (occur-mode-mouse-goto): Always go to other window.
11191 (occur-mode-goto-occurrence): Always switch in same window.
11192
11193 * simple.el (undo): Display message at end, not at start.
11194
11195 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
11196 New arg REUSE-CELL.
11197 (cancel-timer-internal): New function.
11198 (timer-event-handler): Use cancel-timer-internal,
11199 and pass the cell it returns to timer-activate...
11200
11201 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
11202 (jit-lock-deferred-fontify, jit-lock-context-fontify)
11203 (jit-lock-after-change): Test memory-full.
11204
11205 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
11206
11207 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
11208 part of the decoded armor to find the key-identifier.
11209 (pgg-gpg-lookup-key-owner): New function to return the
11210 human-readable identifier of a key owner.
11211 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
11212 key itself.
11213 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
11214 the key value) if we have a key and can match it against a secret
11215 key. Also, added a note pointing out fact that the prompt only
11216 indicates the first matching key.
11217
11218 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
11219 pgg-decrypt-region.
11220 (pgg-pending-timers): A new hash for tracking the passphrase cache
11221 timers, so that new ones supercede old ones.
11222 (pgg-add-passphrase-to-cache): Rename from
11223 `pgg-add-passphrase-cache' to reduce confusion (all callers
11224 changed). Modified to cancel old timers when new ones are added.
11225 (pgg-remove-passphrase-from-cache): Rename from
11226 `pgg-remove-passphrase-cache' to reduce confusion (all callers
11227 changed). Modified to cancel old timers when their keys are
11228 removed from the cache.
11229 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
11230 XEmacs, an indirection to delete-itimer.
11231 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
11232 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
11233 users can only check cache without risk of prompting. Correct bug in
11234 notruncate behavior.
11235 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
11236 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
11237 Add informative docstrings.
11238 (pgg-decrypt): Convey provided passphrase in subordinate call to
11239 pgg-decrypt-region.
11240
11241 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
11242 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
11243 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
11244 `passphrase' argument, so the passphrase can be managed externally
11245 and then passed in to the system.
11246
11247 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
11248 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
11249 so the passphrase cache can be used reliably with identifiers
11250 besides a pgp packet's key id.
11251
11252 * pgg-gpg.el (pgg-pgp-encrypt-region)
11253 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
11254 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
11255 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
11256 argument to all these routines, so the passphrase can be managed
11257 externally and passed in to the system.
11258
11259 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
11260 `notruncate' argument, so the passphrase cache can be used
11261 reliably with identifiers besides a pgp packet's key id.
11262
11263 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
11264
11265 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
11266 symmetric encryption.
11267 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
11268 encrypted session key.
11269 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
11270 message ask for the passphrase in a proper way.
11271
11272 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
11273 New user commands for symmetric encryption.
11274
11275 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
11276
11277 * textmodes/conf-mode.el (conf-assignment-sign)
11278 (conf-assignment-regexp): Fix docstrings.
11279 (conf-mode-initialize): New function.
11280 (conf-mode): Remove optional args. Use delay-mode-hooks to
11281 recognize recursive calls.
11282 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
11283 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
11284 (conf-xdefaults-mode): Use define-derived-mode and
11285 conf-mode-initialize.
11286
11287 2005-10-29 Romain Francoise <romain@orebokech.com>
11288
11289 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
11290
11291 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
11292
11293 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
11294 part of the decoded armor to find the key-identifier.
11295 (pgg-gpg-lookup-key-owner): New function to return the
11296 human-readable identifier of a key owner.
11297 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
11298 key itself.
11299 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
11300 the key value) if we have a key and can match it against a secret
11301 key. Also, added a note pointing out fact that the prompt only
11302 indicates the first matching key.
11303
11304 * pgg.el (pgg-decrypt): Passing along PASSPHRASE in call to
11305 pgg-decrypt-region.
11306 (pgg-pending-timers): A new hash for tracking the passphrase cache
11307 timers, so that new ones supercede old ones.
11308 (pgg-add-passphrase-to-cache): Rename from
11309 `pgg-add-passphrase-cache' to reduce confusion (all callers
11310 changed). Modified to cancel old timers when new ones are added.
11311 (pgg-remove-passphrase-from-cache): Rename from
11312 `pgg-remove-passphrase-cache' to reduce confusion (all callers
11313 changed). Modified to cancel old timers when their keys are
11314 removed from the cache.
11315 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
11316 XEmacs, an indirection to delete-itimer.
11317 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
11318 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
11319 users can only check cache without risk of prompting. Correct bug in
11320 notruncate behavior.
11321 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
11322 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
11323 Add informative docstrings.
11324 (pgg-decrypt): Convey provided passphrase in subordinate call to
11325 pgg-decrypt-region.
11326
11327 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
11328
11329 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
11330 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
11331 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
11332 `passphrase' argument, so the passphrase can be managed externally
11333 and then passed in to the system.
11334
11335 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
11336 (pgg-remove-passphrase-cache): Add optional NOTRUNCATE argument,
11337 so the passphrase cache can be used reliably with identifiers
11338 besides a pgp packet's key id.
11339
11340 * pgg-gpg.el (pgg-pgp-encrypt-region)
11341 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
11342 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
11343 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional PASSPHRASE
11344 argument to all these routines, so the passphrase can be managed
11345 externally and passed in to the system.
11346
11347 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
11348 `notruncate' argument, so the passphrase cache can be used
11349 reliably with identifiers besides a pgp packet's key id.
11350
11351 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
11352
11353 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
11354 symmetric encryption.
11355 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
11356 encrypted session key.
11357 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
11358 message ask for the passphrase in a proper way.
11359
11360 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
11361 New user commands for symmetric encryption.
11362
11363 2005-10-28 Bill Wohler <wohler@newt.com>
11364
11365 * help-mode.el (help-url): New button type. Calls browse-url.
11366 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
11367 Similar to Info nodes: URL `url'.
11368 (help-make-xrefs): Create help-url buttons for
11369 help-xref-url-regexp matches.
11370
11371 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
11372
11373 * tool-bar.el (tool-bar-add-item-from-menu)
11374 (tool-bar-local-item-from-menu): Fix doc strings.
11375
11376 2005-10-28 Romain Francoise <romain@orebokech.com>
11377
11378 * ldefs-boot.el: Update.
11379
11380 * subr.el (locate-library): Move from help-fns.el.
11381 * help-fns.el (locate-library): Move to subr.el.
11382
11383 2005-10-28 Richard M. Stallman <rms@gnu.org>
11384
11385 * net/tramp.el (tramp-completion-mode): defvar moved up.
11386
11387 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
11388
11389 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
11390
11391 * files.el (find-file-noselect): Use %d to format large file size.
11392
11393 * bindings.el (mode-line-format): Add %e.
11394
11395 * loadup.el ("facemenu"): Load unconditionally.
11396 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
11397 ("x-dnd"): Load, when appropriate.
11398
11399 * startup.el (command-line): Call before-init-hook earlier.
11400 Warn about some bad characters in -u user name.
11401
11402 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
11403 (flyspell-external-point-words): Error if misspelled word is not found.
11404 Set flyspell-large-region-beg at end of word.
11405
11406 2005-10-28 Andreas Schwab <schwab@suse.de>
11407
11408 * view.el (View-revert-buffer-scroll-page-forward):
11409 Use view-page-size-default.
11410
11411 2005-10-28 Juri Linkov <juri@jurta.org>
11412
11413 * international/quail.el (quail-get-current-str): Translate last
11414 raw character for deterministic input methods.
11415
11416 2005-10-27 Jay Belanger <belanger@truman.edu>
11417
11418 * calc/calc-ext.el: Add functions to autoloads.
11419 (math-identity-matrix-p, math-ident-row-p): New functions.
11420
11421 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
11422 multiplication by an identity matrix; don't turn multiplication by
11423 an inverse matrix into division.
11424 (math-div-symbol-fancy): Replace division by matrices with
11425 multiplication by inverse.
11426
11427 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
11428
11429 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
11430 (calc-writeoutpower): New functions.
11431
11432 2005-10-27 Romain Francoise <romain@orebokech.com>
11433
11434 * replace.el (occur-engine): Include colon in mouse-face highlight.
11435
11436 * dired-x.el: Change Maintainer field.
11437
11438 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
11439
11440 * longlines.el (longlines-mode): Bind after-change-functions to
11441 nil during initial decoding and final encoding.
11442
11443 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
11444
11445 * term.el (term-emulate-terminal, term-handle-colors-array)
11446 (term-handle-ansi-escape): Specify the terminfo capabilities
11447 implemented.
11448
11449 2005-10-26 Richard M. Stallman <rms@gnu.org>
11450
11451 * info.el (Info-fontify-node): Fix detection of sentence-break
11452 before *Note.
11453
11454 2005-10-26 Romain Francoise <romain@orebokech.com>
11455
11456 * smerge-mode.el: Add `tools' to file keywords.
11457
11458 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
11459
11460 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
11461 when the fringe is not available.
11462
11463 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
11464 (def-gdb-auto-update-trigger): Simplify construction.
11465 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
11466 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
11467 defined explicitly.
11468 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
11469 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
11470 defined explicitly.
11471 (gdb-info-locals-custom): Remove as it's a no-op.
11472
11473 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
11474
11475 * longlines.el (longlines-mode): Remove narrowing before
11476 performing the initial decoding or final encoding.
11477
11478 2005-10-25 Romain Francoise <romain@orebokech.com>
11479
11480 * emacs-lisp/find-func.el (find-library-name): Also strip
11481 extension if library name ends in .el, to take advantage of
11482 `find-library-suffixes'.
11483
11484 2005-10-25 Richard M. Stallman <rms@gnu.org>
11485
11486 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
11487
11488 2005-10-25 Juri Linkov <juri@jurta.org>
11489
11490 * textmodes/texinfo.el (texinfo-mode): Change charset of one
11491 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
11492
11493 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
11494
11495 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
11496 (blackbox-redefine-key): Add argument `map'.
11497
11498 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
11499 regions when moving the jit-lock-context-unfontify-pos boundary.
11500
11501 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
11502
11503 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
11504
11505 2005-10-25 Masatake YAMATO <jet@gyve.org>
11506
11507 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
11508
11509 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
11510
11511 * play/blackbox.el (blackbox-redefine-key): New function.
11512 (blackbox-mode-map): Use it to remap existing bindings for cursor
11513 motion instead of binding literal keys.
11514
11515 2005-10-25 Glenn Morris <rgm@gnu.org>
11516
11517 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
11518 diary does not end in a newline. Do not assume a blank line at
11519 the start of the diary file.
11520
11521 2005-10-25 Kenichi Handa <handa@m17n.org>
11522
11523 * international/quail.el (quail-translate-key): If the input
11524 method is deterministic and failed to handle the last key, restart
11525 the key handling loop from an appropriate key.
11526
11527 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
11528
11529 * vc.el (vc-dired-mode): Extend comment for binding of
11530 `directory-listing-before-filename-regexp'.
11531
11532 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
11533
11534 * textmodes/texinfo.el (texinfo-mode):
11535 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
11536 not to unnecessarily expose emacs-mule's internal char codes.
11537
11538 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
11539
11540 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
11541 Display hand pointer and help-echo on disabled icon too.
11542 (gdb-mouse-until): New function.
11543 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
11544
11545 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
11546
11547 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
11548 with 2005-10-23 change to doctor.el.
11549
11550 * finder.el (finder-mode-map): Add follow-link binding.
11551
11552 2005-10-25 Kim F. Storm <storm@cua.dk>
11553
11554 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
11555 to gdb-mouse-toggle-breakpoint-fringe.
11556 (gdb-mouse-toggle-breakpoint-margin): Rename from
11557 gdb-mouse-toggle-breakpoint. Fix doc.
11558 (gdb-mouse-toggle-breakpoint-fringe): New defun.
11559 (gdb-put-string): Add optional SPROPS arg. Add props to string.
11560 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
11561 string properties also for fringe breakpoint bitmaps.
11562
11563 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
11564
11565 * textmodes/org.el (org-start-icalendar-file): Fix format form.
11566
11567 2005-10-25 Masatake YAMATO <jet@gyve.org>
11568
11569 * simple.el (completion-common-substring):
11570 Use `completion-common-substring' prior to `completion-base-size'.
11571
11572 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
11573
11574 * savehist.el: Require CL while compiling.
11575 (savehist-history-variables): Remove.
11576 (savehist-save-minibuffer-history, savehist-additional-variables)
11577 (savehist-minibuffer-history-variables): New vars.
11578 (savehist-save): Use them.
11579 (savehist-uninstall, savehist-minibuffer-hook): New funs.
11580 (savehist-install): New fun, extracted from savehist-load.
11581 (savehist-load): Use them.
11582
11583 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
11584
11585 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
11586 a dummy doc-string-elt property.
11587 (defalias, defvaralias, define-category): Add a docstring property.
11588
11589 * image.el (defimage):
11590 * widget.el (define-widget):
11591 * custom.el (defface, defcustom): Add `doc-string' declaration.
11592
11593 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
11594 (defadvice): Add `doc-string' declaration.
11595
11596 * emacs-lisp/byte-run.el (macro-declaration-function):
11597 Handle `doc-string' declarations.
11598 (define-obsolete-function-alias, define-obsolete-variable-alias):
11599 Add `doc-string' declaration.
11600
11601 2005-10-24 Kenichi Handa <handa@m17n.org>
11602
11603 * international/utf-7.el (utf-7): Add autoload cookie.
11604
11605 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
11606
11607 2005-10-24 Eli Zaretskii <eliz@gnu.org>
11608
11609 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
11610 list of directories passed to batch-update-autoloads. Add "." to
11611 the list of the echoed directories.
11612
11613 * pgg-def.el:
11614 * pgg-gpg.el:
11615 * pgg-parse.el:
11616 * pgg-pgp.el:
11617 * pgg-pgp5.el:
11618 * pgg.el: Moved here from the gnus subdirectory.
11619
11620 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
11621
11622 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
11623 in case comint-prompt-read-only is set to t.
11624
11625 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
11626 in case comint-prompt-read-only is set to t.
11627
11628 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
11629
11630 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
11631 Now a string.
11632 (icalendar-import-format): Handle CLASS, STATUS, URL.
11633 Rename `subject' to `summary'.
11634 (icalendar-import-format-summary): Rename from
11635 `icalendar-import-format-subject'.
11636 (icalendar-import-format-url, icalendar-import-format-status)
11637 (icalendar-import-format-class): New variables.
11638 (icalendar--rris): Take variable argument list.
11639 (icalendar--datestring-to-isodate): Remove unnecessary
11640 calendar-style check when converting dates with explicit month names.
11641 (icalendar-export-region): Change return type of conversion
11642 subroutines. Bury current buffer unless error occurred.
11643 (icalendar--convert-to-ical)
11644 (icalendar--parse-summary-and-rest): New functions.
11645 (icalendar--convert-ordinary-to-ical)
11646 (icalendar--convert-weekly-to-ical)
11647 (icalendar--convert-yearly-to-ical)
11648 (icalendar--convert-block-to-ical)
11649 (icalendar--convert-cyclic-to-ical)
11650 (icalendar--convert-anniversary-to-ical): Change return type.
11651 Strip trailing blanks from subject.
11652 (icalendar--convert-sexp-to-ical): Change return type.
11653 Strip trailing blanks from subject. Handle simple sexp
11654 entries as generated by icalendar.el.
11655 (icalendar--convert-float-to-ical)
11656 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
11657 (icalendar-import-file): Doc fix.
11658 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
11659 Correct call to icalendar--rris.
11660 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
11661 `summary'.
11662 (icalendar--add-diary-entry): Rename `subject' to `summary'.
11663
11664 2005-10-24 Romain Francoise <romain@orebokech.com>
11665
11666 * server.el (server-sentinel): Set query-on-exit flag to nil on
11667 new client processes (it isn't inherited from the server process).
11668
11669 * replace.el (occur-engine): Rearrange text properties.
11670
11671 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
11672
11673 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
11674 case-fold-search is nil.
11675 (debug-help-follow): Use help-xref-interned directly.
11676
11677 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
11678
11679 * thumbs.el (thumbs-image-type): Add .pbm.
11680
11681 2005-10-23 Richard M. Stallman <rms@gnu.org>
11682
11683 * faces.el (inhibit-face-set-after-frame-default): New variable.
11684 (set-face-attribute): Bind it.
11685 (face-set-after-frame-default): Test it.
11686
11687 * help-fns.el (describe-simplify-lib-file-name): New function.
11688 (describe-function-1, describe-variable): Use it.
11689
11690 * faces.el (describe-face): Use describe-simplify-lib-file-name.
11691
11692 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
11693 Eliminate nil as possible value.
11694 (tooltip-hide-delay): Reduce internal-border-width.
11695
11696 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
11697 (menu-bar-file-menu) <new-file>: Likewise.
11698
11699 * simple.el (line-move-finish): Ignore fields computing LINE-END.
11700
11701 * international/mule.el (load-with-code-conversion):
11702 Pass full file name to `eval-buffer' unless preloading.
11703
11704 * textmodes/flyspell.el (flyspell-large-region):
11705 Call ispell-check-version.
11706
11707 * textmodes/ispell.el (ispell-local-dictionary-overridden):
11708 Fix the make-variable-buffer-local call that was supposed
11709 to be for this variable.
11710 (ispell-aspell-supports-utf8): Doc fix.
11711 (ispell-find-aspell-dictionaries): Preserve elements of
11712 ispell-dictionary-alist for dictionaries that aspell doesn't report.
11713 (ispell-aspell-find-dictionary): Return nil on error.
11714
11715 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
11716 (doctor-symptoms): Likewise.
11717
11718 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
11719
11720 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
11721
11722 * cus-edit.el (custom-button, custom-button-pressed): New vars.
11723 (custom-raised-buttons): Add :set spec.
11724 (custom-button-unraised, custom-button-pressed-unraised):
11725 New faces, so that custom-raised-buttons actually does something.
11726 (custom-mode): Use custom-button and custom-button-pressed.
11727
11728 * wid-edit.el (widget-specify-button): Don't ignore
11729 widget-mouse-face on graphic terminals.
11730 (widget-move-and-invoke): Cleanup.
11731
11732 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
11733
11734 * whitespace.el (whitespace-cleanup): Doc fix.
11735
11736 2005-10-23 Romain Francoise <romain@orebokech.com>
11737
11738 * emulation/viper.el (viper-set-hooks): Quote forms passed to
11739 `eval-after-load' to avoid evaluating their result.
11740
11741 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
11742
11743 * files.el (directory-listing-before-filename-regexp):
11744 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
11745
11746 * dired.el (dired-move-to-filename-regexp): Remove.
11747 All occurences replaced by `directory-listing-before-filename-regexp'.
11748
11749 * dired-x.el, locate.el, vc.el:
11750 Replace `dired-move-to-filename-regexp' by
11751 `directory-listing-before-filename-regexp'. In vc.el it is
11752 overwritten locally; maybe this can be handled in files.el too.
11753
11754 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
11755 replaced by `directory-listing-before-filename-regexp'.
11756
11757 2005-10-23 Andreas Schwab <schwab@suse.de>
11758
11759 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
11760 and eval-next-after-load.
11761
11762 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
11763
11764 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
11765 exist, create it.
11766
11767 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
11768
11769 * allout.el: Remove autoloads for mailcrypt and crypt++.
11770 Require pgg, pgg-gpg during compilation.
11771 (allout-version): Increment version number to 2.1, and use a literal
11772 rather than RCS Id.
11773 (allout-default-encryption-scheme): Remove.
11774 (allout-passphrase-verifier-handling)
11775 (allout-passphrase-verifier-string)
11776 (allout-file-passphrase-verifier-string)
11777 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
11778 (allout-passphrase-hint-handling): Rename and simplify.
11779 (allout-init): Use `find-file-hook' if available, otherwise
11780 `find-file-hooks'.
11781 (allout-mode): Use `write-file-functions' if available, otherwise
11782 `local-write-file-hooks' and, instead of making auto-save-hook
11783 buffer local, make the write-file-hook activity contingent to
11784 allout-mode.
11785 (allout-mode): Use key-binding substitution in the docstring.
11786 (allout-kill-line): Spell-out kill ring data structure mutation
11787 instead of using byte-compiler-complaint-provoking `pop'.
11788 (allout-insert-listified): Use `insert' rather than `insert-string'
11789 (allout-toggle-current-subtree-encryption): Update docstring, adjust
11790 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
11791 (allout-encrypt-string): Totally revamped vis new underlying
11792 encryption facilities.
11793 (allout-mc-activate-passwd): Remove.
11794 (allout-obtain-passphrase): New, more or less replaces
11795 allout-mc-activate-passwd.
11796 (allout-encrypted-key-info): More or less replaces
11797 allout-encrypted-text-type.
11798 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
11799 (my-mark-marker): Use `(featurep 'xemacs)'.
11800
11801 2005-10-23 Lars Hansen <larsh@soem.dk>
11802
11803 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
11804 (byte-compile-file-form-defmumble, byte-compile-defun)
11805 (byte-compile-defmacro): Use it.
11806 (byte-compile-form): Don't call byte-compile-set-symbol-position
11807 when a byte-compile handler is called.
11808
11809 2005-10-22 Romain Francoise <romain@orebokech.com>
11810
11811 * savehist.el (savehist-history-variables): Add `grep-find-history'.
11812
11813 * subr.el (eval-after-load): Convert library name to an absolute
11814 file name using locate-library, since load-history no longer has
11815 library names in it.
11816
11817 2005-10-22 Richard M. Stallman <rms@gnu.org>
11818
11819 * files.el (make-temp-file): Move from subr.el.
11820 * subr.el (make-temp-file): Move to files.el.
11821
11822 * window.el (get-buffer-window-list): Move from subr.el.
11823 * subr.el (get-buffer-window-list): Move to window.el.
11824
11825 * image.el (image-load-path): Use eval-at-startup to initialize.
11826
11827 * subr.el (eval-at-startup): New macro.
11828
11829 * subr.el: Much rearrangement of functions and division
11830 into pages. No code changes.
11831
11832 2005-10-22 Kenichi Handa <handa@m17n.org>
11833
11834 * tar-mode.el (tar-extract): Be sure to call
11835 find-operation-coding-system if set-auto-coding doesn't find a
11836 coding system.
11837
11838 2005-10-22 Kim F. Storm <storm@cua.dk>
11839
11840 * image.el (image-type-header-regexps): Rename from image-type-regexps.
11841 Change users.
11842 (image-type-file-name-regexps): New defconst.
11843 (image-type-from-data): Simplify loop.
11844 (image-type-from-buffer): New defun.
11845 (image-type-from-file-header): Use it instead of image-type-from-data.
11846 Use image-search-load-path instead of only looking in data-directory.
11847 (image-type-from-file-name): New defun.
11848 (image-search-load-path): Change `pathname' to `filename'.
11849 Make PATH arg optional, default to image-load-path.
11850
11851 2005-10-21 Richard M. Stallman <rms@gnu.org>
11852
11853 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
11854
11855 * textmodes/paragraphs.el (sentence-end-base): New variable.
11856 (sentence-end): Use sentence-end-base.
11857
11858 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
11859
11860 * font-lock.el (font-lock-default-fontify-region): Check the multiline
11861 property independently from the font-lock-multiline variable.
11862
11863 2005-10-21 Richard M. Stallman <rms@gnu.org>
11864
11865 * emacs-lisp/find-func.el (find-library-name): Doc fix.
11866
11867 * startup.el (command-line): Convert library names
11868 in `load-history' to absolute file names.
11869
11870 * subr.el (symbol-file): Doc fix.
11871
11872 * loadhist.el (file-loadhist-lookup): Call locate-library
11873 instead of find-library-name. Don't try converting
11874 abs file names to library names, since load-history no longer
11875 has library names in it.
11876 (file-dependents, file-provides, file-requires): Doc fixes.
11877
11878 2005-10-21 Juri Linkov <juri@jurta.org>
11879
11880 * progmodes/etags.el (tags-table-mode): New function.
11881 (tags-verify-table): Replace initialize-new-tags-table with
11882 tags-table-mode.
11883
11884 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
11885 default value.
11886 (desktop-modes-not-to-save): Add tags-table-mode to the
11887 default value.
11888
11889 * info.el (Info-index-next): Add total number of index
11890 alternatives to the message.
11891
11892 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
11893 backward only space (instead of space and period) before looking
11894 at sentence end.
11895
11896 * simple.el (set-variable): Use user-variable-p instead of symbolp.
11897 Add the old variable value as 4th default-value arg of read-string.
11898
11899 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11900
11901 * cus-face.el (custom-declare-face): Make face from X resources
11902 also on Mac.
11903
11904 * disp-table.el (standard-display-g1, standard-display-graphic):
11905 Refuse to use string glyphs also on Mac.
11906 (standard-display-european): Don't set terminal coding system also
11907 on Mac.
11908
11909 * frame.el (display-screens): Use x-display-screens also on Mac.
11910
11911 2005-10-21 Romain Francoise <romain@orebokech.com>
11912
11913 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
11914
11915 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
11916
11917 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
11918 and $? into sexps.
11919
11920 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
11921 warning face on open-paren-in-column-0.
11922
11923 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
11924 boundary case. Fix typo.
11925 Suggested by Martin Rudalics <rudalics@gmx.at>.
11926
11927 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
11928
11929 * textmodes/org.el (org-combined-agenda-icalendar-file)
11930 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
11931 (org-export-icalendar-this-file)
11932 (org-export-icalendar-all-agenda-files)
11933 (org-export-icalendar-combine-agenda-files): New commands.
11934 (org-export-icalendar, org-print-icalendar-entries)
11935 (org-start-icalendar-file, org-finish-icalendar-file)
11936 (org-ical-ts-to-string): New functions.
11937 (org-read-date, org-goto-calendar)
11938 (org-agenda-goto-calendar): Inhibit displaying diary entries by
11939 call to `calendar'.
11940 (orgtbl-setup): Remove the :keys arguments from the menu description.
11941 (org-after-save-iCalendar-file-hook): New variable.
11942
11943 2005-10-21 Kenichi Handa <handa@m17n.org>
11944
11945 * language/vietnamese.el (tcvn-5712): Make it an alias of
11946 vietnamese-tcvn coding-system.
11947
11948 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
11949
11950 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
11951 group id is given.
11952
11953 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
11954
11955 * progmodes/sh-script.el (sh-escaped-line-re): New var.
11956 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
11957 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
11958 whose line is either continued or ends with a comment.
11959
11960 2005-10-20 Romain Francoise <romain@orebokech.com>
11961
11962 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
11963
11964 * replace.el (occur-engine): Add follow-link property.
11965
11966 * font-core.el (font-lock-mode): Doc fix.
11967
11968 2005-10-20 Richard M. Stallman <rms@gnu.org>
11969
11970 * net/rcirc.el: New file.
11971
11972 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
11973
11974 * term.el (term-term-name): Initialize to "eterm-color".
11975
11976 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
11977
11978 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
11979 for encryption functionality.
11980 Move allout customization subgroup from `editing' to `outlines' group.
11981 Fix commentary keywords to legitimate ones.
11982 Update author info (using my current email address, obscurified).
11983 (allout-encrypt-string, allout-encryption-produce-work-buffer)
11984 (allout-encrypted-topic-p, allout-encrypted-text-type)
11985 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
11986 (allout-situate-encryption-key-verifier)
11987 (allout-get-encryption-key-verifier, allout-verify-key)
11988 (allout-next-topic-pending-encryption)
11989 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
11990 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
11991 (outline-key-verifier-handling, outline-key-hint-handling)
11992 (outline-encrypt-unencrypted-on-saves): New defcustoms.
11993 (allout-file-key-verifier-string, allout-encryption-scheme)
11994 (allout-key-verifier-string, allout-key-hint-string)
11995 (allout-after-save-decrypt): New variables.
11996 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
11997 (allout-after-saves-handler): New hook functions.
11998 (allout-post-command-business): Do allout-after-save-decrypt.
11999 (allout-enable-file-variable-adjustment): Custom var to enable
12000 mechanism for adding and adjusting settings of Emacs file variables.
12001 (allout-adjust-file-variable, allout-file-vars-section-data):
12002 New functions, implement the mechanism.
12003 (outlineify-sticky): Use the file vars mechanism.
12004 (allout-inhibit-protection, allout-during-write-cue)
12005 (allout-override-protect, allout-before-change-protect): Remove.
12006 (allout-flag-region, allout-open-topic): Adjust read-only text.
12007 (allout-open-line-not-read-only): Add to facilitate read-only
12008 text based protection.
12009 (allout-kill-line): Revise to adjust read-only text, clue the
12010 user about the inhibition.
12011 (allout-unprotected): Use unwind-protect.
12012 (allout-shift-in, allout-shift-out): Disallow manually shifting a
12013 topic deeper than the offspring depth of the previous topic -
12014 avoiding confusing "containment discontinuities".
12015 (allout-reindent-bodies): Fix retention of body relative hanging
12016 indent during promotion of collapsed bodies.
12017 (allout-open-topic): Make it easy to open new topic with same
12018 bullet as current topic - topic creation functions provided with
12019 any universal argument provokes now prompt for bullet, defaulting
12020 to the bullet of the previous topic.
12021 (allout-plain-bullets-string, allout-distinctive-bullets-string):
12022 Plain bullet alternates `.' period and `,' comma only. All other
12023 bullets are relegated to special status (but customizable).
12024 (allout-end-of-entry): Rename from allout-end-of-current-entry
12025 since it actually operates w.r.t. most immediately containing
12026 entry, visible or not.
12027 (allout-hide-current-entry, allout-show-current-entry): Use the
12028 revised version.
12029 (allout-old-expose-topic): Solidify deprecation.
12030 (allout-end-of-subtree): Add so we can span concealed as well
12031 as visible topics.
12032 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
12033 (allout-end-of-current-heading): Tweak to just respect the first line.
12034 (allout-get-body-text): Add.
12035 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
12036 when invoked interactively.
12037 (allout-up-current-level): Use `interactive-p'.
12038 (allout-mode, allout-init): Miscellaneous docstring and
12039 operational refinements, as well as hookups of new encryption stuff.
12040 (allout-beginning-of-current-entry): Now works as advertised.
12041 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
12042 (allout-isearch-rectification): Refine condition for isearching.
12043 (allout-isearch-abort, allout-enwrap-isearch)
12044 (allout-flag-region, my-region-active-p): Relocate some macros.
12045 (allout-title): Fallback title is (buffer-name), not
12046 non-existing (current-buffer-name).
12047 (subst-char-in-string): Define if absent (for some XEmacs versions).
12048
12049 2005-10-20 Jari Aalto <jari.aalto@cante.net>
12050
12051 * mail/sendmail.el (mail-setup-hook, mail-aliases)
12052 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
12053 (mail-citation-prefix-regexp, mail-signature-file)
12054 (mail-default-headers, mail-bury-selects-summary)
12055 (mail-send-nonascii): Add autoload cookies.
12056
12057 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
12058
12059 * frame.el (blink-cursor-mode): Add `mac' to the list of
12060 window-system's that support blinking cursor.
12061
12062 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
12063
12064 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
12065
12066 2005-10-20 Eli Zaretskii <eliz@gnu.org>
12067
12068 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
12069 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
12070 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
12071
12072 2005-10-20 Kim F. Storm <storm@cua.dk>
12073
12074 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
12075 (ido-set-current-directory): Don't add / after final @.
12076 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
12077 Explicitly handle ange-ftp completion oddities.
12078 (ido-make-file-list): Don't rotate list at tramp root to avoid
12079 triggering tramp file handler for expand-file-name via get-file-buffer.
12080
12081 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
12082
12083 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
12084
12085 2005-10-19 Jay Belanger <belanger@truman.edu>
12086
12087 * calc/calc-units.el (math-standard-units): Add units, adjust
12088 symbols and update values.
12089 (math-unit-prefixes): Add more prefixes.
12090
12091 2005-10-19 Romain Francoise <romain@orebokech.com>
12092
12093 * bookmark.el (bookmark-menu-heading): New face.
12094 (bookmark-bmenu-list): Use it.
12095 Don't fiddle with `baud-rate' at top-level.
12096
12097 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
12098
12099 * image.el (create-image, find-image): Mention max-image-size in
12100 docstring.
12101
12102 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
12103
12104 * savehist.el (savehist-load): Revert to checking XEmacs.
12105
12106 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
12107 Various docstring and line-width fixups.
12108 (conf-mode): Use cond.
12109 Set font-lock-defaults. Don't set comment-use-syntax.
12110
12111 2005-10-18 David Ponce <david@dponce.com>
12112
12113 * tree-widget.el (tree-widget-button-click): New function.
12114 (tree-widget-button-keymap): Use it.
12115
12116 2005-10-18 Romain Francoise <romain@orebokech.com>
12117
12118 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
12119 (bookmark-bmenu-hide-filenames): Add follow-link property.
12120 Improve help-echo text.
12121
12122 * ffap.el (find-file-at-point): Doc fix.
12123
12124 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12125
12126 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
12127
12128 2005-10-18 Masatake YAMATO <jet@gyve.org>
12129
12130 Install to the CVS repository what I forgot to install in my
12131 2005-10-16 changes.
12132
12133 * progmodes/python.el (python-complete-symbol): Pass the common
12134 prefix substring of completion to `display-completion-list'.
12135
12136 * textmodes/org.el (org-complete): Ditto.
12137
12138 2005-10-18 Masatake YAMATO <jet@gyve.org>
12139
12140 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
12141
12142 * woman.el (WoMan-xref-man-page): New button type derived
12143 from `Man-abstract-xref-man-page'.
12144 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
12145
12146 * man.el (Man-abstract-xref-man-page): New button type.
12147 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
12148 (Man-highlight-references): Add new optional argument `xref-man-type'.
12149
12150 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
12151
12152 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
12153
12154 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
12155
12156 * cus-edit.el (Custom-move-and-invoke): Delete.
12157 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
12158
12159 * wid-edit.el (widget-move-and-invoke): New function, from
12160 Custom-move-and-invoke.
12161
12162 2005-10-17 Bill Wohler <wohler@newt.com>
12163
12164 Move all remaining images from lisp/toolbar to etc/images, move
12165 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
12166 the low resolution images in their own directory (low-color).
12167
12168 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*
12169 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*
12170 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*
12171 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*
12172 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*
12173 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*
12174 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
12175
12176 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
12177 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
12178 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
12179 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
12180 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
12181 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
12182 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
12183 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
12184 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
12185 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
12186 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
12187 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
12188 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
12189 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
12190 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
12191
12192 To conform with convention, replace the underscore (_) in the
12193 following image names with dash (-) or (/) as appropriate.
12194
12195 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
12196 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
12197 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
12198 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
12199 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
12200 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
12201 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
12202 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
12203 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
12204 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
12205 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
12206 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
12207 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
12208 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
12209 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
12210
12211 * info.el (info-tool-bar-map): Replace underscores in image names
12212 with dashes.
12213
12214 * makefile.w32-in (WINS): Remove toolbar.
12215
12216 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
12217
12218 * tool-bar.el: Move to lisp from toolbar. Now that
12219 toolbar is empty, it should be deleted when folks run "cvs up -P".
12220
12221 2005-10-18 Jay Belanger <belanger@truman.edu>
12222
12223 * calc/calc-store.el (calc-store-into): Get the proper variable name
12224 to display in message.
12225
12226 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
12227
12228 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
12229 expressions display in speedbar for all buffers when debugging.
12230 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
12231
12232 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
12233 (speedbar-insert-button, speedbar-make-button):
12234 Use add-text-properties.
12235 (speedbar-update-localized-contents)
12236 (speedbar-update-directory-contents)
12237 (speedbar-update-special-contents): Use dolist.
12238 (speedbar-buffer-easymenu-definition): Add a menu separator.
12239
12240 2005-10-17 Jason Rumney <jasonr@gnu.org>
12241
12242 * makefile.w32-in: Use $(lisp) consistently.
12243 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
12244 for shell specific generation of mh-autoloads.
12245
12246 2005-10-17 Richard M. Stallman <rms@gnu.org>
12247
12248 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
12249
12250 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
12251
12252 * jit-lock.el (jit-lock-fontify-now):
12253 Move jit-lock-context-unfontify-pos to avoid wasted work.
12254
12255 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
12256
12257 * net/tramp.el (tramp-completion-mode): New defvar. Used in
12258 `tramp-completion-mode' for checking if we are in completion mode.
12259 (tramp-completion-handle-file-name-all-completions): Reorder code
12260 in order to complete for file names only in case there are no
12261 method/user/host completions. This is necessary for cooperation
12262 with ido. Reported by Kim F. Storm <storm@cua.dk>.
12263
12264 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
12265
12266 * longlines.el (longlines-search-forward)
12267 (longlines-search-backward): Match any number of spaces.
12268
12269 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
12270
12271 * diff-mode.el (diff-mode): Doc fix.
12272
12273 2005-10-16 David Reitter <david.reitter@gmail.com>
12274
12275 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
12276 as default on darwin and windows systems.
12277
12278 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
12279
12280 * arc-mode.el (archive-zip-extract): Doc fix.
12281
12282 2005-10-16 Romain Francoise <romain@orebokech.com>
12283
12284 * mouse.el (mouse-1-click-follows-link): Doc fix.
12285
12286 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
12287
12288 * savehist.el: Don't require CL at runtime.
12289 (savehist-xemacs): Remove.
12290 (savehist-coding-system): Use utf-8 if present, regardless of religion.
12291 (savehist-no-conversion): Use (featurep 'xemacs).
12292 (savehist-load): Check existence of start-itimer rather than XEmacs.
12293 Use an idle timer.
12294 (savehist-process-for-saving): Replace use of CL funs `subseq' and
12295 `delete-if-not'.
12296
12297 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
12298
12299 * savehist.el: Newer version.
12300 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
12301 (savehist-last-checksum, savehist-no-conversion): New vars.
12302 (savehist-autosave, savehist-process-for-saving, savehist-printable):
12303 New functions.
12304 (savehist-load, savehist-save): Use them.
12305 (savehist-delimit): Remove.
12306
12307 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
12308
12309 * progmodes/compile.el (compilation-goto-locus): Display the
12310 compilation buffer first and the source buffer second, in case they're
12311 in overlapping frames. Don't raise the compilation frame if it was the
12312 selected window upon entry. Pass the `other-window' arg to
12313 pop-to-buffer.
12314
12315 * info.el (Info-fontify-node): Use dolist.
12316 Change add-text-properties to put-text-property.
12317
12318 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12319
12320 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
12321 bound of search.
12322
12323 2005-10-16 Masatake YAMATO <jet@gyve.org>
12324
12325 * dabbrev.el (dabbrev-completion): Pass the common
12326 prefix substring of completion to `display-completion-list'.
12327
12328 * filecache.el (file-cache-minibuffer-complete)
12329 (file-cache-complete): Ditto.
12330
12331 * tempo.el (tempo-display-completions): Ditto.
12332
12333 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
12334
12335 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
12336
12337 * eshell/em-hist.el (eshell-list-history): Ditto.
12338
12339 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
12340
12341 * mail/mailalias.el (mail-complete): Ditto.
12342
12343 * progmodes/etags.el (complete-tag): Ditto.
12344
12345 * progmodes/make-mode.el (makefile-complete): Ditto.
12346
12347 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
12348
12349 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
12350
12351 * progmodes/pascal.el (pascal-complete-word)
12352 (pascal-show-completions): Ditto.
12353
12354 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
12355
12356 * simple.el (completion-common-substring): New variable.
12357 (completion-setup-function): Use `completion-common-substring'
12358 to put faces.
12359
12360 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12361
12362 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
12363 (x-get-selection, mac-select-convert-to-string): Convert from/to
12364 UTF-16 clipboard data as in native byte order, no BOM.
12365
12366 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
12367
12368 * progmodes/gud.el (gud-tool-bar-map): Rename the images
12369 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
12370 (gud-sentinel): Use speedbar-frame to check for speedbar.
12371
12372 2005-10-15 Richard M. Stallman <rms@gnu.org>
12373
12374 * savehist.el: New file.
12375
12376 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
12377
12378 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
12379 Fix bug in \bf fontification.
12380
12381 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
12382
12383 * pcvs.el (cvs-edit-log-files): New var.
12384 (cvs-mode-edit-log): New arg `file'.
12385 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
12386 Instead force the use of the original file and nothing else.
12387 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
12388 the cvs-minor-wrap-function is set.
12389 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
12390
12391 2005-10-14 Bill Wohler <wohler@newt.com>
12392
12393 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
12394 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
12395 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
12396 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
12397 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
12398 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
12399 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
12400 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
12401 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
12402 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
12403 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
12404 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
12405 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
12406 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
12407 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
12408
12409 * progmodes/gud.el (gud-tool-bar-map): Rename the images
12410 appropriately (for example, gud-break to gud/break).
12411
12412 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
12413
12414 * longlines.el (longlinges-search-function)
12415 (longlines-search-forward, longlines-search-backward): New functions.
12416 (longlines-mode): Set isearch-search-fun-function to
12417 longlinges-search-function.
12418
12419 * mouse.el (mouse-drag-region-1): Handle the case where a
12420 double-click event is bound to an arbitrary function.
12421
12422 2005-10-14 David Ponce <david@dponce.com>
12423
12424 * recentf.el (recentf-track-opened-file)
12425 (recentf-track-closed-file, recentf-update-menu)
12426 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
12427 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
12428 mouse-1-click-follows-link.
12429
12430 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12431
12432 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
12433 Gnome file-manager.png. Suggested by
12434 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
12435
12436 * toolbar/README: Add diropen.xpm.
12437
12438 2005-10-13 Bill Wohler <wohler@newt.com>
12439
12440 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
12441 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
12442
12443 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
12444
12445 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
12446 Don't waste the byte-compiler's time on constant data.
12447
12448 2005-10-13 Kenichi Handa <handa@m17n.org>
12449
12450 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
12451 byte with `escape-glyph' face.
12452
12453 * international/fontset.el (ccl-encode-unicode-font):
12454 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
12455 Handle the case that ucs-mule-to-mule-unicode translates a character to
12456 ASCII (usually for IPA characters).
12457
12458 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
12459
12460 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
12461 Don't hide the underline of titles if font-lock-mode is disabled.
12462
12463 2005-10-12 Bill Wohler <wohler@newt.com>
12464
12465 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
12466 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
12467 files in MH-E-SRC have been updated.
12468 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
12469
12470 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
12471
12472 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
12473 (mixal-mode-syntax-table): Add \n as end-comment.
12474 (mixal-operation-codes-alist): Immediately initialize to full value.
12475 (mixal-add-operation-code): Remove.
12476 (mixal-describe-operation-code): Make the arg non-optional.
12477 Use the interactive spec instead.
12478 Use mixal-operation-codes-alist rather than mixal-operation-codes.
12479 (mixal-font-lock-keywords): Don't highlight comments here any more.
12480 (mixal-font-lock-syntactic-keywords): New var.
12481 (mixal-mode): Use it. Fix comment-start-skip.
12482
12483 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12484
12485 * startup.el (command-line-x-option-alist): -nb => -nbi
12486
12487 2005-10-12 Kim F. Storm <storm@cua.dk>
12488
12489 * startup.el (fancy-splash-default-action): Discard mouse click in
12490 the splash screen window, as it has no sensible meaning in the
12491 next window to be selected. Fixes error reported by Jan D.
12492
12493 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
12494
12495 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
12496
12497 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
12498
12499 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
12500 Try to fix up minor layout issues like indentation, line break, etc...
12501 (mixal-mode-syntax-table): Don't try to specify comment syntax,
12502 because it doesn't work.
12503 (mixal-operation-codes): Add some more codes.
12504 (mixal-font-lock-keywords): Process comments here.
12505 (mixal-mode): mixasm no longer needs -g option.
12506
12507 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
12508
12509 * progmodes/sh-script.el (sh-tmp-file):
12510 Use mktemp -t. Finish support for es and rc shells.
12511
12512 2005-10-11 Jay Belanger <belanger@truman.edu>
12513
12514 * calc/calcalg2.el (calc-integral): With an argument, compute the
12515 definite integral.
12516
12517 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
12518
12519 * mouse.el (mouse-drag-region-1): Don't try to catch a
12520 double-click when doing follow-link (it's overridden anyway).
12521
12522 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
12523
12524 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
12525 (autoload-print-form-outbuf): Add docstring.
12526
12527 2005-10-11 Juri Linkov <juri@jurta.org>
12528
12529 * info.el (Info-mode-menu): Delete menu item "Edit".
12530 (Info-mode): Delete description of Info-edit from docstring,
12531 and rearrange descriptions of Info commands in the order
12532 they are documented in the Info manual.
12533
12534 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
12535
12536 * calendar/appt.el (appt-check): Use diary-selective-display var.
12537
12538 2005-10-10 Richard M. Stallman <rms@gnu.org>
12539
12540 * net/newsticker.el (newsticker-start, newsticker-show-news):
12541 Add autoload cookies.
12542
12543 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
12544
12545 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
12546
12547 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
12548
12549 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
12550
12551 2005-10-10 Jay Belanger <belanger@truman.edu>
12552
12553 * calc/calc-arith.el (math-check-known-scalarp)
12554 (math-check-known-matrixp): Check the values of arguments that are
12555 variables.
12556 (math-check-known-square-matrixp): New function.
12557 (math-known-square-matrixp): Use math-check-known-square-matrixp.
12558 (math-super-types): Add sqmatrix type.
12559
12560 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
12561 mode name `square' to `sqmatrix'.
12562
12563 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
12564 mode name `square' to `sqmatrix'.
12565
12566 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
12567
12568 * progmodes/etags.el (select-tags-table-mode): Don't use
12569 selective-display.
12570 (tags-select-tags-table): Pass `button' to the action function.
12571 (select-tags-table): Place the side-info on button properties rather
12572 than in hidden text. Abbreviate file names.
12573 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
12574 (select-tags-table-select): Add `button' argument.
12575 Get side-info from the button property rather than from hidden text.
12576
12577 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
12578
12579 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
12580 (gud-speedbar-buttons): Preserve point if possible.
12581 (gud-sentinel): Restore previous speedbar display type.
12582
12583 * progmodes/gdb-ui.el (gdba): Improve diagram.
12584 (def-gdb-auto-update-handler, gdb-info-locals-handler)
12585 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
12586 Call get-buffer-window once.
12587
12588 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
12589
12590 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
12591 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
12592 (pascal-indent-command): Remove unused var `ind'.
12593 (pascal-indent-case): Remove unused var `oldpos'.
12594 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
12595 since it's now used as a proper minor mode map.
12596 (pascal-outline): Rename to pascal-outline-mode.
12597 (pascal-outline-mode): Use define-minor-mode.
12598 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
12599 selective-display.
12600
12601 2005-10-10 Andreas Schwab <schwab@suse.de>
12602
12603 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
12604 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
12605
12606 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
12607 outside source directory.
12608
12609 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
12610
12611 * textmodes/org.el (org-mode-map): Explicit definition of `C-c
12612 C-x' as a prefix.
12613 (orgtbl-mode-map): Full keymap instead of sparse, because all
12614 `self-insert-command' keys are redefined in this map.
12615 (org-export-as-html): Specify charset for HTML file, by taking it
12616 from the coding system.
12617
12618 2005-10-10 Kenichi Handa <handa@m17n.org>
12619
12620 * textmodes/flyspell.el (flyspell-check-word-p):
12621 If unread-command-events is non-empty, don't call sit-for.
12622
12623 2005-10-09 Richard M. Stallman <rms@gnu.org>
12624
12625 * font-lock.el (font-lock-syntactic-keywords)
12626 (font-lock-keywords): Doc fixes.
12627
12628 * textmodes/flyspell.el (flyspell-external-point-words):
12629 Simplify logic, and don't try to check for consecutive appearances
12630 of one incorrect word.
12631
12632 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
12633
12634 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
12635 separator.
12636
12637 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
12638 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
12639 (gud-expansion-speedbar-buttons): New function.
12640 (gud-speedbar-buttons): Check for gud-comint-buffer.
12641
12642 2005-10-09 Bill Wohler <wohler@newt.com>
12643
12644 * Makefile.in (updates): Add mh-loaddefs dependency.
12645
12646 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
12647
12648 * speedbar.el (speedbar-file-key-map): Fix typo.
12649
12650 2005-10-09 Daniel Brockman <daniel@brockman.se>
12651
12652 * cus-start.el (line-spacing): Add custom spec.
12653
12654 2005-10-09 Romain Francoise <romain@orebokech.com>
12655
12656 * textmodes/ispell.el (ispell-check-version): Fix last change.
12657
12658 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12659
12660 * term/x-win.el: Remove -i, --icon-type from comment.
12661
12662 * startup.el (command-line-x-option-alist): Remove options -i,
12663 -itype, --icon-type, added -nb, --no-bitmap-icon
12664
12665 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
12666
12667 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
12668 instead of :active.
12669
12670 2005-10-08 Eric Hanchrow <offby1@blarg.net> (tiny change)
12671
12672 * textmodes/ispell.el (ispell-check-version):
12673 Ignore hyphen, and all that follows, in aspell's version text.
12674
12675 2005-10-08 Jay Belanger <belanger@truman.edu>
12676
12677 * calc/calc-arith.el (math-known-square-matrixp): New function.
12678 (math-pow-fancy): Check for matrices before distributing exponent
12679 across products.
12680
12681 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
12682 fullscreen keypad. Suggested by Luc Teirlinck.
12683 (calc-keypad-show-input): Add space for formatting.
12684
12685 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
12686 Add square matrix option.
12687
12688 * calc/calc-poly.el (math-expand-term): Check for matrices instead
12689 of checking calc-matrix-mode when deciding how to expand.
12690
12691 * calc/calc.el (calc-set-mode-line): Add square matrix option.
12692
12693 2005-10-08 Lars Hansen <larsh@soem.dk>
12694
12695 * net/tramp.el (tramp-perl-directory-files-and-attributes):
12696 Add error handling.
12697 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
12698
12699 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
12700
12701 Sync with Tramp 2.0.51.
12702
12703 * net/tramp.el (tramp-handle-set-visited-file-modtime)
12704 (tramp-handle-insert-file-contents, tramp-handle-write-region):
12705 Insert special handling for `last-coding-system-used', again
12706 it still seems to be necessary (unlike stated before).
12707 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
12708 (tramp-password-prompt-regexp): There might be other words before
12709 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
12710 (tramp-chunksize): Improve docstring.
12711 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
12712 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
12713 Christian Joergensen <bugs@razor.dk>.
12714
12715 2005-10-07 Glenn Morris <rgm@gnu.org>
12716
12717 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
12718 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
12719 precision'.
12720
12721 2005-10-07 Romain Francoise <romain@orebokech.com>
12722
12723 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
12724 (ibuffer-do-shell-command-pipe-replace)
12725 (ibuffer-do-shell-command-file, ibuffer-do-eval)
12726 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
12727 (ibuffer-do-revert, ibuffer-do-replace-regexp)
12728 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
12729 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
12730 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
12731 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
12732 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
12733 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
12734 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
12735 Autoload file sans suffix.
12736
12737 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
12738
12739 2005-10-07 David Ponce <david@dponce.com>
12740
12741 * recentf.el (recentf-menu-open-all-flag): New option.
12742 (recentf-digit-shortcut-command-name): New function.
12743 (recentf--shortcuts-keymap): New variable.
12744 (recentf-menu-shortcuts): New variable.
12745 (recentf-make-menu-items): Initialize it. Replace the "More..."
12746 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
12747 (recentf-menu-value-shortcut): New function.
12748 (recentf-make-menu-item): Use it. No more in-lined.
12749 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
12750 (recentf-open-most-recent-file): Rename from
12751 `recentf-open-file-with-key'. Don't depend on key binding.
12752 (recentf-mode-map): New variable.
12753 (recentf-mode): Use it.
12754
12755 2005-10-06 Bill Wohler <wohler@newt.com>
12756
12757 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
12758
12759 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
12760 (MH-E-SRC): New. Used by mh-autoloads.
12761 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
12762 files in MH-E-SRC have been updated.
12763 (compile, recompile, bootstrap): Depend on mh-autoloads.
12764
12765 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
12766
12767 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
12768 gud-break and gud-remove icons when the fringe is not available.
12769
12770 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
12771 Typo.
12772
12773 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr>
12774
12775 * play/zone.el (zone): Wrap body with save-window-excursion.
12776
12777 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
12778
12779 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
12780 Use the new `list-only' arg to diary-list-entries.
12781
12782 * calendar/diary-lib.el: Use overlays rather than selective-display.
12783 (diary-selective-display): New var.
12784 (diary-header-line-format): Use it.
12785 (diary-list-entries): Add argument `list-only'.
12786 Put the buffer in diary-mode. Don't add \^M at beg and end.
12787 Replace \^M by invisible overlays.
12788 (diary-unhide-everything): Replace \^M by invisible overlays.
12789 (print-diary-entries): Look for overlays rather than \^M.
12790 Add a space to the temp buffer name.
12791 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
12792 Put the buffer in diary-mode.
12793 (list-sexp-diary-entries): Replace \^M by invisible overlays.
12794 (diary-anniversary): Make the year arg optional.
12795 (diary-time-regexp): New const.
12796 (diary-font-lock-keywords): Use it to accept a few more time formats.
12797
12798 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
12799
12800 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
12801
12802 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
12803 Fix bug introduced 2005-07-03: Use (car (last ...))
12804 to faithfully reproduce replaced artist-last.
12805 (artist-set-arrow-points-for-poly): Likewise.
12806 Suggested by Johan Bockg\e,Ae\e(Brd.
12807
12808 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
12809
12810 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
12811 * wid-edit.el (widget):
12812 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
12813 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
12814
12815 2005-10-06 Kenichi Handa <handa@m17n.org>
12816
12817 * international/mule-cmds.el (set-language-environment):
12818 Fix setting up of case-table for unibyte mode.
12819
12820 * simple.el (what-cursor-position): If the character is displayed
12821 by some `display' text property, show that. Don't use
12822 single-key-description for eight-bit characters in multibyte mode.
12823
12824 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
12825
12826 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
12827 (gdb-ann3): Set it.
12828 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
12829 (gdb-info-frames-custom): Use inverse-video for first five
12830 characters of selected frame only.
12831 (gdb-get-frame-number): Select frame even when point is on frame
12832 number.
12833
12834 2005-10-06 Masatake YAMATO <jet@gyve.org>
12835
12836 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
12837 Put `font-lock-function-name-face'.
12838 (gdb-info-frames-custom): Put `font-lock-function-name-face'
12839 and `font-lock-variable-name-face'
12840 (gdb-registers-font-lock-keywords): New font lock keywords definition.
12841 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
12842 (gdb-memory-font-lock-keywords): New font lock keywords definition.
12843 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
12844 (gdb-local-font-lock-keywords): New font lock keywords definition.
12845 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
12846 (gdb-threads-font-lock-keywords): New font lock keywords definition.
12847 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
12848
12849 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
12850
12851 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
12852 (ediff-merge-region-is-non-clash-to-skip): Previously called
12853 ediff-merge-region-is-non-clash.
12854
12855 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
12856 Use insert-buffer-substring.
12857
12858 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
12859 selecting files to patch. Also bug fixes.
12860
12861 * ediff-util.el (ediff-setup): Bug fix.
12862 (ediff-next-difference): Never skip clashes that differ in white
12863 space only.
12864
12865 * ediff-wind.el (ediff-setup-control-frame)
12866 (ediff-destroy-control-frame): Check the menubar feature.
12867
12868 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
12869 (viper-refresh-mode-line): Use make-local-variable to localize
12870 some vars instead of make-variable-buffer-local. Suggested by
12871 Stefan Monnier.
12872
12873 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
12874 (viper-restore-cursor-type, viper-set-insert-cursor-type):
12875 Use make-local-variable instead of make-variable-buffer-local.
12876 Suggested by Stefan Monnier.
12877
12878 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
12879 (viper-comint-mode-hook): Use make-local-variable on
12880 require-final-newline.
12881 (viper-non-hook-settings): Don't use make-variable-buffer-local.
12882
12883 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
12884
12885 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
12886 also the second char of a comment-start sequence.
12887 (scheme-sexp-comment-syntax-table): New var.
12888 (lambda, define): Set their scheme-doc-string-elt property.
12889 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
12890 Use lisp-font-lock-syntactic-face-function now that it properly
12891 handles |...| symbols.
12892 (scheme-mode-variables): Set lisp-doc-string-elt-property,
12893 parse-sexp-lookup-properties and font-lock-extra-managed-props.
12894
12895 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
12896 bit from # to |.
12897 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
12898
12899 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
12900 (lisp-doc-string-elt-property): New var.
12901 (lisp-font-lock-syntactic-face-function): Use it.
12902 Rewrite to recognize docstrings even for forms not at toplevel.
12903
12904 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
12905 annotation on the | part of #| rather than on the # part.
12906 (scheme-font-lock-syntactic-face-function): New function, to
12907 distinguish strings from |...| symbols.
12908 (scheme-mode-variables): Use it. Also fix up the font-lock-time
12909 syntax-table so that #|...|# is properly highlighted.
12910
12911 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
12912 Don't mark as docstring the 3rd elem of an unknown toplevel form.
12913
12914 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
12915
12916 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
12917 and C-e.
12918
12919 * emacs-lisp/eldoc.el: Move comments into docstrings.
12920 (eldoc-message-commands): Initialize in its declaration.
12921 Add move-beginning-of-line and move-end-of-line.
12922 (eldoc-add-command, eldoc-add-command-completions)
12923 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
12924
12925 * outline.el (outline-mark-subtree): Activate the mark.
12926
12927 * calendar/appt.el (appt-time-regexp): New var.
12928 (appt-add, appt-make-list): Use it.
12929 (appt-convert-time): Clean up.
12930
12931 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
12932 Don't set any syntax-table property here.
12933 (tex-font-lock-verb): New function. Do it here.
12934 (tex-font-lock-syntactic-keywords): Use it.
12935
12936 2005-10-04 Richard M. Stallman <rms@gnu.org>
12937
12938 * wid-edit.el (widget-file-complete): Get the widget start point
12939 the right way. Default directory to `/' if file has none.
12940
12941 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
12942
12943 * textmodes/flyspell.el (flyspell-mode-on):
12944 Call ispell-maybe-find-aspell-dictionaries.
12945
12946 * textmodes/ispell.el (ispell-word, ispell-region):
12947 Call ispell-maybe-find-aspell-dictionaries.
12948 (ispell-accept-buffer-local-defs):
12949 Don't call ispell-maybe-find-aspell-dictionaries
12950
12951 2005-10-04 Richard M. Stallman <rms@gnu.org>
12952
12953 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
12954
12955 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
12956
12957 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
12958 instead of `fboundp' in order to allow for anonymous functions.
12959
12960 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
12961
12962 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
12963 case the user clicks on the link while another window is selected.
12964 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
12965
12966 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
12967 functionality.
12968 (dframe-help-echo): Save point in case mouse tracking is off.
12969
12970 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
12971
12972 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
12973
12974 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
12975
12976 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
12977 not change the global value of those vars.
12978
12979 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
12980 make-local-variable which we do not need any more.
12981
12982 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
12983
12984 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
12985 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
12986 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
12987 (speedbar-path-line): Define obsolete aliases.
12988 (speedbar-line-directory): Doc fix.
12989
12990 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
12991 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
12992 instead of speedbar-line-path.
12993
12994 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12995
12996 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
12997 to nil if dropping on a window. Handle dropping on a minibuffer window
12998 like dropping on a non-window part of Emacs.
12999
13000 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13001
13002 * net/ange-ftp.el: Use with-current-buffer.
13003 (ange-ftp-insert-directory): Do not follow symlinks any more.
13004
13005 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
13006 Remove interactive spec.
13007
13008 2005-10-03 Kim F. Storm <storm@cua.dk>
13009
13010 * ido.el (ido-mode): Use custom-initialize-set.
13011
13012 2005-10-02 Richard M. Stallman <rms@gnu.org>
13013
13014 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
13015 Use insert-buffer-substring.
13016
13017 * net/tramp.el: Pacify byte compiler warnings in pacification code.
13018 (tramp-handle-file-local-copy): Use insert-buffer-substring.
13019
13020 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13021
13022 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
13023 in last change.
13024 (ange-ftp-insert-directory): Fix up the search for the case where
13025 `file' is absolute.
13026
13027 2005-10-02 Romain Francoise <romain@orebokech.com>
13028
13029 * progmodes/compile.el (compile-goto-error): Delete extra paren.
13030
13031 2005-10-02 Andreas Schwab <schwab@suse.de>
13032
13033 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
13034 directory component in the session info.
13035
13036 2005-10-01 Richard M. Stallman <rms@gnu.org>
13037
13038 * comint.el (comint-redirect-subvert-readonly): Doc fix.
13039
13040 * simple.el (next-error-internal): New function.
13041
13042 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
13043 (compilation-start): Pass new arg to compilation-buffer-name.
13044 (compile-goto-error): Use next-error-internal.
13045
13046 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
13047
13048 * speedbar.el: Remove RCS tag.
13049 (speedbar-check-read-only): Handle non-existent files.
13050
13051 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
13052
13053 * info.el (Info-speedbar-hierarchy-buttons)
13054 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
13055
13056 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
13057
13058 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
13059 Do not match newline.
13060 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
13061 (bibtex-summary): Remove unnecessary save-excursion.
13062 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
13063
13064 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13065
13066 * term/mac-win.el: Add charset info for "iso10646-1".
13067 Modify default fontset to use ATSUI-compatible fonts for some charsets
13068 if available.
13069
13070 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
13071
13072 * speedbar.el: Re-apply arch tag.
13073 (speedbar-version): Rename to version 1.0. Suggested by Eric
13074 M. Ludlam.
13075 Reapply two changes from Emacs CVS' version of speedbar lost
13076 during the merge:
13077 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
13078 (speedbar-frame-parameters): Improve customize type.
13079
13080 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
13081
13082 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
13083 (ange-ftp-file-directory-p): Fix the symlink case.
13084 (ange-ftp-insert-directory): When listing a single file, get a list of
13085 the parent buffer and extract the relevant line. Inspired from a patch
13086 by Katsumi Yamaoka <yamaoka@jpl.org>.
13087 (ange-ftp-file-name-sans-versions): Simplify.
13088
13089 2005-09-30 Bill Wohler <wohler@newt.com>
13090
13091 Move MH-E image files from toolbar and mail directories into
13092 etc/images.
13093
13094 * mail/reply2.*: Move to etc/images/mail/reply*.
13095
13096 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
13097 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
13098 etc/images.
13099
13100 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
13101 * toolbar/reply*: Move to etc/images/mail.
13102
13103 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
13104
13105 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
13106
13107 * speedbar.el: New version 1.0pre3.
13108
13109 Frame management code (including timer, and mouse click specifics)
13110 moved to dframe.el:
13111 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
13112 (speedbar-timer): Removed. Use dframe-timer.
13113 (speedbar-close-frame): Removed. Use dframe-close-frame.
13114 (speedbar-activity-change-focus-flag): Removed. Use
13115 dframe-activity-change-focus-flag.
13116 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
13117 dframe-update-speed.
13118
13119 (speedbar-current-frame): New macro. Use this instead of the
13120 variable speedbar-frame.
13121
13122 (speedbar-use-images, speedbar-expand-image-button-alist)
13123 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
13124
13125 (speedbar-find-image-on-load-path): Removed. Replaced by
13126 defezimage in ezimage.el.
13127 (speedbar-expand-image-button-alist): Removed. Replaced by
13128 ezimage-expand-image-button-alist in ezimage.el.
13129
13130 (speedbar-ignored-directory-regexp)
13131 (speedbar-add-ignored-directory-regexp)
13132 (speedbar-ignored-directory-expressions)
13133 (speedbar-line-directory, speedbar-buffers-line-directory)
13134 (speedbar-directory-line, speedbar-buffers-line-directory):
13135 Renamed, replacing `path' with `directory'.
13136
13137 (speedbar-create-directory, speedbar-expand-line-descendants)
13138 (speedbar-toggle-line-expansion)
13139 (speedbar-contract-line-descendants): New commands.
13140
13141 (speedbar-query-confirmation-method, speedbar-select-frame-method)
13142 (speedbar-use-tool-tips-flag): New options.
13143
13144 (speedbar-check-read-only, speedbar-require-version)
13145 (speedbar-insert-separator, speedbar-buffers-tail-notes)
13146 (speedbar-handle-delete-frame, speedbar-try-completion)
13147 (speedbar-update-localized-contents): New functions.
13148
13149 (speedbar-incompatible-version, speedbar-ro-to-do-point)
13150 (speedbar-object-read-only-indicator): New variables.
13151
13152 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
13153 New hooks.
13154
13155 (speedbar-separator-face): New face.
13156
13157 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
13158 (speedbar-ignored-modes): Add fundamental-mode.
13159 (speedbar-directory-unshown-regexp): Add . directories.
13160
13161 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
13162 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
13163 `]' for full expand/close.
13164 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
13165
13166 (speedbar-check-vc): Support hidden files.
13167 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
13168 (speedbar-this-file-in-vc): Use vc-state if available. If VC
13169 state is nil, it is not checked out.
13170
13171 (speedbar-line-text, speedbar-line-token): Support expand buttons
13172 with no text.
13173 (speedbar-refresh): Universal argument acts as power-click.
13174 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
13175 that buffer to get variable values.
13176
13177 And many other bugfixes.
13178
13179 * dframe.el, ezimage.el, sb-image.el: New files.
13180
13181 * sb-*.xpm: Remove files. New image files installed into
13182 etc/images/ezimage.
13183
13184 2005-09-30 Kenichi Handa <handa@m17n.org>
13185
13186 * ps-mule.el (ps-mule-show-warning): If a character is in
13187 ps-print-translation-table, don't treat it as non-printable.
13188
13189 2005-09-30 David Ponce <david@dponce.com>
13190
13191 * tree-widget.el (tree-widget-themes-load-path): New variable.
13192 (tree-widget-themes-directory): Doc fix.
13193 (tree-widget-image-formats) [Emacs]: Doc fix.
13194 (tree-widget--locate-sub-directory): New function.
13195 (tree-widget-themes-directory): Use it.
13196
13197 * recentf.el (recentf-filename-handlers): Rename from
13198 `recentf-filename-handler'. Allow a list of functions.
13199 (recentf-menu-items-for-commands): Fix :help strings.
13200 (recentf-apply-filename-handlers): New function.
13201 (recentf-expand-file-name): Use it.
13202 (recentf-cleanup): Remove duplicates too.
13203
13204 2005-09-29 Juri Linkov <juri@jurta.org>
13205
13206 * faces.el: Rearrange face definitions to be in the same order as
13207 their face descriptions in "(emacs)Standard Faces".
13208
13209 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
13210
13211 * tooltip.el (tooltip): Add group `basic-faces'.
13212
13213 * buff-menu.el (Buffer-menu-buffer): Remove group
13214 `font-lock-highlighting-faces'.
13215
13216 * progmodes/compile.el (compilation-error, compilation-warning)
13217 (compilation-info, compilation-line-number, compilation-column-number):
13218 Change group from `font-lock-highlighting-faces' to `compilation'.
13219
13220 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
13221 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
13222 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
13223 (vhdl-font-lock-reserved-words-face)
13224 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
13225 `font-lock-highlighting-faces'.
13226
13227 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
13228
13229 2005-09-28 Kim F. Storm <storm@cua.dk>
13230
13231 * emulation/cua-base.el: Set CUA move property on additional commands:
13232 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
13233 forward-sexp, backward-sexp, forward-list, backward-list.
13234
13235 2005-09-28 Romain Francoise <romain@orebokech.com>
13236
13237 * comint.el (comint-show-output): Really set point at the
13238 beginning of the output when not using `comint-use-prompt-regexp'.
13239
13240 2005-09-27 Jay Belanger <belanger@truman.edu>
13241
13242 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
13243 in TeX mode.
13244
13245 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
13246
13247 * textmodes/org.el (org-table-sum): Fix format string.
13248
13249 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
13250 Quote face names.
13251
13252 2005-09-26 Romain Francoise <romain@orebokech.com>
13253
13254 * isearch.el (isearch-forward-regexp): Close doc string.
13255
13256 2005-09-25 Richard M. Stallman <rms@gnu.org>
13257
13258 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
13259
13260 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
13261
13262 * progmodes/compile.el (compilation-error-properties):
13263 When getting the file from the previous error message,
13264 correctly decode the new data format.
13265
13266 * progmodes/cc-cmds.el (c-electric-paren):
13267 Call old-blink-paren only for close-paren.
13268
13269 2005-09-24 Andreas Schwab <schwab@suse.de>
13270
13271 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
13272 condition.
13273
13274 2005-09-25 Romain Francoise <romain@orebokech.com>
13275
13276 * dired-aux.el (dired-copy-file-recursive):
13277 * dired.el (dired-delete-file):
13278 * ediff-mult.el (ediff-dir-diff-copy-file):
13279 * ediff-util.el (ediff-test-save-region):
13280 * forms.el (forms-mode):
13281 * ido.el (ido-file-internal, ido-delete-file-at-head):
13282 * log-edit.el (log-edit-done):
13283 * ses.el (ses-yank-resize):
13284 * play/gomoku.el (gomoku-human-plays, gomoku)
13285 (gomoku-human-resigns, gomoku-prompt-for-other-game)
13286 (gomoku-offer-a-draw):
13287 * play/landmark.el (lm-human-resigns, lm):
13288 * net/eudcb-ldap.el (eudc-ldap-check-base):
13289 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
13290 * progmodes/ebrowse.el (ebrowse-find-pattern):
13291 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
13292 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
13293 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
13294
13295 * vc.el (vc-delete-file):
13296 * play/gomoku.el (gomoku-terminate-game, gomoku)
13297 (gomoku-prompt-for-move, gomoku-human-takes-back):
13298 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
13299 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
13300
13301 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
13302
13303 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
13304 color rxvt terminals by using the code xterm.el used to use before
13305 2005-04-09 in order to match the colors used by rxvt.
13306
13307 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13308
13309 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
13310 colors rxvt-unicode terminals by using the same code as xterm.el.
13311
13312 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
13313
13314 * textmodes/tex-mode.el (tex-font-lock-append-prop)
13315 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
13316 new symbol used for the tex-verbatim face.
13317
13318 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
13319
13320 * woman.el (woman-file-name):
13321 * wid-edit.el (widget-file-prompt-value)
13322 (widget-coding-system-prompt-value):
13323 * w32-fns.el (set-w32-system-coding-system):
13324 * vc.el (vc-version-diff, vc-annotate):
13325 * textmodes/reftex-auc.el (reftex-arg-cite)
13326 (reftex-arg-index-tag):
13327 * textmodes/refer.el (refer-get-bib-files):
13328 * textmodes/artist.el (artist-figlet-choose-font):
13329 * terminal.el (terminal-emulator):
13330 * replace.el (occur-read-primary-args):
13331 * rect.el (string-rectangle, string-insert-rectangle):
13332 * ps-print.el (ps-print-preprint):
13333 * progmodes/pascal.el (pascal-goto-defun):
13334 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
13335 * progmodes/compile.el (compilation-find-file):
13336 * printing.el (pr-interactive-n-up):
13337 * play/animate.el (animate-birthday-present):
13338 * net/rcompile.el (remote-compile):
13339 * man.el (man, Man-goto-section, Man-follow-manual-reference):
13340 * mail/rmailsum.el (rmail-summary-search-backward)
13341 (rmail-summary-search):
13342 * mail/rmailout.el (rmail-output-read-rmail-file-name)
13343 (rmail-output-read-file-name):
13344 * mail/rmail.el (rmail-search, rmail-search-backwards):
13345 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
13346 * locate.el (locate):
13347 * international/quail.el (quail-show-keyboard-layout):
13348 * international/mule.el (set-buffer-file-coding-system)
13349 (revert-buffer-with-coding-system, set-file-name-coding-system)
13350 (set-terminal-coding-system, set-keyboard-coding-system)
13351 (set-next-selection-coding-system):
13352 * international/mule-diag.el (describe-coding-system)
13353 (describe-font, describe-fontset):
13354 * international/mule-cmds.el (universal-coding-system-argument)
13355 (search-unencodable-char, describe-input-method)
13356 (set-language-environment, describe-language-environment):
13357 * international/codepage.el (codepage-setup):
13358 * international/code-pages.el (codepage-setup):
13359 * info.el (Info-search, Info-follow-reference)
13360 (Info-search-backward):
13361 * emacs-lisp/advice.el (ad-read-advised-function)
13362 (ad-read-advice-class, ad-clear-cache, ad-activate)
13363 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
13364 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
13365 (ad-read-regexp):
13366 * ediff-util.el (ediff-toggle-regexp-match):
13367 * ediff-ptch.el (ediff-prompt-for-patch-file):
13368 * dired-aux.el (dired-diff):
13369 * diff.el (diff):
13370 * cus-edit.el (custom-variable-prompt):
13371 * calendar/timeclock.el (timeclock-ask-for-project):
13372 * calc/calcalg3.el (calc-get-fit-variables):
13373 * calc/calc-store.el (calc-edit-variable)
13374 (calc-permanent-variable):
13375 * vc-mcvs.el (vc-mcvs-register):
13376 * shadowfile.el (shadow-define-literal-group):
13377 * woman.el (woman-file-name):
13378 * vc.el (vc-version-diff, vc-merge):
13379 * textmodes/reftex-index.el (reftex-index-complete-tag):
13380 * format.el (format-decode-buffer, format-decode-region):
13381 * emulation/viper-cmd.el (viper-read-string-with-history):
13382 * emacs-lisp/debug.el (cancel-debug-on-entry):
13383 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
13384 * ediff.el (ediff-merge-revisions)
13385 (ediff-merge-revisions-with-ancestor, ediff-revision):
13386 * completion.el (interactive-completion-string-reader):
13387 * calc/calc-prog.el (calc-user-define-formula):
13388 Follow convention for reading with the minibuffer.
13389
13390 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
13391
13392 * progmodes/python.el (python-describe-symbol): Add globals() and
13393 locals() to the arguments of emacs.ehelp.
13394
13395 2005-09-24 Magnus Henoch <mange@freemail.hu>
13396
13397 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
13398 New function, code extracted from ispell-valid-dictionary-list.
13399 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
13400 Call it.
13401
13402 2005-09-24 Eli Zaretskii <eliz@gnu.org>
13403
13404 * subr.el (version-regexp-alist): Extend valid syntax for version
13405 strings: allow any of the characters -,_,+ to separate the
13406 alpha/beta/rc part from the version part. Doc fix.
13407 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
13408
13409 2005-09-23 David Reitter <david.reitter@gmail.com>
13410
13411 * mail/mailclient.el: New file.
13412
13413 2005-09-23 Richard M. Stallman <rms@gnu.org>
13414
13415 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
13416 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
13417 Doc fixes.
13418
13419 * progmodes/cc-mode.el (c-font-lock-init):
13420 Specify font-lock-lines-before.
13421
13422 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
13423
13424 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
13425 whole conflict.
13426
13427 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
13428
13429 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
13430 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
13431 of `remap' feature when available. Additional key bindings for
13432 better tty support.
13433 (org-mode-restart, org-force-self-insert): New commands.
13434 (org-time-stamp-inactive): New command.
13435 (org-remap): New function.
13436 (org-table-auto-blank-field, org-level-color-stars-only): New options.
13437 (org-enable-fixed-width-editor): Move to `org-structure'
13438 customization group.
13439 (org-self-insert-command, orgtbl-self-insert-command): Modify to
13440 blank field after field motion commands.
13441
13442 2005-09-23 Kenichi Handa <handa@m17n.org>
13443
13444 * international/mule-cmds.el (set-language-environment):
13445 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
13446 have to call utf-translate-cjk-load-tables.
13447
13448 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
13449
13450 * mouse.el (mouse-move-drag-overlay): Fix last change.
13451
13452 2005-09-22 David Ponce <david@dponce.com>
13453
13454 * tree-widget.el (tree-widget-value-create): Fix previous change.
13455
13456 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
13457
13458 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
13459
13460 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
13461
13462 * mouse.el (mouse-move-drag-overlay): New function.
13463 (mouse-drag-region-1): Use it.
13464 Try to simplify a bit the state handling. Handle clicks on links
13465 inside intangible areas.
13466 (mouse-save-then-kill): Minor simplification.
13467 (mouse-secondary-overlay): Make it always non-nil instead of
13468 recreating it each time.
13469 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
13470 (mouse-kill-secondary, mouse-secondary-save-then-kill):
13471 Simplify accordingly.
13472
13473 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
13474
13475 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
13476
13477 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
13478
13479 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
13480 (ediff-file-name-sans-prefix): Treat nil as an empty string.
13481 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
13482 to patch.
13483
13484 * ediff-util.el: Use insert-buffer-substring.
13485
13486 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
13487
13488 * emulation/viper-cmd.el (viper-change-state): Don't move over the
13489 field boundaries in the minibuffer.
13490 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
13491 (viper-minibuffer-post-command-hook): New hook.
13492 (viper-line): Don't move cursor at bolp.
13493
13494 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
13495
13496 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
13497 avoid compiler warnings.
13498
13499 * emulation/viper-macs.el (ex-map): Better messages.
13500
13501 * emulation/viper-utils.el (viper-beginning-of-field): New function.
13502
13503 * emulation/viper.el: Replace make-variable-buffer-local with
13504 viper-make-variable-buffer-local everywhere, to avoid warnings.
13505
13506 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
13507
13508 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
13509 Delete unused var `old-selected-window'.
13510 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
13511 (mouse-drag-secondary): Delete unused var `start-frame'.
13512
13513 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13514
13515 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
13516
13517 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
13518
13519 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
13520 Re-indent within 80 columns. Use inhibit-read-only.
13521
13522 2005-09-19 Romain Francoise <romain@orebokech.com>
13523
13524 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
13525
13526 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
13527
13528 * font-lock.el (font-lock-default-fontify-region): Don't add a line
13529 unconditionally, since the after-change-function already did it.
13530
13531 2005-09-19 Miles Bader <miles@gnu.org>
13532
13533 * net/newsticker.el: Get rid of CVS keyword.
13534
13535 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
13536
13537 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
13538 The prompt is formatted later.
13539
13540 2005-09-19 David Ponce <david@dponce.com>
13541
13542 * tree-widget.el (tree-widget-value-create): Save the converted
13543 tree :node widget.
13544
13545 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
13546
13547 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
13548 variable `message'.
13549
13550 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
13551
13552 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
13553 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
13554 <slawomir.nowaczyk.847@student.lu.se>.
13555
13556 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
13557
13558 * image.el (image-load-path): Use symbol `data-directory' instead
13559 of its value, for backward compatibility with packages that bind
13560 it during `find-image'. Suggested by Katsumi Yamaoka.
13561 (image-search-load-path): Handle symbols whose values are strings.
13562
13563 2005-09-18 Romain Francoise <romain@orebokech.com>
13564
13565 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
13566 with-current-buffer form in save-excursion.
13567
13568 2005-09-18 Deepak Goel <deego@gnufans.org>
13569
13570 * apropos.el (apropos-command): Fix `message' call: first arg
13571 should be a format spec. In this and all other cases that appear
13572 below and elsewhere in the source code, I made a change only when
13573 two conditions were satisfied: [1] I can think of a possibility
13574 that the arguments would cause an error, for example, the code in
13575 question relies on external variables such as filenames. [2] I
13576 was sure that the arg to `message' could not have been nil in the code.
13577
13578 * textmodes/tildify.el (tildify-region): Ditto.
13579
13580 * textmodes/reftex-index.el (reftex-index-change-entry)
13581 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
13582 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
13583 * textmodes/org.el (org-complete, org-deadline, org-schedule)
13584 (org-priority, org-table-sum):
13585 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
13586 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
13587 (flyspell-word, flyspell-display-next-corrections):
13588 * textmodes/bibtex.el (bibtex-print-help-message):
13589 * textmodes/artist.el (artist-key-set-point-poly):
13590 * term/mac-win.el (mac-services-insert-text):
13591 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
13592 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
13593 (vhdl-port-paste-testbench, vhdl-compose-new-component)
13594 (vhdl-compose-configuration):
13595 * progmodes/sh-script.el (sh-blink, sh-show-indent)
13596 (sh-set-indent, sh-learn-line-indent):
13597 * progmodes/ps-mode.el (ps-mode-target-column):
13598 * progmodes/idlwave.el (idlwave-make-tags)
13599 (idlwave-scan-library-catalogs):
13600 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
13601 * progmodes/gud.el (gud-jdb-analyze-source):
13602 * progmodes/flymake.el (flymake-log):
13603 * progmodes/ebnf2ps.el (ebnf-generate-region):
13604 * progmodes/cmacexp.el (c-macro-expansion):
13605 * progmodes/ada-xref.el (ada-treat-cmd-string):
13606 * progmodes/ada-mode.el (ada-create-case-exception-substring)
13607 (ada-justified-indent-current, ada-batch-reformat):
13608 * play/zone.el (zone):
13609 * play/landmark.el (lm-move):
13610 * play/decipher.el (decipher-show-alphabet):
13611 * net/newsticker.el (newsticker--display-jump)
13612 (newsticker--display-scroll):
13613 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
13614 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
13615 * mail/feedmail.el (feedmail-dump-message-to-queue):
13616 * eshell/esh-proc.el (eshell-remove-process-entry):
13617 * emulation/ws-mode.el (ws-last-error):
13618 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
13619 (viper-record-kbd-macro):
13620 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
13621 * emacs-lisp/lisp-mnt.el (lm-report-bug):
13622 * emacs-lisp/find-func.el (find-function-noselect):
13623 * calendar/timeclock.el (timeclock-status-string)
13624 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
13625 (timeclock-when-to-leave-string):
13626 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
13627 * calc/calc-units.el (calc-enter-units-table):
13628 * calc/calc-mode.el (calc-mode-record-mode):
13629 * woman.el (woman-mini-help):
13630 * wdired.el (wdired-change-to-wdired-mode):
13631 * vc.el (vc-retrieve-snapshot):
13632 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
13633 * startup.el (display-startup-echo-area-message):
13634 * simple.el (set-goal-column):
13635 * ses.el (ses-command-hook, ses-recalculate-cell):
13636 * server.el (server-process-filter):
13637 * printing.el (pr-interface-txt-print, pr-interface-printify)
13638 (pr-interface-ps):
13639 * pcvs.el (cvs-help):
13640 * log-edit.el (log-edit, log-edit-mode-help):
13641 * iswitchb.el (iswitchb-possible-new-buffer):
13642 * isearch.el (isearch-edit-string):
13643 * image-mode.el (image-mode, image-minor-mode):
13644 * ibuf-macs.el (define-ibuffer-filter):
13645 * hi-lock.el (hi-lock-find-patterns):
13646 * files.el (toggle-read-only):
13647 * ediff-util.el (ediff-copy-diff)
13648 (ediff-write-merge-buffer-and-maybe-kill):
13649 * echistory.el (Electric-history-undefined):
13650 * dnd.el (dnd-insert-text):
13651 * dired-aux.el (dired-query):
13652 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
13653 * bookmark.el (bookmark-bmenu-locate):
13654 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
13655 Fix `message' calls to ensure first arg is a format string.
13656 The change was made only when these two conditions were satisfied:
13657 [1] when there is a possibility that the arguments would cause an error
13658 for example, if the code in question relies on external variables
13659 such as filenames, and
13660 [2] if the arg to `message' could not have been nil in the code.
13661
13662 * pcomplete.el (pcomplete--help): Fix `message' format spec.
13663 Not having a %s would be weird, though not technically wrong.
13664
13665 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13666
13667 * term/mac-win.el (mac-add-charset-info): Doc fix.
13668
13669 2005-09-17 Romain Francoise <romain@orebokech.com>
13670
13671 * shell.el (shell-resync-dirs): Handle echoing processes more
13672 reliably. Don't insert resync command if `comint-process-echoes'
13673 is non-nil.
13674
13675 2005-09-17 Magnus Henoch <mange@freemail.hu>
13676
13677 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
13678 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
13679 aspell versions >= 0.60.
13680 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
13681 only if ispell-aspell-supports-utf8 is non-nil.
13682
13683 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
13684
13685 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
13686 buffer-local value to lisp-indent-function.
13687
13688 2005-09-17 Milan Zamazal <pdm@zamazal.org>
13689
13690 * progmodes/glasses.el (glasses-make-readable): If
13691 glasses-separator differs from underscore, put appropriate
13692 overlays over underscore characters.
13693 (glasses-convert-to-unreadable): If glasses-separator differs from
13694 underscore, try to convert glasses-separator characters to
13695 underscores.
13696
13697 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
13698
13699 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
13700 Use with-syntax-table and dolist.
13701
13702 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
13703
13704 * textmodes/reftex-auc.el:
13705 * textmodes/reftex-cite.el:
13706 * textmodes/reftex-dcr.el:
13707 * textmodes/reftex-global.el:
13708 * textmodes/reftex-parse.el:
13709 * textmodes/reftex-ref.el:
13710 * textmodes/reftex-sel.el:
13711 * textmodes/reftex-toc.el:
13712 * textmodes/reftex-vars.el:
13713 * textmodes/reftex.el: Small changes to remove compiler warnings.
13714
13715 * textmodes/reftex-index.el: Likewise.
13716 (reftex-query-index-phrase): More efficient use of markers.
13717
13718 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
13719
13720 * image.el (image-load-path): New variable.
13721 (image-search-load-path): New function.
13722 (find-image): Search for images in `image-load-path'.
13723
13724 2005-09-15 Richard M. Stallman <rms@gnu.org>
13725
13726 * follow.el: Change Maintainer field.
13727
13728 2005-09-15 David Ponce <david@dponce.com>
13729
13730 * recentf.el (recentf-save-file-modes): New option.
13731 (recentf-save-list): Use it.
13732
13733 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
13734
13735 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
13736 (mode-line-mule-info, mode-line-modified): Move bindings from
13737 mouse-3 to mouse-1.
13738
13739 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
13740
13741 * simple.el (sendmail-user-agent-compose): Revert last change.
13742
13743 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
13744
13745 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
13746 Use with-current-buffer.
13747 (ange-ftp-gwp-start): Remove unused var `gw-user'.
13748 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
13749 (ange-ftp-insert-directory): Remove unused var `short'.
13750 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
13751
13752 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
13753 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
13754
13755 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
13756 (check-calendar-holidays, diary-list-entries): Autoload.
13757 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
13758 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
13759
13760 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
13761 which mistakenly removed a call to display-buffer.
13762
13763 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
13764
13765 * obsolete/iso-insert.el: Move to obsolete/ from international/.
13766
13767 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
13768
13769 * progmodes/hideshow.el
13770 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
13771 (hs-allow-nesting): New user var.
13772 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
13773 (hs-hide-block-at-point): When nesting allowed,
13774 if there is already an overlay in place, delete it.
13775 (hs-safety-is-job-n): Delete func; remove call sites.
13776 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
13777 (hs-overlay-at): New func.
13778 (hs-already-hidden-p, hs-show-block): Use it.
13779 (hs-hide-all): Don't pre-clean if nesting allowed.
13780 (hs-show-all): Temporarily disallow
13781 nesting around call to `hs-discard-overlays'.
13782
13783 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
13784
13785 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
13786 Delete unused local var.
13787
13788 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
13789
13790 * help-fns.el (describe-categories): "?\ " -> "?\s".
13791 (help-do-arg-highlight): Recognize also ARG-n, as in
13792 `move-to-left-margin' (ARG+n is already recognized). Simplify.
13793
13794 * international/codepage.el (dos-unsupported-char-glyph):
13795 * net/newsticker.el (tool-bar-map, w3-mode-map)
13796 (w3m-minor-mode-map):
13797 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
13798 (ent-alist):
13799 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
13800
13801 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
13802
13803 * custom.el (custom-push-theme): Handle the case where a symbol is
13804 bound but face properties have not yet been assigned.
13805
13806 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
13807 Fix behavior if noerase is `t' and there is no mail buffer.
13808
13809 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
13810 if `continue' is nil, rather than signal an error.
13811
13812 2005-09-12 Richard M. Stallman <rms@gnu.org>
13813
13814 * font-lock.el (font-lock-keywords): Add autoload.
13815
13816 * help-fns.el (describe-variable): Rearrange to put source link
13817 in a predictable place.
13818
13819 * net/newsticker.el: New file.
13820
13821 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
13822
13823 * calendar/calendar.el (calendar-for-loop): Add edebug info.
13824 (calendar-basic-setup): Use the new nil arg.
13825 (number-of-diary-entries): Move to diary-lib.el.
13826
13827 * calendar/diary-lib.el: Use with-current-buffer, match-string.
13828 (diary-list-entries): Use with-syntax-table and dolist.
13829 Rename from list-diary-entries.
13830 Use number-of-diary-entries if `number' is nil.
13831 (diary, diary-view-entries): Use this new name and new nil arg value.
13832 (number-of-diary-entries): Move from calendar.el.
13833 (diary-unhide-everything): New function.
13834 (include-other-diary-files, fancy-diary-display)
13835 (diary-show-all-entries, make-diary-entry): Use it.
13836 (diary-mail-entries): Use buffer-string.
13837 (mark-diary-entries): Fix long standing paren typo.
13838 (diary-sexp-entry): Use count-lines.
13839 (make-diary-entry): Avoid `previous-line'.
13840 (diary-mode-map): New var.
13841 (diary-mode): Redraw cal after saving. Setup header-line.
13842 (fancy-diary-display-mode): Use local-set-key.
13843
13844 * startup.el (command-line): Try calling various terminal-init-foo-bar
13845 functions by stripping hyphenated suffixes from $TERM.
13846
13847 * files.el (normal-mode): Check boundness of font-lock-keywords.
13848
13849 2005-09-12 Richard M. Stallman <rms@gnu.org>
13850
13851 * progmodes/compile.el: Don't decide a file's directory
13852 until the user actually tries to go there.
13853 (compilation-next-error-function):
13854 Pass compilation-find-file the directory from the file-struct.
13855 (compilation-internal-error-properties): Separate local FILE-STRUCT
13856 from FILE. Doc the args better. Rename arg FMT to FMTS.
13857 (compilation-find-file): Arg DIR renamed to DIRECTORY.
13858 Expand it, and if nil, use default-directory.
13859 (compilation-get-file-structure): Don't mix specified directory
13860 with default directory. Put specified directory into
13861 file-struct. Don't make the file name absolute.
13862
13863 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
13864 (compile-command): Add autoload.
13865 (compilation-disable-input): Add autoload.
13866
13867 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
13868
13869 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
13870 strings of the variables it can override.
13871 (time-stamp): New (as yet undocumented) time-stamp-format escapes
13872 %Q and %q, for fully-qualified domain name and unqualified host name.
13873
13874 2005-09-11 Kim F. Storm <storm@cua.dk>
13875
13876 * emacs-lisp/authors.el (authors-aliases): Update list.
13877 (authors-fixed-entries): Update mldrag.el entry.
13878
13879 2005-09-10 Alan Mackenzie <acm@muc.de>
13880
13881 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
13882 from the region narrowed to.
13883
13884 2005-09-10 Magnus Henoch <mange@freemail.hu>
13885
13886 * textmodes/ispell.el (ispell-check-version): Signal an error if
13887 aspell version is less than 0.60.
13888
13889 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
13890
13891 * progmodes/octave-inf.el (inferior-octave-startup):
13892 Resync current dir at the end.
13893
13894 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
13895
13896 * woman.el (woman-topic-at-point-default):
13897 Rename to woman-use-topic-at-point-default.
13898 (woman-topic-at-point): Rename to woman-use-topic-at-point.
13899 (woman-file-name): Reflect renames above. Automatically use the
13900 word at point as topic if woman-use-topic-at-point is non-nil.
13901 Otherwise offer it as default but don't insert it in the
13902 minibuffer. Also use `test-completion' instead of `assoc' as
13903 suggested by Stefan Monnier.
13904
13905 2005-09-10 Andre Spiegel <spiegel@gnu.org>
13906
13907 * vc.el (vc-directory, vc-update-change-log): Throw an error on
13908 the attempt to do it over Tramp. This is not yet supported.
13909
13910 2005-09-10 Eli Zaretskii <eliz@gnu.org>
13911
13912 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
13913 (menu-bar-non-minibuffer-window-p): New functions.
13914 ("Split Window", "Save As..."): Use them.
13915 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
13916 ("Print Buffer", "Truncate Long Lines in this Buffer"):
13917 Use menu-bar-menu-frame-live-and-visible-p.
13918 ("Save Buffer", "Insert File", "Open Directory...")
13919 ("Open File...", "Visit New File..."):
13920 Use menu-bar-non-minibuffer-window-p.
13921 (kill-this-buffer-enabled-p, dired <menu-enable>):
13922 Use menu-bar-non-minibuffer-window-p.
13923
13924 2005-09-09 Eli Zaretskii <eliz@gnu.org>
13925
13926 * cus-start.el (all): Don't complain about fringe-related
13927 built-ins if fringes are not supported. Ditto about
13928 selection-related built-ins. Fix the test for GTK-related built-ins.
13929
13930 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
13931 ("Postscript Print Buffer", "Print Region", "Save As...")
13932 ("Save", "Insert File...", "Open Directory...")
13933 ("Open File...", "Visit New File..."")
13934 ("Truncate Long Lines in this Buffer"): Don't look at
13935 menu-updating-frame if this display does not support multiple frames.
13936
13937 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
13938
13939 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
13940
13941 2005-09-09 Emilio Lopes <eclig@gmx.net>
13942
13943 * woman.el: Format- and whitespace-related changes.
13944
13945 2005-09-09 Eli Zaretskii <eliz@gnu.org>
13946
13947 * woman.el: Fix my email address.
13948
13949 2005-09-08 Richard M. Stallman <rms@gnu.org>
13950
13951 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
13952 (sh-mode): Locally set skeleton-pair-default-alist.
13953
13954 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
13955
13956 * progmodes/flymake.el: Require `compile' unconditionally.
13957
13958 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
13959
13960 * woman.el (woman-file-name): Provide a default, not initial input.
13961
13962 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
13963
13964 * font-lock.el (font-lock-support-mode): Doc fix.
13965
13966 * descr-text.el (describe-property-list): Handle non-symbol prop names.
13967
13968 2005-09-08 Richard M. Stallman <rms@gnu.org>
13969
13970 * simple.el (blink-matching-open): Get rid of text props from
13971 the string shown in echo area. Don't permanently set point.
13972 Some rearrangements.
13973
13974 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
13975
13976 * recentf.el (recentf-filename-handler): Add custom choice
13977 `abbreviate-file-name'.
13978
13979 * msb.el (msb--very-many-menus): Fix typo.
13980
13981 * disp-table.el (standard-display-european): Don't set
13982 enable-multibyte-characters to nil.
13983
13984 2005-09-08 David Ponce <david@dponce.com>
13985
13986 * recentf.el (recentf-show-file-shortcuts-flag): New option.
13987 (recentf-expand-file-name): Doc fix.
13988 (recentf-dialog-mode-map): Define digit shortcuts.
13989 (recentf--files-with-key): New variable.
13990 (recentf-show-digit-shortcut-filter): New function.
13991 (recentf-open-files-items): New function.
13992 (recentf-open-files): Use it.
13993 (recentf-open-file-with-key): New command.
13994
13995 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
13996
13997 * buff-menu.el (Buffer-menu-sort-by-column): New function.
13998 Suggested by Kim F. Storm.
13999 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
14000 (Buffer-menu-make-sort-button): Use global keymap.
14001
14002 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
14003
14004 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
14005 (Man-getpage-in-background-advice): Remove defadvice; it isn't
14006 necessary any longer with the remapped command.
14007 (Man-bgproc-sentinel-advice): Remove defadvice which counts
14008 formatting time only.
14009
14010 * net/tramp.el (tramp-action-password)
14011 (tramp-multi-action-password): Compile the password prompt from
14012 `method', `user' and `host'. Sometimes it isn't obvious which
14013 password to enter, for example with remote files offered by
14014 recentf.el, or with multiple steps. Suggested by Robert Marshall
14015 <robert@chezmarshall.freeserve.co.uk>.
14016
14017 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14018
14019 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
14020 Fix regexp for when "s///" is at the beginning of line.
14021
14022 2005-09-07 Jay Belanger <belanger@truman.edu>
14023
14024 * calc/calc-poly.el (math-expand-term): Multiply out any powers
14025 when in matrix mode.
14026
14027 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
14028
14029 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
14030 non-anonymous functions.
14031
14032 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
14033
14034 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
14035 when using a header line. Otherwise, use mouse-1-click-follows-link.
14036
14037 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
14038 can't be moved; don't signal an error.
14039
14040 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
14041
14042 * cus-theme.el (custom-theme-write-faces): Save the current face
14043 spec, not the defface spec.
14044
14045 * custom.el (custom-known-themes): Clarify meaning of "standard".
14046 (custom-push-theme): Save old values in the standard theme.
14047 (disable-theme): Correct typo.
14048 (custom-face-theme-value) Deleted unused function.
14049 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
14050
14051 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
14052
14053 * progmodes/compile.el (compilation-goto-locus): Take into account
14054 iconified frames when determining whether the buffer is
14055 already visible.
14056 Don't reset window height if the window already existed.
14057
14058 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
14059
14060 * custom.el (load-theme): Rename from require-theme.
14061 Add interactive spec.
14062 (enable-theme): Rename from custom-enable-theme.
14063 Add interactive spec.
14064 (disable-theme): Rename from custom-disable-theme.
14065 Add interactive spec.
14066 (custom-make-theme-feature): Doc fix.
14067 (custom-theme-directory): Doc fix.
14068 (provide-theme): Call enable-theme.
14069
14070 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
14071
14072 * obsolete/lazy-lock.el (lazy-lock-mode):
14073 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
14074 font-lock-mode if it's off. Print a warning instead.
14075
14076 * progmodes/compile.el (compilation-start): Ignore errors if the
14077 process died before we get to send-eof.
14078
14079 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
14080 Undo last change. Enclosing the result in quotes broke things on Unix
14081 since tex-send-command passes it through shell-quote-argument.
14082 (tex-send-command): Pass `file' through convert-standard-filename
14083 when possible.
14084 (tex-uptodate-p): Handle the case where TeX hasn't put additional
14085 info in a transcript.
14086
14087 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
14088
14089 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
14090 fix compilation warning. Reorder the key definitions to group
14091 together keys emitted by the current version of xterm.
14092
14093 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
14094 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
14095 Reorder predicates to correct min-color usage.
14096
14097 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
14098
14099 * longlines.el (longlines-mode): Inhibit read-only when encoding.
14100 Kill local variables when longlines-mode is turned off.
14101
14102 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
14103
14104 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
14105
14106 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
14107
14108 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
14109
14110 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
14111 (font-lock-lines-before): Change default to being inactive.
14112 (font-lock-default-fontify-region): Obey font-lock-lines-before.
14113 (font-lock-after-change-function): Don't handle f-l-lines-before here.
14114
14115 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
14116
14117 * net/tramp.el (tramp-handle-make-auto-save-file-name):
14118 Deactivate temporarily advice if active (not needed for Emacs 22,
14119 but for backwards compatibility).
14120 (tramp-exists-file-name-handler): Rewrite. First implementation
14121 was too simple.
14122 (tramp-advice-make-auto-save-file-name):
14123 Call `tramp-handle-make-auto-save-file-name' (again, just for
14124 backwards compatibility).
14125
14126 2005-08-31 Reto Zimmermann <reto@gnu.org>
14127
14128 * progmodes/vhdl-mode.el
14129 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
14130 (vhdl-end-p): Fix indentation bug "else" after "-- when".
14131 (vhdl-set-default-project): New function (easier setting of default).
14132 (vhdl-port-copy): Handle extended identifiers for generics.
14133 (vhdl-compiler-alist): Better description for error message regexp.
14134 (vhdl-make): Query for target, use previous as default.
14135 (vhdl-port-copy): Fix port copy for port names starting with "signal".
14136 (vhdl-font-lock-keywords-2): Fix fontification for record
14137 el. assign.
14138 (vhdl-speedbar-make-subpack-line): Add package body link.
14139 (vhdl-generate-makefile-1): Not include itself as dependency.
14140 (vhdl-font-lock-init): Highlight c-preprocessor directives.
14141 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
14142 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
14143 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
14144 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
14145 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
14146 (vhdl-import-project): Add string argument for `error'.
14147 (vhdl-compose-configuration)
14148 (vhdl-compose-configuration-architecture): Add configuration
14149 declaration generation.
14150 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
14151 (vhdl-trailer-re): Add "record" keyword (better indentation).
14152 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
14153 "[^ \t-\"]+".
14154 (vhdl-font-lock-keywords-2): Not highlight formal parameter after `|'.
14155 (vhdl-testbench-entity-file-name)
14156 (vhdl-testbench-architecture-file-name): Allow separate
14157 customization of testbench file names.
14158 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
14159 (vhdl-get-visible-signals): Allow newline within alias declaration.
14160 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
14161 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
14162 (member-ignore-case): Alias for missing function in XEmacs.
14163 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
14164 (vhdl-update-sensitivity-list): Ignore case on read signals.
14165 (vhdl-replace-string): Adjust case only for file names.
14166 (vhdl-update-sensitivity-list): Fix search for read signals.
14167 (vhdl-update-sensitivity-list): Exclude formal parameters.
14168 (vhdl-get-visible-signals): Include aliases of signals.
14169 (vhdl-get-visible-signals): Fix signal name searching.
14170 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
14171 (vhdl-fixup-whitespace-region): Fix for character
14172 literals (e.g. `:').
14173
14174 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
14175
14176 * ansi-color.el (comint-last-output-start):
14177 * bs.el (font-lock-verbose):
14178 * diff-mode.el (add-log-buffer-file-name-function):
14179 * dired-x.el (vm-folder-directory):
14180 * faces.el (help-xref-stack-item):
14181 * files.el (font-lock-keywords):
14182 * find-lisp.el (dired-buffers, dired-subdir-alist):
14183 * ido.el (cua-inhibit-cua-keys):
14184 * log-view.el (cvs-minor-wrap-function):
14185 * outline.el (font-lock-warning-face):
14186 * simple.el (compilation-current-error):
14187 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
14188 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
14189 * tooltip.el (comint-prompt-regexp):
14190 * w32-fns.el (explicit-shell-file-name):
14191 * term/mac-win.el (mac-charset-info-alist)
14192 (mac-services-selection, mac-system-script-code):
14193 * term/tty-colors.el (msdos-color-values):
14194 * term/w32-win.el (xlfd-regexp-registry-subnum):
14195 * term/x-win.el (x-keysym-table, x-selection-timeout)
14196 (x-session-id, x-session-previous-id):
14197 * textmodes/ispell.el (mail-yank-prefix):
14198 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
14199 * textmodes/org.el (calc-embedded-close-formula)
14200 (calc-embedded-open-formula)
14201 (font-lock-unfontify-region-function):
14202 * textmodes/reftex-global.el (isearch-next-buffer-function)
14203 (TeX-master):
14204 * textmodes/reftex.el (font-lock-keywords):
14205 * textmodes/tex-mode.el (font-lock-comment-face)
14206 (font-lock-doc-face):
14207 * textmodes/texinfo.el (outline-heading-alist):
14208 Add defvars.
14209
14210 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
14211 (artist-spray-chars, artist-mode-init, artist-replace-string)
14212 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
14213 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
14214 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
14215
14216 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
14217 (conf-align-assignments): "?\ " -> "?\s".
14218
14219 * textmodes/reftex-index.el (TeX-master): Add defvar.
14220 (reftex-index-phrases-marker): Move up defvar.
14221
14222 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
14223 (reftex-toc-include-labels-indicator)
14224 (reftex-toc-include-index-indicator)
14225 (reftex-toc-max-level-indicator): Move up declarations.
14226
14227 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
14228 of args to `tramp-run-real-handler', even if it's empty in this case.
14229
14230 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14231
14232 * dired.el (dired-move-to-filename-regexp): Add date format for
14233 Mac OS X 10.3 in East Asian locales.
14234
14235 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
14236
14237 * files.el (make-auto-save-file-name): Add file name handler call
14238 if applicable.
14239
14240 * net/tramp.el (tramp-file-name-handler-alist)
14241 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
14242 (tramp-handle-make-auto-save-file-name): Rename from
14243 `tramp-make-auto-save-file-name'.
14244 (tramp-exists-file-name-handler): New defun.
14245 (tramp-advice-make-auto-save-file-name): Make defadvice only when
14246 `make-auto-save-file-name' is not a magic file name operation.
14247
14248 2005-08-30 Richard M. Stallman <rms@gnu.org>
14249
14250 * files.el (risky-local-variable-p):
14251 Match `-predicates' and `-commands.
14252
14253 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
14254 (custom-save-all): Visit the file if necessary;
14255 kill the buffer if we created it.
14256 (custom-save-delete): Don't visit file or kill buffer here.
14257
14258 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
14259
14260 * textmodes/org.el (org-special-keyword): New face.
14261 (org-table-copy-down, org-table-eval-formula)
14262 (org-table-recalculate, org-init-section-numbers):
14263 Use `string-to-number' instead of `string-to-int'.
14264 (org-get-location): Use `insert-buffer-substring' instead of
14265 `insert-buffer'.
14266 (org-modify-diary-entry-string): New function.
14267 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
14268 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
14269 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
14270 active region.
14271 (org-export-as-html): Handle QUOTE keyword.
14272 (org-quote-string): New option.
14273 (org-bookmark-jump-unhide): New function, used for
14274 `bookmark-after-jump-hook'.
14275 (org-diary-default-entry): Apply only when not called through
14276 `org-agenda'.
14277
14278 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
14279
14280 * net/eudc.el (mode-popup-menu):
14281 * play/handwrite.el (ps-printer-name, ps-lpr-command):
14282 * progmodes/ada-mode.el (compile-auto-highlight)
14283 (skeleton-further-elements):
14284 * progmodes/autoconf.el (font-lock-syntactic-keywords):
14285 * progmodes/cmacexp.el (msdos-shells):
14286 * progmodes/compile.el (font-lock-extra-managed-props)
14287 (font-lock-keywords, font-lock-maximum-size)
14288 (font-lock-support-mode):
14289 * progmodes/grep.el (font-lock-lines-before):
14290 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
14291 * progmodes/mixal-mode.el (compile-command):
14292 * progmodes/perl-mode.el (font-lock-comment-face)
14293 (font-lock-doc-face, font-lock-string-face):
14294 * progmodes/prolog.el (comint-prompt-regexp):
14295 * progmodes/sh-script.el (font-lock-comment-face)
14296 (font-lock-set-defaults, font-lock-string-face):
14297 * progmodes/sql.el (font-lock-keyword-face)
14298 (font-lock-set-defaults, font-lock-string-face):
14299 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
14300 (itimer-version, lazy-lock-defer-contextually)
14301 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
14302 Add defvars.
14303
14304 * progmodes/cperl-mode.el (cperl-electric-lbrace)
14305 (cperl-electric-keyword, cperl-electric-pod)
14306 (cperl-electric-backspace, cperl-forward-re)
14307 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
14308 (vc-rcs-header, vc-sccs-header): Add defvars.
14309
14310 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
14311 (font-lock-syntactic-keywords, gud-find-expr-function):
14312 Add defvars.
14313
14314 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
14315 (gdb-frame-parameters): Declare before use.
14316
14317 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
14318 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
14319 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
14320 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
14321
14322 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
14323 (idlwave-help-with-source): Use `insert-buffer-substring', not
14324 `insert-buffer'.
14325
14326 2005-08-29 Juri Linkov <juri@jurta.org>
14327
14328 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
14329 Put outline-back-to-heading function call inside save-excursion.
14330
14331 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
14332
14333 * man.el (Man-init-defvars, Man-translate-references)
14334 (Man-support-local-filenames, Man-highlight-references):
14335 * progmodes/sql.el (sql-interactive-mode):
14336 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
14337
14338 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
14339 (compilation-mode-font-lock-keywords): Add defvars.
14340 (checkdoc-interactive-loop): "?\ " -> "?\s".
14341
14342 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
14343 (font-lock-doc-face, font-lock-string-face)
14344 (font-lock-keywords-case-fold-search): Add defvars.
14345 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
14346
14347 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
14348 Don't pass X and Y (they are ignored anyway).
14349 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
14350 (mouse-delete-window): Make arguments optional.
14351
14352 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
14353 (caesar-translate-table, minor-modes, news-buffer-save)
14354 (news-group-name, news-minor-modes): Add defvars.
14355
14356 * emacs-lisp/lselect.el (mouse-highlight-priority)
14357 (x-lost-selection-functions, zmacs-regions):
14358 * emacs-lisp/pp.el (font-lock-verbose):
14359 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
14360 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
14361 (ses-mode-map):
14362 * emacs-lisp/tcover-unsafep.el (safe-functions):
14363 * international/mule-cmds.el (mac-system-coding-system)
14364 (mac-system-locale):
14365 * language/ethio-util.el (rmail-current-message)
14366 (rmail-message-vector):
14367 * language/thai-util.el (thai-auto-composition-mode):
14368 * mail/metamail.el (rmail-current-message, rmail-message-vector):
14369 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
14370 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
14371 (vm-primary-inbox, vm-spool-files):
14372 * mail/rmail.el (deleted-head, font-lock-fontified)
14373 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
14374 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
14375 (total-messages):
14376 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
14377 (rmail-summary-mode-map):
14378 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
14379 (rmail-last-label, rmail-last-multi-labels)
14380 (rmail-summary-vector, rmail-total-messages):
14381 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
14382 * mail/rmailsum.el (msgnum):
14383 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
14384 (rmail-current-message):
14385 * obsolete/fast-lock.el (font-lock-face-list):
14386 * obsolete/rnewspost.el (mail-reply-buffer):
14387 * obsolete/scribe.el (compile-command):
14388 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
14389
14390 2005-08-28 John Paul Wallington <jpw@gnu.org>
14391
14392 * ibuf-ext.el (ibuffer-auto-update-changed):
14393 Use `frame-or-buffer-changed-p' to check whether we need to update.
14394 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
14395 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
14396 as a `frame-or-buffer-changed-p' state vector instead.
14397
14398 2005-08-27 Romain Francoise <romain@orebokech.com>
14399
14400 * textmodes/makeinfo.el (makeinfo-compile):
14401 Use `compilation-start'. Set `next-error-function' according to
14402 `disable-errors'.
14403 (makeinfo-next-error): New function.
14404 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
14405 (makeinfo-buffer): Likewise.
14406
14407 * progmodes/compile.el (compilation-start): Add autoload cookie.
14408
14409 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
14410 * textmodes/sgml-mode.el: Likewise.
14411 * progmodes/python.el: Likewise.
14412
14413 2005-08-27 Eli Zaretskii <eliz@gnu.org>
14414
14415 * simple.el (blink-matching-paren-distance): Document the meaning
14416 of nil value, and allow to customize to nil.
14417
14418 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
14419 command.com, not command.exe.
14420
14421 2005-08-26 John Wiegley <johnw@newartisans.com>
14422
14423 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
14424 code around a bit so that an extraneous nil argument is not added
14425 to a command when no args are given.
14426
14427 * eshell/esh-arg.el (eshell-parse-double-quote): If a
14428 double-quoted argument resolves to nil, return it as an empty
14429 string rather than as nil. This made it impossible to pass "" to
14430 a shell script as a null string argument.
14431
14432 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
14433
14434 * outline.el (outline-invent-heading): New fun.
14435 (outline-promote, outline-demote): Use it.
14436 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
14437 (outline-end-of-subtree): Remove unused var `opoint'.
14438
14439 2005-08-26 David Reitter <david.reitter@gmail.com>
14440
14441 * menu-bar.el (truncate-lines, write-file, print-buffer)
14442 (ps-print-buffer-faces, ps-print-buffer, split-window):
14443 Disable menu items when the frame they refer to is invisible, or when
14444 they refer to a buffer and the minibuffer is selected.
14445
14446 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
14447
14448 * progmodes/flymake.el (flymake-highlight-err-lines):
14449 Use save-excursion around flymake-highlight-line to preserve point.
14450
14451 2005-08-26 Eli Zaretskii <eliz@gnu.org>
14452
14453 * progmodes/octave-mod.el: Change Author and Maintainer address.
14454 (octave-maintainer-address): Change Kurt's email address.
14455 * progmodes/octave-inf.el: Change Author and Maintainer address.
14456 * progmodes/octave-hlp.el: Change Author and Maintainer address.
14457
14458 2005-08-26 Kim F. Storm <storm@cua.dk>
14459
14460 * subr.el (version-list-<, version-list-<=, version-list-=):
14461 Rename from integer-list-*.
14462 (version-list-not-zero): Likewise. Fix while loop.
14463 (version=): Use version-list-= instead of string-equal.
14464
14465 2005-08-26 Richard M. Stallman <rms@gnu.org>
14466
14467 * outline.el (outline-promote): Try shortening the heading.
14468 As last resort, read the heading to use.
14469 (outline-demote): As last resort, read the heading to use.
14470
14471 2005-08-26 Romain Francoise <romain@orebokech.com>
14472
14473 * progmodes/compile.el (compilation-start): Doc fix.
14474
14475 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
14476 (antlr-font-lock-additional-keywords): Fix reference to
14477 `antlr-font-lock-literal-regexp' erroneously changed during the
14478 mass face rename.
14479 (antlr-run-tool): Use `compilation-start'.
14480
14481 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
14482 instead of the obsolete `compile-internal'.
14483
14484 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
14485
14486 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
14487 (number, original-date):
14488 * calendar/cal-china.el (date):
14489 * calendar/cal-coptic.el (date):
14490 * calendar/cal-french.el (date):
14491 * calendar/cal-hebrew.el (date, entry, number, original-date):
14492 * calendar/cal-islam.el (date, number, original-date):
14493 * calendar/cal-iso.el (date):
14494 * calendar/cal-julian.el (date):
14495 * calendar/cal-mayan.el (date):
14496 * calendar/cal-menu.el (date, event):
14497 * calendar/cal-persia.el (date):
14498 * calendar/lunar.el (date):
14499 * calendar/solar.el (date): Add defvars.
14500
14501 * emerge.el:
14502 * ibuffer.el:
14503 * info-xref.el:
14504 * obsolete/bg-mouse.el:
14505 * obsolete/sun-curs.el:
14506 * obsolete/swedish.el: Move the `defvar's to the top level.
14507
14508 * smerge-mode.el (smerge-refined-change): Add :group.
14509
14510 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
14511
14512 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
14513 (smerge-keep-n): Remove props.
14514 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
14515 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
14516 now that it's done in smerge-keep-n.
14517 (smerge-refined-change): New face.
14518 (smerge-refine-chopup-region, smerge-refine-highlight-change)
14519 (smerge-refine): New funs.
14520 (smerge-basic-map): Bind smerge-refine.
14521
14522 2005-08-25 Juri Linkov <juri@jurta.org>
14523
14524 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
14525 compilation-process-setup-function and compilation-disable-input
14526 in grep-mode instead of let-bindings in grep.
14527
14528 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
14529 Delete "Automatic File De/compression" (auto-compression-mode).
14530
14531 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
14532
14533 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
14534 Silence warning about non-existent variable.
14535
14536 2005-08-25 Richard M. Stallman <rms@gnu.org>
14537
14538 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
14539 Rename "Describe Key" to "Describe Key or Mouse Operation".
14540
14541 * mail/mailalias.el (build-mail-aliases): Delete comments
14542 from the contents before processing them.
14543
14544 * isearch.el (isearch-edit-string): Erase the Search prompt
14545 if user enters an empty string and there is no default.
14546
14547 * comint.el (comint-file-name-prefix): Add autoload.
14548
14549 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
14550
14551 * subr.el (play-sound): Rearrange to avoid warning.
14552
14553 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
14554
14555 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
14556 New hook.
14557 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
14558
14559 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
14560
14561 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
14562
14563 * custom.el (custom-theme-set-variables): Sort minor modes last.
14564
14565 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14566
14567 * subr.el (version-separator, version-regexp-alist): New vars used by
14568 version comparison funs.
14569 (integer-list-<, integer-list-=, integer-list-<=)
14570 (integer-list-not-zero): New funs for integer list comparison.
14571 (version-to-list, version=, version<, version<=): New funs for version
14572 comparison.
14573
14574 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
14575
14576 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
14577 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
14578 time to silence the byte-compiler.
14579
14580 * ibuffer.el (ibuffer-compile-make-eliding-form)
14581 (ibuffer-check-formats): Use `with-no-warnings' to hide references
14582 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
14583 so it's silly to get warnings for it).
14584 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
14585 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
14586 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
14587 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
14588 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
14589 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
14590 Defvar at compile time.
14591 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
14592 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
14593 Declare them before use.
14594
14595 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
14596 (info-xref-good, info-xref-bad): Defvar at compile time.
14597
14598 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
14599 Use `let*' instead of `let'.
14600
14601 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
14602 (*mouse-y*, menu, char): Defvar at compile time.
14603 (sc::menu): Declare it before use.
14604 (sc::pack-one-line): Use `let', not `let*'.
14605
14606 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
14607 (mail-send-hook): Defvar at compile time.
14608
14609 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
14610 Defvar at compile time.
14611
14612 * term/sun-mouse.el (current-global-mousemap)
14613 (current-local-mousemap): Declare them before use.
14614
14615 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
14616
14617 * bookmark.el (bookmark-after-jump-hook): New hook.
14618 (bookmark-jump): Run `bookmark-after-jump-hook'.
14619
14620 2005-08-23 Juri Linkov <juri@jurta.org>
14621
14622 * faces.el (minibuffer-prompt): Doc fix.
14623
14624 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
14625
14626 * progmodes/xscheme.el: Trivial changes to silence warnings.
14627 (xscheme-previous-mode, xscheme-previous-process-state):
14628 Add defvars.
14629 (xscheme-last-input-end, xscheme-process-command-line)
14630 (xscheme-process-name, xscheme-buffer-name)
14631 (xscheme-expressions-ring-max, xscheme-expressions-ring)
14632 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
14633 (xscheme-control-g-synchronization-p)
14634 (xscheme-control-g-disabled-p, xscheme-string-receiver)
14635 (default-xscheme-runlight, xscheme-runlight)
14636 (xscheme-runlight-string, xscheme-process-filter-state)
14637 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
14638 Move to beginning of file.
14639 (scheme-interaction-mode-commands-alist)
14640 (scheme-interaction-mode-map, scheme-debugger-mode-map):
14641 Declare them before use. Note: the initialization code for the variables
14642 has not been moved because it uses functions that reference the variables.
14643 (xscheme-control-g-message-string, xscheme-process-filter-alist)
14644 (xscheme-prompt-for-expression-map): Declare them before use.
14645 (scheme-debugger-mode-commands): "?\ " -> "?\s".
14646
14647 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
14648
14649 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
14650
14651 2005-08-22 Juri Linkov <juri@jurta.org>
14652
14653 * faces.el (set-face-underline): Delete this duplicate function
14654 and make an obsolete alias to set-face-underline-p.
14655 (set-face-underline-p): Use docstring of set-face-underline.
14656 (describe-face): Create hyperlink to parent face.
14657
14658 * info.el (Info-insert-dir): Use save-excursion around
14659 insert-buffer-substring.
14660 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
14661 (Info-escape-percent): Delete function.
14662 (Info-fontify-node): Replace Info-escape-percent by
14663 replace-regexp-in-string with REP arg set to lambda that
14664 duplicates `%' and preserves text properties.
14665
14666 * progmodes/compile.el (compilation-disable-input): Doc fix.
14667 (define-compilation-mode): Doc fix and refill.
14668 (kill-compilation): Use `mode-name' in the error message.
14669 (compilation-find-file): Use `compilation-error' in the
14670 read-file-name's prompt.
14671
14672 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
14673
14674 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
14675 (smerge-auto-leave): Make undo re-enable the mode.
14676 (debug-ignored-errors): Add the user-error of impossible resolution.
14677 (smerge-resolve): Move things around a bit, in preparation for later.
14678 (smerge-diff): Don't fail if the buffer has no associated file.
14679 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
14680 (smerge-conflict-overlay): New function.
14681 (smerge-match-conflict): Don't add text properties here.
14682 (smerge-find-conflict): Instead, add an overlay here.
14683 Also check for the case where we're inside a conflict already, so as to
14684 obviate the need for font-lock-multiline, which is unbearably slow with
14685 large conflicts and ciomplex font-lock patterns.
14686 (smerge-remove-props): Remove overlay rather than text-properties.
14687 (smerge-mode): Don't set font-lock-multiline.
14688 Remove overlays when turned off.
14689
14690 2005-08-21 Kim F. Storm <storm@cua.dk>
14691
14692 * ido.el (ido-ignore-item-p): Use save-match-data.
14693 Bind case-fold-search to ido-case-fold locally.
14694
14695 2005-08-20 Richard M. Stallman <rms@gnu.org>
14696
14697 * files.el (normal-mode): If font lock is on, turn it off and on.
14698
14699 * subr.el (replace-regexp-in-string): Doc fix.
14700
14701 * startup.el (command-line-1): Don't suppress startup screen
14702 due to existing processes.
14703
14704 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
14705
14706 * progmodes/compile.el (compilation-disable-input): Default to nil.
14707
14708 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
14709
14710 * progmodes/compile.el (compilation-disable-input): New defcustom.
14711 (compilation-start): If compilation-disable-input is non-nil, send
14712 EOF to the compilation process.
14713
14714 2005-08-20 Eli Zaretskii <eliz@gnu.org>
14715
14716 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
14717 Run the argument of tex-shell-cd-command through
14718 convert-standard-filename, to get the correct style of slashes on
14719 Windows, and enclose the result in quotes, in case the file name
14720 includes whitespace or other special characters.
14721
14722 2005-08-19 Andreas Schwab <schwab@suse.de>
14723
14724 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
14725 process.
14726
14727 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
14728
14729 * cus-start.el (minibuffer-prompt-properties): Correct typo.
14730
14731 2005-08-18 Kim F. Storm <storm@cua.dk>
14732
14733 * scroll-lock.el: Fix errors due to incorrect line wrapping.
14734
14735 2005-08-18 Richard M. Stallman <rms@gnu.org>
14736
14737 * scroll-lock.el: New file.
14738
14739 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
14740
14741 * dired.el (dired-move-to-end-of-filename):
14742 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
14743
14744 2005-08-18 Kim F. Storm <storm@cua.dk>
14745
14746 * ido.el (ido-everywhere): Fix defcustom :set function to disable
14747 rather than toggle mode when custom value is nil.
14748 (ido-everywhere): Fix defun doc string.
14749
14750 2005-08-17 Richard M. Stallman <rms@gnu.org>
14751
14752 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
14753 as tag instead of "Inviolable".
14754
14755 2005-08-17 Kim F. Storm <storm@cua.dk>
14756
14757 * windmove.el (windmove-coordinates-of-position): Remove.
14758 (windmove-coordinates-of-window-position): Remove.
14759 (windmove-reference-loc): Use posn-at-point instead.
14760
14761 * subr.el (insert-for-yank-1): Doc fix.
14762
14763 * ido.el (ido-enter-matching-directory): Rename from
14764 ido-enter-single-matching-directory. Change `slash' choice to
14765 `only'. Add `first' choice.
14766 (ido-exhibit): Adapt to above changes.
14767
14768 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
14769
14770 * Makefile.in: Expand comment about building loaddefs.el.
14771
14772 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
14773
14774 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
14775 Comment use of defadvice.
14776
14777 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
14778
14779 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
14780
14781 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
14782 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
14783 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
14784 * progmodes/idlw-shell.el, progmodes/ld-script.el,
14785 * progmodes/which-func.el, ruler-mode.el, strokes.el,
14786 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
14787 for backward compatibility for faces that did not appear in the
14788 previous Emacs release.
14789
14790 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
14791
14792 2005-08-15 Kim F. Storm <storm@cua.dk>
14793
14794 * emulation/cua-base.el (cua-delete-region): Return t if
14795 deleted region was non-empty.
14796 (cua-replace-region): Inhibit overwrite-mode for
14797 self-insert-command if replaced region was non-empty.
14798 (cua--explicit-region-start, cua--status-string): Make them
14799 buffer-local at top-level...
14800 (cua-mode): ...rather than when mode is enabled.
14801
14802 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
14803
14804 * progmodes/vhdl-mode.el (vhdl-emacs-21):
14805 Set t for Emacs 21, 22, and so on.
14806
14807 2005-08-15 David Ponce <david@dponce.com>
14808
14809 * tree-widget.el: Update Commentary header.
14810 (tree-widget-theme): Doc fix.
14811 (tree-widget-space-width): New option.
14812 (tree-widget-image-properties): Look up in the default theme too.
14813 (tree-widget--cursors): Only for images with arrow pointer shape.
14814 (tree-widget-lookup-image): Pointer shape is hand by default.
14815 (tree-widget-icon): Rename generic icon widget from
14816 `tree-widget-control'.
14817 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
14818 derive from `tree-widget-icon'.
14819 (tree-widget-handle): Improve default look and feel of the text
14820 representation.
14821 (tree-widget): Rename :*-control properties to :*-icon properties.
14822 Add :action and :help-echo properties.
14823 (tree-widget-after-toggle-functions): Move.
14824 (tree-widget-close-node, tree-widget-open-node): Remove.
14825 (tree-widget-before-create-icon-functions): New hook.
14826 (tree-widget-value-create): Update to allow customization of icons
14827 and nodes at run-time via that new hook.
14828 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
14829 (tree-widget-icon-action, tree-widget-icon-help-echo)
14830 (tree-widget-action, tree-widget-help-echo): New functions.
14831
14832 2005-08-15 Kim F. Storm <storm@cua.dk>
14833
14834 * ido.el (ido-buffer-internal): Use with-no-warnings.
14835 (ido-make-merged-file-list): Use while-no-input.
14836
14837 2005-08-15 Richard M. Stallman <rms@gnu.org>
14838
14839 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
14840 (flyspell-large-region): Fix doc and custom type.
14841
14842 2005-08-14 Richard M. Stallman <rms@gnu.org>
14843
14844 * files.el (interpreter-mode-alist): Doc fix.
14845
14846 * mail/rmail.el (rmail-nonignored-headers): New variable.
14847 (rmail-clear-headers): Use it.
14848 (rmail-reply): Better handling of mail-followup-to header.
14849
14850 * progmodes/sh-script.el (sh-font-lock-keywords-var):
14851 Rename variable from sh-font-lock-keywords. In the `shell' entry,
14852 don't try to refer to executable-font-lock-keywords.
14853 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
14854 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
14855 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
14856 (sh-mode): Set comment-start-skip, local-abbrev-table,
14857 imenu-case-fold-search.
14858 (sh-set-shell): Don't set them here.
14859 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
14860 Don't cache the results in the original alist; don't ever modify
14861 that alist.
14862
14863 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
14864
14865 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
14866 empty.
14867
14868 2005-08-15 Andreas Schwab <schwab@suse.de>
14869
14870 * desktop.el: Put autoload cookie at risky-local-variable declarations.
14871
14872 * dired.el, info.el, mail/rmail.el: Revert last change.
14873
14874 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
14875
14876 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
14877 modification in `eval-after-load' form.
14878 * info.el: Likewise.
14879 * mail/rmail.el: Likewise.
14880
14881 2005-08-14 Juri Linkov <juri@jurta.org>
14882
14883 * progmodes/compile.el (compilation-mode-font-lock-keywords):
14884 Remove highlighting of "Compilation started". Highlight only
14885 the word "finished" in "Compilation finished". Add highlighting
14886 of "interrupt", "killed", "terminated" and the exit code.
14887 (compilation-start): Add newline after header. Use exactly the
14888 same time stamp format as the finishing message.
14889 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
14890
14891 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
14892 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
14893 Add highlighting of "interrupt", "killed", "terminated".
14894
14895 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
14896 enabled and the current command is self-insert-command, call it
14897 explicitly with overwrite-mode bound to nil, to not allow it
14898 to delete the character after the selected region.
14899
14900 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
14901
14902 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
14903 move-end-of-line, end-of-line, and beginning-of-line to the list
14904 of commands after which the echo area is updated.
14905
14906 2005-08-12 Eli Zaretskii <eliz@gnu.org>
14907
14908 * cus-edit.el (custom-save-all, custom-save-delete):
14909 Bind recentf-exclude to exclude custom-file.
14910
14911 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
14912
14913 * mail/rmailsum.el (rmail-summary-end-of-message): New command
14914 to go to the bottom of the mail message. Added to
14915 `rmail-summary-mode-map' with key "/".
14916 (rmail-summary-show-message): New (internal) function for use by
14917 both `rmail-summary-beginning/end-of-message'.
14918 (rmail-summary-beginning-of-message): Change to use
14919 rmail-summary-show-message.
14920
14921 * mail/rmail.el (rmail-end-of-message): New command to go to the
14922 end of the current message. Added to `rmail-mode-map' with key "/".
14923 (rmail-beginning-of-message): Fix to work as documented.
14924 (rmail-mode): Change documentation.
14925
14926 * progmodes/compile.el (compilation-start): Add the line
14927 "Compilation started" with compilation start time.
14928 (compilation-mode-font-lock-keywords): Add `started' to keywords.
14929
14930 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
14931
14932 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
14933 of menu items.
14934
14935 2005-08-11 Richard M. Stallman <rms@gnu.org>
14936
14937 * simple.el (pop-global-mark): Reverse test of widen-automatically.
14938
14939 * battery.el (battery-status-function): Don't use ignore-errors.
14940
14941 2005-08-11 Lute Kamstra <lute@gnu.org>
14942
14943 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
14944 define-obsolete-variable-alias.
14945
14946 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
14947
14948 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
14949 (ange-ftp-send-cmd): Revert last change, and expand
14950 the comment explaining the problem.
14951
14952 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
14953
14954 * ldefs-boot.el: Update.
14955
14956 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
14957 item to "Time, Load and Mail". Change help echo text.
14958
14959 * time.el (display-time-use-mail-icon, display-time-format)
14960 (display-time-string-forms): Shorten first line of docstrings.
14961
14962 2005-08-10 Lars Hansen <larsh@soem.dk>
14963
14964 * desktop.el (desktop-buffer-mode-handlers):
14965 Make non-customizable. Add autoload cookie. Change initial value to
14966 nil; add elements in respective modules instead. Fix doc string.
14967 (desktop-load-file): New function.
14968 (desktop-minor-mode-handlers): New autoloaded variable.
14969 (desktop-create-buffer): Call minor mode handlers.
14970 Use desktop-load-file to load major and minor mode modules prior to
14971 checking for a handler.
14972 (desktop-save): Don't add nil to desktop-minor-modes for minor
14973 modes with nil function in desktop-minor-mode-table. Don't delete
14974 desktop file before rewriting it.
14975 (desktop-locals-to-save): Add autoload cookie. Don't make
14976 automatically buffer-local. Add variables column-number-mode,
14977 size-indication-mode, indent-tabs-mode,
14978 indicate-buffer-boundaries, indicate-empty-lines and
14979 show-trailing-whitespace.
14980 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
14981 regexps. Don't use desktop-clear-preserve-buffers-regexp.
14982 (desktop-clear-preserve-buffers-regexp): Delete.
14983 (desktop-clear-preserve-buffers): Update initial value and docstring.
14984 (desktop-save-buffer): Fix doc string.
14985
14986 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
14987 (hilit-chg-desktop-restore): New function.
14988 (highlight-changes-mode): Add highlight-changes-mode to
14989 desktop-locals-to-save.
14990
14991 * dired.el: Add handler to desktop-buffer-mode-handlers.
14992 (dired-restore-desktop-buffer): Remove autoload cookie.
14993 (dired-mode): Add autoload cookie.
14994
14995 * info.el: Add handler to desktop-buffer-mode-handlers.
14996 (Info-restore-desktop-buffer): Remove autoload cookie.
14997 (Info-mode): Add autoload cookie.
14998
14999 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
15000 (mh-restore-desktop-buffer): Remove autoload cookie.
15001 (mh-folder-mode): Add autoload cookie.
15002
15003 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
15004 (rmail-restore-desktop-buffer): Remove autoload cookie.
15005
15006 2005-08-11 Masatake YAMATO <jet@gyve.org>
15007
15008 * hexl.el (hexl-address-region):
15009 (hexl-ascii-region, hexl-font-lock-keywords):
15010 (hexl-highlight-line-range): Use the term "region"
15011 instead of "area" for consistency with the other symbols
15012 defined in hexl.el.
15013
15014 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
15015
15016 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
15017 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
15018 out by Juri Linkov). Add `display-battery-mode'.
15019
15020 2005-08-09 Juri Linkov <juri@jurta.org>
15021
15022 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15023 Remove `-text' from face variable names.
15024 (compilation-error-file-name, compilation-warning-file-name)
15025 (compilation-info-file-name): Delete faces.
15026 (compilation-line-number, compilation-column-number):
15027 Remove face underlining.
15028 (compilation-message-face): Set to `underline' value by default.
15029 (compilation-error-face, compilation-warning-face)
15030 (compilation-info-face): Remove `-file-name' from face names.
15031 (compilation-error-text-face, compilation-warning-text-face)
15032 (compilation-info-text-face): Delete face variables.
15033 (compilation-text-face): Delete function.
15034
15035 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
15036 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
15037 (grep-error-face): Set to `compilation-error' instead of
15038 `compilation-error-face' (which is redefined to `grep-hit-face' in
15039 grep buffers).
15040 (grep-mode-font-lock-keywords): Remove `-text' from face variable
15041 names. Use `grep-error-face' instead of `compilation-error-text-face'.
15042
15043 * dired-aux.el (dired-do-query-replace-regexp):
15044 Use `query-replace-read-args'.
15045
15046 * replace.el (query-replace-read-from, query-replace-read-to)
15047 (query-replace-read-args): Rename arg `string' to `prompt'.
15048
15049 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
15050
15051 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
15052
15053 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
15054 uploading files.
15055 (ange-ftp-canonize-filename): Handle file names beginning with ~
15056 correctly.
15057
15058 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
15059
15060 * textmodes/fill.el (canonically-space-region)
15061 (fill-context-prefix, fill-french-nobreak-p)
15062 (fill-delete-newlines, fill-comment-paragraph)
15063 (justify-current-line): "?\ " -> "?\s".
15064
15065 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
15066
15067 * textmodes/fill.el (fill-nonuniform-paragraphs):
15068 Improve argument/docstring consistency.
15069
15070 2005-08-09 Richard M. Stallman <rms@gnu.org>
15071
15072 * textmodes/ispell.el (ispell-word): More fboundp checks.
15073
15074 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
15075 (find-file-noselect-1): Call it here, only if RAWFILE.
15076 (normal-mode): Always set some major mode.
15077 (save-some-buffers-action-alist): Change some explanation strings.
15078 (file-name-non-special): In the `quote' method, use unwind-protect.
15079
15080 2005-08-09 Magnus Henoch <mange@freemail.hu>
15081
15082 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
15083 (ispell-have-aspell-dictionaries): New variable.
15084 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
15085 (ispell-get-aspell-config-value): New function.
15086 (ispell-aspell-find-dictionary): New function.
15087 (ispell-aspell-add-aliases): New function.
15088 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
15089 appropriate. Don't look for ispell dictionaries if we use aspell.
15090 (ispell-menu-map): Don't build a submenu of dictionaries.
15091
15092 2005-08-09 Richard M. Stallman <rms@gnu.org>
15093
15094 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
15095 (sql-read-passwd): Use read-passwd.
15096
15097 * progmodes/idlw-toolbar.el (idlwave-toolbar)
15098 (idlwave-toolbar-is-possible): Add defvars.
15099
15100 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
15101 Avoid warnings.
15102
15103 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
15104 (idlwave-system-class-info, idlwave-executive-commands-alist):
15105 Use defvar.
15106
15107 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
15108
15109 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
15110 Avoid warnings.
15111
15112 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
15113 and content-type: headers.
15114
15115 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
15116
15117 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
15118 and rename some of them to be more self-explanatory.
15119
15120 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
15121
15122 * startup.el (command-line-1): Implement -scriptload.
15123
15124 * replace.el (occur-engine): Initial *Occur* output not undoable.
15125
15126 * menu-bar.el (menu-bar-file-menu): Rename some menu items
15127 and improve help strings.
15128
15129 * isearch.el (isearch-repeat): When changing direction,
15130 mark search successful.
15131
15132 * ediff-init.el: Use (featurep 'xemacs).
15133
15134 * comint.el (send-invisible): Identify buffer, if not selected.
15135
15136 * align.el: Delete autoload for c-guess-basic-syntax.
15137
15138 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
15139
15140 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
15141 Improve argument/docstring consistency. Doc fixes.
15142 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
15143 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
15144 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
15145 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
15146 (r2bv-organization, r2bv-pages, r2bv-primary-author)
15147 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
15148 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
15149 Defvar at compile time.
15150
15151 2005-08-09 Juri Linkov <juri@jurta.org>
15152
15153 * info.el: Replace `info' with upper-case `Info' where appropriate.
15154 (info-title-1, info-title-2, info-title-3, info-title-4)
15155 (info-menu-header): Move up face definitions.
15156 (info-menu-star): Rename from `info-menu-5'.
15157 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
15158 (Info-fontify-visited-nodes): Fix docstring.
15159 (Info-hide-note-references): Fix docstring.
15160 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
15161 menu items in the same way as on cross-references.
15162 (info-apropos): Fix sorting order and formatting to be like in the
15163 stand-alone Info browser. Display error messages for 1 sec.
15164 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
15165 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
15166 from the menu bar.
15167 (Info-insert-dir): Restore point after calling
15168 `insert-buffer-substring'.
15169
15170 2005-08-08 Richard M. Stallman <rms@gnu.org>
15171
15172 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
15173 (recompute-lucid-menubar): Add defvars.
15174
15175 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
15176
15177 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
15178
15179 * net/net-utils.el (run-dig): Rename from `dig'.
15180
15181 * play/gametree.el (gametree-mode): Use make-local-variable,
15182 not make-variable-buffer-local.
15183
15184 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
15185
15186 * ansi-color.el (ansi-color-make-extent)
15187 (ansi-color-set-extent-face): Use fboundp, not functionp.
15188
15189 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
15190 not make-variable-buffer-local.
15191
15192 * bookmark.el (Info-current-file): Add defvar.
15193 (bookmark-jump-noselect): Use with-no-warnings.
15194
15195 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
15196
15197 * ebuff-menu.el (Helper-return-blurb): Add defvar.
15198
15199 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
15200
15201 * find-file.el (ada-procedure-start-regexp)
15202 (ada-package-start-regexp): Add defvars.
15203
15204 * info.el (Info-insert-dir): Use insert-buffer-substring.
15205
15206 * xml.el (xml-att-def-re): Add defvar.
15207
15208 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
15209 calling convention.
15210
15211 * subr.el (while-no-input): Return t if there is input.
15212
15213 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
15214
15215 * cus-start.el (all): Add `overflow-newline-into-fringe'.
15216
15217 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
15218
15219 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
15220 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
15221
15222 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
15223
15224 * cmuscheme.el (scheme-start-file): Replace reference to
15225 `user-emacs-directory' by "~/.emacs.d/".
15226
15227 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
15228
15229 * info.el (Info-dir-remove-duplicates): Avoid case folding
15230 in loop; instead, keep downcased strings for comparison.
15231 Suggested by Helmut Eller.
15232
15233 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
15234
15235 Sync with Tramp 2.0.50.
15236
15237 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
15238 XEmacs case; not necessary anymore.
15239 (tramp-user-regexp): Allow "@" as part of user name.
15240 (tramp-handle-set-visited-file-modtime)
15241 (tramp-handle-insert-file-contents)
15242 (tramp-handle-write-region): No special handling for
15243 `last-coding-system-used, because this is done in
15244 `tramp-accept-process-output' now.
15245 (tramp-accept-process-output): New defun.
15246 (tramp-process-one-action, tramp-process-one-multi-action)
15247 (tramp-wait-for-regexp, tramp-wait-for-output)
15248 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
15249 Howells <dhowells@redhat.com>.
15250 (clear-visited-file-modtime): Defadvice removed. The check for
15251 unset buffer's modtime does not need to be based on
15252 `tramp-buffer-file-attributes'. Suggested by RMS.
15253 (tramp-message): Insert "\n" if not being at beginning of line.
15254 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
15255 sequence with same logic.
15256 (tramp-completion-handle-expand-file-name): Discard call of
15257 `tramp-drop-volume-letter'. It is not necessary, and there have
15258 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
15259 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
15260 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
15261 should always be visible.
15262 (tramp-handle-insert-directory, tramp-setup-complete)
15263 (tramp-set-process-query-on-exit-flag)
15264 (tramp-append-tramp-buffers): Pacify byte-compiler.
15265 (tramp-bug): Delete non-existing variables from list.
15266 Apply `tramp-load-report-modules' as pre-hook.
15267 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
15268 `shell-prompt-pattern' because of non-7bit characters.
15269 Reported by Sebastian Luque <sluque@mun.ca>.
15270 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
15271 (tramp-match-string-list): Remove function.
15272 (tramp-wait-for-regexp): Remove call of that function.
15273 Suggested by Kim F. Storm <storm@cua.dk>.
15274 (tramp-set-auto-save-file-modes): Use octal integer code #o600
15275 instead of octal character code ?\600. The latter resulted in a
15276 syntax error with XEmacs.
15277
15278 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
15279 XEmacs case; not necessary anymore.
15280 (tramp-smb-handle-write-region): No special handling for
15281 `last-coding-system-used, because this is done in
15282 `tramp-accept-process-output' now.
15283 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
15284
15285 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
15286
15287 * wid-edit.el (widget-choice-value-create):
15288 Unconditionally respect user choice. Set :explicit-choice back to nil
15289 when no longer needed.
15290 (widget-choice-action): Unconditionally respect user choice.
15291 Eliminate :explicit-choice-value.
15292
15293 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
15294
15295 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
15296 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
15297 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
15298 running new function `toggle-indicate-empty-lines'.
15299 Rename "Customize" item to "Customize fringe".
15300 Rename "Indicators" item to "Buffer boundaries" and change help echo.
15301 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
15302 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
15303 Delete "Empty lines only" item.
15304 (menu-bar-showhide-fringe-ind-customize): New function.
15305 (menu-bar-showhide-fringe-ind-mixed)
15306 (menu-bar-showhide-fringe-ind-box)
15307 (menu-bar-showhide-fringe-ind-right)
15308 (menu-bar-showhide-fringe-ind-left)
15309 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
15310 instead of `fringe-indicators'.
15311
15312 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
15313
15314 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
15315 Change the date of last update.
15316
15317 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
15318
15319 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
15320 (viper-exec-yank, viper-put-back): Don't display modification msg
15321 if in the minibuffer.
15322
15323 * viper-init.el (viper-replace-overlay-cursor-color)
15324 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
15325 Make variables frame local.
15326
15327 * viper-util.el (viper-append-filter-alist): Use append instead of
15328 nconc.
15329
15330 * viper.el (viper-vi-state-mode-list)
15331 (viper-emacs-state-mode-list): Move help-mode and
15332 completion-list-mode from the first list to the second.
15333 (viper-mode): Docstring.
15334 (viper-go-away, viper-non-hook-settings): Don't localize
15335 minor-mode-alist in newer Emacsen. Add advice to
15336 set-cursor-color. Don't bind "\C-c\\".
15337
15338 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
15339
15340 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
15341 (scheme-macro-expand-command): New user options.
15342 (scheme-trace-procedure, scheme-expand-current-form): New commands.
15343 (scheme-form-at-point, scheme-start-file)
15344 (scheme-interactively-start-process): New functions.
15345 (scheme-get-process): New function, extracted from `scheme-proc'.
15346 (run-scheme): Call `scheme-start-file' to get start file, and pass
15347 it to `make-comint'.
15348 (switch-to-scheme, scheme-proc):
15349 Call `scheme-interactively-start-process' if no Scheme buffer/process
15350 is available.
15351
15352 2005-08-06 Juri Linkov <juri@jurta.org>
15353
15354 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15355 Use `compilation-text-face', `compilation-info-text-face' and
15356 `compilation-error-text-face' instead of `font-lock-keyword-face'.
15357 (compilation-error): New face.
15358 (compilation-error-file-name): Inherit from
15359 `compilation-error' instead of `font-lock-warning-face'.
15360 (compilation-warning-file-name): Inherit from
15361 `compilation-warning' instead of `font-lock-warning-face'.
15362 (compilation-info, compilation-error-file-name)
15363 (compilation-warning-file-name, compilation-info-file-name)
15364 (compilation-line-number, compilation-column-number): Doc fix.
15365 (compilation-error-text-face, compilation-warning-text-face)
15366 (compilation-info-text-face): New face variables.
15367 (compilation-line-face, compilation-column-face)
15368 (compilation-enter-directory-face)
15369 (compilation-leave-directory-face): Doc fix.
15370 (compilation-text-face): New function.
15371
15372 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
15373 instead of 1 to display binary file names as info file links.
15374 (grep-error-face): Use `compilation-error-face' instead of
15375 `font-lock-keyword-face'.
15376 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
15377 and `compilation-warning-text-face' instead of
15378 `font-lock-keyword-face'. Use `compilation-error-text-face'
15379 instead of `grep-error-face'.
15380
15381 2005-08-05 Kenichi Handa <handa@m17n.org>
15382
15383 * international/code-pages.el: Add autoload cookies for all coding
15384 systems.
15385
15386 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
15387
15388 * cus-start.el (all): Put undo.c where it alphabetically belongs.
15389
15390 2005-08-04 Juri Linkov <juri@jurta.org>
15391
15392 * progmodes/compile.el (compilation-mode-map):
15393 * progmodes/grep.el (grep-mode-map):
15394 Bind TAB to `compilation-next-error' and [backtab] to
15395 `compilation-previous-error'.
15396
15397 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
15398 matching line numbers, column numbers and their ranges with regexp
15399 matching only line numbers.
15400 (grep-context-face): New face variable.
15401 (grep-mode-font-lock-keywords): Use it.
15402
15403 * faces.el (read-face-name): Delete duplicate faces.
15404
15405 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
15406
15407 * thumbs.el (thumbs-find-image): Don't make variables
15408 automatically buffer local.
15409 (thumbs-current-tmp-filename, thumbs-current-image-filename)
15410 (thumbs-image-num): Make automatically buffer local.
15411 (thumbs-show-thumbs-list): Use `make-local-variable', not
15412 `make-variable-buffer-local'.
15413 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
15414
15415 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
15416 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
15417 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
15418 (bother, bye, canyou, chatlst, continue, deathlst, describe)
15419 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
15420 (feelings-about, foullst, found, hello, history, howareyoulst)
15421 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
15422 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
15423 (neglst, obj, object, owner, please, problems, qlist)
15424 (random-adjective, relation, remlst, repetitive-shortness)
15425 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
15426 (shortlst, something, sportslst, stallmanlst, states, subj)
15427 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
15428 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
15429 Defvar at compile time.
15430
15431 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
15432 not `make-variable-buffer-local'.
15433
15434 2005-08-02 Kim F. Storm <storm@cua.dk>
15435
15436 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
15437 rectangle overlay in selected window.
15438
15439 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
15440
15441 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
15442 instead of display group. Make `indicate-buffer-boundaries'
15443 customizable through Custom.
15444
15445 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
15446
15447 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
15448 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
15449 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
15450 (gdb-put-string): Fix typos in docstrings.
15451
15452 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
15453
15454 Update copyright notices of files in progmodes directory for
15455 release of Emacs 22.1.
15456
15457 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
15458
15459 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
15460 Don't barf if the GUD buffer has been killed.
15461
15462 2005-08-01 Kim F. Storm <storm@cua.dk>
15463
15464 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
15465
15466 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
15467
15468 * simple.el (next-error-follow-minor-mode):
15469 make-variable-buffer-local -> make-local-variable.
15470
15471 * emacs-lisp/cl-extra.el: Require CL also when compiling.
15472
15473 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
15474 (byte-compile-form-make-variable-buffer-local): New functions to warn
15475 about misuses of make-variable-buffer-local where make-local-variable
15476 was meant.
15477
15478 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
15479
15480 * bs.el (bs-attributes-list): Doc fix.
15481 (bs): Update url-link.
15482
15483 * desktop.el (desktop-save-buffer): Fix typos in docstring.
15484 (desktop-load-default): Simplify.
15485
15486 * ibuffer.el (ibuffer-columnize-and-insert-list)
15487 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
15488 (ibuffer-unmark-all, ibuffer-toggle-marks)
15489 (ibuffer-unmark-forward, ibuffer-unmark-backward)
15490 (ibuffer-compile-make-format-form, ibuffer-format-column)
15491 (ibuffer-current-buffers-with-marks)
15492 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
15493 (ibuffer): Doc fix.
15494 (ibuffer-mode): Fix typo in docstring.
15495 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
15496 with `define-obsolete-variable-alias'.
15497 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
15498
15499 2005-07-29 Kenichi Handa <handa@m17n.org>
15500
15501 * international/mule-cmds.el (select-message-coding-system):
15502 Be sure to use LF for end-of-line. If no coding system is decided,
15503 return iso-8859-1-unix.
15504
15505 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
15506
15507 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
15508 (ange-ftp-pending-error-line): New vars.
15509 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
15510 to handle the non-fatal no-route-to-host messages.
15511 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
15512
15513 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
15514
15515 * isearch.el (isearch-mode-map, isearch-other-meta-char)
15516 (isearch-quote-char, isearch-printing-char)
15517 (isearch-text-char-description): "?\ " -> "?\s".
15518 (isearch-lazy-highlight-cleanup)
15519 (isearch-lazy-highlight-initial-delay)
15520 (isearch-lazy-highlight-interval)
15521 (isearch-lazy-highlight-max-at-a-time)
15522 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
15523 Declare with define-obsolete-*-alias macros.
15524 (isearch-forward): Fix typo in docstring.
15525 (search-invisible, search-ring-yank-pointer)
15526 (regexp-search-ring-yank-pointer): Doc fixes.
15527
15528 * recentf.el (recentf-menu-append-commands-p): Declare with
15529 `define-obsolete-variable-alias'.
15530 (recentf-max-saved-items, recentf-menu-filter)
15531 (recentf-arrange-by-rule-subfilter): Doc fixes.
15532 (recentf-menu-append-commands-flag)
15533 (recentf-initialize-file-name-history, recentf-expand-file-name)
15534 (recentf-clear-data): Fix typos in docstrings.
15535
15536 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
15537
15538 * progmodes/gdb-ui.el: Smarten comments.
15539 (gdb-info-breakpoints-custom): Use nowarn when finding file.
15540
15541 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
15542
15543 * term/apollo.el (terminal-init-apollo): New function containing
15544 all former top level forms in the file.
15545 * term/bobcat.el (terminal-init-bobcat):
15546 * term/cygwin.el (terminal-init-cygwin):
15547 * term/iris-ansi.el (terminal-init-iris-ansi):
15548 * term/linux.el (terminal-init-linux):
15549 * term/news.el (terminal-init-news):
15550 * term/rxvt.el (terminal-init-rxvt):
15551 * term/sun.el (terminal-init-sun):
15552 * term/tvi970.el (terminal-init-tvi970):
15553 * term/vt100.el (terminal-init-vt100):
15554 * term/vt102.el (terminal-init-vt102):
15555 * term/vt125.el (terminal-init-vt125):
15556 * term/vt200.el (terminal-init-vt200):
15557 * term/vt201.el (terminal-init-vt201):
15558 * term/vt220.el (terminal-init-vt220):
15559 * term/vt240.el (terminal-init-vt240):
15560 * term/vt300.el (terminal-init-vt300):
15561 * term/vt320.el (terminal-init-vt320):
15562 * term/vt400.el (terminal-init-vt400):
15563 * term/vt420.el (terminal-init-vt420):
15564 * term/wyse50.el (terminal-init-wyse50):
15565 * term/xterm.el (terminal-init-xterm): Likewise.
15566
15567 * term/README: Describe the terminal-init-* functionality.
15568
15569 * startup.el (command-line): After loading the terminal initialization
15570 file call the corresponding terminal initialization function.
15571
15572 2005-07-27 Kenichi Handa <handa@m17n.org>
15573
15574 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
15575 negative.
15576
15577 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
15578 (ps-mule-composition-prologue): Fix for the case that
15579 RelativeCompose is false.
15580
15581 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
15582
15583 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
15584
15585 * descr-text.el (describe-char): Handle the case where the list of
15586 chars is displayed in a separate frame.
15587 Be a bit more discriminating when looking for the char.
15588
15589 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
15590
15591 * bookmark.el (bookmark-automatically-show-annotations)
15592 (bookmark-read-annotation-text-func): Doc fixes.
15593 (bookmark-save): Improve argument/docstring consistency.
15594 (bookmark-get-bookmark, bookmark-get-bookmark-record)
15595 (bookmark-alist-from-buffer)
15596 (bookmark-upgrade-file-format-from-0)
15597 (bookmark-grok-file-format-version)
15598 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
15599 (bookmark-read-annotation-mode)
15600 (bookmark-insert-current-bookmark, bookmark-jump)
15601 (bookmark-exit-hook): Fix typos in docstrings.
15602 (bookmark-exit-hooks): Define as obsolete alias.
15603 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
15604 not `bookmark-exit-hooks'. Fix docstring.
15605 (bookmark-bmenu-select): "?\ " -> "?\s".
15606
15607 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
15608
15609 * startup.el (command-line): Fix typo.
15610
15611 2005-07-24 Richard M. Stallman <rms@gnu.org>
15612
15613 * tooltip.el (tooltip-mode): Test emacs-basic-display,
15614 not emacs-quick-startup.
15615
15616 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
15617
15618 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
15619 (reb-next-match, reb-show-subexp): Use `with-selected-window'
15620 instead of `reb-with-current-window'.
15621 (reb-prev-match): Likewise. Also, don't move left if the search
15622 was unsuccessful.
15623 (reb-initialize-buffer): New function.
15624 (re-builder, reb-change-syntax): Use it.
15625
15626 * man.el (Man-goto-page): Make second argument NOERROR optional.
15627
15628 2005-07-23 Richard M. Stallman <rms@gnu.org>
15629
15630 * man.el (Man-bgproc-sentinel): Check here for failure to find
15631 any man page in the output, and report the error here.
15632 (Man-arguments): Make it permanent local.
15633 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
15634 (Man-mode): Pass t for NOERROR.
15635
15636 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
15637 (grep-mode-font-lock-keywords):
15638 Don't use compilation-...-face for messages that are not file names.
15639
15640 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15641 Don't use compilation-...-face for messages that are not file names.
15642
15643 2005-07-22 Juri Linkov <juri@jurta.org>
15644
15645 * startup.el (normal-splash-screen): Update menu name.
15646
15647 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
15648
15649 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
15650
15651 * term/xterm.el: Load term/rxvt if the terminal is actually an
15652 rxvt terminal.
15653 (xterm-rxvt-set-background-mode): Remove, not used anymore.
15654
15655 * term/rxvt.el (function-key-map): Use substitute-key-definition
15656 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
15657
15658 * term/cygwin.el: New file.
15659
15660 2005-07-22 Kim F. Storm <storm@cua.dk>
15661
15662 * image-file.el (insert-image-file, image-file-yank-handler):
15663 Fix last change to maintain a (unique) yank-handler on yanked images.
15664
15665 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
15666
15667 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
15668 of the file size (as in "177B" for 177 bytes). This happens with
15669 "ls -lh" on FreeBSD.
15670
15671 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
15672
15673 * hilit-chg.el (highlight-changes-global-initial-state)
15674 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
15675 (hilit-chg-fixup, highlight-changes-mode):
15676 Fix typos in docstrings.
15677 (highlight-changes-global-modes, highlight-changes-rotate-faces):
15678 Doc fixes.
15679
15680 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
15681
15682 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
15683 mode function using `eval-after-load'.
15684
15685 2005-07-21 Kim F. Storm <storm@cua.dk>
15686
15687 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
15688 included when reporting an emacs crash, and tell about the DEBUG file.
15689
15690 * image-file.el (insert-image-file): Add yank-handler.
15691 (image-file-yank-handler): Yank handler to make unique copies of
15692 images when they are yanked into a buffer next to each other.
15693
15694 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
15695
15696 * comint.el (comint-use-prompt-regexp, comint-send-input)
15697 (comint-source-default, comint-extract-string)
15698 (comint-get-source, comint-word, comint-completion)
15699 (comint-source, comint-prompt-read-only, comint-update-fence):
15700 Fix typos in docstrings.
15701 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
15702 Declare with define-obsolete-*-alias macros.
15703 (comint-previous-matching-input-from-input)
15704 (comint-next-matching-input-from-input)
15705 (comint-previous-matching-input, comint-next-matching-input)
15706 (comint-forward-matching-input):
15707 Improve argument/docstring consistency.
15708
15709 * desktop.el (desktop-clear-preserve-buffers-regexp):
15710 Also preserve the *server* buffer.
15711
15712 * simple.el (clone-indirect-buffer): Doc fix.
15713 (fixup-whitespace, just-one-space)
15714 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
15715 (next-error, next-error-highlight)
15716 (next-error-highlight-no-select, next-error-last-buffer)
15717 (next-error-buffer-p, next-error-find-buffer, next-error)
15718 (previous-error, next-error-no-select, previous-error-no-select)
15719 (open-line, split-line, minibuffer-prompt-width, kill-new)
15720 (binary-overwrite-mode): Fix typos in docstrings.
15721 (set-fill-column): Fix typo in message.
15722
15723 * skeleton.el (skeleton-proxy-new): Doc fix.
15724
15725 * strokes.el (strokes-load-hook): Doc fix.
15726 (strokes-grid-resolution, strokes-get-grid-position)
15727 (strokes-renormalize-to-grid, strokes-read-stroke)
15728 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
15729 (strokes-global-map): Fix typos in docstrings.
15730 (strokes-help): Doc fix. Fix help message and pass it through
15731 `substitute-command-keys'.
15732
15733 * tempo.el (tempo-insert-prompt, tempo-interactive)
15734 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
15735 (tempo-insert-string-functions, tempo-local-tags)
15736 (tempo-define-template, tempo-insert-template)
15737 (tempo-insert-prompt-compat, tempo-is-user-element)
15738 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
15739 Fix typos in docstrings.
15740
15741 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
15742 (vcursor-key-bindings, vcursor-use-vcursor-map)
15743 (vcursor-find-window, vcursor-scroll-down)
15744 (vcursor-disable, vcursor-beginning-of-buffer)
15745 (vcursor-end-of-buffer): Fix typos in docstrings.
15746 (vcursor-relative-move, vcursor-get-char-count):
15747 Improve argument/docstring consistency.
15748
15749 * version.el: "?\ " -> "?\s".
15750
15751 * wid-edit.el (widget-default-create, widget-after-change)
15752 (widget-default-format-handler, widget-checklist-add-item)
15753 (widget-radio-add-item, widget-choose, widget-specify-secret)
15754 (widget-field-value-create, widget-field-value-get)
15755 (widget-editable-list-format-handler)
15756 (widget-editable-list-entry-create, widget-group-value-create)
15757 (widget-documentation-link-add)
15758 (widget-documentation-string-value-create): "?\ " -> "?\s".
15759 (widget-convert-text): Doc fix.
15760 (widget-narrow-to-field, widget-field-find)
15761 (widget-url-link-action, widget-emacs-library-link-action)
15762 (widget-color-notify): Fix typos in docstrings.
15763
15764 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
15765 (x-select-text, set-w32-system-coding-system)
15766 (w32-add-charset-info): Fix typos in docstrings.
15767
15768 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
15769 (cua-enable-cua-keys, cua-use-hyper-key)
15770 (cua-virtual-rectangle-edges): Fix typos in docstrings.
15771 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
15772
15773 * net/tramp.el (tramp-handle-load): Fix typo in error message.
15774
15775 * emacs-lisp/re-builder.el (regexp-builder): Declare with
15776 `defalias' instead of faking it.
15777
15778 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
15779 (eshell-ls-missing, eshell-ls-dired-initial-args)
15780 (eshell-ls-use-in-dired): Fix typos in docstrings.
15781
15782 2005-07-20 Kim F. Storm <storm@cua.dk>
15783
15784 * emulation/cua-base.el (cua-mode): Improve doc string.
15785
15786 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
15787
15788 * abbrev.el (expand-region-abbrevs): Doc fix.
15789 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
15790 Improve argument/docstring consistency.
15791
15792 * arc-mode.el (archive-get-descr, archive-alternate-display):
15793 Doc fixes.
15794 (archive-l-e): Improve argument/docstring consistency.
15795 (archive-tmpdir, archive-unixdate, archive-unixtime)
15796 (archive-chmod-entry): Fix typos in docstrings.
15797 (archive-unflag, archive-unflag-backwards)
15798 (archive-unmark-all-files): "?\ " -> "?\s".
15799
15800 * buff-menu.el (Buffer-menu-unmark): Doc fix.
15801 (Buffer-menu-not-modified, Buffer-menu-execute)
15802 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
15803 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
15804
15805 * composite.el (compose-string, encode-composition-rule)
15806 (compose-last-chars): Fix typos in docstrings.
15807
15808 * desktop.el (desktop-enable, desktop-basefilename):
15809 Declare with `define-obsolete-variable-alias'.
15810 (desktop-internal-v2s): Don't quote keywords.
15811 (desktop-clear): "?\ " -> "?\s".
15812
15813 * dired.el (dired-align-file, dired-flag-backup-files)
15814 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
15815 (dired-listing-switches, dired-ls-F-marks-symlinks)
15816 (dired-dwim-target, dired-load-hook, dired-mode-hook)
15817 (dired-directory, dired-faces, dired, dired-revert)
15818 (dired-mode, dired-summary, dired-view-file)
15819 (dired-copy-filename-as-kill, dired-delete-file)
15820 (dired-no-confirm, dired-unmark-all-marks)
15821 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
15822 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
15823 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
15824 Fix typos in message strings.
15825
15826 * dired-x.el (virtual-dired): Declare with `defalias'.
15827 (dired-mark-unmarked-files, dired-local-variables-file)
15828 (dired-omit-here-always): Doc fix.
15829 (dired-omit-mode, dired-find-subdir)
15830 (dired-enable-local-variables, dired-clean-up-buffers-too)
15831 (dired-extra-startup, dired-mark-extension, dired-jump)
15832 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
15833 (dired-smart-shell-command, dired-guess-shell-alist-user)
15834 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
15835 (dired-x-bind-find-file, dired-x-submit-report):
15836 Fix typos in docstrings.
15837 (dired-mark-unmarked-files): "?\ " -> "?\s".
15838
15839 * dirtrack.el (dirtrack-list): Fix typos in docstring.
15840
15841 * faces.el (describe-face): "?\ " -> "?\s".
15842 (read-all-face-attributes, read-face-font, modify-face)
15843 (face-attr-construct, italic): Fix typos in docstrings.
15844 (frame-update-face-colors): Declare with
15845 `define-obsolete-function-alias'.
15846
15847 * files.el (find-file-noselect, recode-file-name): Doc fixes.
15848 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
15849 (magic-mode-alist, buffer-file-numbers-unique)
15850 (write-file-functions, get-free-disk-space):
15851 Fix typos in docstrings.
15852 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
15853 (write-contents-hooks, write-file-hooks):
15854 Declare with `define-obsolete-variable-alias'.
15855
15856 * forms-d2.el (arch-rj): Fix typo in docstrings.
15857 (arch-tocol): Likewise. "?\ " -> "?\s".
15858
15859 * frame.el (set-frame-font, cursor-in-non-selected-windows):
15860 Fix typo in docstring.
15861 (set-screen-width, set-screen-height): Delete redundant info in
15862 doctrings.
15863 (new-frame, screen-height, screen-width): Declare with
15864 `define-obsolete-function-alias'.
15865 (delete-frame-hook, blink-cursor): Declare with
15866 `define-obsolete-variable-alias'.
15867
15868 * paths.el (prune-directory-list): Fix typos in docstring.
15869
15870 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
15871 (cvs-prefix-get): Fix typos in docstrings.
15872
15873 * ps-print.el (ps-extend-face-list, ps-extend-face)
15874 (ps-print-background-image): Fix typos in docstrings.
15875 (ps-default-fg, ps-default-bg): Doc fixes.
15876
15877 * s-region.el (s-region-bind): Doc fix.
15878 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
15879
15880 * textmodes/org.el (org-table-formula-substitute-names)
15881 (org-table-get-vertical-vector): Doc fixes.
15882 (org-table-recalculate): Remove unused argument to `message'.
15883
15884 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
15885
15886 * textmodes/org.el (org-table-column-names)
15887 (org-table-column-name-regexp)
15888 (org-table-named-field-locations): New variables.
15889 (org-archive-subtree): Protect `this-command' when calling
15890 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
15891 the kill buffer.
15892 (org-complete): Remove fixed-formula completion.
15893 (org-edit-formulas-map): New variable.
15894 (org-table-edit-formulas): New command.
15895 (org-finish-edit-formulas, org-abort-edit-formulas)
15896 (org-show-variable, org-table-get-vertical-vector): New functions.
15897 (org-table-maybe-eval-formula): Handle `:=' fields.
15898 (org-table-get-stored-formulas, org-table-store-formulas)
15899 (org-table-get-formula, org-table-modify-formulas)
15900 (org-table-replace-in-formulas): Handle named field formulas.
15901 (org-table-get-specials): Store locations of named fields.
15902
15903 2005-07-19 Juri Linkov <juri@jurta.org>
15904
15905 * progmodes/grep.el (grep-regexp-alist)
15906 (grep-mode-font-lock-keywords, grep-process-setup):
15907 Use default GNU grep match color "01;31m" instead of "01;41m".
15908 (grep-regexp-alist, grep-mode-font-lock-keywords):
15909 Use `\\[[0-9]*m' instead of `\\[00m'.
15910 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
15911 sgr_start where its handling is more important. Use the real
15912 length of sgr_start instead of constant 8.
15913 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
15914 specially. Delete all remaining escape sequences.
15915 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
15916 (grep-regexp-alist): Make hyperlink only for binary file name
15917 instead of the whole line.
15918 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
15919 (grep-mode): Add autoload.
15920
15921 * emacs-lisp/find-func.el (find-function-regexp):
15922 Add `define-compilation-mode'.
15923
15924 2005-07-19 Juri Linkov <juri@jurta.org>
15925
15926 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
15927 (compare-windows-sync-string-size, compare-windows-recenter)
15928 (compare-windows-highlight, compare-windows): Add version 22.1.
15929 (compare-windows) <defface>: Inherit from lazy-highlight instead
15930 of duplicating its default value.
15931
15932 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
15933 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
15934
15935 * descr-text.el (describe-char): Create link buttons for `charset'
15936 and `code point'. Add the current input method name with a link
15937 button to `to input' field. Print face names of display table
15938 characters in `The display table entry is displayed by' section
15939 instead of printing face-id in the `display' field.
15940 Guess hardcoded faces and create a link button for them.
15941 Skip empty fields when calculating max-width.
15942 Treat `widget-create' specially while inserting strings from the
15943 collected field list.
15944 (describe-char-after): Made obsolete in version 22.1, not 21.5.
15945
15946 * diff-mode.el (diff-file-header): Change foreground color from
15947 yellow to green on light backgrounds.
15948 (diff-context): Inherit from `shadow' only for color/grayscale
15949 with more than 88 colors.
15950 (diff-indicator-removed, diff-indicator-added)
15951 (diff-indicator-changed): New faces.
15952 (diff-font-lock-keywords): Use new faces. Regroup rules.
15953 Add "^---$" for `normal' diff format. Fontify `#' lines with
15954 font-lock-comment-delimiter-face and font-lock-comment-face.
15955 Add `#' to ^[^...] in the rule for `diff-context-face'.
15956
15957 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
15958 a button-like box. Inherit from `highlight' on low colors.
15959 (shadow): Use shades of gray only for color/grayscale with
15960 more than 88 colors. Use green for light backgrounds with
15961 8 colors, and yellow for dark backgrounds with 8 colors.
15962
15963 * font-lock.el (font-lock-regexp-grouping-backslash):
15964 Don't inherit from escape-glyph (use bold for all cases).
15965
15966 * info.el (info-xref-visited): Use light foreground color `violet'
15967 for dark backgrounds instead of dark color `magenta3'.
15968 (info-title-1): Use `yellow' color for dark backgrounds.
15969
15970 * isearch.el (isearch): Use not-too-dark magenta3 instead of
15971 too-light magenta2.
15972
15973 * replace.el (match): Use slightly more light RoyalBlue3 instead
15974 of dark RoyalBlue4.
15975
15976 * wid-edit.el (widget-inactive): Inherit from `shadow'.
15977
15978 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
15979
15980 * novice.el (disabled-command-hook): Declare it with
15981 `define-obsolete-variable-alias'.
15982
15983 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
15984 (desktop-buffer-misc-functions, desktop-buffer-handlers)
15985 (desktop-load-default): Add release to obsolescence info.
15986 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
15987 (desktop-append-buffer-args, desktop-read):
15988 Fix typos in docstrings.
15989 (desktop-kill): Fix typo in message.
15990 (desktop-save): Doc fix.
15991
15992 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
15993
15994 * viper-cmd.el (viper-escape-to-state): Bug fix.
15995 (viper-envelop-ESC-key): Change the definition of fast
15996 keysequence so it'll work with keyboard macros.
15997
15998 * ediff.el (ediff-patch-buffer): Change the docstring.
15999
16000 2005-07-19 Kenichi Handa <handa@m17n.org>
16001
16002 * international/mule-cmds.el (select-safe-coding-system): Try to
16003 use an auto-coding (if any) before anything else. If the found
16004 auto-coding is invalid, show a warning message.
16005
16006 * international/mule.el (find-auto-coding): New function created
16007 by modifying the body of set-auto-coding.
16008 (set-auto-coding): Use find-auto-coding to find a coding.
16009
16010 2005-07-18 Richard M. Stallman <rms@gnu.org>
16011
16012 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
16013 not isearch-mode-end-hook-error.
16014 (allout-before-change-protect): Fix error message.
16015
16016 2005-07-18 Juri Linkov <juri@jurta.org>
16017
16018 * allout.el (allout-mode):
16019 * calculator.el (calculator-copy):
16020 * custom.el (custom-known-themes):
16021 * dired.el (dired-desktop-buffer-misc-data)
16022 (dired-restore-desktop-buffer):
16023 * dired-x.el (dired-omit-marker-char):
16024 * files.el (basic-save-buffer):
16025 * font-core.el (font-lock-mode):
16026 * calendar/calendar.el (calendar-goto-hebrew-date)
16027 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
16028 (calendar-goto-persian-date):
16029 * language/ethio-util.el (ethio-sera-to-fidel-region):
16030 * textmodes/picture.el (picture-mode):
16031 Delete duplicate duplicate words.
16032
16033 2005-07-18 Juri Linkov <juri@jurta.org>
16034
16035 * isearch.el (isearch-mode-map): Remove key bindings for regexp
16036 chars * ? } |.
16037 (isearch-fallback): Don't call `isearch-process-search-char'.
16038 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
16039 (isearch-process-search-char): Call `isearch-fallback' for regexp
16040 chars * ? } |.
16041 (isearch-return-char): Make obsolete with `make-obsolete' instead
16042 of simply documenting it as obsolete in the docstring.
16043 (isearch-fallback): Refill docstring.
16044
16045 * international/isearch-x.el
16046 (isearch-process-search-multibyte-characters): Remove unneeded
16047 `concat'. Add intermediate values to `junk-hist' instead of
16048 `minibuffer-history'. Test the length of `str'.
16049
16050 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
16051
16052 * allout.el (allout-resolve-xref): Fix typos in error strings.
16053 (allout-before-change-protect): Remove unneeded `concat'.
16054
16055 * array.el (array-mode, array-reconfigure-rows)
16056 (untabify-backward): Fix typos in docstrings.
16057 (array-reconfigure-rows): Use `insert-buffer-substring', not
16058 `insert-buffer'.
16059
16060 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
16061 * progmodes/ada-mode.el (ada-make-body):
16062 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
16063
16064 * dired.el (dired-log):
16065 * tar-mode.el (tar-subfile-save-buffer):
16066 * play/zone.el (zone-pgm-stress-destress):
16067 Use `insert-buffer-substring', not `insert-buffer'.
16068
16069 2005-07-17 Simon Josefsson <jas@extundo.com>
16070
16071 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
16072
16073 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
16074
16075 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
16076 Add plain auth method.
16077 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
16078
16079 2005-07-17 Kim F. Storm <storm@cua.dk>
16080
16081 * ido.el (dired-other-window): Add ido property.
16082
16083 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
16084
16085 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
16086 Fix typo in docstring.
16087 (byte-compile-interactive-only-functions): Add `insert-buffer' and
16088 `insert-file-literally'.
16089
16090 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
16091 info and delete redundant message. Doc fix.
16092 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
16093 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
16094
16095 2005-07-16 Richard M. Stallman <rms@gnu.org>
16096
16097 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
16098 (byte-compile-and): Use byte-compile-and-recursion.
16099 (byte-compile-or-recursion): New function.
16100 (byte-compile-or): Use that.
16101 (byte-compile-if): Guard the else-clause too.
16102 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
16103
16104 * isearch.el (isearch-mode-end-hook-quit): New variable.
16105 (isearch-done): Bind it.
16106 (isearch-mode-end-hook): Doc fix.
16107
16108 * allout.el (allout-isearch-did-quit): Variable deleted.
16109 (allout-real-isearch-abort): Function name no longer used.
16110 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
16111 (allout-isearch-rectification): isearch-mode always exists.
16112 Don't set allout-isearch-did-quit.
16113 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
16114 allout-isearch-did-quit.
16115 (allout-enwrap-isearch): Just add the hook.
16116 (allout-isearch-abort): Function deleted.
16117 (allout-pre-command-business): Avoid warning.
16118
16119 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
16120 Correctly avoid warnings.
16121 (pascal-outline): Likewise.
16122
16123 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
16124
16125 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
16126
16127 * play/tetris.el (tetris-mode): Avoid warning.
16128
16129 * play/snake.el (snake-mode): Avoid warning.
16130
16131 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
16132 (gamegrid-set-display-table): Avoid warning.
16133 (gamegrid-set-timer): Likewise.
16134 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
16135 (gamegrid-add-score-with-update-game-score-1): Take FILE
16136 as argument.
16137 (gamegrid-add-score-with-update-game-score): Pass that argument.
16138 Rename have-shared-game-dir to gamegrid-shared-game-dir.
16139
16140 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
16141
16142 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
16143 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
16144
16145 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
16146 and insert-file.
16147
16148 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
16149 (sc-ask): Avoid warnings.
16150
16151 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
16152 (eshell-hist-initialize): Use that var the natural way.
16153
16154 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
16155
16156 * emacs-lisp/re-builder.el (reb-cook-regexp):
16157 Avoid warning calling lre-compile-string.
16158 (reb-color-display-p): Avoid warning.
16159
16160 * calculator.el (calculator-last-input): Guard uses
16161 of event-key and key-press-event-p.
16162 (event-key, key-press-event-p): Delete definitions.
16163
16164 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
16165 (find-gc-source-directory, find-gc-subrs-callers)
16166 (find-gc-noreturn-list, find-gc-source-files)
16167 (find-gc-subrs-called): Vars renamed and defvar'd.
16168
16169 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
16170 (checkdoc-overlay-put, checkdoc-delete-overlay)
16171 (checkdoc-overlay-start, checkdoc-overlay-end)
16172 (checkdoc-mode-line-update, checkdoc-char=):
16173 Define such that compiler knows they are defined.
16174 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
16175 (checkdoc-read-event): Delete. Use read-event directly.
16176
16177 * whitespace.el (whitespace-make-overlay)
16178 (whitespace-overlay-put, whitespace-delete-overlay)
16179 (whitespace-overlay-start, whitespace-overlay-end):
16180 Define such that compiler knows they are defined.
16181 (whitespace): Move conditional inside.
16182
16183 * tempo.el (tempo-insert-template): Suppress warning.
16184
16185 * ediff-diff.el (longlines-mode): Add defvar.
16186
16187 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
16188
16189 * server.el: Bind "C-x #" in a way that works even if C-x is
16190 redefined to a command key, not a prefix key.
16191
16192 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
16193
16194 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
16195 cl-make-type-test till execution time.
16196
16197 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
16198
16199 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
16200 arg ARG and use it.
16201
16202 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
16203
16204 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
16205
16206 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
16207
16208 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
16209 a defcustom with two :set or :type keywords.
16210
16211 2005-07-15 Richard M. Stallman <rms@gnu.org>
16212
16213 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
16214 Don't give ^M comment-end syntax.
16215
16216 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
16217
16218 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
16219 Don't consider gdbmi (gdb-mi.el has its own update functions).
16220 (gdb-var-delete): Make it work for gdbmi as well.
16221 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
16222
16223 * progmodes/gud.el (etags, sdb): Only require etags when needed.
16224 (gud-speedbar-menu-items): Correct logic for enabling items.
16225
16226 2005-07-15 Kim F. Storm <storm@cua.dk>
16227
16228 * ido.el: Fix commentary.
16229 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
16230 Use with-no-warnings around ffap-guesser.
16231 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
16232 Let bind minibuffer-completing-file-name to t.
16233
16234 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
16235
16236 * startup.el (site-run-file, keyboard-type): Doc fixes.
16237 (command-line): Check for "--basic-display" argument; also for
16238 "--quick", not "--bare-bones" (which was renamed).
16239 (fancy-splash-text): Add missing item "Getting New Versions".
16240 (normal-splash-screen): Fix typos and improve consistency with
16241 `fancy-splash-text'. Update copyright year.
16242
16243 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
16244 valid binding for `help-char'.
16245
16246 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
16247
16248 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
16249
16250 * term.el (term-mode): Disable cua-mode for term buffers.
16251
16252 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
16253
16254 * add-log.el (add-log-mailing-address, change-log-merge):
16255 Doc fixes.
16256 (change-log-get-method-definition): Fix typo in docstring.
16257
16258 2005-07-14 Kim F. Storm <storm@cua.dk>
16259
16260 * emulation/cua-base.el:
16261 (cua--pre-command-handler-1, cua--pre-command-handler)
16262 (cua--post-command-handler-1, cua--post-command-handler):
16263 Split in two. Check (buffer local) value of cua-mode.
16264 (cua-selection-mode): New command.
16265
16266 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
16267
16268 * custom.el (custom-initialize-safe-set)
16269 (custom-initialize-safe-default): Doc fixes.
16270
16271 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
16272 and simplify :init-value again.
16273
16274 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
16275 and simplify :init-value again. Delete autoload.
16276
16277 * startup.el (command-line): Use `custom-reevaluate-setting' again
16278 for tooltip-mode.
16279
16280 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
16281 a defcustom with two :initialize keywords.
16282
16283 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
16284
16285 * allout.el (my-mark-marker, allout-isearch-prior-pos)
16286 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
16287 (allout-post-command-business, allout-flag-region)
16288 (isearch-reenable-font-lock, allout-yank)
16289 (allout-insert-latex-header, allout-insert-latex-trailer)
16290 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
16291 (allout-latex-verb-quote): Fix typos in docstrings.
16292 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
16293 (allout-unprotected, allout-prefix-data):
16294 Improve argument/docstring consistency.
16295 (allout-chart-subtree): Fix argument spec.
16296 (allout-open-topic): Rename `use_sib_bullet' argument to
16297 `use-sib-bullet'. Doc fix.
16298
16299 * whitespace.el (whitespace-check-buffer-leading)
16300 (whitespace-check-buffer-trailing)
16301 (whitespace-check-buffer-indent)
16302 (whitespace-check-buffer-spacetab)
16303 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
16304 (whitespace-check-leading-whitespace)
16305 (whitespace-check-trailing-whitespace)
16306 (whitespace-check-spacetab-whitespace)
16307 (whitespace-check-indent-whitespace)
16308 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
16309 (whitespace-modes): Fix typos in docstrings.
16310 (defgroup, defcustom): Doc fixes.
16311
16312 * winner.el (winner-mode, winner-boring-buffers)
16313 (winner-pending-undo-ring): Doc fixes.
16314 (winner-ring): Remove unneeded `progn'.
16315 (winner-equal): `defsubst' it.
16316 (winner-redo): Fix message.
16317
16318 2005-07-13 Kim F. Storm <storm@cua.dk>
16319
16320 * simple.el (line-move-1): Always use vertical-motion to
16321 do the last (or only) line move to ensure some movement.
16322 Undo 2005-06-23 change--don't check for overlays.
16323
16324 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16325
16326 * term/mac-win.el (ccl-encode-mac-roman-font)
16327 (ccl-encode-mac-centraleurroman-font)
16328 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
16329 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
16330 Change charset-id boundary of dimension to ?\xef.
16331 (mac-char-fontspec-list): New constant.
16332 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
16333 argument. Nil uses itself as family in font-spec. Previous
16334 behavior for nil is now provided by non-nil non-string argument.
16335 All callers changed. Add font-specs for Mac fonts to
16336 "fontset-default" unless iso8859-1 fonts are installed.
16337
16338 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
16339
16340 * progmodes/sh-script.el (sh-get-indent-info): Only indent
16341 a continuation line if the \ is preceded by SPC or TAB.
16342 (sh-get-indent-info): Simplify.
16343 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
16344 Use with-current-buffer.
16345
16346 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
16347 when the matched text is empty.
16348
16349 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
16350
16351 * startup.el (command-line): Revert to previous handling of
16352 tooltip-mode. Explain in comment why the complexity is needed.
16353
16354 * tooltip.el (tooltip-mode): Revert to previous implementation of
16355 its defcustom.
16356
16357 * frame.el (blink-cursor-mode): Revert to previous implementation
16358 of its defcustom. Update comment.
16359
16360 2005-07-12 Lars Hansen <larsh@soem.dk>
16361
16362 * desktop.el: Update e-mail address.
16363
16364 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16365
16366 * term/mac-win.el (mac-services-mail-selection)
16367 (mac-services-mail-to): New functions.
16368 (mac-application-menu-map): Bind them.
16369
16370 2005-07-12 wulei <milton@wulei.net> (tiny change)
16371
16372 * progmodes/gdb-ui.el: Add note about buffering with Windows.
16373
16374 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
16375
16376 * custom.el (custom-reevaluate-setting): Doc fix.
16377
16378 2005-07-11 Jay Belanger <belanger@truman.edu>
16379
16380 * calc/calc.el (calc-embedded-announce-formula-alist)
16381 (calc-embedded-open-close-plain-alist)
16382 (calc-embedded-open-close-mode-alist): Add checks for additional
16383 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
16384
16385 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
16386
16387 * custom.el (custom-enable-theme): Don't add theme to
16388 `custom-enabled-themes' with `push' because there is no
16389 setf-method for `delq'.
16390
16391 2005-07-11 Richard M. Stallman <rms@gnu.org>
16392
16393 * custom.el (custom-declare-variable): Doc fix.
16394
16395 * dired-aux.el (dired-compare-directories): Remove "." and ".."
16396 from the alists.
16397
16398 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
16399 Do nothing if edebug-active.
16400
16401 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
16402 (edebug-display): Do it here instead.
16403
16404 2005-07-10 Richard M. Stallman <rms@gnu.org>
16405
16406 * cus-face.el (custom-theme-set-faces): Make it work.
16407 (custom-reset-faces): Doc fix.
16408 (custom-theme-reset-internal-face, custom-theme-face-value):
16409 Functions deleted.
16410
16411 * custom.el (custom-push-theme): Maintain list of the settings
16412 of a given theme in its theme-settings property.
16413 Maintain position of old settings in the theme-value
16414 or theme-face property.
16415 (custom-enabled-themes): New variable.
16416 (custom-theme-enabled-p): New function.
16417 (provide-theme): Update custom-enabled-themes.
16418 Disable and reenable the `user' theme.
16419 (require-theme): Doc fix.
16420 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
16421 (custom-theme-value, custom-theme-variable-value): Likewise.
16422 (custom-theme-reset-internal): Likewise.
16423 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
16424 (custom-enable-theme, custom-disable-theme): New functions.
16425 (custom-variable-theme-value, custom-face-theme-value): Likewise.
16426 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
16427 (custom-theme-reset-variables): Simplify.
16428 (deftheme, custom-declare-theme, custom-make-theme-feature):
16429 Definitions moved.
16430
16431 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
16432
16433 * longlines.el (longlines-show-region)
16434 (longlines-unshow-hard-newlines): Recognize hard newlines by
16435 non-nil hard property, instead of t.
16436
16437 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
16438
16439 * viper-cmd.el (viper--key-maps): New variable.
16440 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
16441 emulation-mode-map-alists.
16442 (viper-envelop-ESC-key): Use viper-subseq.
16443 (viper-search-forward/backward/next): Disable debug-on-error.
16444
16445 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
16446 (viper-ESC-key): New defcustoms.
16447
16448 * viper-macs.el (ex-map-read-args): Use viper-subseq.
16449
16450 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
16451 (viper-subseq): Copy of subseq from cl.el.
16452
16453 * viper.el (viper-go-away, viper-set-hooks): Use
16454 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
16455
16456 * viper-mous.el (viper-current-frame-saved): Use defvar.
16457
16458 * viper-init.el: Get rid of -face in face names.
16459
16460 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
16461 Make it work with longlines mode
16462
16463 * ediff-mult.el (ediff-meta-mode-hook): New variable.
16464
16465 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
16466
16467 * ediff-init.el: Get rid of -face in face names.
16468
16469 2005-07-10 Richard M. Stallman <rms@gnu.org>
16470
16471 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
16472 and with-timeout-unsuspend.
16473
16474 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
16475 and with-timeout-unsuspend.
16476
16477 * emacs-lisp/timer.el (with-timeout-timers): New variable.
16478 (with-timeout): Bind that variable to record timers.
16479 (with-timeout-suspend, with-timeout-unsuspend): New functions.
16480
16481 * emacs-lisp/debug.el (debug-help-follow): New function.
16482 (debugger-mode-map): Use that instead of help-follow.
16483 (debugger-setup-buffer): Use eval-buffer-list
16484 to handle eval-buffer frames.
16485
16486 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
16487
16488 * timezone.el (timezone-parse-date): Change first regexp
16489 so it will not mistakenly match dates with no time zone.
16490
16491 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
16492
16493 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
16494
16495 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
16496
16497 * custom.el (custom-initialize-safe-set)
16498 (custom-initialize-safe-default): New functions.
16499
16500 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
16501 and simplify :init-value.
16502
16503 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
16504 and simplify :init-value. Delete obsolete comment.
16505
16506 * startup.el (command-line): Use `custom-reevaluate-setting' to
16507 handle `tooltip-mode'. Delete obsolete comment.
16508
16509 * files.el (set-visited-file-name): Avoid calling
16510 `file-name-nondirectory' with a nil argument.
16511
16512 2005-07-09 Richard M. Stallman <rms@gnu.org>
16513
16514 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
16515 was called with nil for the buffer, handle the read position right.
16516 Handle read position for eval-region, too.
16517
16518 2005-07-09 Juri Linkov <juri@jurta.org>
16519
16520 * fringe.el (fringe-mode): Add period in docstring.
16521 (fringe-query-style): Build prompt depending on `all-frames' arg.
16522
16523 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
16524 to not create links to unrelated functions in the Help buffer.
16525
16526 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
16527 Doc fix.
16528
16529 * simple.el (next-error-hook): New variable.
16530 (next-error): Use it. Doc fix.
16531
16532 * textmodes/ispell.el (ispell-command-loop): Add current
16533 dictionary name and program name to mode-line-format.
16534 (ispell-region, ispell-process-line): Add current dictionary name
16535 and program name to messages.
16536
16537 2005-07-08 Jay Belanger <belanger@truman.edu>
16538
16539 * calc/calc.el (calc-embedded-announce-formula-alist)
16540 (calc-embedded-open-close-formula-alist)
16541 (calc-embedded-open-close-word-alist)
16542 (calc-embedded-open-close-plain-alist)
16543 (calc-embedded-open-close-new-formula-alist)
16544 (calc-embedded-open-close-mode-alist)
16545 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
16546 (calc-embedded-mode-hook): New variables.
16547
16548 * calc/calc-embed.el (calc-embedded-firsttime)
16549 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
16550 New variables.
16551 (calc-do-embedded): Use calc-embedded-firsttime,
16552 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
16553 determine whether or not to run hooks.
16554 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
16555 calc-embedded-firsttime-formula appropriately.
16556 Set calc-embedded delimiter variables according to mode.
16557
16558 2005-07-08 Richard M. Stallman <rms@gnu.org>
16559
16560 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
16561 Check for "emacs", etc., as entire symbol, not just as word.
16562 (checkdoc-file-comments-engine): Use regexp-quote on FN.
16563
16564 * files.el (set-visited-file-name): Report the error
16565 for "empty filename" earlier.
16566 (kill-some-buffers): Ignore buffers already dead.
16567
16568 * fringe.el (fringe-mode): Doc fix.
16569
16570 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
16571 Check for (featurep 'xemacs) and turn off warnings in what it guards.
16572 Use unwind-protect to ensure byte-compile-unresolved-functions
16573 is updated.
16574
16575 * whitespace.el (whitespace-buffer-leading-cleanup):
16576 Simplify w/ skip-chars-forward.
16577 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
16578
16579 * mail/rmail.el (rmail-only-expunge): Fix paren error.
16580 Unconditionally try to leave point at the same old place.
16581
16582 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
16583
16584 * comint.el (comint-postoutput-scroll-to-bottom)
16585 (comint-show-maximum-output): Take scroll-margin into consideration.
16586
16587 2005-07-08 Kim F. Storm <storm@cua.dk>
16588
16589 * ido.el (ido-use-filename-at-point): New choice `guess'.
16590 (ido-file-internal): Try ffap-guesser if selected.
16591
16592 * ido.el (ido-before-fallback-functions): New hook.
16593 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
16594 (ido-read-file-name): Run it.
16595
16596 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
16597
16598 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
16599 strings rather than a list of symbols to the completion function.
16600
16601 2005-07-07 Jay Belanger <belanger@truman.edu>
16602
16603 * calc/calc-units.el (math-apply-units): Change the places in
16604 which units are simplified.
16605
16606 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
16607
16608 * cus-edit.el (customize-option, customize-option-other-window):
16609 Make them handle aliases.
16610
16611 * custom.el (custom-variable-p): Make it recursively follow
16612 aliases. Mention that in the docstring.
16613
16614 2005-07-07 Richard M. Stallman <rms@gnu.org>
16615
16616 * cus-start.el (exec-path): Use `directory' instead of `file'.
16617 Fix tag for nil.
16618
16619 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
16620
16621 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
16622 when called non-interactively. Doc fix.
16623
16624 2005-07-07 Lute Kamstra <lute@gnu.org>
16625
16626 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
16627 new address as well.
16628
16629 2005-07-07 Kenichi Handa <handa@m17n.org>
16630
16631 * international/mule.el (make-coding-system):
16632 Describe `ascii-incompatible' property in the docstring.
16633 (set-file-name-coding-system): Signal an error if coding-system is
16634 ascii-incompatible.
16635 (set-keyboard-coding-system): Likewise.
16636
16637 * international/mule-cmds.el (set-default-coding-systems):
16638 Don't set default-file-name-coding-system and
16639 default-keyboard-coding-system if coding-system is ASCII-incompatible.
16640
16641 * international/utf-16.el: Declare that all UTF-16-based coding
16642 systems are ASCII-incompatible.
16643
16644 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
16645
16646 * progmodes/gud.el: Require font-lock for displaying errors.
16647 Used by gdb-ui.el.
16648
16649 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
16650
16651 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
16652 values for the pattern lists which are `read'able but not
16653 `append'able (like symbols).
16654
16655 2005-07-06 Richard M. Stallman <rms@gnu.org>
16656
16657 * progmodes/flymake.el (flymake-float-time): Instead of
16658 with-no-warnings, test for xemacs.
16659 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
16660 to avoid warning.
16661
16662 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
16663
16664 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
16665
16666 2005-07-05 Lute Kamstra <lute@gnu.org>
16667
16668 * battery.el: Add support for Darwin (with much debugging help
16669 from Samuel Lauber <sam124@operamail.com>).
16670 (battery-status-function, battery-echo-area-format)
16671 (battery-mode-line-format): Add support for pmset on Darwin.
16672 (battery-load-low, battery-load-critical): New user options.
16673 (battery-pmset): New function.
16674
16675 2005-07-05 Lute Kamstra <lute@gnu.org>
16676
16677 Update FSF's address in GPL notices.
16678
16679 * textmodes/page-ext.el: Update FSF's address.
16680
16681 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16682
16683 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
16684 filling from using prefix when filling a single-line docstring.
16685
16686 * progmodes/flymake.el: Remove useless eval-when-compile.
16687
16688 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
16689
16690 2005-07-04 Richard M. Stallman <rms@gnu.org>
16691
16692 * textmodes/org.el (org-file-apps-defaults-gnu):
16693 Rename from org-file-apps-defaults-linux.
16694 (org-default-apps): Don't test system-type for `linux'.
16695 (org-file-apps): Doc fix.
16696
16697 2005-07-04 David Ponce <david@dponce.com>
16698
16699 * tree-widget.el: Improve header Commentary section.
16700 (tree-widget) [defgroup]
16701 (tree-widget-image-enable, tree-widget-themes-directory)
16702 (tree-widget-theme, tree-widget-image-properties-emacs)
16703 (tree-widget-image-properties-xemacs, tree-widget-create-image)
16704 (tree-widget-image-formats, tree-widget-control)
16705 (tree-widget-empty-control, tree-widget-leaf-control
16706 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
16707 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
16708 (tree-widget-keep, tree-widget-after-toggle-functions)
16709 (tree-widget-open-node, tree-widget-close-node): Doc fix.
16710 (tree-widget-open-control, tree-widget-close-control): Fix doc and
16711 :help-echo message.
16712 (tree-widget-set-theme): Doc fix. Use `string-equal'.
16713 (tree-widget-image-properties): Doc fix. Clearer implementation.
16714 (tree-widget--cursors): New constant.
16715 (tree-widget-lookup-image): New function split from
16716 `tree-widget-find-image'. Clearer implementation.
16717 (tree-widget-find-image): Use it.
16718 (tree-widget-button-keymap): Use `set-keymap-parent'.
16719 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
16720 Define the sub-widgets here.
16721 (tree-widget-node): Check that :node is not a tree-widget.
16722 (tree-widget-get-super, tree-widget-open-control)
16723 (tree-widget-close-control, tree-widget-empty-control)
16724 (tree-widget-leaf-control, tree-widget-guide)
16725 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
16726 (tree-widget-no-handle, tree-widget-value-delete)
16727 (tree-widget-map): Remove.
16728 (tree-widget-children-value-save): Doc fix. Simplified.
16729 (tree-widget-value-create): Update according to previous changes.
16730
16731 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
16732
16733 * textmodes/org.el: Leading space replaced by TABS.
16734 (org-recalc-marks, org-table-rotate-recalc-marks)
16735 (org-table-get-specials): Treat "^" and "_" marks.
16736 (org-table-justify-field-maybe): Optional argument NEW.
16737 (org-table-eval-formula): Parsing of the format simplified.
16738 New modes C,I. Honor the %= parameter in the current table.
16739 Avoid unnecessary re-align by using the NEW argument to
16740 `org-table-justify-field-maybe'.
16741 (org-calc-default-modes): Default for date-format mimicks org-mode.
16742 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
16743
16744 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
16745
16746 * cus-face.el (custom-theme-set-faces): Make it handle face
16747 aliases whose alias declarations are pre- or autoloaded.
16748
16749 2005-07-04 Juri Linkov <juri@jurta.org>
16750
16751 * faces.el (read-face-name): Put the code for getting a face name
16752 from the buffer before adding the faces from the `face' property.
16753 Use `completing-read-multiple' instead of `completing-read'.
16754 Require `crm'. Add default value and post-process the returned
16755 list of faces.
16756
16757 * emacs-lisp/crm.el (crm-find-current-element)
16758 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
16759
16760 * emacs-lisp/lisp-mode.el (eval-defun-1):
16761 * emacs-lisp/edebug.el (edebug-eval-defun):
16762 Remove unnecessary quotes.
16763
16764 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
16765
16766 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
16767 (prolog-indent-level): Fix typo in docstring.
16768
16769 * info.el (Info-history, Info-history-forward)
16770 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
16771
16772 * add-log.el (add-change-log-entry):
16773 * comint.el (comint-dynamic-list-input-ring)
16774 (comint-dynamic-list-completions):
16775 * dabbrev.el (dabbrev-expand):
16776 * delim-col.el (delimit-columns-rectangle-line):
16777 * diff-mode.el (diff-context->unified, diff-reverse-direction)
16778 (diff-unified->context):
16779 * ediff-init.el (ediff-abbrev-jobname):
16780 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
16781 (ediff-replace-session-activity-marker-in-meta-buffer):
16782 * info.el (Info-summary):
16783 * lpr.el (printify-region):
16784 * printing.el (pr-create-interface):
16785 * ps-print.el (ps-print-quote):
16786 * ses.el (ses-column-widths, ses-print-cell)
16787 (ses-adjust-print-width, ses-center):
16788 * shell.el (shell-file-name-quote-list):
16789 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
16790 (strokes-fill-current-buffer-with-whitespace)
16791 (strokes-xpm-for-stroke, strokes-list-strokes)
16792 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
16793 * term.el (term-dynamic-list-input-ring)
16794 (term-dynamic-list-completions):
16795 * calc/calc.el (math-format-stack-value):
16796 * emacs-lisp/edebug.el (edebug-display-freq-count):
16797 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
16798 (delphi-new-comment-line):
16799 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
16800 * progmodes/executable.el (executable-set-magic):
16801 * progmodes/python.el (inferior-python-mode):
16802 * progmodes/scheme.el (scheme-mode-syntax-table):
16803 * progmodes/sh-script.el (sh-maybe-here-document):
16804 * progmodes/sql.el (sql-copy-column):
16805 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
16806 * textmodes/bibtex.el (bibtex-mode):
16807 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
16808 (sgml-auto-attributes):
16809 * textmodes/table.el (table-insert, table-shorten-cell)
16810 (table--generate-source-scan-lines, table-delete-row)
16811 (*table--cell-delete-char, table--spacify-frame)
16812 (table--horizontally-shift-above-and-below)
16813 (table--cell-insert-char, table--cell-blank-str)
16814 (table--fill-region-strictly):
16815 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
16816 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
16817
16818 * add-log.el (change-log):
16819 * apropos.el (apropos):
16820 * comint.el (comint-completion, comint-source):
16821 * dabbrev.el (dabbrev):
16822 * delim-col.el (columns):
16823 * diff-mode.el (diff-mode):
16824 * ediff.el (ediff):
16825 * ediff-diff.el (ediff-diff):
16826 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
16827 * ediff-mult.el (ediff-mult):
16828 * ediff-ptch.el (ediff-ptch):
16829 * ediff-wind.el (ediff-window):
16830 * facemenu.el (facemenu):
16831 * indent.el (indent):
16832 * info.el (info):
16833 * jka-cmpr-hook.el (compression, jka-compr):
16834 * lpr.el (lpr):
16835 * outline.el (outlines):
16836 * pcmpl-cvs.el (pcmpl-cvs):
16837 * pcmpl-rpm.el (pcmpl-rpm):
16838 * printing.el (printing):
16839 * ps-print.el (postscript, ps-print, ps-print-horizontal)
16840 (ps-print-vertical, ps-print-headers, ps-print-font)
16841 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
16842 (ps-print-background, ps-print-printer, ps-print-page)
16843 (ps-print-miscellany):
16844 * ses.el (ses):
16845 * shell.el (shell, shell-directories, shell-faces):
16846 * startup.el (initialization):
16847 * strokes.el (strokes):
16848 * term.el (term):
16849 * uniquify.el (uniquify):
16850 * w32-vars.el (w32):
16851 * calc/calc.el (calc):
16852 * emacs-lisp/bytecomp.el (bytecomp):
16853 * emacs-lisp/cl-indent.el (lisp-indent):
16854 * emacs-lisp/edebug.el (edebug):
16855 * emacs-lisp/elp.el (elp):
16856 * emacs-lisp/testcover.el (testcover):
16857 * emacs-lisp/trace.el (trace):
16858 * emulation/viper-ex.el (viper-ex):
16859 * emulation/viper-mous.el (viper-mouse):
16860 * mail/mailalias.el (mailalias):
16861 * mail/supercite.el (supercite, supercite-frames)
16862 (supercite-attr, supercite-cite, supercite-hooks):
16863 * net/rcompile.el (remote-compile):
16864 * net/rlogin.el (rlogin):
16865 * obsolete/ooutline.el (outlines):
16866 * progmodes/delphi.el (delphi):
16867 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
16868 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
16869 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
16870 (ebnf-optimization):
16871 * progmodes/etags.el (etags):
16872 * progmodes/executable.el (executable):
16873 * progmodes/idlwave.el (idlwave):
16874 * progmodes/pascal.el (pascal):
16875 * progmodes/prolog.el (prolog):
16876 * progmodes/python.el (python):
16877 * progmodes/scheme.el (scheme):
16878 * progmodes/sh-script.el (sh, sh-script):
16879 * progmodes/sql.el (SQL):
16880 * progmodes/tcl.el (tcl):
16881 * textmodes/bibtex.el (bibtex, bibtex-autokey):
16882 * textmodes/enriched.el (enriched):
16883 * textmodes/makeinfo.el (makeinfo):
16884 * textmodes/sgml-mode.el (sgml):
16885 * textmodes/table.el (table-hooks):
16886 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
16887 * textmodes/texinfo.el (texinfo):
16888 * textmodes/two-column.el (two-column):
16889 Finish `defgroup' description with period.
16890
16891 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
16892 * eshell/esh-var.el (eshell-var):
16893 * progmodes/vhdl-mode.el (vhdl-testbench):
16894 * textmodes/org.el (org): Fix typos in docstrings.
16895
16896 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
16897 consistency.
16898
16899 * progmodes/flymake.el (flymake-find-file): Remove.
16900 (flymake-float-time): Use `with-no-warnings'.
16901 (flymake-check-start-time, flymake-check-was-interrupted)
16902 (flymake-err-info, flymake-is-running, flymake-last-change-time)
16903 (flymake-new-err-info): `defvar' at compile time.
16904
16905 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
16906
16907 * replace.el (occur-hook): Doc fix.
16908 (occur-1): Don't call `occur-hook' if there are no matches.
16909
16910 2005-07-03 Richard M. Stallman <rms@gnu.org>
16911
16912 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
16913 global-map, save the same map.
16914 (global-map): Don't alter it at top level.
16915 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
16916 Then alter it here instead.
16917 (tpu-edt-off): Set global-map to the saved one.
16918
16919 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
16920 All references simplified.
16921 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
16922 (zmacs-regions): Add defvar.
16923 (repeat-complex-command-map): Everything about that deleted.
16924
16925 * textmodes/artist.el (artist-key-is-drawing)
16926 (artist-key-endpoint1, artist-key-poly-point-list)
16927 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
16928 (artist-key-compl-table, artist-rb-save-data)
16929 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
16930 Don't put them in eval-when-compile.
16931 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
16932
16933 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
16934 Use with-no-warnings.
16935
16936 * net/browse-url.el (dos-windows-version): Add defvar.
16937
16938 * mail/supercite.el (filladapt-prefix-table): Add defvar.
16939
16940 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
16941 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
16942 (rmail-new-summary-line-count): Rename from new-summary-line-count.
16943 Add defvar.
16944 (rmail-summary-beginning-of-message): Use with-no-warnings.
16945 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
16946
16947 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
16948 Use with-no-warnings.
16949
16950 * emulation/vi.el (vi-mark-region): Use c-mark-function.
16951 (c-mark-function): Add point-moving-unit property.
16952 (vi-goto-line): Use with-no-warnings.
16953
16954 * emulation/edt.el (edt-last-copied-word): Add defvar.
16955 (zmacs-region-stays): Likewise.
16956 (edt-mark-section-wisely): Use c-mark-function for C.
16957 Use makr-defun for Fortran.
16958 (time-string): defvar deleted.
16959 (edt-display-the-time): Don't set time-string.
16960
16961 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
16962
16963 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
16964 Don't warn when name is not constant
16965 or for defining the group `emacs'.
16966
16967 * tooltip.el (gud-tooltip-mode): Add defvar.
16968
16969 * startup.el (default-frame-background-mode): Add defvar.
16970
16971 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
16972
16973 * info.el (tool-bar-map): Add defvar.
16974
16975 * dired.el (dnd-protocol-alist): Add defvar.
16976
16977 * dired-aux.el (dired-query): Display question with answer, when
16978 the user answers.
16979
16980 * custom.el (custom-add-option): Doc fix.
16981
16982 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
16983
16984 2005-07-03 Eli Zaretskii <eliz@gnu.org>
16985
16986 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
16987 bogus name from the last change.
16988
16989 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
16990
16991 * custom.el (custom-declare-variable): Fix typos in comment.
16992 (custom-known-themes): Doc fix.
16993 (custom-theme-directory): New defcustom.
16994 (require-theme): Make it check `custom-theme-directory'.
16995
16996 * cus-theme.el (custom-new-theme-mode): New function.
16997 (custom-theme-name, custom-theme-variables, custom-theme-faces)
16998 (custom-theme-description): Add compiler defvars.
16999 (customize-create-theme): Add doc to the "*New Custom Theme*"
17000 buffer. Use `custom-new-theme-mode'.
17001 (custom-theme-write): Put the created buffer in emacs-lisp-mode
17002 and save it to the `custom-theme-directory'. Make this the
17003 default directory of the buffer.
17004
17005 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
17006
17007 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
17008 Fix unbalanced parentheses.
17009
17010 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17011
17012 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
17013 into flymake-mode and delegate to flymake-mode.
17014
17015 * find-file.el (ff-which-function-are-we-in): Clean up.
17016
17017 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
17018
17019 * replace.el (occur-rename-buffer): Fix docstring.
17020
17021 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
17022 (edt-last-copied-word, edt-learn-macro-count)
17023 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
17024 (edt-rect-start-point, edt-user-global-map, rect-start-point)
17025 (time-string, zmacs-region-stays):
17026 * emulation/edt-mapper.el (edt-save-function-key-map)
17027 (EDT-key-name): `defvar' to silence the byte-compiler.
17028
17029 2005-07-02 Martin Rudalics <rudalics@gmx.at>
17030
17031 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
17032 font-lock-regexp-backslash. Doc fix.
17033 (font-lock-regexp-backslash-grouping-construct): Rename from
17034 font-lock-regexp-backslash-construct. Doc fix.
17035 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
17036 grouping constructs.
17037
17038 2005-07-02 Eli Zaretskii <eliz@gnu.org>
17039
17040 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
17041 updating all the prerequisites.
17042
17043 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
17044
17045 * textmodes/org.el (org-agenda-start-on-weekday)
17046 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
17047 (org-agenda-use-time-grid, org-archive-location)
17048 (org-allow-space-in-links, org-usenet-links-prefer-google)
17049 (org-enable-table-editor, org-export-default-language)
17050 (org-export-html-show-new-buffer, org-fill-paragraph)
17051 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
17052 (org-goto-quit, org-occur, org-eval-in-calendar)
17053 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
17054 (org-agenda-diary-entry, org-remember-help)
17055 (org-table-convert-region, org-at-table-p)
17056 (org-table-move-row-down, org-table-move-row-up)
17057 (org-table-copy-region, org-table-toggle-vline-visibility)
17058 (org-table-get-stored-formulas, org-table-get-specials)
17059 (org-recalc-commands, org-table-eval-formula)
17060 (org-table-formula-substitute-names, orgtbl-make-binding)
17061 (org-format-org-table-html, org-format-table-table-html)
17062 (org-format-table-table-html-using-table-generate-source)
17063 (org-customize): Fix typos in docstrings.
17064 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
17065 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
17066 (org-back-to-heading): Doc fixes.
17067 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
17068 (org-agenda-change-all-lines, org-get-header):
17069 Improve argument/docstring consistency.
17070 (orgtbl-error): Fix error message.
17071
17072 * progmodes/flymake.el (flymake-find-possible-master-files)
17073 (flymake-master-file-compare, flymake-get-line-err-count)
17074 (flymake-highlight-line, flymake-gui-warnings-enabled):
17075 Fix typos in docstrings.
17076 (flymake-parse-line, flymake-get-project-include-dirs-function)
17077 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
17078 Doc fixes.
17079 (flymake-get-project-include-dirs-function)
17080 (flymake-make-err-menu-data):
17081 Improve argument/docstring consistency.
17082
17083 2005-07-01 Lute Kamstra <lute@gnu.org>
17084
17085 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
17086 Catch errors with ignore-errors. Use temporary buffer.
17087 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
17088
17089 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
17090 background color faces.
17091 (facemenu-set-foreground, facemenu-set-background):
17092 Use facemenu-set-face-from-menu.
17093 (facemenu-set-face-from-menu): Treat face names that start with
17094 "fg:" or "bg:" as special.
17095 (facemenu-add-new-color): Don't create faces. Simplify.
17096
17097 2005-06-30 Richard M. Stallman <rms@gnu.org>
17098
17099 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
17100 (crm-find-current-element): Likewise.
17101
17102 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
17103
17104 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
17105
17106 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
17107
17108 * arc-mode.el (archive-extract): Make it work as a mouse binding.
17109 (archive-mouse-extract): Make it an obsolete alias.
17110 (archive-mode-map): Don't use archive-mouse-extract any more.
17111 (archive-mode, archive-extract): write-contents-hooks ->
17112 write-contents-functions.
17113 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
17114 first arg.
17115 (archive-rename-entry): Update the call.
17116 (archive-zip-summarize): Remove unused var `method'.
17117 (archive-lzh-summarize): Remove unused var `creator'.
17118
17119 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
17120 dedicated frame upon exit.
17121
17122 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
17123 (archive-zip-extract, archive-zip-expunge)
17124 (archive-zip-update, archive-zip-update-case): Use executable-find.
17125 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
17126 Use restore-buffer-modified-p.
17127 (archive-extract, archive-add-new-member, archive-write-file-member):
17128 Use with-current-buffer.
17129 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
17130
17131 2005-06-30 Andreas Schwab <schwab@suse.de>
17132
17133 * progmodes/gud.el (gud-filter): Remove unneeded progn.
17134
17135 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
17136
17137 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
17138
17139 2005-06-30 Juri Linkov <juri@jurta.org>
17140
17141 * faces.el (vertical-border): Inherit from mode-line-inactive
17142 only on tty.
17143
17144 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
17145
17146 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
17147 example, -NLINES in the `occur' docstring).
17148
17149 * replace.el (occur-1): When no matches are found, do not set the
17150 `buffer-read-only' and modified flags for the occur buffer,
17151 because it is deleted.
17152
17153 * emulation/cua-base.el (cua-check-pending-input)
17154 (cua-repeat-replace-region, cua-mode, cua-debug)
17155 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
17156 Fix typos in docstrings.
17157
17158 * emulation/cua-gmrk.el (cua-toggle-global-mark)
17159 (cua-cut-region-to-global-mark)
17160 (cua--cut-rectangle-to-global-mark):
17161 Remove period from end of messages.
17162
17163 * emulation/cua-rect.el (cua-do-rectangle-padding):
17164 Remove period from end of messages.
17165 (cua--rectangle-seq-format): Fix typo in docstring.
17166 (cua-sequence-rectangle, cua-fill-char-rectangle):
17167 Improve argument/docstring consistency.
17168
17169 2005-06-29 Juri Linkov <juri@jurta.org>
17170
17171 * faces.el (default-frame-background-mode): New internal variable.
17172 (frame-set-background-mode): Use it.
17173
17174 * startup.el (normal-top-level): Set default-frame-background-mode
17175 instead of frame-background-mode. Before setting it, test for its
17176 nil value. Remove tests for frame-background-mode and frame
17177 parameter `reverse'. Add test for "unspecified-fg".
17178
17179 * term/xterm.el (xterm-rxvt-set-background-mode):
17180 * term/rxvt.el (rxvt-set-background-mode):
17181 Set default-frame-background-mode instead of frame-background-mode.
17182
17183 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
17184
17185 * simple.el (set-variable): Warn about obsolete user variables.
17186
17187 * imenu.el (imenu--completion-buffer):
17188 * mouse.el (mouse-buffer-menu-alist):
17189 * msb.el (msb-invisible-buffer-p):
17190 * calendar/diary-lib.el (diary-header-line-format):
17191 * emacs-lisp/pp.el (pp-buffer):
17192 * progmodes/cperl-mode.el (cperl-do-auto-fill):
17193 * textmodes/picture.el (picture-replace-match):
17194 Change space constants followed by a sexp to "?\s ".
17195
17196 * play/decipher.el (decipher-loop-with-breaks):
17197 * textmodes/texinfo.el (texinfo-insert-@item): Change space
17198 constants "protected" from end of line by a comment to "?\s".
17199
17200 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
17201
17202 * font-lock.el (save-buffer-state): Use `declare'.
17203
17204 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
17205 reset the syntax-table to cperl-mode-syntax-table.
17206 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
17207 "foo_print_bar" is not matched as a reserved keyword.
17208
17209 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
17210
17211 * textmodes/org.el (orgtbl-setup): New function, for delayed
17212 setup for the orgtbl commands.
17213 (org-calc-default-modes): New option.
17214 (orgtbl-make-binding): Use `defun' to get better help display.
17215 (org-diary): Call `org-compile-prefix-format'.
17216 (org-table-formula-substitute-names): New function.
17217 (org-agenda-day-view, org-agenda-week-view): New commands.
17218 (org-agenda-toggle-week-view): Command removed.
17219 (org-tbl-menu): Split off from org-org-menu.
17220 (org-mode): Move removal of outline-mode menus to here.
17221 (org-table-formula-debug): New option.
17222 (org-table-insert-row): Keep first field if just "#" or "*".
17223 (org-mode): Paragraph regexps fixed.
17224 (org-table-recalculate-regexp): New constant.
17225 (org-table-justify-field-maybe): Avoid replace if not necessary.
17226 (org-copy-special, org-cut-special): Use `call-interactively'.
17227 (org-table-copy-region): Take region from `interactive' call.
17228 (org-trim): Return string even if no match.
17229 (org-formula): New face.
17230 (org-set-font-lock-defaults): No longer highlight "FIXME".
17231 But highlight formula-related fields in table.
17232 (org-table-p): Use regexp, not fontification.
17233 (org-table-align): Handle white space at end of line.
17234 (org-table-formula-evaluate-inline): New option.
17235 (org-mode): Auto-wrapping in comment lines turned off.
17236 (org-table-copy-down): Evaluate only in copied field, not in
17237 destination.
17238 (org-table-current-formula): Variable removed.
17239 (org-table-store-formulas, org-table-get-stored-formulas)
17240 (org-table-modify-formulas, org-table-replace-in-formulas)
17241 (org-table-maybe-eval-formula): New functions.
17242 (org-table-get-formula): Modify to use stored formulas.
17243 (org-table-insert-column, org-table-delete-column)
17244 (org-table-move-column): Call `org-table-modify-formulas'.
17245 (org-complete): Add completion for keyword formulas.
17246 (orgtbl-mode): Pull orgtbl-mode-map to start of
17247 minor-mode-map-alist.
17248
17249 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
17250
17251 * progmodes/python.el (python-check): Require `compile' before
17252 modifying its variables.
17253
17254 * newcomment.el (comment-indent-default): Don't get fooled by an early
17255 end of buffer.
17256
17257 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17258
17259 * ps-print.el (ps-print-version): Fix version number.
17260
17261 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
17262
17263 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
17264
17265 2005-06-28 Richard M. Stallman <rms@gnu.org>
17266
17267 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
17268 (flyspell-local-mouse-map): Declaration deleted.
17269 (flyspell-mouse-map): Bind only mouse-2.
17270 (flyspell-mode-map): Don't test flyspell-use-local-map.
17271 (flyspell-overlay-keymap-property-name): Var deleted.
17272 (flyspell-mode-on): Don't make local bindings for
17273 flyspell-mouse-map and flyspell-mode-map.
17274 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
17275
17276 * textmodes/ispell.el (ispell-word): Do not ignore short words.
17277
17278 * progmodes/compile.el (compilation-next-error-function):
17279 Don't switch buffers; operate on the current buffer.
17280
17281 * progmodes/compile.el (compilation-error-file-name)
17282 (compilation-warning-file-name, compilation-info-file-name)
17283 (compilation-line-number, compilation-column-number): New faces.
17284 (compilation-error-face, compilation-warning-face)
17285 (compilation-info-face, compilation-line-face)
17286 (compilation-column-face): Use them.
17287
17288 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
17289
17290 * comint.el (comint-password-prompt-regexp): Accept ", try again".
17291
17292 * bindings.el (global-map): Bind insertchar and its variants.
17293
17294 2005-06-27 Richard M. Stallman <rms@gnu.org>
17295
17296 * textmodes/artist.el (artist-text-overwrite)
17297 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
17298
17299 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
17300
17301 * ps-print.el: It was not working the page selection for printing.
17302 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
17303 (ps-print-version): New version 6.6.7.
17304 (ps-end-sheet): New fun.
17305 (ps-header-sheet, ps-end-job): Call it.
17306
17307 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
17308
17309 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
17310
17311 2005-06-27 Lute Kamstra <lute@gnu.org>
17312
17313 * facemenu.el (facemenu-unlisted-faces): Add foreground and
17314 background color faces.
17315 (facemenu-get-face): Delete function.
17316 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
17317 (facemenu-add-new-color): Make second argument mandatory.
17318 Create the appropriate face and return it. Simplify.
17319 (facemenu-set-foreground, facemenu-set-background): Don't check if
17320 color is defined. Use return value of facemenu-add-new-color.
17321
17322 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
17323
17324 * progmodes/gud.el (gud-filter): Add missing argument to
17325 with-selected-window.
17326
17327 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
17328
17329 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
17330 a :require to the defcustom.
17331
17332 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
17333 defcustoms corresponding to minor modes.
17334
17335 2005-06-26 David Ponce <david@dponce.com>
17336
17337 * recentf.el: Require tree-widget instead of wid-edit.
17338 (recentf-filename-handler): Fix widget :type.
17339 (recentf-cancel-dialog, recentf-open-more-files)
17340 (recentf-open-files-action): Doc fix.
17341 (recentf-dialog-goto-first): New function.
17342 (recentf-dialog-mode-map): Set parent keymap first.
17343 (recentf-dialog-mode): Define with define-derived-mode.
17344 Don't display continuation lines in dialogs.
17345 (recentf-edit-list): Rename from recentf-edit-selected-items.
17346 (recentf-edit-list-select): Rename from recentf-edit-list-action.
17347 Simplify.
17348 (recentf-edit-list-validate): New function.
17349 (recentf-edit-list): Update accordingly.
17350 (recentf-open-files-item-shift): Remove.
17351 (recentf-open-files-item): Convert menu elements into tree and
17352 link widgets. Don't create the widgets.
17353 (recentf-open-files): Update accordingly.
17354 (recentf-save-list): Untabify.
17355
17356 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
17357
17358 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
17359 (keep-lines): Add INTERACTIVE arg. Never delete lines only
17360 partially contained in the active region. Do not take active
17361 region into account when called from Lisp, unless INTERACTIVE arg
17362 is non-nil. Use `forward-line' instead of `beginning-of-line' to
17363 avoid trouble with fields. Make marker point nowhere when no
17364 longer used. Always return nil. Doc fix.
17365 (flush-lines): Add INTERACTIVE arg. Do not take active region
17366 into account when called from Lisp, unless INTERACTIVE arg is
17367 non-nil. Use `forward-line' instead of `beginning-of-line' to
17368 avoid trouble with fields. Make marker point nowhere when no
17369 longer used. Always return nil. Doc fix.
17370 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
17371 interchangeable. Do not take active region into account when
17372 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
17373 message in echo area when called from Lisp, unless INTERACTIVE arg
17374 is non-nil. Avoid saying "1 occurrences". Do not use markers.
17375 Return the number of matches. Doc fix.
17376 (occur): Doc fix.
17377 (perform-replace): Make comment follow double space convention for
17378 the sake of `outline-minor-mode'.
17379
17380 * faces.el (facep): Doc fix.
17381
17382 2005-06-25 Richard M. Stallman <rms@gnu.org>
17383
17384 * facemenu.el (facemenu-enable-faces-p): New function.
17385 (facemenu-background-menu, facemenu-foreground-menu)
17386 (facemenu-face-menu): Add menu-enable property.
17387
17388 * jka-compr.el (jka-compr-insert-file-contents):
17389 Special handling if cannot find the uncompression program.
17390
17391 * cus-face.el (custom-face-attributes): Add autoload.
17392
17393 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
17394 Bind comment-indent-function locally.
17395
17396 * window.el (save-selected-window): Use save-current-buffer.
17397
17398 * subr.el (with-selected-window): Use save-current-buffer.
17399
17400 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
17401 and with-current-buffer.
17402
17403 2005-06-24 Richard M. Stallman <rms@gnu.org>
17404
17405 * simple.el (line-move-1): Fix previous change.
17406
17407 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
17408
17409 * replace.el (occur-1): Set `buffer-read-only' and the
17410 buffer-modified flag before running `occur-hook' to protect
17411 against unintentional buffer switches that can lead to data loss.
17412
17413 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
17414
17415 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
17416 (gud-gdb-marker-filter): Use font-lock-warning-face for any
17417 initial error.
17418
17419 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
17420 after fresh input.
17421 (gdb-var-create-handler): Put name of expression in quotes.
17422
17423 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
17424
17425 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
17426 elements of RING in order, and without bogus nil elements.
17427
17428 2005-06-23 Richard M. Stallman <rms@gnu.org>
17429
17430 * simple.el (set-variable): Args renamed; doc fix.
17431 (line-move-1): When there are overlays around, use vertical-motion.
17432
17433 * faces.el (escape-glyph): Use brown against light background.
17434 (nobreak-space): Rename from no-break-space.
17435 Fix previous change.
17436
17437 * dired-aux.el (dired-do-copy): Fix arg prompt.
17438
17439 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
17440
17441 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
17442
17443 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
17444 rather than "Distributor".
17445
17446 2005-06-23 Lute Kamstra <lute@gnu.org>
17447
17448 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
17449 (debug-on-entry): Use it. New interactive declaration that uses
17450 function-called-at-point.
17451
17452 2005-06-23 Kim F. Storm <storm@cua.dk>
17453
17454 * subr.el (save-match-data): Add comment about using evaporate arg
17455 to set-match-data.
17456
17457 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
17458
17459 * cus-edit.el (customize-face)
17460 (customize-face-other-window): Handle face aliases.
17461
17462 * faces.el (face-documentation, set-face-attribute)
17463 (face-spec-set): Handle face aliases.
17464
17465 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
17466
17467 * help-mode.el (help-make-xrefs): If a symbol representing a face
17468 name is not followed by the word "face", it could still be a
17469 function or variable name, so don't bypass other checks.
17470
17471 2005-06-22 Juri Linkov <juri@jurta.org>
17472
17473 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
17474 Replace aliased functions with calls where second arg `inherit' is t.
17475
17476 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
17477
17478 * progmodes/gdb-ui.el (gdb-error): New variable.
17479 (gdb-error): New function.
17480 (gdb-annotation-rules): Act on error-begin and error annotations.
17481 (gdb-concat-output): Use font-lock-warning-face for errors.
17482
17483 2005-06-22 Miles Bader <miles@gnu.org>
17484
17485 * bindings.el (propertized-buffer-identification): Use renamed
17486 `Buffer-menu-buffer' face.
17487
17488 * faces.el (vertical-border): Rename from `vertical-divider'.
17489 (escape-glyph): Change dark-background color back to `cyan'.
17490
17491 2005-06-21 Juri Linkov <juri@jurta.org>
17492
17493 * faces.el (face-user-default-spec): Try getting `customized-face'
17494 prior to `saved-face'.
17495 (frame-background-mode): Refill docstring.
17496
17497 * emacs-lisp/lisp-mode.el (eval-defun-1):
17498 * emacs-lisp/edebug.el (edebug-eval-defun):
17499 Set `saved-face' temporarily to nil before calling form.
17500 Set `customized-face' to the new spec after that.
17501
17502 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
17503
17504 * subr.el (1value, lambda, key-substitution-in-progress):
17505 Doc fixes.
17506
17507 * autoinsert.el (auto-insert-alist):
17508 * ses.el (ses-call-printer):
17509 * subr.el (noreturn):
17510 * emacs-lisp/lisp.el (check-parens):
17511 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
17512 * net/browse-url.el (browse-url-mosaic):
17513 * progmodes/cc-defs.el (c-safe-scan-lists):
17514 * progmodes/ebnf-abn.el (ebnf-abn-lex):
17515 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
17516 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
17517 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
17518 * progmodes/ebnf-iso.el (ebnf-iso-lex):
17519 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
17520
17521 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
17522
17523 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
17524
17525 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
17526
17527 * calendar/appt.el (appt-make-list): Activate the package, if
17528 not already active (for backwards compatibility).
17529
17530 2005-06-20 Kim F. Storm <storm@cua.dk>
17531
17532 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
17533
17534 2005-06-20 Miles Bader <miles@gnu.org>
17535
17536 * faces.el (vertical-divider): New face.
17537
17538 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
17539
17540 * simple.el (kill-whole-line): Doc fix.
17541 (next-error-buffer-p, next-error-find-buffer)
17542 (clone-indirect-buffer): Fix typos in docstrings.
17543 (comment-line-break-function): Doc fix: don't say variable
17544 is automatically buffer-local (it isn't).
17545
17546 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
17547
17548 * net/tramp-ftp.el (top):
17549 * net/tramp-smb.el (top):
17550 * net/tramp-util.el (top):
17551 * net/tramp-uu.el (top):
17552 * net/tramp-vc.el (top):
17553 * net/tramp.el (top): Revert copyright years back to original
17554 ones. Tramp has a life outside GNU Emacs.
17555
17556 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
17557
17558 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
17559
17560 2005-06-18 Juri Linkov <juri@jurta.org>
17561
17562 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
17563 end of first regexp to limit the match to the position between
17564 line number and source line with same separator character as used
17565 between file name and line number. In the second regexp limit
17566 mouse-face area to file name and line number by adding new group
17567 for them and referring it in HYPERLINK arg.
17568 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
17569 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
17570 previous line where grep markers may be already removed.
17571
17572 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
17573
17574 * progmodes/ps-mode.el: Update version and maintainer's email address.
17575
17576 2005-06-18 Steve Youngs <steve@xemacs.org>
17577
17578 * net/browse-url.el (browse-url-browser-function)
17579 (browse-url-default-browser): Add firefox.
17580 (browse-url-firefox-program, browse-url-firefox-arguments)
17581 (browse-url-firefox-startup-arguments)
17582 (browse-url-firefox-new-window-is-tab): New defcustoms.
17583 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
17584
17585 2005-06-17 Richard M. Stallman <rms@gnu.org>
17586
17587 * startup.el (command-line): Warn if specified user name has
17588 no home directory.
17589
17590 * term.el (term-get-old-input, term-input-filter, term-input-sender)
17591 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
17592
17593 * longlines.el (longlines-mode, longlines-show-hard-newlines):
17594 Doc fixes.
17595
17596 * faces.el (underline): Try bold if terminal doesn't support underline.
17597
17598 * mail/sendmail.el (mail-setup-with-from): New variable.
17599 (mail-insert-from-field): New function.
17600 (sendmail-send-it): Call it.
17601 (mail-setup): Optionally call it here.
17602
17603 * term/linux.el: Call tty-no-underline.
17604
17605 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
17606
17607 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
17608
17609 2005-06-17 Miles Bader <miles@gnu.org>
17610
17611 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
17612 (ediff-current-diff-C, ediff-current-diff-Ancestor)
17613 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
17614 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
17615 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
17616 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
17617 Remove "-face" suffix from face names.
17618 (ediff-current-diff-face-A, ediff-current-diff-face-B)
17619 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
17620 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
17621 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
17622 (ediff-even-diff-face-A, ediff-even-diff-face-B)
17623 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
17624 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
17625 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
17626 New backward-compatibility aliases for renamed faces.
17627 (ediff-current-diff-face-A, ediff-current-diff-face-B)
17628 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
17629 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
17630 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
17631 (ediff-even-diff-face-A, ediff-even-diff-face-B)
17632 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
17633 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
17634 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
17635 Use renamed ediff faces.
17636
17637 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
17638 Remove "-face" suffix from face names.
17639 (eshell-test-ok-face, eshell-test-failed-face):
17640 New backward-compatibility aliases for renamed faces.
17641 (eshell-run-test): Use renamed eshell-test faces.
17642
17643 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
17644 face name.
17645 (eshell-prompt-face): New backward-compatibility alias for renamed
17646 face.
17647 (eshell-emit-prompt): Use renamed eshell-prompt face.
17648
17649 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
17650 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
17651 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
17652 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
17653 Remove "-face" suffix from face names.
17654 (eshell-ls-directory-face, eshell-ls-symlink-face)
17655 (eshell-ls-executable-face, eshell-ls-readonly-face)
17656 (eshell-ls-unreadable-face, eshell-ls-special-face)
17657 (eshell-ls-missing-face, eshell-ls-archive-face)
17658 (eshell-ls-backup-face, eshell-ls-product-face)
17659 (eshell-ls-clutter-face):
17660 New backward-compatibility aliases for renamed faces.
17661 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
17662
17663 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
17664 Remove "-face" suffix from face name.
17665 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
17666 instead of literal face.
17667
17668 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
17669
17670 * emacs-lisp/warnings.el (display-warning, lwarn)
17671 (warning-minimum-log-level): Doc fixes.
17672 (warning-minimum-level, warning-minimum-log-level):
17673 Add :debug to :type choices.
17674
17675 * progmodes/ada-mode.el (ada-format-paramlist)
17676 (ada-get-indent-case, ada-check-matching-start)
17677 (ada-check-defun-name, ada-goto-matching-decl-start)
17678 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
17679 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
17680 (ada-make-subprogram-body): Follow error conventions.
17681 (ada-case-exception-file, ada-indent-comment-as-code)
17682 (ada-indent-handle-comment-special, ada-indent-renames)
17683 (ada-indent-return, ada-search-directories-internal)
17684 (ada-tab-policy, ada-case-exception-substring)
17685 (ada-other-file-alist, ada-matching-start-re)
17686 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
17687 (ada-imenu-generic-expression, ada-compile-goto-error)
17688 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
17689 (ada-popup-menu, ada-add-extensions, ada-mode)
17690 (ada-region-selected, ada-create-case-exception)
17691 (ada-create-case-exception-substring, ada-after-keyword-p)
17692 (ada-activate-keys-for-case, ada-adjust-case-region)
17693 (ada-adjust-case-buffer, ada-format-paramlist)
17694 (ada-scan-paramlist, ada-insert-paramlist)
17695 (ada-indent-newline-indent)
17696 (ada-indent-newline-indent-conditional)
17697 (ada-justified-indent-current, ada-goto-previous-word)
17698 (ada-indent-current, ada-get-indent-open-paren)
17699 (ada-get-indent-paramlist, ada-get-indent-end)
17700 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
17701 (ada-get-indent-block-start, ada-get-indent-subprog)
17702 (ada-get-indent-noindent, ada-get-indent-label)
17703 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
17704 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
17705 (ada-goto-stmt-end, ada-goto-next-word)
17706 (ada-check-matching-start, ada-check-defun-name)
17707 (ada-goto-matching-decl-start, ada-goto-matching-start)
17708 (ada-goto-matching-end, ada-search-ignore-string-comment)
17709 (ada-in-decl-p, ada-looking-at-semi-or)
17710 (ada-looking-at-semi-private, ada-in-paramlist-p)
17711 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
17712 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
17713 (ada-next-procedure, ada-previous-procedure, ada-next-package)
17714 (ada-previous-package, ada-create-menu)
17715 (ada-fill-comment-paragraph-justify)
17716 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
17717 (ada-other-file-name, ada-last-which-function-line)
17718 (ada-last-which-function-subprog, ada-which-function)
17719 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
17720 (ada-gen-treat-proc, ada-check-emacs-version)
17721 (ada-continuation-indent, ada-align-region-separate):
17722 Fix typos in docstrings.
17723 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
17724
17725 2005-06-16 Lute Kamstra <lute@gnu.org>
17726
17727 * simple.el (fundamental-mode): Run after-change-major-mode-hook
17728 conditionally.
17729
17730 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
17731
17732 * comint.el (comint-replace-by-expanded-filename)
17733 (comint-prompt-regexp, comint-delimiter-argument-list)
17734 (comint-preinput-scroll-to-bottom):
17735 * info.el (Info-hide-cookies-node):
17736 * ls-lisp.el (ls-lisp-classify):
17737 * find-file.el (ff-search-directories, ff-special-constructs)
17738 (ff-find-other-file):
17739 * font-lock.el (font-lock-keywords):
17740 * shell.el (shell-prompt-pattern)
17741 (shell-dynamic-complete-functions, shell-mode)
17742 (shell-delimiter-argument-list):
17743 * term.el (term-replace-by-expanded-filename)
17744 (term-prompt-regexp, term-delimiter-argument-list):
17745 * woman.el (woman-ignore, woman0-if):
17746 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
17747 * emacs-lisp/elint.el (elint-init-env):
17748 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
17749 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
17750 * language/ethio-util.el (ethio-tilde-escape)
17751 (ethio-use-three-dot-question):
17752 * net/zone-mode.el (zone-mode-load-time-setup):
17753 * progmodes/cc-align.el (c-lineup-argcont):
17754 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
17755 * progmodes/cperl-mode.el (cperl-set-style-back):
17756 * progmodes/inf-lisp.el (inferior-lisp-prompt):
17757 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
17758 Fix spellings in docstrings.
17759
17760 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
17761 * progmodes/modula2.el (m2-for): Fix spellings.
17762
17763 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
17764
17765 * simple.el (undo-more): Don't use `format' on `error' arguments.
17766 Improve argument/docstring consistency.
17767 (pending-undo-list): Doc fix.
17768
17769 * smerge-mode.el (smerge-ensure-match):
17770 * emulation/vip.el (vip-ex):
17771 * net/zone-mode.el (zone-mode-update-serial):
17772 * progmodes/idlwave.el (idlwave-complete):
17773 * progmodes/vhdl-mode.el (vhdl-visit-file)
17774 (vhdl-compose-wire-components):
17775 Don't use `format' on `error' arguments.
17776
17777 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
17778 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
17779 (tooltip-help-tips): Fix typos in docstrings.
17780
17781 2005-06-16 David Ponce <david@dponce.com>
17782
17783 * tree-widget.el (tree-widget-value-create): Simplify last change.
17784
17785 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
17786
17787 * ido.el (ido-incomplete-regexp): New variable.
17788 (ido-set-matches-1): Handle invalid-regexp error and set
17789 ido-incomplete-regexp.
17790 (ido-incomplete-regexp): New face.
17791 (ido-completions): Use it.
17792 (ido-complete, ido-exit-minibuffer, ido-completions):
17793 Handle incomplete regexps.
17794 (ido-completions): Add check for complete match when entering a regexp.
17795
17796 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17797
17798 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
17799
17800 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
17801
17802 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
17803 by field delimiters.
17804
17805 2005-06-15 David Ponce <david@dponce.com>
17806
17807 * tree-widget.el: eval-and-compile inlined functions so they will
17808 be available at run-time too.
17809 (tree-widget-super-format-handler)
17810 (tree-widget-format-handler): Remove.
17811 (tree-widget-value-create): Handle the :indent property.
17812
17813 2005-06-15 Miles Bader <miles@gnu.org>
17814
17815 * progmodes/which-func.el (which-func): Only inherit
17816 `font-lock-function-name-face' when that makes sense against the
17817 default mode-line face, otherwise set the face color explicitly.
17818
17819 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
17820 faces instead of (non-existent) variables.
17821
17822 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
17823
17824 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
17825 (iswitchb-get-matched-buffers): Likewise. Simplify.
17826
17827 2005-06-14 Miles Bader <miles@gnu.org>
17828
17829 * progmodes/ld-script.el (ld-script-location-counter):
17830 Remove "-face" suffix from face name.
17831 (ld-script-location-counter-face):
17832 New backward-compatibility alias for renamed face.
17833 (ld-script-location-counter-face): Use renamed face.
17834
17835 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
17836 (cperl-hash): Remove "-face" suffix from face names.
17837 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
17838 New backward-compatibility aliases for renamed faces.
17839 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
17840 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
17841
17842 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
17843 name.
17844 (which-func-face): New backward-compatibility alias for renamed face.
17845 (which-func-format): Use renamed which-func face.
17846
17847 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
17848 (vhdl-function, vhdl-directive, vhdl-reserved-word)
17849 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
17850 names.
17851 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
17852 (vhdl-speedbar-configuration, vhdl-speedbar-package)
17853 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
17854 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
17855 (vhdl-speedbar-architecture-selected)
17856 (vhdl-speedbar-configuration-selected)
17857 (vhdl-speedbar-package-selected)
17858 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
17859 names.
17860 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
17861 Use renamed faces.
17862 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
17863 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
17864 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
17865 Use renamed faces.
17866 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
17867 names.
17868 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
17869 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
17870 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
17871 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
17872 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
17873 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
17874
17875 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
17876 face name.
17877 (sh-heredoc-face): New backward-compatibility alias for renamed face.
17878 (sh-heredoc-face): Use renamed sh-heredoc face.
17879
17880 * progmodes/idlw-help.el (idlwave-help-link):
17881 Remove "-face" suffix from face name.
17882 (idlwave-help-link-face):
17883 New backward-compatibility alias for renamed face.
17884 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
17885
17886 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
17887 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
17888 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
17889 New backward-compatibility aliases for renamed faces.
17890 (idlwave-shell-disabled-breakpoint-face)
17891 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
17892
17893 * progmodes/flymake.el (flymake-errline, flymake-warnline):
17894 Remove "-face" suffix from face names.
17895 (flymake-errline-face, flymake-warnline-face):
17896 New backward-compatibility aliases for renamed faces.
17897 (flymake-highlight-line): Use renamed flymake faces.
17898
17899 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
17900 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
17901 (ebrowse-member-class, ebrowse-progress):
17902 Remove "-face" suffix from face names.
17903 (ebrowse-tree-mark-face, ebrowse-root-class-face)
17904 (ebrowse-file-name-face, ebrowse-default-face)
17905 (ebrowse-member-attribute-face, ebrowse-member-class-face)
17906 (ebrowse-progress-face):
17907 New backward-compatibility aliases for renamed faces.
17908 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
17909 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
17910 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
17911 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
17912
17913 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
17914 antlr-syntax)
17915 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
17916 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
17917 names.
17918 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
17919 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
17920 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
17921 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
17922 backward-compatibility aliases for renamed faces.
17923 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
17924 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
17925 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
17926 remove "font-lock-". Use renamed antlr-mode faces.
17927 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
17928 literal face-names with face variable references.
17929
17930 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
17931 face name.
17932 (Buffer-menu-buffer-face): New backward-compatibility alias for
17933 renamed face.
17934 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
17935
17936 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
17937
17938 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
17939 Eliminate "-face" suffix.
17940 (makefile-targets): Inherit from font-lock-function-name-face and
17941 eliminate "-face" suffix.
17942 (makefile-shell): Remove attributes and eliminate "-face" suffix.
17943 (makefile-*-font-lock-keywords): Append makefile-targets in rule
17944 actions, instead of prepending, to make it less visible.
17945 (makefile-previous-dependency, makefile-match-dependency):
17946 Don't match a target on a continuation line.
17947
17948 * files.el (auto-mode-alist): Put Makefile in gmake mode.
17949
17950 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
17951
17952 * progmodes/gdb-ui.el (menu): Re-order menu items.
17953 (gdb-tooltip-print): Respect tooltip-use-echo-area.
17954
17955 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
17956 Define in tooltip.el.
17957 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
17958 (gud-tooltip-tips): Respect tooltip-use-echo-area and
17959 gud-tooltip-echo-area.
17960
17961 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
17962 backward compatibility and make obsolete.
17963 (tooltip-help-tips): Use tooltip-use-echo-area.
17964 (tooltip-show-help-function): Rename to...
17965 (tooltip-show-help): ...this, because it is a function.
17966 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
17967
17968 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
17969
17970 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
17971 (edebug-print-length, edebug-print-level, edebug-print-circle)
17972 (edebug-modify-breakpoint, edebug-eval-last-sexp)
17973 (edebug-eval-print-last-sexp): Doc fixes.
17974
17975 2005-06-14 Kim F. Storm <storm@cua.dk>
17976
17977 * ido.el (ido-mode): Make a new keymap every time we enable ido,
17978 as the coverage buffer/file/both may change.
17979
17980 2005-06-14 Lute Kamstra <lute@gnu.org>
17981
17982 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
17983 and run-mode-hooks. Simplify.
17984
17985 * mail/rmailedit.el (rmail-edit-mode):
17986 * progmodes/octave-inf.el (inferior-octave-mode):
17987 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
17988
17989 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
17990 and run-mode-hooks.
17991 (recentf-edit-list, recentf-open-files): Don't call
17992 kill-all-local-variables directly.
17993
17994 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
17995
17996 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
17997
17998 * emacs-lisp/byte-run.el (make-obsolete)
17999 (define-obsolete-function-alias): Rename arguments FUNCTION and
18000 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
18001 (make-obsolete-variable, define-obsolete-variable-alias):
18002 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
18003 respectively.
18004
18005 * isearchb.el (isearchb-activate):
18006 * pcvs.el (cvs-mode):
18007 * ses.el (ses-load):
18008 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
18009 * net/tramp.el (tramp-find-file-exists-command)
18010 (tramp-find-shell):
18011 * progmodes/ada-mode.el (ada-create-case-exception)
18012 (ada-create-case-exception-substring, ada-make-subprogram-body):
18013 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
18014 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
18015 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
18016 * textmodes/org.el (org-promote, org-evaluate-time-range)
18017 (org-agenda-next-date-line, org-agenda-previous-date-line)
18018 (org-agenda-error, org-open-at-point, org-table-move-row)
18019 (org-format-table-table-html-using-table-generate-source)
18020 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
18021 * textmodes/reftex.el (reftex-access-scan-info):
18022 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
18023 (reftex-toc-promote-prepare): Follow error conventions.
18024
18025 * diff-mode.el (diff-mode): Fix typo in docstring.
18026
18027 * forms.el (forms--intuit-from-file): Fix reference to
18028 `forms-number-of-fields' in error message.
18029 (forms-print): Fix quoting in error message.
18030
18031 * forms.el (forms-mode):
18032 * emulation/vi.el (vi-goto-insert-state):
18033 * progmodes/flymake.el (flymake-new-err-info)
18034 (flymake-start-syntax-check-for-current-buffer)
18035 (flymake-simple-cleanup):
18036 * eshell/esh-var.el (eshell/export):
18037 * progmodes/gud.el (xdb):
18038 * textmodes/flyspell.el (flyspell-incorrect-hook)
18039 (flyspell-maybe-correct-transposition)
18040 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
18041
18042 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
18043
18044 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
18045 minibuffer prompt.
18046
18047 2005-06-13 Kim F. Storm <storm@cua.dk>
18048
18049 * subr.el (add-to-ordered-list): New defun.
18050
18051 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
18052 add cua--keymap-alist to emulation-mode-map-alists.
18053
18054 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
18055
18056 * subr.el (complete-in-turn): New macro.
18057 (dynamic-completion-table, lazy-completion-table): Add debug info.
18058
18059 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
18060 in preference to face aliases.
18061
18062 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
18063 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
18064 Remove unused vars `start' and `firstline'.
18065 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
18066 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
18067
18068 2005-06-13 Eli Zaretskii <eliz@gnu.org>
18069
18070 * cus-start.el (all): Don't complain about missing GTK-related
18071 variables, unless either `gtk' is boundp or this isn't a
18072 `windows-nt' build.
18073
18074 2005-06-13 Lute Kamstra <lute@gnu.org>
18075
18076 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
18077 run-mode-hooks.
18078
18079 * ediff-mult.el (ediff-meta-mode):
18080 * ediff-util.el (ediff-mode): Use run-mode-hooks.
18081
18082 * ledit.el (ledit-mode): Use delay-mode-hooks.
18083
18084 * woman.el (woman-mode-line-format): Delete constant.
18085 (woman-mode-map): Initialize it properly.
18086 (woman-mode): Set mode-class property to special.
18087 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
18088 Set major-mode and mode-name. Don't set mode-line-format directly.
18089 (Man-getpage-in-background): Don't reference woman-mode-line-format.
18090
18091 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
18092 string argument obsolete.
18093
18094 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
18095
18096 * textmodes/org.el (org-CUA-compatible): New option.
18097 (org-disputed-keys): New variable.
18098 (org-key): New function.
18099 (orgtbl-make-binding): Add docstring to the created function.
18100 (org-mode): Set paragraph start/separate regexps.
18101 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
18102 (org-archive-location, org-archive-mark-done)
18103 (org-archive-stamp-time): New options.
18104 (org-archive-subtree): New command.
18105 (org-fill-paragraph): New function.
18106 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
18107 (org-fake-empty-table-line): Function removed.
18108 (org-format-org-table-html): Do not create empty table lines at
18109 separator lines. Improved table header treatment.
18110 (org-link-format): New option.
18111 (org-make-link): New function.
18112 (org-insert-link, org-store-link): Use org-make-link.
18113 (org-open-file): Quote file name for shell command, to allow
18114 spaces in file names.
18115 (org-link-regexp): Fix bug with mailto link.
18116 (org-link-maybe-angles-regexp, org-protected-link-regexp):
18117 New constants.
18118 (org-export-as-html): Deal with the optional angles around a link.
18119 Better treatment of file: links.
18120 (org-open-at-point): Replace @{ and @} with < and >.
18121 (org-run-mode-hooks): Function removed.
18122 (org-agenda-mode): No longer use `org-run-mode-hooks'.
18123
18124 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
18125
18126 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
18127 MI command -data-list-register-values.
18128 (gdb-post-prompt): Indent properly.
18129
18130 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
18131
18132 * hilit-chg.el (highlight-changes-colors): Rename from
18133 `highlight-changes-colours'.
18134 (highlight-changes-colours): Keep as obsolete alias.
18135 (highlight-changes-face-list): Doc fix.
18136 (hilit-chg-make-list): Use `highlight-changes-colors'.
18137
18138 2005-06-12 Mark A. Hershberger <mah@everybody.org>
18139
18140 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
18141 defun-prompt-regexp.
18142
18143 2005-06-12 Eli Zaretskii <eliz@gnu.org>
18144
18145 * loadup.el: Don't say we are dumping under 2 names on windows-nt
18146 and cygwin.
18147
18148 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
18149 Don't use an old loaddefs.el, as in Makefile.in.
18150
18151 2005-06-12 Lute Kamstra <lute@gnu.org>
18152
18153 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
18154
18155 * man.el (Man-mode-map): Initialize it properly.
18156 (Man-mode): Set mode-class property to special.
18157
18158 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
18159
18160 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
18161
18162 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
18163 A newline is needed in the docstring there.
18164
18165 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
18166 Doc fixes.
18167
18168 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
18169
18170 * printing.el: Doc fix. The menubar is no more changed when printing
18171 is loaded, it only changes when pr-menu-bind or pr-update-menus is
18172 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
18173 (pr-version): New version number (6.8.4).
18174 (pr-menu-bind): New command.
18175 (pr-update-menus): Docstring and code fix.
18176 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
18177 Docstring fix.
18178 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
18179 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
18180
18181 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
18182
18183 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
18184 "Returns" to "return", document useful return values, etc.
18185
18186 2005-06-11 Alan Mackenzie <acm@muc.de>
18187
18188 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
18189 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
18190 (adaptive-file-function): Minor amendment to doc-string.
18191
18192 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
18193
18194 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
18195 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
18196 Fix :type--it is `integer', not `string'.
18197
18198 * faces.el (modeline-highlight): Rename from (the erroneous)
18199 `modeline-higilight'.
18200
18201 2005-06-11 Lute Kamstra <lute@gnu.org>
18202
18203 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
18204 lisp-interaction-mode-map but make it the parent.
18205 (edebug-eval-mode): Use define-derived-mode.
18206
18207 2005-06-11 Andreas Schwab <schwab@suse.de>
18208
18209 * bindings.el: Add binding of `ESC functionkey' for every
18210 `M-functionkey'.
18211 * hexl.el (hexl-mode-map): Likewise.
18212
18213 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
18214
18215 * progmodes/compile.el (compilation-error-regexp-alist-alist)
18216 [msft]: update regexp for newer msft compilers.
18217
18218 2005-06-10 Mark A. Hershberger <mah@everybody.org>
18219
18220 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
18221 ATTLIST portions of included DTDs.
18222 (xml-parse-dtd): Eliminate use of inefficient match-data.
18223
18224 2005-06-10 Miles Bader <miles@gnu.org>
18225
18226 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
18227 (mpuz-text): Remove "-face" suffix from face names.
18228 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
18229 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
18230 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
18231
18232 * play/gomoku.el (gomoku-O, gomoku-X):
18233 Remove "-face" suffix from face names.
18234 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
18235 New backward-compatibility aliases for renamed faces.
18236 (gomoku-font-lock-keywords): Use renamed gomoku faces.
18237
18238 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
18239
18240 * thumbs.el: Fixes for changes of 2005-06-09.
18241 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
18242 as a directory.
18243 (thumbs-thumbname): Remove directory separator from format string;
18244 `thumbs-thumbsdir' now returns a valid directory name.
18245 (thumbs-temp-dir): New defsubst.
18246 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
18247 Use it.
18248
18249 * cus-edit.el (minibuffer):
18250 * files.el (make-backup-file-name-function):
18251 * filesets.el (filesets-external-viewers):
18252 * hilit-chg.el (highlight-changes-colours)
18253 (highlight-changes-face-list, highlight-changes-rotate-faces):
18254 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
18255 * kmacro.el (kmacro-call-macro):
18256 * log-edit.el (log-edit-changelog-full-paragraphs):
18257 * mouse.el (mouse-1-click-follows-link):
18258 * skeleton.el (skeleton-autowrap):
18259 * subr.el (insert-for-yank-1):
18260 * tempo.el (tempo-insert-region):
18261 * terminal.el (terminal-emulator):
18262 * time.el (display-time-mail-face):
18263 * vc.el (vc-annotate):
18264 * vcursor.el (vcursor-copy-line):
18265 * woman.el (woman-bold-headings, woman-ignore)
18266 (woman-default-faces, woman-monochrome-faces):
18267 * calendar/todo-mode.el (todo-insert-threshold):
18268 * emulation/pc-select.el (pc-select-selection-keys-only)
18269 (pc-selection-mode):
18270 * emulation/vip.el (vip-find-char-forward):
18271 * emulation/viper-cmd.el (viper-find-char-forward):
18272 * international/mule-cmds.el
18273 (select-safe-coding-system-accept-default-p)
18274 (input-method-exit-on-invalid-key):
18275 * international/mule-diag.el (describe-coding-system):
18276 * international/ucs-tables.el (unify-8859-on-encoding-mode):
18277 * net/browse-url.el (browse-url-xterm-program):
18278 * obsolete/lazy-lock.el (lazy-lock-mode):
18279 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
18280 (cperl-mode):
18281 * progmodes/cpp.el (cpp-face-light-name-list)
18282 (cpp-face-dark-name-list):
18283 * progmodes/delphi.el (delphi-newline-always-indents):
18284 Fix spellings in docstrings.
18285
18286 * ido.el (ido-mode, ido-file-extensions-order)
18287 (ido-default-file-method, ido-default-buffer-method)
18288 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
18289 (ido-decorations, ido-read-file-name-as-directory-commands)
18290 (ido-read-file-name-non-ido, ido-work-directory-list)
18291 (ido-ignore-item-temp-list, ido-current-directory)
18292 (ido-magic-forward-char, ido-enter-find-file)
18293 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
18294 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
18295
18296 2005-06-10 Lute Kamstra <lute@gnu.org>
18297
18298 * play/dunnet.el (dun-mode): Use define-derived-mode.
18299 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
18300 obsolete alias.
18301
18302 * play/doctor.el (doctor-mode-map): Remove defvar.
18303 (doctor-mode): Use define-derived-mode.
18304
18305 * mail/mspools.el (mspools-mode):
18306 * net/eudc-hotlist.el (eudc-hotlist-mode):
18307 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
18308
18309 2005-06-10 Miles Bader <miles@gnu.org>
18310
18311 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
18312 Remove "-face" suffix from face names.
18313 (flyspell-incorrect-face, flyspell-duplicate-face):
18314 New backward-compatibility aliases for renamed faces.
18315 (flyspell-mode-on, make-flyspell-overlay)
18316 (flyspell-highlight-incorrect-region)
18317 (flyspell-highlight-duplicate-region)
18318 (flyspell-display-next-corrections)
18319 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
18320
18321 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
18322 from face name.
18323 (texinfo-heading-face): New backward-compatibility alias for
18324 renamed face.
18325 (texinfo-heading-face): Use renamed texinfo-heading face.
18326
18327 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
18328 suffix from face names.
18329 (tex-math-face, tex-verbatim-face):
18330 New backward-compatibility aliases for renamed faces.
18331 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
18332 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
18333 literal face name.
18334
18335 * textmodes/table.el (table-cell): Remove "-face" suffix from face
18336 name.
18337 (table-cell-face): New backward-compatibility alias for renamed face.
18338 (table--put-cell-face-property, table--update-cell-face):
18339 Use renamed table-cell face.
18340
18341 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
18342 from face name.
18343 (sgml-namespace-face): New backward-compatibility alias for
18344 renamed face.
18345 (sgml-namespace-face): Use renamed sgml-namespace face.
18346
18347 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
18348 (org-level-4, org-level-5, org-level-6, org-level-7)
18349 (org-level-8, org-warning, org-headline-done)
18350 (org-deadline-announce, org-scheduled-today)
18351 (org-scheduled-previously, org-link, org-done, org-table)
18352 (org-time-grid): Remove "-face" suffix from face names.
18353 (org-level-1-face, org-level-2-face, org-level-3-face)
18354 (org-level-4-face, org-level-5-face, org-level-6-face)
18355 (org-level-7-face, org-level-8-face, org-warning-face)
18356 (org-headline-done-face, org-deadline-announce-face)
18357 (org-scheduled-today-face, org-scheduled-previously-face)
18358 (org-link-face, org-done-face, org-table-face)
18359 (org-time-grid-face):
18360 New backward-compatibility aliases for renamed faces.
18361 (org-level-faces, org-set-font-lock-defaults, org-timeline)
18362 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
18363 (org-agenda-get-timestamps, org-agenda-get-scheduled)
18364 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
18365
18366 * emulation/viper-init.el (viper-search, viper-replace-overlay)
18367 (viper-minibuffer-emacs, viper-minibuffer-insert)
18368 (viper-minibuffer-vi): Remove "-face" suffix from face names.
18369 (viper-search-face, viper-replace-overlay-face)
18370 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
18371 (viper-minibuffer-vi-face):
18372 New backward-compatibility aliases for renamed faces.
18373 (viper-search-face, viper-replace-overlay-face)
18374 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
18375 (viper-minibuffer-vi-face): Use renamed viper faces.
18376
18377 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
18378 Remove "-face" suffix from face names.
18379 (testcover-nohits-face, testcover-1value-face):
18380 New backward-compatibility aliases for renamed faces.
18381 (testcover-mark): Use renamed testcover faces.
18382
18383 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
18384 face name.
18385 (diary-button-face): New backward-compatibility alias for renamed face.
18386 (diary-entry): Use renamed diary-button face.
18387
18388 * calendar/calendar.el (diary, calendar-today, holiday)
18389 (mark-visible-calendar-date): Remove "-face" suffix from face names.
18390 (diary-face, calendar-today-face, holiday-face):
18391 New backward-compatibility aliases for renamed faces.
18392 (eval-after-load "facemenu", diary-entry-marker)
18393 (calendar-today-marker, calendar-holiday-marker, diary-face):
18394 Use renamed calendar faces.
18395
18396 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
18397 (compare-windows-face): New backward-compatibility alias for
18398 renamed face.
18399 (compare-windows-highlight): Use renamed compare-windows face.
18400
18401 * strokes.el (strokes-char): Remove "-face" suffix from face name.
18402 (strokes-char-face): New backward-compatibility alias for renamed face.
18403 (strokes-encode-buffer): Use renamed strokes-char face.
18404
18405 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
18406 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
18407 Remove "-face" suffix from face names.
18408 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
18409 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
18410 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
18411 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
18412 Use renamed pcvs faces.
18413 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
18414 * pcvs-defs.el (cvs-mode-map): Likewise.
18415 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
18416
18417 * info.el (info-title-1, info-title-2, info-title-3)
18418 (info-title-4): Remove "-face" suffix from and downcase face names.
18419 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
18420 (Info-title-4-face):
18421 New backward-compatibility aliases for renamed faces.
18422 (Info-fontify-node): Use renamed info faces.
18423
18424 * hilit-chg.el (highlight-changes, highlight-changes-delete):
18425 Remove "-face" suffix from face names.
18426 (highlight-changes-face, highlight-changes-delete-face):
18427 New backward-compatibility aliases for renamed faces.
18428 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
18429 (hilit-chg-make-list): Use renamed highlight-changes faces.
18430
18431 * generic-x.el (show-tabs-tab, show-tabs-space):
18432 Remove "-face" suffix from face names.
18433 (show-tabs-tab-face, show-tabs-space-face):
18434 New backward-compatibility aliases for renamed faces.
18435 (show-tabs-generic-mode-font-lock-defaults-1)
18436 (show-tabs-generic-mode-font-lock-defaults-2):
18437 Use renamed show-tabs faces.
18438
18439 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
18440 (smerge-markers): Remove "-face" suffix from face names.
18441 (smerge-mine-face, smerge-other-face, smerge-base-face)
18442 (smerge-markers-face):
18443 New backward-compatibility aliases for renamed faces.
18444 (smerge-mine-face, smerge-other-face, smerge-base-face)
18445 (smerge-markers-face): Use renamed smerge faces.
18446
18447 * log-view.el (log-view-file, log-view-message): Remove "-face"
18448 suffix from face names.
18449 (log-view-file-face, log-view-message-face):
18450 New backward-compatibility aliases for renamed faces.
18451 (log-view-file-face, log-view-message-face): Use renamed log-view
18452 faces.
18453
18454 * paren.el (show-paren-match, show-paren-mismatch):
18455 Remove "-face" suffix from face names.
18456 (show-paren-match-face, show-paren-mismatch-face):
18457 New backward-compatibility aliases for renamed faces.
18458 (show-paren-function): Use renamed show-paren faces.
18459
18460 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
18461 (ruler-mode-margins, ruler-mode-fringes)
18462 (ruler-mode-column-number, ruler-mode-fill-column)
18463 (ruler-mode-comment-column, ruler-mode-goal-column)
18464 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
18465 suffix from face names.
18466 (ruler-mode-default-face, ruler-mode-pad-face)
18467 (ruler-mode-margins-face, ruler-mode-fringes-face)
18468 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
18469 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
18470 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
18471 New backward-compatibility aliases for renamed faces.
18472 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
18473 (ruler-mode-column-number, ruler-mode-fill-column)
18474 (ruler-mode-comment-column, ruler-mode-goal-column)
18475 (ruler-mode-tab-stop, ruler-mode-current-column)
18476 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
18477 faces.
18478
18479 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
18480 face name.
18481 (whitespace-highlight-the-space): Use renamed face.
18482 (whitespace-highlight-face): New backward-compatibility alias for
18483 renamed face.
18484
18485 * woman.el (woman-italic, woman-bold, woman-unknown)
18486 (woman-addition, woman-symbol-face):
18487 Remove "-face" suffix from face names.
18488 (woman-italic-face, woman-bold-face, woman-unknown-face)
18489 (woman-addition-face):
18490 New backward-compatibility aliases for renamed faces.
18491 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
18492 (woman-decode-region, woman-replace-match)
18493 (woman-display-extended-fonts, woman-special-characters)
18494 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
18495 Use renamed woman faces.
18496
18497 * longlines.el (longlines-visible-face): Face removed.
18498
18499 * diff-mode.el (diff-header, diff-file-header, diff-index)
18500 (diff-hunk-header, diff-removed, diff-added, diff-changed)
18501 (diff-function, diff-context, diff-nonexistent): Remove "-face"
18502 suffix from face names.
18503 (diff-header-face, diff-file-header-face, diff-index-face)
18504 (diff-hunk-header-face, diff-removed-face, diff-added-face)
18505 (diff-changed-face, diff-function-face, diff-context-face)
18506 (diff-nonexistent-face): New backward-compatibility aliases for
18507 renamed faces.
18508 (diff-header-face, diff-file-header-face)
18509 (diff-index, diff-index-face, diff-hunk-header)
18510 (diff-hunk-header-face, diff-removed, diff-removed-face)
18511 (diff-added, diff-added-face, diff-changed-face, diff-function)
18512 (diff-function-face, diff-context-face, diff-nonexistent)
18513 (diff-nonexistent-face): Use renamed diff-mode faces.
18514
18515 * progmodes/compile.el (compilation-warning-face)
18516 (compilation-info-face): Remove "-face" suffix from face names.
18517 (compilation-warning-face, compilation-info-face):
18518 New backward-compatibility aliases for renamed faces.
18519 (compilation-warning-face, compilation-info-face):
18520 Use renamed compilation faces.
18521
18522 * add-log.el (change-log-date, change-log-name)
18523 (change-log-email, change-log-file, change-log-list)
18524 (change-log-conditionals, change-log-function)
18525 (change-log-acknowledgement): Remove "-face" suffix from face names.
18526 (change-log-date-face, change-log-name-face)
18527 (change-log-email-face, change-log-file-face)
18528 (change-log-list-face, change-log-conditionals-face)
18529 (change-log-function-face, change-log-acknowledgement-face):
18530 New backward-compatibility aliases for renamed faces.
18531 (change-log-font-lock-keywords): Use renamed change-log faces.
18532
18533 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
18534 (custom-set, custom-changed, custom-saved, custom-button)
18535 (custom-button-pressed, custom-documentation, custom-state)
18536 (custom-comment, custom-comment-tag, custom-variable-tag)
18537 (custom-variable-button, custom-face-tag, custom-group-tag-1)
18538 (custom-group-tag): Remove "-face" suffix from face names.
18539 (custom-magic-alist, custom-magic-value-create)
18540 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
18541 (custom-invalid-face, custom-rogue-face, custom-modified-face)
18542 (custom-set-face, custom-changed-face, custom-saved-face)
18543 (custom-button-face, custom-button-pressed-face)
18544 (custom-documentation-face, custom-state-face)
18545 (custom-comment-face, custom-comment-tag-face)
18546 (custom-variable-tag-face, custom-variable-button-face)
18547 (custom-face-tag-face, custom-group-tag-face-1)
18548 (custom-group-tag-face):
18549 New backward-compatibility aliases for renamed faces.
18550
18551 * wid-edit.el (widget-documentation, widget-button)
18552 (widget-field, widget-single-line-field, widget-inactive)
18553 (widget-button-pressed): "-face" suffix removed from face names.
18554 (widget-documentation-face, widget-button-face)
18555 (widget-field-face, widget-single-line-field-face)
18556 (widget-inactive-face, widget-button-pressed-face):
18557 New backward-compatibility aliases for renamed faces.
18558 (widget-documentation-face, widget-button-face)
18559 (widget-button-pressed-face, widget-specify-field)
18560 (widget-specify-inactive): Use renamed widget faces.
18561
18562 2005-06-10 Kenichi Handa <handa@m17n.org>
18563
18564 * term/x-win.el (x-clipboard-yank): Remove condition-case
18565 wrapping.
18566
18567 2005-06-11 Kenichi Handa <handa@m17n.org>
18568
18569 * add-log.el (change-log-font-lock-keywords): Make the regexp for
18570 date lines stricter.
18571
18572 2005-06-10 Zhang Wei <id.brep@gmail.com>
18573
18574 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
18575 of x-get-selection.
18576
18577 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
18578
18579 * comint.el (comint-mode, comint-snapshot-last-prompt):
18580 * frame.el (frame-current-scroll-bars):
18581 * term.el (term-mode, term-check-proc, term-input-sender)
18582 (term-simple-send, term-extract-string, term-word)
18583 (term-match-partial-filename):
18584 * window.el (window-current-scroll-bars):
18585 * emulation/cua-base.el (cua-normal-cursor-color)
18586 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
18587 (cua-global-mark-cursor-color):
18588 * mail/undigest.el (rmail-forward-separator-regex):
18589 Fix typos in docstrings.
18590
18591 * comint.el (comint-check-proc, make-comint-in-buffer)
18592 (comint-source-default): Doc fixes.
18593
18594 * term.el (term-send-string): Improve argument/docstring consistency.
18595
18596 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
18597
18598 * comint.el (comint-send-input): Bind `inhibit-read-only' around
18599 call to `delete-region'.
18600 (comint-mode-hook): Do not enable Font Lock by default.
18601
18602 2005-06-09 Lute Kamstra <lute@gnu.org>
18603
18604 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
18605 could be void.
18606
18607 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
18608
18609 * emacs-lisp/debug.el (debugger-will-be-back): New var.
18610 (debug): Use it.
18611 (debugger-step-through, debugger-continue, debugger-jump)
18612 (debugger-return-value): Set it when needed.
18613 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
18614 Use inhibit-read-only.
18615
18616 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
18617
18618 * window.el (shrink-window-if-larger-than-buffer)
18619 (window-size-fixed): Fix typo in docstring.
18620
18621 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
18622 thumbnails directory on loading.
18623 (thumbs-conversion-program): Use `eq' to check the system type,
18624 not `equal'.
18625 (thumbs-temp-dir): Initialize to `temporary-file-directory',
18626 not "/tmp". Fix docstring.
18627 (thumbs-thumbsdir): New function to return the thumbnails
18628 directory, creating it if needed.
18629 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
18630 (thumbs-temp-file): Delete variable and make it into a function.
18631 (thumbs-resize-image, thumbs-modify-image): Use it.
18632 (thumbs-kill-buffer): Simplify.
18633 (thumbs-gensym): Defalias or duplicate CL `gensym'.
18634 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
18635 docstrings.
18636
18637 2005-06-09 Kim F. Storm <storm@cua.dk>
18638
18639 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
18640 set-match-data to free markers in match-data.
18641
18642 * replace.el (replace-match-data): Pass RESEAT arg `t' to
18643 match-data to unchain markers in match-data.
18644
18645 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
18646
18647 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
18648 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
18649 unnecessary now.
18650
18651 2005-06-08 Richard M. Stallman <rms@gnu.org>
18652
18653 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
18654 give the variable a doc string that doesn't say don't set it directly.
18655
18656 * textmodes/ispell.el (ispell-check-version):
18657 Use match-string-no-properties.
18658 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
18659 (ispell-buffer-local-words): Likewise.
18660
18661 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
18662 except on terminals with enough colors to really display it.
18663 (makefile-dependency-regex): Delete spurious `bb'.
18664
18665 * faces.el (escape-glyph): Use blue once again in last case.
18666 (no-break-space): Redefine so that it isn't invisible on a tty.
18667
18668 2005-06-08 Kim F. Storm <storm@cua.dk>
18669
18670 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
18671 also when reading directory name.
18672
18673 2005-06-08 Lute Kamstra <lute@gnu.org>
18674
18675 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
18676 (flyspell-mode-line-string): Remove autoload cookie.
18677 (flyspell-mode): Remove defvar.
18678
18679 2005-06-07 Lute Kamstra <lute@gnu.org>
18680
18681 * textmodes/org.el (org-run-mode-hooks): New function.
18682 (org-agenda-mode): Use it.
18683
18684 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
18685
18686 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
18687
18688 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
18689
18690 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
18691
18692 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
18693
18694 * font-lock.el (font-lock-add-keywords): Doc fix.
18695
18696 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
18697
18698 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
18699 (tex-compile-default): In the absence of any history, use the order in
18700 tex-compile-alist to choose the preferred command.
18701 (tex-compile-commands): Reorder a bit.
18702
18703 * textmodes/flyspell.el (flyspell-auto-correct-binding)
18704 (flyspell-incorrect-face, flyspell-duplicate-face):
18705 Use (X)Emacs-agnostic code.
18706 (flyspell-mode-map): Don't overwrite at each load. Remove code
18707 redundant with the subsequent add-minor-mode. Merge Emacs and
18708 XEmacs code.
18709 (flyspell-word): Minor simplification.
18710 (flyspell-math-tex-command-p): Quieten the byte-compiler.
18711 (flyspell-external-point-words): Remove unused vars `size' and `start'.
18712 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
18713 Merge the corresponding Emacs code.
18714 (flyspell-correct-word, flyspell-xemacs-popup):
18715 Use flyspell-do-correct.
18716
18717 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
18718 a dedicated window.
18719
18720 * international/latexenc.el (latexenc-find-file-coding-system):
18721 Undo part of last patch, to turn off a compiler warning.
18722
18723 2005-06-06 Juri Linkov <juri@jurta.org>
18724
18725 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
18726 Rename `tmm-inactive-face' to `tmm-inactive'.
18727
18728 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
18729
18730 * iswitchb.el: Rename faces.
18731
18732 2005-06-06 Kim F. Storm <storm@cua.dk>
18733
18734 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
18735 (cua-global-mark): Remove -face suffix from face names.
18736
18737 * emulation/cua-gmrk.el (cua--init-global-mark):
18738 Remove cua-global-mark face setup.
18739
18740 2005-06-06 Richard M. Stallman <rms@gnu.org>
18741
18742 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
18743 just like other allowed characters.
18744 (makefile-match-dependency): Exclude leading and training whitespace
18745 from the range of regexp subexp 1.
18746 (makefile-macroassign-regex): Don't try to match the body,
18747 just the name of the macro being defined.
18748
18749 * info.el (Info-read-node-name-2): New function.
18750 (Info-read-node-name-1): Use that.
18751 Add a completion-base-size-function property.
18752
18753 * simple.el (completion-setup-function): Look for
18754 completion-base-size-function property of minibuffer-completion-table.
18755
18756 * files.el (locate-file-completion): Doc fix.
18757
18758 * printing.el: Don't call pr-update-menus; user must do that.
18759
18760 * emacs-lisp/debug.el (debugger-window): New variable.
18761 (debug): Use debugger-window if it is set and still alive.
18762 Record debugger-window for next entry.
18763
18764 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
18765
18766 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
18767
18768 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
18769 (hack-one-local-variable, hack-local-variables)
18770 (hack-local-variables-prop-line): Pass that arg.
18771
18772 2005-06-06 Kim F. Storm <storm@cua.dk>
18773
18774 * ido.el (ido-first-match, ido-only-match, ido-subdir)
18775 (ido-indicator): Remove -face suffix from face names.
18776
18777 2005-06-06 Juri Linkov <juri@jurta.org>
18778
18779 * font-lock.el (font-lock-regexp-backslash)
18780 (font-lock-regexp-backslash-construct): New faces.
18781 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
18782 after `('. Add `while-no-input' to control structures.
18783
18784 * faces.el (no-break-space, shadow): New faces.
18785 (escape-glyph): Use less loud colors pink2 and red4.
18786
18787 * diff-mode.el (diff-context-face)
18788 * dired.el (dired-ignored)
18789 * rfn-eshadow.el (file-name-shadow)
18790 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
18791
18792 * info.el (Info-title-1-face): Use green instead of yellow because
18793 bold yellow is not readable on light backgrounds.
18794
18795 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
18796 before selecting the desired mode to not spend time fontifying
18797 old contents.
18798
18799 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
18800
18801 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
18802 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
18803
18804 * ps-print.el (ps-default-fg, ps-default-bg):
18805 Fix typos in docstrings.
18806
18807 * isearchb.el (isearchb): Don't pass a spurious second argument to
18808 `iswitchb-completions'.
18809
18810 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
18811
18812 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
18813 to preserve point.
18814 (gdb-find-file-hook): Add doc string.
18815
18816 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
18817 C dereferenced pointer expression.
18818 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
18819
18820 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
18821
18822 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
18823 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
18824 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
18825 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
18826 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
18827 Make background transparent.
18828
18829 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
18830
18831 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
18832 (font-lock-remove-keywords): Doc fix.
18833 (font-lock-mode-major-mode): Compiler defvar.
18834 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
18835
18836 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
18837 (font-lock-mode): Update `font-lock-mode-major-mode'.
18838 (font-lock-set-defaults): Compiler defvar.
18839 (font-lock-default-function): Take `font-lock-mode-major-mode'
18840 into account.
18841
18842 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
18843 keep track of which major mode it enabled the minor mode for.
18844 Use find-file-hook again. Update docstring.
18845
18846 * simple.el (eval-expression-print-level)
18847 (eval-expression-print-length, eval-expression-debug-on-error):
18848 Doc fixes.
18849
18850 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
18851
18852 * iswitchb.el (iswitchb-single-match-face)
18853 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
18854 (iswitchb-invalid-regexp-face): New faces.
18855 (iswitchb-completions): Use them.
18856 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
18857 now marked as an obsolete alias.
18858 (iswitchb-read-buffer): Remove check for bound font variables.
18859 (iswitchb-invalid-regexp): New free variable.
18860 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
18861 set iswitchb-invalid-regexp.
18862 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
18863 invalid regexps.
18864 (iswitchb-completions): Add check for complete match when entering
18865 a regexp.
18866 (iswitchb-completions): Remove require-match argument.
18867 (iswitchb-exhibit): Fix caller.
18868 (iswitchb-common-match-inserted): New variable.
18869 (iswitchb-complete, iswitchb-completion-help): Use it.
18870
18871 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
18872
18873 * url-http.el (url-http-chunked-encoding-after-change-function):
18874 Use `url-http-debug' instead of `message'.
18875
18876 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
18877
18878 * url-http.el (url-http-parse-headers): Pass redirected URL as a
18879 callback argument.
18880
18881 2005-06-04 Kim F. Storm <storm@cua.dk>
18882
18883 * simple.el (line-move): Only call sit-for when moving backwards.
18884
18885 * ido.el (ido-make-merged-file-list-1): New defun split from
18886 ido-make-merged-file-list.
18887 (ido-make-merged-file-list): Bind throw-on-input around call to
18888 ido-make-merged-file-list-1. Return input-pending-p if
18889 interrupted by more input available.
18890 (ido-read-internal): Handle input-pending-p return value from
18891 ido-make-merged-file-list.
18892
18893 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
18894
18895 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
18896 compatibility code.
18897
18898 * international/latexenc.el (latexenc-find-file-coding-system):
18899 Don't inherit the EOL part of the coding-system from the
18900 tex-main buffer. Fit within 80 columns.
18901
18902 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
18903
18904 * tmm.el (tmm-inactive-face): New face.
18905 (tmm-remove-inactive-mouse-face): New function.
18906 (tmm-prompt, tmm-add-one-shortcut)
18907 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
18908 but not selectable.
18909
18910 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
18911
18912 * faces.el (face-equal): Improve argument/docstring consistency.
18913
18914 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
18915
18916 * progmodes/make-mode.el (makefile-targets-face)
18917 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
18918 (makefile-bsdmake-dependency-regex)
18919 (makefile-makepp-rule-action-regex)
18920 (makefile-bsdmake-rule-action-regex): New constants.
18921 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
18922
18923 * progmodes/compile.el (compilation-error-regexp-alist-alist):
18924 Allow (...) within `...' for makepp messages.
18925
18926 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
18927
18928 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
18929
18930 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
18931 "." files are deleted from all file lists before comparison.
18932
18933 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
18934 (viper-ESC-key): Made them customizable.
18935
18936 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
18937
18938 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
18939
18940 * autorevert.el (auto-revert-buffers): Use save-match-data.
18941
18942 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18943
18944 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
18945 menu items with a nil command binding.
18946
18947 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
18948
18949 * emacs-lisp/cl-macs.el (defsetf):
18950 Improve argument/docstring consistency.
18951
18952 * faces.el (list-faces-display): Improve the formatting by
18953 computing the maximum length required for any face-name (reworked
18954 patch of 1999-01-11, accidentally deleted on 1999-07-21).
18955 (internal-find-face): Remove redundant info in docstring.
18956
18957 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
18958
18959 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
18960 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
18961 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
18962 (gdb-assembler-custom): Improve regexps.
18963 (def-gdb-auto-update-handler): Use window point to preserve point.
18964
18965 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18966
18967 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
18968
18969 2005-05-31 Jay Belanger <belanger@truman.edu>
18970
18971 * calc/calc-embed.el (calc-embedded-word): Change argument passed
18972 to calc-embedded.
18973 (calc-embedded-make-info): Have plain prefix argument select
18974 entire line.
18975
18976 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
18977
18978 * faces.el (list-faces-display): Signal error if passed a regexp
18979 that matches no face name.
18980
18981 * simple.el (filter-buffer-substring): Fix typo in docstring.
18982
18983 2005-05-31 Richard M. Stallman <rms@gnu.org>
18984
18985 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
18986 (vhdl-emacs-21): Doc fix.
18987 (vhdl-mode): Unconditionally set comment-padding.
18988 (vhdl-fixup-whitespace-region): Insert spaces only where
18989 there are none.
18990 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
18991
18992 2005-05-30 John Wiegley <johnw@newartisans.com>
18993
18994 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
18995 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
18996 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
18997 `directory-sep-char' to ?/, and all uses of `string-to-int' to
18998 `string-to-number'.
18999
19000 2005-05-30 Jay Belanger <belanger@truman.edu>
19001
19002 * calc/calc.el (calc-bug-address): Fix docstring.
19003 (calc-window-hook, calc-trail-window-hook): New variables.
19004 (calc-trail-display): Restore use of calc-trail-window-hook.
19005 (calc): Restore use of calc-window-hook.
19006
19007 2005-05-31 Masatake YAMATO <jet@gyve.org>
19008
19009 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
19010
19011 * help-fns.el (help-C-file-name): Add autoload mark for
19012 `find-function-noselect'.
19013
19014 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
19015
19016 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
19017 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
19018
19019 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
19020
19021 * calendar/diary-lib.el (mark-included-diary-files): Only kill
19022 included diary buffer if it was not already being visited.
19023 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
19024
19025 * calendar/icalendar.el (top-level): Do not require appt.
19026
19027 * mail/supercite.el (sc-select-attribution): Only use a list
19028 element from sc-attrib-selection-list if it returns a string.
19029 Reported by Davide G. M. Salvetti <salve@debian.org>.
19030
19031 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
19032
19033 * thumbs.el (thumbs-thumbname): The resulting thumbname now
19034 includes a hash value to improve its uniqueness, and has a ".jpg"
19035 extension. Also, it is now a valid filename on all systems.
19036 (thumbs-make-thumb): Use `let', not `let*'.
19037 (thumbs-show-thumbs-list): Check for JPEG availability.
19038
19039 2005-05-30 Richard M. Stallman <rms@gnu.org>
19040
19041 * filesets.el (filesets-menu-ensure-use-cached):
19042 Prevent warning when emacs-version>= is undefined.
19043
19044 * printing.el (pr-interactive-n-up): Use string-to-number.
19045
19046 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
19047
19048 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
19049 Warn only when name to be defined is quoted.
19050
19051 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
19052
19053 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
19054 Make regexp more robust.
19055 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
19056 Force regeneration of disassembly.
19057
19058 2005-05-29 Jay Belanger <belanger@truman.edu>
19059
19060 * calc/calc.el (calc-user-invocation): Check if
19061 calc-invocation-macro is non-nil.
19062
19063 2005-05-29 Juri Linkov <juri@jurta.org>
19064
19065 * add-log.el (change-log-font-lock-keywords):
19066 Add `+' to e-mail regexp to accept mail address with keywords.
19067
19068 * man.el (Man-name-regexp): Add `:' to accept qualified names.
19069
19070 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
19071
19072 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
19073
19074 * ielm.el (inferior-emacs-lisp-mode): Ditto.
19075
19076 2005-05-29 Richard M. Stallman <rms@gnu.org>
19077
19078 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
19079 Undo the change that moves to end of the current word.
19080
19081 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
19082
19083 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
19084 Throw error when count <= 0 to ensure input is a number.
19085 (gdb-read-memory-custom): Pick up address from buffer.
19086 (gdb-memory-mode): Allow user to increment and decrement
19087 memory address from header line.
19088
19089 2005-05-29 Richard M. Stallman <rms@gnu.org>
19090
19091 * flyspell.el (flyspell-version): Function deleted.
19092 (flyspell-auto-correct-previous-hook): Doc fix.
19093
19094 * jit-lock.el (jit-lock-function, jit-lock-after-change):
19095 Do nothing if memory is full.
19096
19097 * font-lock.el (font-lock-fontify-syntactically-region):
19098 Pass t for GREEDY to looking-back.
19099
19100 * saveplace.el (save-place-alist-to-file): Write the file
19101 using write-region.
19102
19103 * subr.el (looking-back): New argument GREEDY.
19104
19105 * progmodes/compile.el (compilation-start): Set the mode
19106 before inserting the initial text.
19107
19108 * progmodes/which-func.el (which-func-update-1): Turn the mode
19109 off in case of error by setting which-func-mode.
19110
19111 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
19112
19113 * flyspell.el (flyspell-auto-correct-previous-word):
19114 Narrow down to what's on the screen, and recenter overlays
19115 at the end of the next word.
19116
19117 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
19118
19119 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
19120 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
19121 (flyspell-abbrev-p): Default to nil.
19122 (flyspell-use-global-abbrev-table-p): Doc fix.
19123 (flyspell-large-region): Allow nil as value.
19124 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
19125
19126 (mail-mode-flyspell-verify): More robust handling
19127 of `mail-header-separator'. More efficient signature detection.
19128 Allow for regexp metacharacters in message-header-separator.
19129 Adding `To' not to be checked in mail-mode-flyspell-verify.
19130
19131 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
19132 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
19133 Bind flyspell-auto-correct-binding.
19134 Bind C-. and C-, .
19135 (flyspell-mode-map): Likewise.
19136 (flyspell-mode): Doc fix.
19137 (flyspell-accept-buffer-local-defs): Preserve current buffer.
19138 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
19139 (flyspell-word-cache-result): New var, always local.
19140 (flyspell-check-pre-word-p): Doc fix.
19141 (flyspell-check-changed-word-p): Handle spc like newline.
19142 (flyspell-post-command-hook): Set flyspell-word-cache-result.
19143 (flyspell-word-search-backward, flyspell-word-search-forward):
19144 New functions.
19145 (flyspell-word): Return t if nothing to check.
19146 When parsing TeX code, check for after } or \.
19147 Use flyspell-word-search-backward to find previous word.
19148 Return nil if duplicated word.
19149 For word already checked, return same value as last time.
19150 Set flyspell-word-cache-result after checking.
19151 Don't clobber the return value.
19152 (flyspell-get-word): Major rewrite.
19153 (flyspell-external-point-words): New locals pword, pcount.
19154 Fix size used in progress message.
19155 Find the proper corresponding word in flyspell-large-region-buffer.
19156 (flyspell-region): Check for flyspell-large-region = nil.
19157 (flyspell-highlight-incorrect-region): Clean up overlays in region.
19158 (flyspell-auto-correct-word): Check that WORD is a cons.
19159 (flyspell-correct-word): Likewise.
19160
19161 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
19162
19163 * progmodes/make-mode.el (makefile-rule-action-regex)
19164 (makefile-macroassign-regex, makefile-makepp-mode)
19165 (makefile-bsdmake-mode): Continuation lines may be empty.
19166 Reported by Joshua Varner.
19167 (makefile-makepp-font-lock-keywords): Add $(stem).
19168
19169 2005-05-28 Karl Berry <karl@gnu.org>
19170
19171 * textmodes/tex-mode.el: Now that tex-send-command calls
19172 shell-quote-argument (2005-03-31 change), remove all calls to
19173 shell-quote-argument; they all end up invoking tex-send-command.
19174 The double quoting loses on filenames with non-safe characters,
19175 such as "@". Reported by Frederik Fouvry.
19176
19177 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
19178
19179 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
19180 about preserving point.
19181
19182 2005-05-27 Jay Belanger <belanger@truman.edu>
19183
19184 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
19185 Info-goto-node.
19186
19187 * calc/calc-embed.el (calc-embed-arg): New variable.
19188 (calc-do-embedded-activate, calc-embedded-activate-formula)
19189 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
19190 variable by new variable.
19191 (calc-embedded-make-info): Replace undeclared variable by new
19192 variable. When selecting region with positive prefix
19193 argument, use end of previous line instead of beginning of line.
19194
19195 * calc/calc-aent.el (calc-arg-values): Declare it.
19196
19197 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
19198 Declare them.
19199
19200 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
19201
19202 * calc/calc.el (calc-alg-map): Declare it.
19203
19204 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
19205
19206 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
19207
19208 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
19209 (gdb-registers-buffer, toggle-gdb-all-registers):
19210 Toggle display of floating point registers.
19211 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
19212
19213 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
19214 (toggle-gud-tooltip-dereference):
19215 Rename from gud-toggle-tooltip-dereference.
19216
19217 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
19218
19219 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
19220
19221 2005-05-27 Jay Belanger <belanger@truman.edu>
19222
19223 * calc/calc-prog.el (calc-kbd-report): Remove.
19224 (calc-kbd-query): Rewrite.
19225
19226 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
19227
19228 * image.el (image-library-alist): Move to image.c.
19229 (image-type-available-p): Doc fix.
19230
19231 2005-05-27 Lute Kamstra <lute@gnu.org>
19232
19233 * calc/calc.el (calc):
19234 * outline.el (outline-1, outline-2, outline-3, outline-4)
19235 (outline-5, outline-6, outline-7, outline-8):
19236 * textmodes/dns-mode.el (dns-mode):
19237 * textmodes/sgml-mode.el (sgml-namespace-face):
19238 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
19239 (tex-verbatim-face, tex-use-reftex):
19240 * textmodes/texinfo.el (texinfo-heading-face):
19241 Specify customization group.
19242
19243 * longlines.el: Don't require easy-mmode.
19244 (longlines-visible-face): Specify customization group.
19245
19246 2005-05-27 Kenichi Handa <handa@m17n.org>
19247
19248 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
19249 encoding table of windows-1251.
19250
19251 * international/ucs-tables.el (ucs-set-table-for-input):
19252 If translation-table-for-input of a coding system is a symbol, get
19253 its translation-table property.
19254
19255 * international/code-pages.el: Don't register a coding system into
19256 non-iso-charset-alist more than once.
19257 (cp-make-coding-system): Likewise.
19258
19259 2005-05-26 John Wiegley <johnw@newartisans.com>
19260
19261 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
19262 `eshell-resume-eval' is wrapped in a list, it indicates that the
19263 command was run asynchronously. In that case, unwrap the value
19264 before checking the delimiter value.
19265
19266 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
19267 character before a space at the end of a line is \, assume the space
19268 is part of the last argument rather than a final argument separator.
19269
19270 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
19271 is in use, and the target is `t' or `nil' (which are the most common
19272 values), don't assume that the symbol target is a buffer.
19273
19274 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
19275
19276 * calendar/calendar.el (calendar-mode-line-format):
19277 Use mode-line-highlight as mouse-face.
19278
19279 * time.el (display-time-string-forms, display-time-update):
19280 Use mode-line-highlight as mouse-face.
19281
19282 2005-05-26 Jay Belanger <belanger@truman.edu>
19283
19284 * calc/calc.el (calc-language-alist): Remove extra defvar.
19285
19286 2005-05-26 Lute Kamstra <lute@gnu.org>
19287
19288 * arc-mode.el (archive-mode):
19289 * bookmark.el (bookmark-read-annotation-mode)
19290 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
19291 * bs.el (bs-mode):
19292 * calc/calc-yank.el (calc-edit-mode):
19293 * calc/calc.el (calc-mode, calc-trail-mode):
19294 * calculator.el (calculator-mode):
19295 * chistory.el (command-history-mode):
19296 * comint.el:
19297 * cus-edit.el (custom-mode):
19298 * descr-text.el (describe-text-mode):
19299 * ebuff-menu.el (Electric-buffer-menu-mode):
19300 * ediff-util.el (ediff-mode):
19301 * emacs-lisp/re-builder.el (reb-mode):
19302 * emulation/vi.el (vi-mode-setup):
19303 * emulation/ws-mode.el (wordstar-mode):
19304 * eshell/esh-mode.el (eshell-mode):
19305 * forms.el (forms-mode):
19306 * help-mode.el (help-mode):
19307 * hexl.el (hexl-mode):
19308 * ibuffer.el (ibuffer-mode):
19309 * ielm.el (inferior-emacs-lisp-mode):
19310 * info.el (Info-mode, Info-edit-mode):
19311 * international/swedish.el:
19312 * ledit.el (ledit-from-lisp-mode):
19313 * locate.el (locate-mode):
19314 * mail/rmail.el (rmail-mode):
19315 * mail/rmailedit.el (rmail-edit-mode):
19316 * mail/rmailsum.el (rmail-summary-mode):
19317 * mail/supercite.el (sc-electric-mode):
19318 * net/eudc.el (eudc-mode):
19319 * net/quickurl.el (quickurl-list-mode):
19320 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
19321 * obsolete/ooutline.el (outline-mode):
19322 * obsolete/options.el (Edit-options-mode):
19323 * obsolete/rnews.el (news-mode):
19324 * obsolete/rnewspost.el (news-reply-mode):
19325 * play/5x5.el (5x5-mode):
19326 * play/decipher.el (decipher-mode, decipher-stats-mode):
19327 * play/gomoku.el (gomoku-mode):
19328 * play/snake.el (snake-mode):
19329 * play/solitaire.el (solitaire-mode):
19330 * play/tetris.el (tetris-mode):
19331 * progmodes/ada-mode.el (ada-mode):
19332 * progmodes/antlr-mode.el (antlr-mode):
19333 * progmodes/autoconf.el (autoconf-mode):
19334 * progmodes/dcl-mode.el (dcl-mode):
19335 * progmodes/delphi.el (delphi-mode):
19336 * progmodes/ebrowse.el (ebrowse-tree-mode)
19337 (ebrowse-electric-list-mode, ebrowse-member-mode)
19338 (ebrowse-electric-position-mode):
19339 * progmodes/f90.el (f90-mode):
19340 * progmodes/fortran.el (fortran-mode):
19341 * progmodes/icon.el (icon-mode):
19342 * progmodes/idlw-help.el (idlwave-help-mode):
19343 * progmodes/idlw-shell.el (idlwave-shell-mode):
19344 * progmodes/idlwave.el (idlwave-mode):
19345 * progmodes/inf-lisp.el (inferior-lisp-mode):
19346 * progmodes/m4-mode.el (m4-mode):
19347 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
19348 * progmodes/modula2.el (modula-2-mode):
19349 * progmodes/octave-inf.el (inferior-octave-mode):
19350 * progmodes/octave-mod.el (octave-mode):
19351 * progmodes/pascal.el (pascal-mode):
19352 * progmodes/sh-script.el (sh-mode):
19353 * progmodes/sql.el (sql-mode, sql-interactive-mode):
19354 * progmodes/vhdl-mode.el (vhdl-mode):
19355 * progmodes/xscheme.el (scheme-interaction-mode):
19356 * replace.el (occur-mode):
19357 * ses.el (ses-mode):
19358 * simple.el (completion-list-mode):
19359 * skeleton.el:
19360 * speedbar.el (speedbar-mode):
19361 * term.el (term-mode):
19362 * terminal.el (terminal-edit-mode):
19363 * textmodes/reftex-index.el (reftex-index-mode)
19364 (reftex-index-phrases-mode):
19365 * textmodes/reftex-sel.el (reftex-select-label-mode)
19366 (reftex-select-bib-mode):
19367 * textmodes/reftex-toc.el (reftex-toc-mode):
19368 * wdired.el (wdired-change-to-wdired-mode):
19369 * wid-browse.el (widget-browse-mode):
19370 Use run-mode-hooks.
19371
19372 * array.el (array-mode):
19373 * calendar/todo-mode.el (todo-mode):
19374 * man.el (Man-mode):
19375 * play/landmark.el (lm-mode):
19376 * play/mpuz.el (mpuz-mode):
19377 Use kill-all-local-variables and run-mode-hooks.
19378
19379 * subr.el (delay-mode-hooks): Specify indentation.
19380
19381 2005-05-26 Mark A. Hershberger <mah@everybody.org>
19382
19383 * xml.el (xml-substitute-special): Don't die for undefined xml
19384 entities.
19385
19386 2005-05-26 Jay Belanger <belanger@truman.edu>
19387
19388 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
19389 of nil.
19390
19391 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
19392
19393 * progmodes/gdb-ui.el (gdb-frame-address):
19394 Rename from gdb-current-address.
19395 (gdb-previous-frame-address): Rename from gdb-previous-address.
19396 (gdb-selected-frame): Rename from gdb-current-frame.
19397 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
19398 (gdb-frame-number): Rename from gdb-current-stack-level.
19399 (gdb-ann3): Match new mode-name for disassembly buffer.
19400 Extend initialization of variables.
19401 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
19402 (gdb-memory-mode): Use mouse-face in header line.
19403 (gdb-assembler-buffer-name): Call it disassembly and give frame
19404 in mode line.
19405 (gdb-source-spec-regexp, gdb-assembler-custom)
19406 (gdb-invalidate-assembler, gdb-frame-handler):
19407 Make robust to leading zeroes in address format.
19408
19409 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
19410
19411 * textmodes/org.el (org-mode): Use `define-derived-mode' to
19412 define `org-mode'.
19413 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
19414
19415 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
19416
19417 * log-edit.el (log-edit-changelog-entries): Distinguish between
19418 filenames like xfns.c and fns.c.
19419
19420 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
19421
19422 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
19423 point after reverting.
19424 (Buffer-menu-make-sort-button): Handle the case where
19425 `Buffer-menu-use-header-line' is nil.
19426
19427 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
19428
19429 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
19430 New funcs. In minibuffer-local-completion-map bind `]', `/'
19431 and `:' to them.
19432
19433 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
19434
19435 * startup.el (normal-top-level): Allow modification of load-path while
19436 we're iterating over it.
19437
19438 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
19439
19440 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
19441 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
19442 (thumbs-resize-interactive, thumbs-insert-image)
19443 (thumbs-insert-thumb, thumbs-dired-show-marked)
19444 (thumbs-find-image-at-point, thumbs-delete-images)
19445 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
19446 (thumbs-increment-image-size, thumbs-decrement-image-size):
19447 Fix typos in docstrings.
19448
19449 2005-05-24 Andre Spiegel <spiegel@gnu.org>
19450
19451 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
19452 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
19453 (cperl-mode): Use them.
19454
19455 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
19456
19457 * window.el (quit-window, shrink-window-if-larger-than-buffer):
19458 Doc fixes.
19459
19460 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
19461
19462 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
19463 Bind C-d to gdb-inferior-io-eof.
19464
19465 * dired.el (dired-dnd-popup-notice): Use message-box.
19466
19467 2005-05-23 Masatake YAMATO <jet@gyve.org>
19468
19469 * bindings.el (mode-line-major-mode-keymap):
19470 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
19471
19472 * faces.el (mode-line-highlight): New face.
19473
19474 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
19475 as mouse-face.
19476
19477 * bindings.el (top-level, help-echo, mode-line-modified)
19478 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
19479 as mouse-face.
19480
19481 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
19482
19483 * progmodes/cc-engine.el (c-guess-basic-syntax):
19484 Remove spurious call to `zerop'.
19485
19486 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
19487
19488 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
19489
19490 CC Mode update to 5.30.10:
19491
19492 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
19493 could go past the limit in decoration level 2, thereby causing
19494 errors during interactive fontification.
19495
19496 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
19497 the file is evaluated interactively.
19498
19499 * cc-engine.el (c-guess-basic-syntax): Handle operator
19500 declarations somewhat better in C++.
19501
19502 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
19503 make use of `run-mode-hooks' which has been added in Emacs 21.1.
19504 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
19505 (awk-mode): Use it.
19506 (make-local-hook): Suppress warning about obsoleteness.
19507
19508 * cc-engine.el, cc-align.el, cc-cmds.el
19509 (c-append-backslashes-forward, c-delete-backslashes-forward)
19510 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
19511 Compensate for return value from `forward-line' when it has moved
19512 but not to a different line due to eob.
19513
19514 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
19515 `objc-method-intro' and `objc-method-args-cont'.
19516
19517 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
19518
19519 CC Mode update to 5.30.10:
19520
19521 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
19522 in the copyright statement. Incidentally, change "along with GNU
19523 Emacs" to "along with this program" where it occurs.
19524
19525 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
19526 so that it is interactive, hence can be found by M-x awk-mode
19527 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
19528 <gmorris+emacs@ast.cam.ac.uk>.
19529
19530 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
19531 Mode's regexps.
19532
19533 2005-05-23 Kevin Ryde <user42@zip.com.au>
19534
19535 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
19536 c-parse-state, to avoid a lisp error (on bad code).
19537
19538 2005-05-23 Lute Kamstra <lute@gnu.org>
19539
19540 * subr.el (font-lock-defaults): Remove defvar as it's already
19541 defined in font-core.el.
19542
19543 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
19544
19545 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
19546
19547 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
19548 more general and work when GDB variable "print pretty" is on,
19549 as with Emacs, for example.
19550
19551 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
19552
19553 * font-core.el: Update comment.
19554
19555 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
19556 Use `after-change-major-mode-hook' instead of `find-file-hook'.
19557
19558 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
19559
19560 2005-05-22 Eli Zaretskii <eliz@gnu.org>
19561
19562 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
19563 and `yank-handler' in the doc strings.
19564
19565 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
19566
19567 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
19568
19569 2005-05-22 Richard M. Stallman <rms@gnu.org>
19570
19571 * help.el (describe-key): Move print-help-return-message call
19572 out of conditional.
19573
19574 * progmodes/etags.el (list-tags): Use with-no-warnings.
19575
19576 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
19577 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
19578 (starttls-extra-args, starttls-extra-arguments): Add defvars.
19579
19580 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
19581
19582 * language/viet-util.el (viet-viscii-nonascii-translation-table):
19583 Add defvar.
19584
19585 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
19586 Use defvar, not defconst.
19587
19588 * hexl.el (hexl-follow-line): Use with-no-warnings.
19589
19590 * emulation/tpu-extras.el: Use write-file-functions instead of
19591 write-file-hooks.
19592
19593 * dired.el (dired-font-lock-keywords): Fontify files with junk
19594 extensions even if marked by -F.
19595
19596 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
19597
19598 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
19599 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
19600 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
19601 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
19602 (concatenate, list-length, get*, getf, cl-remprop):
19603 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
19604 (etypecase, progv, lexical-let, lexical-let*)
19605 (multiple-value-bind, multiple-value-setq, shiftf):
19606 Improve argument/docstring consistency.
19607
19608 * subr.el (focus-frame, unfocus-frame): Revert deletion on 2005-05-01.
19609
19610 2005-05-22 Andre Spiegel <spiegel@gnu.org>
19611
19612 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
19613 doesn't exist.
19614
19615 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
19616 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
19617
19618 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
19619
19620 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
19621 already deleted variables: auto-fill-hook, blink-paren-hook,
19622 lisp-indent-hook, inhibit-local-variables, unread-command-event,
19623 suspend-hooks, comment-indent-hook, meta-flag,
19624 before-change-function, after-change-function,
19625 font-lock-doc-string-face.
19626
19627 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
19628
19629 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
19630
19631 2005-05-21 Eli Zaretskii <eliz@gnu.org>
19632
19633 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
19634 rmail-dont-reply-to.
19635
19636 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
19637
19638 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
19639 literal blank when splitting new-header-values.
19640
19641 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
19642
19643 * calendar/cal-menu.el (cal-menu-update): Add separator as a
19644 string so that tmm doesn't create a completion entry for it.
19645
19646 * textmodes/table.el (table-disable-menu): Ditto.
19647
19648 2005-05-21 Richard M. Stallman <rms@gnu.org>
19649
19650 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
19651
19652 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
19653
19654 * net/rcompile.el (remote-compile): Use compilation-start.
19655
19656 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
19657
19658 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
19659
19660 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
19661 Default to makefile-bsdmake-mode on BSD systems.
19662
19663 * imenu.el (imenu-generic-expression, imenu--generic-function'):
19664 REGEXP may also be a search function now. The part of doc-string
19665 for describing the structure was 95% identical to that of
19666 `imenu--generic-function'. Unify it there.
19667
19668 * progmodes/make-mode.el (makefile-imenu-generic-expression):
19669 Use function to find dependencies, because regexp alone is so complex,
19670 it easily goes into an endless loop.
19671 (makefile-makepp-mode): Also add submenu for Perl functions
19672 defined in the makefile.
19673 (makefile-bsdmake-mode): Special imenu-generic-expression no
19674 longer needed, due to function call.
19675 (makefile-match-dependency): Take BOUND into account when checking
19676 if we're through.
19677
19678 2005-05-20 Jay Belanger <belanger@truman.edu>
19679
19680 * calc/calc-units.el (calc-invalidate-units-table):
19681 Use inhibit-read-only.
19682 (math-build-units-table-buffer): Use view-mode.
19683
19684 2005-05-20 David Kastrup <dak@gnu.org>
19685
19686 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
19687 easy-menu-add is not a nop on Emacs; and clarify when to call it.
19688
19689 2005-05-20 Lute Kamstra <lute@gnu.org>
19690
19691 * diff-mode.el (diff-header-face, diff-file-header-face)
19692 (diff-index-face, diff-hunk-header-face, diff-removed-face)
19693 (diff-added-face, diff-changed-face, diff-function-face)
19694 (diff-context-face, diff-nonexistent-face): Put them in the
19695 diff-mode customization group.
19696
19697 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
19698
19699 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
19700
19701 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
19702
19703 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
19704 Minor regexp-optimization.
19705
19706 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
19707
19708 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
19709 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
19710 (org-agenda-add-time-grid-maybe): New function.
19711 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
19712 (org-table-create): `dotimes' instead of `mapcar'.
19713 (org-xor): Simplify implementation.
19714 (org-agenda): `inhibit-redisplay' turned on.
19715 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
19716 a consistent line after a state change.
19717 (org-agenda-remove-times-when-in-prefix): New option.
19718 (org-prefix-has-time): New variable.
19719 (org-parse-time-string): Optional argument NODEFAULT.
19720 (org-format-agenda-item): Parse items for time-of-day
19721 specifications and move these into the prefix if possible.
19722 (org-agenda-priority): Get current heading, not previous heading
19723 during agenda remote editing.
19724
19725 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
19726
19727 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
19728 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
19729 (remove-duplicates, delete-duplicates, substitute)
19730 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
19731 (nsubstitute-if-not, find, find-if, find-if-not, position)
19732 (position-if, position-if-not, count, count-if, count-if-not)
19733 (mismatch, search, sort*, stable-sort, merge, member*)
19734 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
19735 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
19736 (intersection, nintersection, set-difference, nset-difference)
19737 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
19738 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
19739 (nsublis, tree-equal): Improve argument/docstring consistency.
19740
19741 * subr.el (send-string, send-region): Remove obsolescence declaration.
19742 (window-dot, set-window-dot, read-input, show-buffer)
19743 (eval-current-buffer, string-to-int):
19744 Add release number to obsolescence declarations.
19745
19746 2005-05-19 Kim F. Storm <storm@cua.dk>
19747
19748 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
19749 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
19750
19751 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
19752
19753 * faces.el (list-faces-display): Make back button respect optional
19754 regexp arg.
19755
19756 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
19757
19758 * calculator.el (calculator-radix-grouping-mode)
19759 (calculator-radix-grouping-digits, calculator-displayer)
19760 (calculator-radix-grouping-separator, calculator-copy-displayer):
19761 * dabbrev.el (dabbrev-search-these-buffers-only):
19762 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
19763 (diff-advance-after-apply-hunk, diff-mode-hook)
19764 (diff-minor-mode-prefix):
19765 * imenu.el (imenu-use-popup-menu):
19766 * jit-lock.el (jit-lock-context-time):
19767 * newcomment.el (comment-fill-column, comment-column)
19768 (comment-style, comment-padding, comment-multi-line)
19769 (comment-empty-lines, comment-auto-fill-only-comments):
19770 * reveal.el (reveal-around-mark):
19771 * uniquify.el (uniquify-buffer-name-style)
19772 (uniquify-after-kill-buffer-p)
19773 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
19774 (uniquify-min-dir-content, uniquify-separator)
19775 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
19776 * w32-vars.el (w32-fixed-font-alist):
19777 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
19778 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
19779 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
19780 * progmodes/perl-mode.el (perl-indent-level)
19781 (perl-continued-statement-offset, perl-continued-brace-offset)
19782 (perl-brace-offset, perl-brace-imaginary-offset)
19783 (perl-label-offset, perl-indent-continued-arguments)
19784 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
19785 * progmodes/tcl.el (tcl-indent-level)
19786 (tcl-continued-indent-level, tcl-auto-newline)
19787 (tcl-tab-always-indent, tcl-electric-hash-style)
19788 (tcl-help-directory-list, tcl-use-smart-word-finder)
19789 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
19790 (inferior-tcl-source-command):
19791 * textmodes/fill.el (enable-kinsoku):
19792 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
19793 * textmodes/table.el (table-yank-handler):
19794 Specify missing group (and type, if simple) in defcustom.
19795
19796 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
19797
19798 * progmodes/compile.el (compilation-finish-function): Fix defvar.
19799
19800 2005-05-19 Richard M. Stallman <rms@gnu.org>
19801
19802 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
19803
19804 * subr.el (event-basic-type): Don't get an error.
19805 (left-fringe-p): Function deleted.
19806
19807 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
19808 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
19809
19810 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
19811 in recursive copy.
19812
19813 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
19814
19815 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
19816
19817 * emacs-lisp/bytecomp.el
19818 (byte-compile-file-form-custom-declare-variable):
19819 Call byte-compile-nogroup-warn if appropriate.
19820
19821 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
19822 (compilation-set-window): Don't call left-fringe-p; do it directly.
19823
19824 2005-05-19 Jay Belanger <belanger@truman.edu>
19825
19826 * calc/calc-graph.el (calc-graph-format-data): Make sure
19827 var-PlotRejects is bound before trying to check its value.
19828
19829 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
19830
19831 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
19832 definition of this variable from reftex-global.el to reftex.el,
19833 because it is needed in the menu.
19834
19835 2005-05-19 Lute Kamstra <lute@gnu.org>
19836
19837 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
19838 years are fixed. Don't insert a space after a dash.
19839
19840 2005-05-19 Kim F. Storm <storm@cua.dk>
19841
19842 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
19843
19844 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
19845
19846 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
19847 strings, because (eq ... ?\\) is fairly frequent.
19848
19849 * progmodes/make-mode.el (makefile-add-this-line-targets):
19850 Simplify and integrate into `makefile-pickup-targets'.
19851 (makefile-add-this-line-macro): Simplify and integrate into
19852 `makefile-pickup-macros.
19853 (makefile-pickup-filenames-as-targets): Simplify.
19854 (makefile-previous-dependency, makefile-match-dependency):
19855 Don't stumble over `::'.
19856
19857 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
19858
19859 * subr.el (post-command-idle-hook, post-command-idle-delay):
19860 Remove obsoletion of post-command-idle-hook and
19861 post-command-idle-delay.
19862
19863 * faces.el (list-faces-display): Provide button when describe-face
19864 is called to take user back to the list of faces.
19865
19866 * help-fns.el (describe-variable): Remove hyperlinks in a
19867 variable's value as these are quite frequently inappropriate.
19868
19869 * follow.el (follow-submit-feedback, follow-mode):
19870 Remove references to post-command-idle-hook.
19871
19872 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
19873
19874 * progmodes/make-mode.el (makefile-previous-dependency)
19875 (makefile-match-dependency): Check for := (and in bsd mode also
19876 !=) to give a better result, even when font-lock is not on.
19877
19878 2005-05-18 Jay Belanger <belanger@truman.edu>
19879
19880 * calc/calc-help.el (calc-s-prefix-help):
19881 Add `calc-copy-special-constant' to help string.
19882
19883 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
19884
19885 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
19886
19887 2005-05-18 Jay Belanger <belanger@truman.edu>
19888
19889 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
19890 in linear factors are in proper order.
19891
19892 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
19893
19894 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
19895 Support for jurabib.
19896
19897 * textmodes/reftex.el (featurep): Define aliases for overlay
19898 commands, for XEmacs compatibility, and use these aliases in
19899 overlay initializations.
19900 (reftex-highlight): Use `reftex-move-overlay'.
19901 (reftex-unhighlight): Use `reftex-delete-overlay'.
19902 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
19903 (reftex-access-search-path): Use `reftex-uniquify' instead of
19904 `reftex-uniq'
19905
19906 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
19907 `before-string' property modification enables for Emacs as well.
19908 (reftex-select-item): Use `reftex-delete-overlay'.
19909 (reftex-select-mark): Use `reftex-make-overlay' and
19910 `reftex-overlay-put'.
19911 (reftex-select-unmark): Use `reftex-delete-overlay' and
19912 `reftex-overlay-put'.
19913
19914 2005-05-18 Lute Kamstra <lute@gnu.org>
19915
19916 * emacs-lisp/lisp.el (check-parens): Fix docstring.
19917
19918 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
19919
19920 * add-log.el (add-change-log-entry):
19921 * array.el (array-make-template, array-reconfigure-rows)
19922 (array-init-max-row, array-init-max-column)
19923 (array-init-columns-per-line, array-init-field-width):
19924 * replace.el (replace-match-maybe-edit, perform-replace):
19925 * textmodes/spell.el (spell-region):
19926 Replace `read-input' by `read-string'.
19927
19928 * forms.el (forms-mode):
19929 * finder.el (finder-compile-keywords):
19930 * shadowfile.el (shadow-read-files):
19931 Replace `eval-current-buffer' by `eval-buffer'.
19932
19933 * terminal.el (te-pass-through):
19934 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
19935 (ange-ftp-raw-send-cmd):
19936 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
19937 (send-process-next-char, telnet-initial-filter, telnet):
19938 Replace `send-string' by `process-send-string'.
19939
19940 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
19941 (prolog-consult-region): Replace `send-string' by
19942 `process-send-string'; replace `send-region' by `process-send-region'.
19943
19944 * progmodes/delphi.el (delphi-log-msg):
19945 Replace `set-window-dot' by `set-window-point'.
19946
19947 * subr.el (window-dot, set-window-dot, read-input, send-string)
19948 (send-region, show-buffer, eval-current-buffer):
19949 Make really obsolete, as the comment says.
19950
19951 2005-05-17 Kim F. Storm <storm@cua.dk>
19952
19953 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
19954 (cua--init-keymaps): Bind C-return instead of S-return to set
19955 rectangle mark.
19956
19957 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
19958 instead of S-return to toggle/clear rectangle mark.
19959
19960 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
19961
19962 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
19963 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
19964 Also fontify plain strings assigned to variables, mostly so that a
19965 colon has a face and is thus not taken as a dependency separator.
19966 (makefile-previous-dependency): Inline the new matcher, because it
19967 is too complex to work in both directions.
19968 (makefile-match-dependency): Eliminate `backward' arg (see above).
19969 Completely reimplemented so as to not sometimes go into an endless
19970 loop. It should also be more efficient, because first it only
19971 searches for `:', instead of applying the very complex regexp.
19972 (makefile-mode): Cancel `font-lock-support-mode', because blocks
19973 to be fontified in one piece can be too long for JIT.
19974 Makefiles are never *that* big.
19975
19976 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
19977
19978 * dired.el (dired-mode): Simplify.
19979
19980 2005-05-17 Lute Kamstra <lute@gnu.org>
19981
19982 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
19983 defcustom for the mode hook variable.
19984
19985 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
19986 Emacs Lisp Reference Manual.
19987
19988 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
19989
19990 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
19991 (evenp, list*):
19992 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
19993 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
19994
19995 * net/tramp-smb.el (tramp-smb-open-connection):
19996 Pass `tramp-chunksize' as fifth (required) argument.
19997
19998 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
19999
20000 * font-lock.el (lisp-font-lock-keywords-1):
20001 Set `font-lock-negation-char-face' for [^...] char group.
20002 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
20003
20004 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
20005 a var, and refine it to mask one more level of nested vars.
20006 (makefile-rule-action-regex): Turn it into a var, and refine it so
20007 it recognizes backslashed continuation lines as belonging to the
20008 same command.
20009 (makefile-macroassign-regex): Refine it so it recognizes
20010 backslashed continuation lines as belonging to the same command.
20011 (makefile-var-use-regex): Don't look at the next char, because it
20012 might be the same one to be skipped by the initial [^$], leading
20013 to an overlooked variable use.
20014 (makefile-make-font-lock-keywords): Remove two parameters, which
20015 are now variables that some of the modes set locally.
20016 Handle dependency and rule action matching through functions, because
20017 regexps alone match too often. Dependency matching now comes
20018 last, so it can check, whether a colon already matched something else.
20019 (makefile-mode): Inform that font-lock improves makefile parsing
20020 capabilities.
20021 (makefile-match-dependency, makefile-match-action): New functions.
20022
20023 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
20024
20025 * emacs-lisp/cl-extra.el (equalp): Doc fix.
20026
20027 * align.el (align-regexp):
20028 * ansi-color.el (ansi-color-get-face):
20029 * array.el (array-reconfigure-rows, array-init-max-row)
20030 (array-init-max-column, array-init-columns-per-line)
20031 (array-init-field-width):
20032 * dired-aux.el (dired-trample-file-versions):
20033 * dired-x.el (dired-mark-sexp):
20034 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
20035 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
20036 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
20037 * faces.el (face-read-integer):
20038 * files.el (backup-extract-version, insert-directory):
20039 * hexl.el (hexl-insert-decimal-char):
20040 * server.el (server-process-filter):
20041 * shell.el (shell-extract-num):
20042 * startup.el (command-line-1):
20043 * term.el (term-command-hook):
20044 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
20045 (time-stamp-do-number):
20046 * time.el (display-time-update):
20047 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
20048 (timezone-fix-time):
20049 * vms-patch.el (vms-suspend-resume-hook):
20050 * calendar/appt.el (appt-convert-time):
20051 * calendar/cal-bahai.el (mark-bahai-diary-entries):
20052 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
20053 * calendar/cal-islam.el (mark-islamic-diary-entries):
20054 * calendar/calendar.el (calendar-cursor-to-date)
20055 (calendar-star-date):
20056 * calendar/diary-lib.el (diary-attrtype-convert)
20057 (mark-diary-entries, diary-entry-time):
20058 * calendar/solar.el (solar-get-number):
20059 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
20060 * emacs-lisp/re-builder.el (reb-display-subexp):
20061 * emulation/edt.el (edt-set-scroll-margins):
20062 * emulation/tpu-extras.el (tpu-set-scroll-margins):
20063 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
20064 (vip-get-ex-count):
20065 * emulation/viper-ex.el (viper-get-ex-token)
20066 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
20067 * international/fontset.el (fontset-plain-name):
20068 * mail/feedmail.el (feedmail-look-at-queue-directory):
20069 * mail/mailalias.el (mail-get-names):
20070 * mail/rmail.el (rmail-convert-to-babyl-format):
20071 * mail/rmailsum.el (rmail-make-basic-summary-line)
20072 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
20073 (rmail-summary-goto-msg):
20074 * mail/smtpmail.el (smtpmail-read-response):
20075 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
20076 (ange-ftp-vms-add-file-entry):
20077 * play/gametree.el (gametree-looking-at-ply)
20078 (gametree-current-branch-score):
20079 * progmodes/ada-xref.el (ada-prj-find-prj-file)
20080 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
20081 * progmodes/cperl-mode.el (condition-case):
20082 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
20083 (ebrowse-set-member-buffer-column-width)
20084 (ebrowse-select-1st-to-9nth):
20085 * progmodes/etags.el (etags-snarf-tag):
20086 * progmodes/flymake.el (flymake-parse-line):
20087 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
20088 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
20089 (idlwave-shell-menu-def):
20090 * progmodes/ps-mode.el (ps-run-goto-error):
20091 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
20092 (vhdl-speedbar-contract-level):
20093 * term/mac-win.el (x-handle-numeric-switch):
20094 * term/sun-mouse.el (sun-get-frame-data):
20095 * term/w32-win.el (x-handle-numeric-switch):
20096 * term/x-win.el (x-handle-numeric-switch):
20097 * textmodes/ispell.el (ispell-parse-output):
20098 * textmodes/nroff-mode.el (nroff-outline-level):
20099 * textmodes/reftex-cite.el (reftex-bib-sort-year)
20100 (reftex-bib-sort-year-reverse, reftex-format-citation):
20101 * textmodes/reftex-parse.el (reftex-init-section-numbers)
20102 (reftex-section-number):
20103 * textmodes/texinfmt.el (texinfo-paragraphindent):
20104 Replace `string-to-int' by `string-to-number'.
20105
20106 * international/latexenc.el: Add page marker to force the "Local
20107 Variables:" string out of the last page.
20108
20109 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
20110
20111 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
20112 tooltip-change-major-mode.
20113 (gud-tooltip-print-command): Remove case where gud-minor-mode
20114 is gdb ("--fullname").
20115 (gud-tooltip-tips): Turn GUD tooltips off for this case and
20116 explain to user.
20117
20118 2005-05-16 Jay Belanger <belanger@truman.edu>
20119
20120 * calc/calc-store.el (calc-copy-special-constant): New function.
20121
20122 * calc/calc-ext.el (calc-init-extensions): Add binding for
20123 `calc-copy-special-constant'.
20124
20125 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
20126 for the `calc-copy-special-constant' command.
20127
20128 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
20129
20130 * subr.el (left-fringe-p): New function.
20131
20132 * progmodes/compile.el (compilation-setup): Set local value of
20133 overlay-arrow-string to "" always.
20134 (compilation-set-window): Left fringe then don't scroll.
20135 No left fringe then no arrow and scroll message to top.
20136 (compilation-context-lines): Adjust doc string accordingly.
20137
20138 2005-05-16 Kim F. Storm <storm@cua.dk>
20139
20140 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
20141 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
20142 (ido-wide-find-dir-or-delete-dir): New command for M-d.
20143 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
20144 (ido-read-file-name): Handle commands with ido property value
20145 equal to find-file as reading a file name, to allow C-d to enter dired.
20146 (ibuffer-find-file): Add ido property with value find-file.
20147
20148 2005-05-15 Kim F. Storm <storm@cua.dk>
20149
20150 * subr.el (open-network-stream-nowait): Remove.
20151 (open-network-stream-server): Remove.
20152
20153 2005-05-15 Richard M. Stallman <rms@gnu.org>
20154
20155 * faces.el (describe-face): Output a definition link button.
20156
20157 * help-mode.el (help-face-def): New button type.
20158
20159 * emacs-lisp/copyright.el (copyright-fix-years):
20160 Match properly if the first year is 2-digit.
20161 Don't mess up the whitespace after the years by filling.
20162
20163 * dired-aux.el (dired-mark-confirm):
20164 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
20165
20166 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
20167 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
20168 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
20169
20170 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
20171 Set font-lock-comment-start-skip.
20172
20173 * font-lock.el (font-lock-comment-start-skip): New variable.
20174 (font-lock-comment-end-skip): New variable.
20175 (font-lock-fontify-syntactically-region): Use them if non-nil.
20176
20177 2005-05-15 Jay Belanger <belanger@truman.edu>
20178
20179 * calc/calc-store.el (calc-store-value): Return a string rather
20180 than display it as a message.
20181 Use calc-var-name for variable name.
20182 (calc-store-into): Add the result of calc-store-value to message.
20183 (calc-copy-variable): Add a message.
20184 (calc-store-exchange): Improve error messages.
20185 (calc-store-binary, calc-store-map): Don't reset the values of
20186 special constants.
20187
20188 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
20189
20190 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
20191 manual to docstring.
20192
20193 * files.el (hack-local-variables-confirm): Add STRING argument.
20194 Make the function handle non file visiting buffers correctly.
20195 (hack-local-variables-prop-line, hack-local-variables)
20196 (hack-one-local-variable): Use STRING arg of
20197 `hack-local-variables-confirm'.
20198
20199 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
20200
20201 Sync with Tramp 2.0.49.
20202
20203 * net/tramp.el (tramp-handle-dired-call-process)
20204 (tramp-handle-insert-directory):`insert-buffer' cannot be used
20205 because the contents of the Tramp buffer is changed before
20206 insertion (`expand-file' and alike).
20207 (tramp-handle-insert-directory): If `localname' has an empty
20208 nondirectory name, it must not be quoted.
20209 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
20210 variable `tramp-chunksize'. Change callees.
20211 (tramp-open-connection-setup-interactive-shell): Check remote host
20212 for buggy `send-process-string' implementation.
20213 Set `tramp-chunksize' if found. Reported by Michael Kifer
20214 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
20215 (tramp-handle-shell-command): `insert-buffer' cannot be used
20216 because the contents of the Tramp buffer is changed before
20217 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
20218 <frederic.bothamy@free.fr>.
20219 (tramp-set-auto-save): Actions should be done for Tramp file name
20220 handler only. Ange-FTP has its own auto-save mechanism.
20221 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
20222 (tramp-set-auto-save-file-modes): Set file modes of
20223 `buffer-auto-save-file-name' to ?\600 as fallback solution.
20224 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
20225 (tramp-bug): Remove obsolete variable.
20226 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
20227 for presence of `mml-mode'. Make it running for older Emacsen as well.
20228
20229 2005-05-14 John Paul Wallington <jpw@pobox.com>
20230
20231 * ibuf-ext.el (define-ibuffer-filter filename):
20232 If `dired-directory' is a list, use its car.
20233
20234 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
20235
20236 * ibuffer.el (define-ibuffer-column filename):
20237 If `dired-directory' is a list, use its car.
20238
20239 2005-05-14 Richard M. Stallman <rms@gnu.org>
20240
20241 * subr.el (symbol-file): Doc fix.
20242
20243 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
20244 (byte-compile-form): Call byte-compile-nogroup-warn.
20245 (byte-compile-warning-types): Doc fix.
20246
20247 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
20248
20249 * progmodes/cc-engine.el (c-literal-faces):
20250 Add font-lock-comment-delimiter-face.
20251
20252 * net/net-utils.el (dig): Use with-no-warnings.
20253
20254 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
20255 (sc-recite-frame-alist, sc-default-cite-frame)
20256 (sc-default-uncite-frame, sc-default-recite-frame)
20257 (sc-attrib-selection-list, sc-rewrite-header-list):
20258 Mark as risky-local-variable.
20259
20260 * international/ogonek.el (ogonek-jak, ogonek-how):
20261 Don't use beginning-of-buffer.
20262
20263 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
20264
20265 * calendar/solar.el (solar-data-list): Move definition up.
20266
20267 * dnd.el (dnd-protocol-alist): Add autoload.
20268
20269 * progmodes/sh-script.el: Many doc usage fixes.
20270 (sh-indent-after-do): Change default to match common styles.
20271
20272 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
20273
20274 * files.el (interpreter-mode-alist)
20275 (auto-mode-interpreter-regexp): Doc fixes.
20276
20277 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
20278
20279 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
20280
20281 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
20282
20283 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20284
20285 * dired.el (dired-mode): make-variable-buffer-local =>
20286 make-local-variable.
20287
20288 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20289
20290 * term/mac-win.el (mac-select-convert-to-string): Try coding
20291 systems in mac-script-code-coding-systems if specified one cannot
20292 encode string for `com.apple.traditional-mac-plain-text'.
20293
20294 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
20295
20296 * progmodes/make-mode.el (makefile-targets-face)
20297 (makefile-shell-face, makefile-makepp-perl-face): New faces.
20298 (makefile-dependency-regex): Fix it to not make the colon in
20299 $(var:a=b) special.
20300 (makefile-rule-action-regex): New regexp for highlighting embedded
20301 Shell strings.
20302 (makefile-macroassign-regex): Handle != for highlighting as
20303 embedded Shell strings.
20304 (makefile-var-use-regex): New const.
20305 (makefile-statements, makefile-automake-statements)
20306 (makefile-gmake-statements, makefile-makepp-statements)
20307 (makefile-bsdmake-statements): New consts.
20308 (makefile-make-font-lock-keywords): New function.
20309 (makefile-automake-font-lock-keywords)
20310 (makefile-gmake-font-lock-keywords)
20311 (makefile-makepp-font-lock-keywords)
20312 (makefile-bsdmake-font-lock-keywords): New consts.
20313 (makefile-mode-map): Add switchers between the various submodes.
20314 (makefile-mode): Document the availability of the variants.
20315 (makefile-automake-mode, makefile-gmake-mode)
20316 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
20317
20318 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
20319 new variants of makefile-mode.
20320
20321 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
20322
20323 * font-lock.el (font-lock-comment-delimiter-face): Fix up
20324 the inheritance.
20325
20326 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
20327
20328 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
20329 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
20330
20331 * files.el (normal-mode): Extend the scope of the
20332 `enable-local-variables' binding to include the `set-auto-mode' call.
20333 (magic-mode-alist): Doc fix.
20334
20335 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
20336
20337 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
20338 font-lock-comment-face rather than copying its setting.
20339
20340 2005-05-12 Andreas Schwab <schwab@suse.de>
20341
20342 * eshell/esh-mode.el (eshell-send-input): Doc fix.
20343
20344 2005-05-12 Lute Kamstra <lute@gnu.org>
20345
20346 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
20347 defcustom for the mode hook variable. Delete the last argument.
20348 * generic-x.el: Fix callers of define-generic-mode.
20349 (generic-x-modes): Delete group.
20350 (show-tabs-tab-face, show-tabs-space-face): Put them in the
20351 generic-x customization group.
20352
20353 2005-05-12 Kim F. Storm <storm@cua.dk>
20354
20355 * font-lock.el (font-lock-negation-char-face): Default to "off".
20356
20357 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
20358 font-lock-negation-char-face to ! in !=.
20359
20360 2005-05-12 Masatake YAMATO <jet@gyve.org>
20361
20362 * add-log.el (find-change-log): Fix typos in the docstring
20363 of function.
20364
20365 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
20366
20367 * international/latexenc.el (latexenc-find-file-coding-system):
20368 Avoid `re-search-forward' when looking for input encoding because
20369 of speed and safety. Better regular expressions for recognizing
20370 input encoding. Limit a search for TeX-master/tex-main-file to
20371 the local variable section.
20372
20373 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
20374
20375 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
20376 syntax of $ to "'" (quote).
20377
20378 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
20379
20380 * dnd.el (dnd-protocol-alist): Improve custom type.
20381
20382 * dired.el (dired-dnd-protocol-alist): New variable.
20383 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
20384 `dired-mode-hook' to the end.
20385
20386 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
20387
20388 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
20389 comment-end if comment-start-skip is not set.
20390 Obey the font-lock-comment-delimiter-face variables.
20391
20392 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
20393
20394 * files.el (executable-find): Move from executable.el. Use
20395 locate-file.
20396 * progmodes/executable.el (executable-find): Move to files.el.
20397
20398 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
20399 when trying to ensure forward progress.
20400
20401 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
20402
20403 * mouse-sel.el (mouse-sel-follow-link-p): New function.
20404 (mouse-select, mouse-select-internal, mouse-extend-internal):
20405 Use it to implement mouse-1-click-follows-link functionality.
20406
20407 2005-05-11 Richard M. Stallman <rms@gnu.org>
20408
20409 * font-lock.el (font-lock-fontify-syntactically-region):
20410 Use font-lock-comment-delimiter-face for comment delimiters.
20411
20412 2005-05-10 Jay Belanger <belanger@truman.edu>
20413
20414 * calc/calc-help.el (calc-m-prefix-help): Add mention of
20415 preserving embedded modes.
20416
20417 2005-05-10 Richard M. Stallman <rms@gnu.org>
20418
20419 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
20420
20421 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
20422 Move from ada-stmt.el.
20423 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
20424
20425 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
20426 Move to ada-mode.el.
20427 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
20428
20429 * cus-edit.el (custom-file): Call file-chase-links.
20430
20431 * files.el (read-directory-name): Fix previous change.
20432 (hack-local-variables-confirm): New function.
20433 (hack-local-variables-prop-line, hack-local-variables)
20434 (hack-one-local-variable): Use it.
20435
20436 2005-05-10 Lute Kamstra <lute@gnu.org>
20437
20438 * font-lock.el (font-lock-keywords-alist)
20439 (font-lock-removed-keywords-alist): Clarify docstrings.
20440
20441 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
20442
20443 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
20444 (gdb-source-info): Check for preprocessor info.
20445 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
20446 a macro for a function.
20447 (gdb-info-breakpoints-custom): Try to find file again if not already
20448 found (user might have used GDB dir command).
20449 (gdb-get-location): Update gdb-location-alist correctly for change
20450 to gdb-info-breakpoints-custom.
20451
20452 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
20453 (gud-tooltip-print-command): Add gdbmi case.
20454 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
20455 preprocessor info.
20456
20457 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
20458
20459 * startup.el (fancy-splash-insert): Fix typo in doc string.
20460
20461 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
20462
20463 * obsolete/float.el (string-to-float):
20464 * obsolete/hilit19.el (hilit-add-pattern):
20465 * obsolete/rnews.el (news-parse-range, news-select-message)
20466 (news-get-pruned-list-of-files): Replace `string-to-int' by
20467 `string-to-number'.
20468
20469 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
20470 `find-file-not-found-hooks'; use `add-hook'.
20471 (uncompress-while-visiting): Set `write-file-functions', not
20472 `write-file-hooks'; use `add-hook'.
20473
20474 2005-05-09 Kim F. Storm <storm@cua.dk>
20475
20476 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
20477 (cua-paste): Handle clipboard action.
20478 (cua--init-keymaps): Remap clipboard-kill-region and
20479 clipboard-kill-ring-save.
20480
20481 2005-05-08 Eli Zaretskii <eliz@gnu.org>
20482
20483 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
20484 Improve commentary.
20485
20486 * simple.el (next-error-overlay-arrow-position): Revert the change
20487 made on 2005-04-30.
20488
20489 2005-05-07 Jay Belanger <belanger@truman.edu>
20490
20491 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
20492 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
20493 `calc-sel-reselect'.
20494
20495 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
20496 Calc is in embedded mode.
20497
20498 2005-05-07 Eli Zaretskii <eliz@gnu.org>
20499
20500 * progmodes/compile.el (compilation-setup):
20501 Set overlay-arrow-string to an empty string on text terminals.
20502
20503 * textmodes/ispell.el (ispell-program-name): Try looking for
20504 "aspell" along exec-path, and if found, use it as the default
20505 speller program.
20506
20507 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
20508
20509 * international/mule.el (sgml-xml-auto-coding-function):
20510 Recognize encoding='FOO' in single quotes as well as in double quotes.
20511
20512 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
20513
20514 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
20515 as well as `interactive', so that defmacro* would recognize
20516 `declare' forms.
20517
20518 2005-05-07 Eli Zaretskii <eliz@gnu.org>
20519
20520 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
20521 Explain more about the LIGHTER arg's usage in the doc string.
20522 Add commentary to clarify what the code does. Fix the regexp that
20523 strips whitespace from LIGHTER. Quote LIGHTER before using it,
20524 since it could have characters special to regular expressions.
20525
20526 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
20527
20528 * replace.el (occur-1): Bind inhibit-read-only so that
20529 erase-buffer doesn't barf on read-only text properties (likewise
20530 for add-text-properties in occur-engine). Mark buffer as unmodified.
20531 (occur-engine): Don't set buffer-read-only here.
20532
20533 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
20534
20535 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
20536 list-buffers-directory. This caused the *cvs-commit* buffer to be
20537 sometimes mistakenly reused as a *cvs* buffer.
20538
20539 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
20540
20541 * tooltip.el: Move code for GUD tooltips into gud.el.
20542 (require): CL no longer needed to compile case.
20543 (tooltip-mode): Do not toggle functions for GUD tooltips.
20544 (tooltip-gud-tips-p): Remove. Replace with minor mode
20545 gud-tooltip-mode in gud.el.
20546 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
20547 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
20548 tooltip-gud prefix with gud-tooltip and obsolete.
20549 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
20550 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
20551 (tooltip-mouse-motion): Mouse movement functions/variable.
20552 Rename in gud.el by adding gud prefix.
20553 (tooltip-gud-original-filter, tooltip-gud-dereference)
20554 (tooltip-gud-event, tooltip-toggle-gud-tips)
20555 (tooltip-gud-process-output, tooltip-gud-print-command)
20556 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
20557 gud.el by replacing tooltip-gud prefix with gud-tooltip.
20558 (gdb-tooltip-print): Move to gdb-ui.el.
20559
20560 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
20561 (require): CL needed to compile case.
20562 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
20563 tooltip-gud-tips-p. Make it a minor-mode.
20564 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
20565 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
20566 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
20567 (gud-tooltip-change-major-mode)
20568 (gud-tooltip-activate-mouse-motions-if-enabled)
20569 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
20570 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
20571 (gud-tooltip-original-filter, gud-tooltip-dereference)
20572 (gud-tooltip-event, tooltip-toggle-gud-tips)
20573 (gud-tooltip-process-output, gud-tooltip-print-command)
20574 (gud-tooltip-tips): Move from tooltip.el.
20575
20576 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
20577 (gdb-cpp-define-alist-flags): Doc fix.
20578 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
20579 gud-tooltip-mode is t.
20580
20581 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
20582
20583 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
20584 evaporate if their text is deleted.
20585 (goto-address-at-point): Make it work as a mouse binding as well.
20586 (goto-address-at-mouse): Obsolete it. Update users.
20587
20588 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
20589
20590 * calendar/appt.el (top-level): No longer activate on load.
20591
20592 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
20593
20594 * calendar/cal-bahai.el (mark-bahai-diary-entries):
20595 * net/webjump.el (webjump):
20596 * progmodes/idlw-help.el (idlwave-do-context-help1)
20597 (idlwave-highlight-linked-completions):
20598 * textmodes/po.el (po-find-file-coding-system-guts):
20599 Replace `assoc-ignore-case' by `assoc-string'.
20600
20601 2005-05-06 Eli Zaretskii <eliz@gnu.org>
20602
20603 * files.el (locate-file): Doc fix.
20604
20605 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
20606 Remove the redundant test for ms-dos.
20607
20608 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
20609 look for the preprocessor with exec-suffixes. If not found in
20610 standard places, look in exec-path. Remove most of the tests that
20611 used system-type.
20612
20613 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
20614
20615 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
20616
20617 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
20618 file-name clash with jka-compr.el on 8+3 filesystems.
20619
20620 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20621
20622 * term/mac-win.el: Don't define or bind scroll bar functions if
20623 x-toolkit-scroll-bars is t.
20624 (x-select-text, x-get-selection-value): Clear
20625 x-last-selected-text-clipboard if x-select-enable-clipboard is
20626 nil.
20627 (PRIMARY): Put mac-scrap-name property.
20628 (mac-select-convert-to-file-url): New function.
20629 (public.file-url): New selection target type. Add to
20630 selection-converter-alist.
20631 (x-get-selection, x-selection-value): Handle it.
20632 (x-cut-buffer-or-selection-value): New alias.
20633
20634 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
20635
20636 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
20637 entry to avoid calling bibtex-find-entry with arg global
20638 being t. Remove arg key.
20639 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
20640 (bibtex-copy-summary-as-kill): Change accordingly.
20641
20642 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
20643
20644 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
20645 (org-agenda-date-later): Use with-current-buffer.
20646
20647 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
20648
20649 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
20650 (define-obsolete-variable-alias): Doc Fixes.
20651
20652 2005-05-06 Kim F. Storm <storm@cua.dk>
20653
20654 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
20655 vertical-motion when selective-display is active.
20656
20657 * ido.el (ido-setup-hook): New hook.
20658 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
20659 (ido-input-stack): New var.
20660 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
20661 ido-next-work-file binding to M-O.
20662 Bind M-f to ido-wide-find-file-or-pop-dir.
20663 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
20664 (ido-read-internal): Run ido-setup-hook.
20665 Catch quit in read-file-name and read-string to cancel edit.
20666 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
20667 Automatically pop-all when completing a directory name (RET).
20668 (ido-file-internal): Add with-no-warnings around ffap and dired code.
20669 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
20670 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
20671 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
20672 New functions for M-b/M-f to move among the directory components.
20673 (ido-make-merged-file-list): Catch quit to cancel merge.
20674 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
20675 (ido-completion-help): No warnings for ido-completion-buffer-full.
20676
20677 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
20678
20679 * font-lock.el (font-lock-negation-char-face): New face and variable.
20680 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
20681 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
20682 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
20683 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
20684
20685 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
20686
20687 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
20688 Fix typo in docstring.
20689
20690 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
20691 (ebrowse-print-statistics-line)
20692 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
20693
20694 * term/w32-win.el (image-library-alist): Add additional name for
20695 Xpm library.
20696
20697 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
20698
20699 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
20700 use gcc instead of cpp.
20701
20702 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
20703 (gdb-create-define-alist): Use it.
20704 (gdb-cpp-define-alist-program): Update for MS-DOS.
20705
20706 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
20707
20708 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
20709
20710 2005-05-04 Richard M. Stallman <rms@gnu.org>
20711
20712 * help.el (describe-key): No error when UNTRANSLATED is nil.
20713
20714 * simple.el (line-move-1): Fix previous change to signal errors
20715 appropriately.
20716
20717 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
20718
20719 * calendar/icalendar.el (icalendar-version): Now at 0.12.
20720 (icalendar-duration-correction): Remove.
20721 (icalendar--get-event-properties): Split result at commas.
20722 (icalendar--decode-isoduration): New optional argument
20723 DURATION-CORRECTION.
20724 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
20725 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
20726 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
20727 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
20728 (icalendar--convert-anniversary-to-ical): New functions, extracted
20729 from icalendar-export-region, with bug fixes.
20730 (icalendar-export-region): Use the above functions.
20731 (icalendar-import-buffer): Check before saving diary file.
20732 (icalendar--convert-recurring-to-diary)
20733 (icalendar--convert-non-recurring-all-day-to-diary)
20734 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
20735 extracted from icalendar--convert-ical-to-diary, with bug fixes.
20736 (icalendar--convert-ical-to-diary): Use the above functions.
20737
20738 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
20739
20740 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
20741 Remove these recent additions.
20742 (c-mode): Restore to before 2005-04-28.
20743
20744 * progmodes/cc-vars.el (cc-define-list-program): Remove this
20745 recent addition.
20746
20747 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
20748 (gdb-define-alist): New variables.
20749 (gdb-create-define-alist): New function.
20750 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
20751 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
20752 with string-to-number.
20753 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
20754
20755 * progmodes/gud.el: Replace string-to-int with string-to-number.
20756 (gud-find-file): Handle gdb-define-alist.
20757
20758 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
20759
20760 2005-05-02 Jay Belanger <belanger@truman.edu>
20761
20762 * calc/calc-aent.el (math-read-token):
20763 * calc/calc-bin.el (calc-word-size):
20764 * calc/calc-ext.el (calc-read-number-fancy):
20765 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
20766 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
20767 * calc/calc-frac.el (calc-over-notation):
20768 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
20769 (calc-graph-num-points, calc-graph-init):
20770 * calc/calc-prog.el (calc-read-parse-table-part)
20771 (calc-edit-macro-repeats):
20772 * calc/calc-yank.el (calc-do-grab-rectangle):
20773 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
20774 Replace `string-to-int' by `string-to-number'.
20775
20776 2005-05-02 Kim F. Storm <storm@cua.dk>
20777
20778 * kmacro.el: Use executing-kbd-macro-index variable.
20779
20780 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
20781
20782 * net/rlogin.el (rlogin-parse-words): Delete func.
20783 (rlogin): Use split-string, not rlogin-parse-words.
20784 Also, if there are option-like elements in the parsed args,
20785 take the host to be the first arg immediately following them.
20786 Suggested by Michael Mauger.
20787
20788 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
20789
20790 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
20791
20792 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
20793
20794 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
20795 (cc-mode-cpp-program): Rename to cc-define-list-program and
20796 move to cc-vars.el.
20797
20798 * progmodes/cc-vars.el (cc-define-list-program):
20799 Change to "gcc -E -dM -". Make customizable.
20800
20801 2005-05-02 Kim F. Storm <storm@cua.dk>
20802
20803 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
20804
20805 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
20806
20807 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
20808
20809 * international/mule-util.el (truncate-string): Remove alias and
20810 obsolete declaration.
20811
20812 * international/mule-cmds.el (update-iso-coding-systems):
20813 Remove alias and obsolete declaration.
20814
20815 * international/mule.el (coding-system-parent): Remove alias and
20816 obsolete declaration.
20817
20818 * subr.el (define-function, sref): Remove aliases and obsolete
20819 declarations.
20820 (chars-in-region): Remove obsolete declaration.
20821
20822 2005-05-01 Richard M. Stallman <rms@gnu.org>
20823
20824 * info.el (Info-mode): Set widen-automatically to nil, locally.
20825
20826 * simple.el (widen-automatically): New variable.
20827 (pop-global-mark): Obey widen-automatically.
20828
20829 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
20830
20831 * term/xterm.el (function-key-map): Call substitute-key-definition
20832 before the keymap size is increased by a lot of define-key calls.
20833
20834 2005-05-01 Richard M. Stallman <rms@gnu.org>
20835
20836 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
20837 Rename ARG to ELEMENT. Doc fix.
20838
20839 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
20840
20841 * allout.el (allout-exposure): Remove macro and obsolete declaration.
20842 Remove references to allout-exposure/change to allout-new-exposure.
20843
20844 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
20845 bytecode symbols.
20846
20847 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
20848 (compiled-function-p, focus-frame, unfocus-frame):
20849 Remove aliases and obsolete declarations.
20850 Back out inadvertent changes from previous commit.
20851
20852 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
20853
20854 * files.el (require-final-newline): Make Custom tags consistent
20855 with mode-require-final-newline.
20856 (mode-require-final-newline): Doc fix.
20857
20858 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
20859
20860 * international/latexenc.el (latexenc-find-file-coding-system):
20861 Fix regular expressions.
20862
20863 2005-05-01 David Kastrup <dak@gnu.org>
20864
20865 * international/latexenc.el (latexenc-find-file-coding-system):
20866 Fix regular expressions.
20867
20868 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
20869
20870 * subr.el (string-to-int): Make obsolete.
20871
20872 2005-04-30 Richard M. Stallman <rms@gnu.org>
20873
20874 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
20875
20876 * loadup.el: load jka-comp-hook.
20877
20878 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
20879 (jka-compr-handler): Add autoload. `put' calls moved
20880 to jka-comp-hook.el.
20881 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
20882 (jka-compr-inhibit): Autoload.
20883
20884 * jka-comp-hook.el: New file.
20885 Enable the mode by default.
20886
20887 * files.el (backup-buffer-copy): Use copy-file instead
20888 of write-region, and put back the 'excl.
20889
20890 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
20891
20892 * progmodes/flymake.el (flymake-split-string)
20893 (flymake-split-string, flymake-log, flymake-pid-to-names)
20894 (flymake-reg-names, flymake-get-source-buffer-name)
20895 (flymake-unreg-names, flymake-add-line-err-info)
20896 (flymake-add-err-info): Clarify docstrings.
20897 (flymake-popup-menu, flymake-make-emacs-menu)
20898 (flymake-make-xemacs-menu): Add docstrings.
20899 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
20900 Set variables directly throughout.
20901
20902 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
20903
20904 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
20905 exists. Initialize cc-define-alist.
20906 (c-mode): Add cc-create-define-alist locally to after-save-hook.
20907 If there is no file (Macroexpansion) don't create an alist.
20908
20909 2005-04-29 Sam Steingold <sds@gnu.org>
20910
20911 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
20912 (cc-create-define-alist): Use it instead of the hard-coded string.
20913
20914 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
20915
20916 * international/mule-conf.el (file-coding-system-alist): Fix regexp
20917 for latexenc.
20918
20919 2005-04-29 Lute Kamstra <lute@gnu.org>
20920
20921 * emacs-lisp/generic.el: Improve commentary section.
20922 (define-generic-mode): Improve docstring.
20923
20924 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
20925
20926 * textmodes/org.el (many places): Change to quiet the byte compiler.
20927 (org-prefix-format-compiled): New variable.
20928 (org-compile-prefix-format): New function.
20929 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
20930 (org-agenda-prefix-format, org-timeline-prefix-format): New options.
20931 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
20932 (org-get-entries-from-diary): Use `org-get-time-of-day' for
20933 consistency with entries from `org-mode' files.
20934 (org-get-time-of-day): Fix bug with partial matches early in a line.
20935 (org-non-link-chars): New constant.
20936 (org-link-regexp): Respect `org-non-link-chars'.
20937 (org-agenda-day-view): Remove command.
20938 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
20939 (org-follow-bbdb-link, org-store-link): Search also company field.
20940 (org-highlight-overlay): New variable.
20941 (org-highlight, org-unhighlight): New functions.
20942 (org-agenda-mode): Add pre-command-hook to remove highlight.
20943 (org-evaluate-time-range): Behavior depends upon whether time stamp
20944 contains a time or not.
20945 (org-show-subtree, org-show-entry): New functions.
20946 (org-agenda-cleanup-fancy-diary): Remove empty lines.
20947
20948 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
20949
20950 * comint.el (comint-output-filter-functions): Add autoload cookie.
20951
20952 2005-04-28 Kim F. Storm <storm@cua.dk>
20953
20954 * ido.el (ido-everywhere): Fix last change.
20955
20956 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
20957
20958 * international/latexenc.el: New file.
20959 * international/mule-conf.el (file-coding-system-alist): For .tex,
20960 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
20961
20962 2005-04-28 Lute Kamstra <lute@gnu.org>
20963
20964 * font-lock.el (font-lock-add-keywords)
20965 (font-lock-remove-keywords): Clarify docstring.
20966 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
20967 Don't start docstrings with a `*'.
20968 (font-lock-update-removed-keyword-alist): Give it a docstring.
20969
20970 * generic-x.el: Update commentary section.
20971 Only require font-lock when compiling.
20972 Define all modes conditionally.
20973 Place all generic modes in the generic-x-modes customization group.
20974 (generic-x-modes): New customization group.
20975 (generic-default-modes, generic-mswindows-modes)
20976 (generic-unix-modes, generic-other-modes): New constants.
20977 (generic-define-mswindows-modes, generic-define-unix-modes):
20978 Update docstrings. Make them obsolete.
20979 (generic-extras-enable-list): New default value. Update docstring.
20980 Improve :type. Change :set function.
20981 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
20982 Fix docstring.
20983
20984 * emacs-lisp/generic.el (generic-mode-internal):
20985 Simplify font-lock-defaults.
20986 (define-generic-mode): Fix docstring.
20987
20988 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
20989
20990 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
20991 font-lock-face property to highlight matches.
20992
20993 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
20994
20995 * progmodes/cc-mode.el (cc-create-define-alist): New function.
20996 (cc-define-alist): New variable.
20997 (c-mode): Make it local and initialize it.
20998
20999 * progmodes/gdb-ui.el (gdb-active-process): New variable.
21000 (gdb-exited): New function.
21001 (gdb-annotation-rules): Use it.
21002 (gdb-starting): Set gdb-active-process to t.
21003 (gdb-stopping): Amend doc string.
21004 (gdb-reset): Set gdb-active-process to nil.
21005
21006 * tooltip.el (tooltip-gud-tips): Show the associated #define
21007 directives when a C program under GDB is not executing.
21008
21009 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
21010
21011 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
21012 font-lock-fontify-syntactic-keywords.
21013
21014 * font-lock.el (font-lock-default-fontify-region): Don't force
21015 parse-sexp-lookup-properties to nil.
21016
21017 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
21018
21019 * man.el (man-mode-syntax-table): Set up `:' to have
21020 word-constituent syntax.
21021
21022 2005-04-27 Lute Kamstra <lute@gnu.org>
21023
21024 * novice.el (disable-command): Don't add spurious newlines to the
21025 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
21026
21027 2005-04-26 Jay Belanger <belanger@truman.edu>
21028
21029 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
21030 than one window before deleting window.
21031
21032 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
21033
21034 * shell.el (shell-prompt-pattern): Doc fix.
21035 (shell-mode): Set paragraph-separate buffer locally to "\\'".
21036
21037 * comint.el (comint-prompt-regexp, comint-get-old-input)
21038 (comint-use-prompt-regexp)
21039 (comint-use-prompt-regexp-instead-of-fields)
21040 (comint-replace-by-expanded-history, comint-send-input)
21041 (comint-output-filter, comint-get-old-input-default)
21042 (comint-line-beginning-position, comint-bol, comint-show-output)
21043 (comint-backward-matching-input, comint-forward-matching-input)
21044 (comint-next-prompt, comint-previous-prompt):
21045 Rename `comint-use-prompt-regexp-instead-of-fields' to
21046 `comint-use-prompt-regexp'. Keep old name as alias and declare
21047 obsolete.
21048 (comint-use-prompt-regexp): Shorten first line of doc string.
21049
21050 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
21051 Set paragraph-separate buffer locally to "\\'".
21052
21053 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
21054 Adapt to above name change.
21055
21056 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
21057 (smbclient-prompt-regexp): Ditto.
21058
21059 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
21060
21061 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
21062
21063 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
21064 gdb-location-list.
21065 Break lines that are over 80 characters wide.
21066
21067 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
21068
21069 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
21070 New fun and var, to preserve compatibility.
21071
21072 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
21073
21074 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
21075
21076 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
21077 name to file-newer-than-file-p.
21078
21079 2005-04-26 Richard M. Stallman <rms@gnu.org>
21080
21081 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
21082
21083 * progmodes/python.el (python-mode):
21084 Use new name eldoc-documentation-function.
21085
21086 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
21087
21088 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
21089 (eldoc-documentation-function):
21090 Rename from eldoc-print-current-symbol-info-function. Calls changed.
21091
21092 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
21093
21094 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
21095
21096 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
21097
21098 * term/xterm.el (function-key-map): Fix strings for
21099 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
21100 {C,S,A,C-S}-{f1-f12}.
21101
21102 2005-04-26 Kenichi Handa <handa@m17n.org>
21103
21104 * international/mule-cmds.el (select-safe-coding-system):
21105 Fix previous change.
21106
21107 2005-04-26 Lute Kamstra <lute@gnu.org>
21108
21109 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
21110
21111 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
21112 (font-lock-comment-delimiter-face): Ditto.
21113
21114 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
21115
21116 2005-04-25 Jay Belanger <belanger@truman.edu>
21117
21118 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
21119 to t while inserting information; use help-mode.
21120
21121 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
21122
21123 * term.el (ansi-term-color-vector): Use the xterm colors.
21124 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
21125
21126 2005-04-25 Lute Kamstra <lute@gnu.org>
21127
21128 * font-core.el (font-lock-defaults): Fix docstring.
21129
21130 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
21131
21132 2005-04-25 Kenichi Handa <handa@m17n.org>
21133
21134 * international/mule-cmds.el (select-safe-coding-system):
21135 Don't check consistency with coding: spec, etc if raw-text or
21136 no-conversion was found to be safe.
21137
21138 2005-04-24 Richard M. Stallman <rms@gnu.org>
21139
21140 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
21141 citation markers at start of each line.
21142
21143 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
21144 citation markers at start of each line.
21145
21146 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
21147
21148 * files.el (mode-require-final-newline): Fix previous change.
21149 (require-final-newline): Fix type label.
21150
21151 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
21152
21153 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
21154 statement in buffer (broken by 2004-11-24 change).
21155
21156 2005-04-24 Kim F. Storm <storm@cua.dk>
21157
21158 * ido.el (ido-everywhere): Save and restore old read-buffer-function
21159 and read-file-name-function values. Don't overwrite existing
21160 non-nil values if ido-mode is enabled without ido-everywhere.
21161
21162 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
21163
21164 * files.el (mode-require-final-newline): Minor doc fix.
21165
21166 2005-04-24 Eli Zaretskii <eliz@gnu.org>
21167
21168 * subr.el (syntax-after): Doc fix.
21169 (syntax-class): If argument is nil, return nil. Mask off upper 16
21170 bits, not 8 bits.
21171
21172 * files.el (mode-require-final-newline): Doc fix.
21173 (backup-buffer-copy): Fix last change.
21174
21175 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21176
21177 * term/mac-win.el: Require select. Set selection-coding-system to
21178 mac-system-coding-system. Call menu-bar-enable-clipboard.
21179 (x-last-selected-text-clipboard, x-last-selected-text-primary)
21180 (x-select-enable-clipboard): New variables.
21181 (x-select-text, x-get-selection, x-selection-value)
21182 (x-get-selection-value, mac-select-convert-to-string)
21183 (mac-services-open-file, mac-services-open-selection)
21184 (mac-services-insert-text): New functions.
21185 (CLIPBOARD, FIND): Put mac-scrap-name property.
21186 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
21187 (public.tiff): Put mac-ostype property.
21188 (selection-converter-alist): Add entries for them.
21189 (mac-application-menu-map): New keymap.
21190 (interprogram-cut-function, interprogram-paste-function): Set to
21191 x-select-text and x-get-selection-value, respectively.
21192 (split-window-keep-point): Set to t.
21193
21194 2005-04-23 Richard M. Stallman <rms@gnu.org>
21195
21196 * files.el (read-directory-name): Always pass non-nil
21197 DEFAULT-FILENAME arg to read-file-name.
21198 (backup-buffer-copy, basic-save-buffer-2): Take care against
21199 writing thru an unexpected existing symlink.
21200 (revert-buffer): In indirect buffer, revert the base buffer.
21201 (magic-mode-alist): Doc fix.
21202 (buffer-stale-function): Doc fix.
21203 (minibuffer-with-setup-hook): Avoid warning.
21204 (mode-require-final-newline): Doc and custom fix.
21205
21206 * follow.el (follow-end-of-buffer): Use with-no-warnings.
21207
21208 * font-lock.el (font-lock-comment-face): On terminals with few colors,
21209 use the default appearance.
21210 (font-lock-comment-delimiter-face): New face, new variable.
21211
21212 * imenu.el (imenu--generic-function): The official position of a
21213 definition is the start of the line that BEG is in.
21214
21215 * midnight.el (midnight-timer): Move defvar up.
21216
21217 * mouse.el (mouse-drag-region-1): Delete some debugging code.
21218
21219 * saveplace.el (save-place-to-alist): Use with-no-warnings.
21220
21221 * startup.el (command-line): Use with-no-warnings.
21222
21223 * window.el (window-size-fixed): New defvar.
21224
21225 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
21226
21227 * mail/rmail.el (rmail-font-lock-keywords):
21228 Use font-lock-comment-delimiter-face.
21229
21230 * mail/sendmail.el (mail-font-lock-keywords):
21231 Use font-lock-comment-delimiter-face.
21232
21233 * progmodes/compile.el (next-error-highlight-timer): New defvar.
21234
21235 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
21236
21237 * progmodes/compile.el (compilation-mode-font-lock-keywords):
21238 Specify t for LAXMATCH when matching directories.
21239 Save match data around compilation-compat-error-properties form.
21240
21241 2005-04-23 David Kastrup <dak@gnu.org>
21242
21243 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
21244 Mention that the autoloaded aliases should be kept for AUCTeX.
21245
21246 2005-04-23 Andreas Schwab <schwab@suse.de>
21247
21248 * isearch.el (isearch-forward): Doc fix.
21249
21250 2005-04-23 Eli Zaretskii <eliz@gnu.org>
21251
21252 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
21253 (jit-lock-stealth-nice): Change default value to 0.5.
21254
21255 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
21256
21257 * abbrev.el (write-abbrev-file): Write table entries in
21258 alphabetical order by table name.
21259
21260 2005-04-22 Kim F. Storm <storm@cua.dk>
21261
21262 * ido.el (ido-read-internal): Fix `list' completion.
21263
21264 2005-04-22 Kenichi Handa <handa@m17n.org>
21265
21266 * recentf.el (recentf-save-file-coding-system): New variable.
21267 (recentf-save-list): Encode the file by
21268 recentf-save-file-coding-system and add coding: tag.
21269
21270 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
21271
21272 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
21273
21274 2005-04-21 Lute Kamstra <lute@gnu.org>
21275
21276 * loadhist.el (unload-feature): Don't remove a function from hooks
21277 if it is about to be restored to an autoload . Remove functions
21278 that will become unbound from auto-mode-alist. Simplify the code.
21279
21280 * subr.el (assq-delete-all): New implementation that is linear,
21281 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
21282 (rassq-delete-all): New function.
21283
21284 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
21285 Add size-indication-mode.
21286
21287 2005-04-21 Kenichi Handa <handa@m17n.org>
21288
21289 * international/mule-cmds.el: Add autoload for widget-value in
21290 eval-when-compile.
21291
21292 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
21293
21294 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
21295 Add tooltip-mode.
21296
21297 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
21298
21299 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
21300
21301 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
21302 (inferior-lisp-filter-regexp, inferior-lisp-program)
21303 (inferior-lisp-load-command, inferior-lisp-prompt)
21304 (inferior-lisp-mode-hook, lisp-source-modes)
21305 (inferior-lisp-load-hook): defvar->defcustom.
21306 (inferior-lisp-program, inferior-lisp-prompt)
21307 (inferior-lisp-load-hook): Doc fixes.
21308 (inferior-lisp-install-letter-bindings): Small change in
21309 introductory comment.
21310
21311 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
21312
21313 * vc.el (vc-annotate-color-map): Change some colors so that text
21314 using them as foreground is readable on both white and black
21315 backgrounds.
21316
21317 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
21318
21319 * international/mule-conf.el (translation-table-for-input):
21320 Remove redundant declaration.
21321
21322 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
21323
21324 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
21325
21326 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
21327 (tooltip-toggle-gud-tips): New function.
21328
21329 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21330
21331 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
21332 right angle brackets.
21333
21334 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
21335
21336 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
21337
21338 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
21339
21340 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
21341 Remove. Update callers to use expand-file-name instead.
21342
21343 * subr.el (syntax-class): New function.
21344
21345 * simple.el (blink-matching-open): Use it.
21346
21347 * paren.el (show-paren-function): Use it to recognize parens that are
21348 also used in 2-char comment markers.
21349
21350 2005-04-19 Lute Kamstra <lute@gnu.org>
21351
21352 * loadhist.el (unload-feature): Update for new format of
21353 load-history. Simplify the code.
21354
21355 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21356
21357 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
21358 (mac-add-charset-info): New function. Initialize variable
21359 mac-charset-info-alist using it.
21360 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
21361 for translation.
21362 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
21363 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
21364 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
21365 New CCL programs.
21366
21367 2005-04-19 Kim F. Storm <storm@cua.dk>
21368
21369 * simple.el (next-buffer, prev-buffer, next-error)
21370 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
21371 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
21372
21373 * bindings.el (next-buffer, prev-buffer, next-error)
21374 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
21375 (clone-indirect-buffer-other-window): Move bindings from simple.el.
21376 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
21377 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
21378
21379 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21380
21381 * isearch.el (isearch-edit-string): Make the search-ring available for
21382 minibuffer history commands.
21383 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
21384 the default history commands now work just as well.
21385 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
21386
21387 2005-04-18 Kim F. Storm <storm@cua.dk>
21388
21389 * emulation/cua-base.el (cua--pre-command-handler): Add more
21390 elaborate check for shift modifier on non-window systems.
21391
21392 2005-04-18 Lars Hansen <larsh@math.ku.dk>
21393
21394 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
21395
21396 2005-04-18 Kim F. Storm <storm@cua.dk>
21397
21398 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
21399 and make it optional. Don't test tooltip-gud-echo-area here.
21400 (tooltip-gud-process-output, gdb-tooltip-print):
21401 Pass tooltip-gud-echo-area to tooltip-show.
21402 (tooltip-help-tips): Remove second optional arg to tooltip-show.
21403
21404 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21405
21406 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
21407 `display-graphic-p' may not be bound yet.
21408
21409 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
21410
21411 * startup.el (command-line): No longer enable Xterm Mouse mode by
21412 default in terminals compatible with xterm.
21413
21414 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
21415
21416 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
21417
21418 * tooltip.el (tooltip-gud-echo-area): Rename from
21419 tooltip-use-echo-area.
21420 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
21421 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
21422 area independently of where help tooltips are displayed.
21423
21424 2005-04-17 David Kastrup <dak@gnu.org>
21425
21426 * cus-theme.el (custom-theme-write-variables): Quote variables
21427 where necessary.
21428
21429 2005-04-17 Richard M. Stallman <rms@gnu.org>
21430
21431 * simple.el (yank-excluded-properties): Add follow-link to value.
21432
21433 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
21434
21435 * startup.el (fancy-splash-max-time): Just 30 seconds.
21436 (fancy-splash-delay): Just 7.
21437 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
21438
21439 * loadhist.el (unload-feature): Update for new format of load-history.
21440 Simplify the code.
21441
21442 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
21443 (rmail-font-lock-keywords): Don't fontify the text of a citation.
21444
21445 * mail/sendmail.el (mail-font-lock-keywords):
21446 Don't fontify subject text.
21447 Don't fontify the text of a citation.
21448
21449 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
21450
21451 * comint.el (comint-output-filter): Run comint-output-filter-functions
21452 with point where the user had it.
21453
21454 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
21455
21456 * international/ucs-tables.el (ucs-set-table-for-input):
21457 Disable when using unify-on-decoding.
21458
21459 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
21460
21461 * emulation/cua-base.el (cua-global-mark-face): Add special case
21462 for displays supporting a high number of colors.
21463
21464 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
21465
21466 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
21467
21468 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
21469
21470 * filesets.el (filesets-add-buffer): If user supplies a name of a
21471 non-existing fileset, create a new fileset.
21472
21473 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
21474
21475 * textmodes/org.el (org-up-heading-all): Fix bug with
21476 `outline-up-heading-all'.
21477
21478 2005-04-16 Andreas Schwab <schwab@suse.de>
21479
21480 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
21481 /etc/permissions.d/* and /etc/aliases.d/*.
21482
21483 2005-04-16 Kenichi Handa <handa@m17n.org>
21484
21485 * international/code-pages.el (cp-make-coding-system):
21486 Set `translation-table-for-input' property value to the symbol
21487 ucs-mule-to-mule-unicode, not to that value.
21488 (pt154): Escape guillemet by `\'.
21489
21490 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
21491
21492 * loadup.el: Load tooltip if x-show-tip is fboundp.
21493
21494 * startup.el (command-line): Add comment.
21495
21496 * tooltip.el (tooltip-mode): Specify correct standard value for
21497 Custom in init-value.
21498
21499 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
21500
21501 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
21502 possible.
21503
21504 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
21505
21506 * textmodes/org.el (org-agenda-date-prompt): Rename from
21507 `org-agenda-date-today'.
21508 (org-evaluate-time-range): Insert at point instead of directly
21509 after time range.
21510 (org-first-headline-recenter, org-subtree-end-visible-p)
21511 (org-optimize-window-after-visibility-change): New functions
21512 (org-agenda-post-command-hook): Don't allow point at end of line,
21513 to make sure it always hits the text properties.
21514 (org-agenda-next-date-line, org-agenda-previous-date-line):
21515 New commands.
21516 (org-set-regexps-and-options): Category may contain white space.
21517 (org-agenda-get-deadlines, org-agenda-get-scheduled):
21518 Improve marker positions.
21519 (org-agenda-new-marker): Argument POS made optional.
21520 (org-agenda-get-timestamps): Deadlines which are done are listed
21521 in org-done-face now.
21522 (org-agenda-get-todos, org-agenda-get-timestamps)
21523 (org-agenda-get-deadlines, org-agenda-get-scheduled):
21524 Set `undone-face' and `done-face' properties.
21525 (org-last-todo-state-is-todo): New variable.
21526 (org-todo): Set `org-last-todo-state-is-todo'.
21527 (org-agenda-todo): Change face according to
21528 `org-last-todo-state-is-todo'. And change other lines referring to
21529 the same entry.
21530 (org-calendar-goto-agenda): New command.
21531 (org-calendar-to-agenda-key): New option.
21532 (org-startup-folded): New allowed value `content'.
21533 (org-set-regexps-and-options): Accept new value `content' for
21534 `org-startup-folded'.
21535 (org-get-current-options): Handle new value `content' for
21536 `org-startup-folded'.
21537 (org-insert-todo-heading): New command.
21538 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
21539 interactively in empty file and option
21540 `org-insert-mode-line-in-empty-file' has been set.
21541 (org-agenda-todo, org-agenda-priority): Modify to use
21542 `org-agenda-change-all-lines'.
21543 (org-warning-face): Change color on dark background
21544
21545 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21546
21547 * international/mule-cmds.el (set-locale-environment): On Mac OS,
21548 use preferences AppleLocale and AppleLanguages, and variable
21549 mac-system-locale for default locale. On Mac OS Classic, use
21550 mac-system-coding-system for default coding systems.
21551
21552 * term/mac-win.el: Don't set file-name-coding-system.
21553 Decode variables system-name, emacs-build-system, user-login-name, and
21554 user-full-name by mac-system-coding-system on Mac OS Classic.
21555 (mac-system-coding-system): New variable.
21556
21557 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
21558
21559 * startup.el (command-line): Handle `xterm-mouse-mode' before
21560 reading init file.
21561
21562 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
21563
21564 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
21565
21566 * progmodes/sh-script.el (sh-here-document-word): Make it a
21567 defcustom. Doc fix.
21568 (sh-add): Bash uses $(( )) for arithmetic.
21569 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
21570 (sh-maybe-here-document): Remove quotes and leading whitespace
21571 from heredoc word when closing. Indent heredoc with tabs if word
21572 starts with "-".
21573
21574 2005-04-13 Richard M. Stallman <rms@gnu.org>
21575
21576 * simple.el (undo): Fix previous change.
21577
21578 * custom.el (defface): Doc fix.
21579
21580 2005-04-13 Lute Kamstra <lute@gnu.org>
21581
21582 * Makefile.in (DONTCOMPILE): Remove list.
21583 (compile, compile-always): Don't use DONTCOMPILE.
21584 (update-authors): Load the library in which batch-update-authors
21585 is defined.
21586 * makefile.w32-in (DONTCOMPILE): Remove list.
21587 (compile, compile-always): Fix comments.
21588 (update-authors): Load the library in which batch-update-authors
21589 is defined.
21590
21591 * generic-x.el (generic-mode-ini-file-find-file-hook):
21592 Rename to ini-generic-mode-find-file-hook.
21593 Keep generic-mode-ini-file-find-file-hook as an alias.
21594 (ini-generic-mode-find-file-hook): Rename from
21595 generic-mode-ini-file-find-file-hook. Fix docstring.
21596 (ini-generic-mode): Docstring change.
21597 (bat-generic-mode-run-as-comint): Silence the byte compiler.
21598
21599 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
21600 called from lisp.
21601
21602 * generic.el: Move to the emacs-lisp subdir.
21603
21604 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
21605
21606 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
21607 and C-S- function and cursor motion keys.
21608
21609 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
21610
21611 * startup.el (command-line): Enable Xterm Mouse mode by default.
21612 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
21613 for Custom. No longer show "Mouse" in mode line when enabled.
21614 Doc fix.
21615
21616 2005-04-12 Kim F. Storm <storm@cua.dk>
21617
21618 * emulation/cua-base.el (cua-rectangle-face)
21619 (cua-rectangle-noselect-face): Define face attributes here.
21620
21621 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
21622
21623 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21624
21625 * startup.el (command-line): Turn off blinking cursor if
21626 cursorBlink in resources is off or false.
21627
21628 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21629
21630 * term/mac-win.el (dnd): Require dnd.
21631 (mac-drag-n-drop): Call dnd-handle-one-url.
21632 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
21633 (kTextEncodingISOLatin2): Remove constants.
21634 (mac-script-code-coding-systems): New constant.
21635 (mac-handle-language-change): New function.
21636 (special-event-map): Bind it to `language-change' event.
21637 (mac-centraleurroman, mac-cyrillic): New coding systems.
21638 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
21639 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
21640 and mac-cyrillic-encoder to encode-mac-centraleurroman and
21641 encode-mac-cyrillic, respectively.
21642
21643 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
21644
21645 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
21646 Don't set overlay-arrow-string to "=>" as this is done
21647 globally in C now.
21648
21649 2005-04-12 Lute Kamstra <lute@gnu.org>
21650
21651 * generic-x.el (rc-generic-mode, rul-generic-mode):
21652 Fix auto-mode-alist entries.
21653 (etc-fstab-generic-mode): Tweak fontification.
21654
21655 * generic.el (generic-make-keywords-list): Fix docstring.
21656 (generic-mode-internal): Simplify generic-font-lock-keywords.
21657
21658 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
21659
21660 * whitespace.el (whitespace-buffer-leading)
21661 (whitespace-buffer-trailing): Revert the incorrect test inversion.
21662 However, fix the highlight area for the leading and
21663 trailing whitespaces to show space.
21664
21665 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
21666
21667 * whitespace.el (whitespace-version): Bump to 3.5
21668
21669 (whitespace-buffer-leading, whitespace-buffer-trailing):
21670 Invert sense of the test to highlight the whitespace.
21671
21672 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
21673
21674 * progmodes/gud.el (gud-display-line): GUD uses its own
21675 overlay arrow now so don't set overlay-arrow-string.
21676 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
21677
21678 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
21679
21680 * term.el (term-ansi-current-bold, term-ansi-current-underline)
21681 (term-ansi-current-reverse, term-ansi-current-invisible)
21682 (term-ansi-face-already-done): Change to boolean.
21683 (term-reset-terminal, term-handle-colors-array): Handle the above
21684 vars accordingly.
21685 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
21686 (term-emulate-terminal): Use the new name.
21687
21688 * faces.el (secondary-selection): Use yellow1, not yellow.
21689 (trailing-whitespace): Use red1, not red.
21690
21691 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21692
21693 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
21694 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
21695 (dired-dnd-handle-file): Call dnd-get-local-file-uri
21696
21697 * cus-edit.el (dnd): New group.
21698
21699 * term/w32-win.el (dnd): Require dnd
21700 (w32-drag-n-drop): Call dnd-handle-one-url.
21701
21702 * x-dnd.el: Require dnd.
21703 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
21704 Call dnd-handle-one-url.
21705 (x-dnd-types-alist, x-dnd-insert-utf8-text)
21706 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
21707 to dnd-insert-text.
21708 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
21709 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
21710 (x-dnd-get-local-file-name, x-dnd-open-local-file)
21711 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
21712
21713 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
21714
21715 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
21716
21717 * wdired.el: Doc fixes.
21718 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
21719 (wdired-use-dired-vertical-movement): Rename from
21720 wdired-always-move-to-filename-beginning.
21721 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
21722 (wdired-change-to-wdired-mode): Change mode name.
21723 (wdired-newline): Delete.
21724
21725 2005-04-11 Richard M. Stallman <rms@gnu.org>
21726
21727 * whitespace.el (whitespace-highlight-the-space):
21728 Don't call whitespace-unhighlight-the-space here.
21729
21730 * simple.el (undo): Record t in undo-equiv-table
21731 for the redo record made by an undo-in-region.
21732
21733 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
21734
21735 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
21736 (gdb-frame-inferior-io-buffer): New Functions to control
21737 display of separate IO buffer.
21738 (menu): Add them to menu-bar.
21739 (gdb-display-buffer): Check for buffer another frame.
21740 Protect GUD buffer.
21741 (gdb-setup-windows): Create IO buffer if not already there.
21742 (gdb-memory-mode): Remove purecopy noops.
21743
21744 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
21745
21746 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
21747 and pass to self-insert-command.
21748
21749 2005-04-11 Lute Kamstra <lute@gnu.org>
21750
21751 * generic.el: Commentary section cleanup.
21752 (generic): Delete.
21753 (generic-use-find-file-hook, generic-lines-to-scan)
21754 (generic-find-file-regexp, generic-ignore-files-regexp)
21755 (default-generic-mode, generic-mode-find-file-hook)
21756 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
21757 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
21758 (generic-use-find-file-hook, generic-lines-to-scan)
21759 (generic-find-file-regexp, generic-ignore-files-regexp)
21760 (default-generic-mode, generic-mode-find-file-hook)
21761 (generic-mode-ini-file-find-file-hook): Move from generic.el.
21762
21763 2005-04-10 Karl Fogel <kfogel@red-bean.com>
21764
21765 * bookmark.el (bookmark-write-file): Catch errors writing file.
21766 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
21767
21768 2005-04-10 Richard M. Stallman <rms@gnu.org>
21769
21770 * startup.el (fancy-splash-tail): Update copyright year.
21771 (command-line): Split part of -Q into -D.
21772 (emacs-basic-display): New defvar.
21773 (fancy-splash-text): Correct name of menu item.
21774
21775 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
21776
21777 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
21778 lines in one node.
21779
21780 * comint.el (comint-send-input): New arg ARTIFICIAL.
21781 Callers in this file changed.
21782
21783 * abbrev.el (define-abbrevs): Read system abbrevs properly.
21784
21785 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
21786
21787 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
21788
21789 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
21790 `ldap-search-internal'.
21791
21792 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
21793
21794 * files.el (set-auto-mode-1): Use line-end-position.
21795
21796 * international/latin-1.el:
21797 * international/latin-2.el:
21798 * international/latin-3.el:
21799 * international/latin-4.el:
21800 * international/latin-5.el:
21801 * international/latin-8.el:
21802 * international/latin-9.el: Give punctuation syntax to NBSP.
21803
21804 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
21805 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
21806 Use char-classes to accept non-ascii letters, accepted in some recent
21807 bibtex implementations.
21808
21809 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
21810
21811 * custom.el (custom-set-minor-mode): Any non-nil value for the
21812 variable should enable the mode when set through Custom.
21813
21814 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
21815
21816 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
21817 TAB binding so tab-always-indent is obeyed.
21818 (vhdl-minibuffer-local-map): Move initialization into declaration.
21819 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
21820 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
21821 (vhdl-hooked-abbrev): Avoid test for XEmacs.
21822 (vhdl-current-line): Use line-beginning-position.
21823 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
21824 with-output-to-temp-buffer, so the current position can be recorded.
21825
21826 2005-04-10 Masatake YAMATO <jet@gyve.org>
21827
21828 * progmodes/compile.el (compilation-error-regexp-alist-alist):
21829 Add regexp for gcov.
21830
21831 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
21832
21833 * calendar/time-date.el (time-to-seconds, seconds-to-time)
21834 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
21835 syntax which Emacs 20 doesn't support.
21836
21837 2005-04-09 Richard M. Stallman <rms@gnu.org>
21838
21839 * help.el (describe-key-briefly, describe-key):
21840 Replace strings as event types with "(any string)".
21841
21842 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
21843
21844 * arc-mode.el (archive-mode-map): Move initialization into
21845 the declaration. Override *all* bindings of `undo'.
21846 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
21847
21848 2005-04-09 Jay Belanger <belanger@truman.edu>
21849
21850 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
21851
21852 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
21853
21854 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
21855 (xterm-register-default-colors): Update color values computation
21856 to match xterm-200.
21857
21858 2005-04-09 Kenichi Handa <handa@m17n.org>
21859
21860 * international/code-pages.el (iso-latin-7): Fix the map.
21861
21862 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
21863
21864 * emacs-lisp/lisp.el (defun-prompt-regexp)
21865 (parens-require-spaces, buffer-end, end-of-defun)
21866 (insert-parentheses): Doc fixes.
21867
21868 2005-04-08 Kim F. Storm <storm@cua.dk>
21869
21870 * comint.el (comint-highlight-prompt): Fix face spec.
21871 * hi-lock.el (hi-green): Likewise.
21872
21873 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
21874
21875 * cus-edit.el (custom-modified-face):
21876 * comint.el (comint-highlight-input): Fix previous changes.
21877 * term.el (term-handle-ansi-escape): Add a comment.
21878
21879 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
21880
21881 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
21882 in the buffer and in whitespace-highlighted-space.
21883 (whitespace-unhighlight-the-space): Simplify.
21884 (whitespace-buffer): Simplify.
21885
21886 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
21887
21888 * textmodes/table.el (table-cell-face): Add special case for
21889 displays supporting a high number of colors.
21890 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
21891 (vhdl-font-lock-reserved-words-face)
21892 (vhdl-speedbar-architecture-face)
21893 (vhdl-speedbar-instantiation-face)
21894 (vhdl-speedbar-architecture-selected-face)
21895 (vhdl-speedbar-instantiation-selected-face): Likewise.
21896 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
21897 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
21898 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
21899 (ebrowse-root-class-face, ebrowse-member-attribute-face)
21900 (ebrowse-progress-face): Likewise.
21901 * progmodes/compile.el (compilation-info-face): Likewise.
21902 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
21903 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
21904 * calendar/calendar.el (diary-face): Likewise.
21905 * woman.el (woman-italic-face, woman-bold-face)
21906 (woman-unknown-face): Likewise.
21907 * wid-edit.el (widget-button-pressed-face): Likewise.
21908 * whitespace.el (whitespace-highlight-face): Likewise.
21909 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
21910 * pcvs-info.el (cvs-marked-face): Likewise.
21911 * info.el (info-xref): Likewise.
21912 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
21913 * hilit-chg.el (highlight-changes-face)
21914 (highlight-changes-delete-face): Likewise.
21915 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
21916 (hi-red-b): Likewise.
21917 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
21918 * font-lock.el (font-lock-keyword-face)
21919 (font-lock-function-name-face, font-lock-warning-face): Likewise.
21920 * cus-edit.el (custom-invalid-face, custom-modified-face)
21921 (custom-set-face, custom-changed-face, custom-variable-tag-face)
21922 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
21923 * comint.el (comint-highlight-prompt): Likewise.
21924
21925 2005-04-08 Lute Kamstra <lute@gnu.org>
21926
21927 * font-lock.el (font-lock-keywords): Docstring fixes.
21928
21929 2005-04-08 Kenichi Handa <handa@m17n.org>
21930
21931 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
21932 chars are more than a limit, print " and more..." at the tail.
21933
21934 2005-04-08 Kim F. Storm <storm@cua.dk>
21935
21936 * emacs-lisp/authors.el (authors-aliases): Update list.
21937 (authors-ignored-files): New list.
21938 (authors-fixed-entries): Fix typo.
21939 (authors-renamed-files-alist): Update list.
21940 (authors-add): Check authors-ignored-files.
21941
21942 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
21943
21944 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
21945 optional, to ensure backward compatibility.
21946
21947 2005-04-08 Stephen Eglen <stephen@gnu.org>
21948
21949 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
21950
21951 2005-04-08 Kim F. Storm <storm@cua.dk>
21952
21953 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
21954
21955 * mouse.el (mouse-on-link-p): Doc fix.
21956
21957 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
21958
21959 * ielm.el (ielm-prompt-read-only): Doc fix.
21960
21961 * comint.el (comint-prompt-read-only): Doc fix.
21962
21963 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
21964
21965 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
21966 ensure dired always handles wildcards passed to ffap.
21967 (find-file-at-point): Use it.
21968 (ffap-dired-wildcards): Doc fix.
21969
21970 2005-04-07 Juri Linkov <juri@jurta.org>
21971
21972 * simple.el (next-error-overlay-arrow-position): New defvar.
21973 Put "=>" on its property `overlay-arrow-string'. Add it to
21974 `overlay-arrow-variable-list'.
21975
21976 * progmodes/compile.el (compilation-setup):
21977 Set `next-error-overlay-arrow-position' to nil. Also set it to
21978 nil in the local hook `kill-buffer-hook'. Make local variable
21979 `overlay-arrow-string' and set it to "=>".
21980 (compilation-goto-locus): Set BOL position to
21981 `next-error-overlay-arrow-position' instead of
21982 `overlay-arrow-position'.
21983
21984 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
21985 locally instead of adding it to the global hook.
21986 (Info-kill-buffer): Move up.
21987
21988 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
21989
21990 * term/xterm.el (xterm-standard-colors): Update color values from
21991 xterm-200.
21992
21993 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
21994
21995 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
21996
21997 * fast-lock.el:
21998 * lazy-lock.el: Move them to the obsolete subdir.
21999
22000 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
22001
22002 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
22003 (wdired-add-replace-advice): Remove.
22004 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
22005
22006 2005-04-06 Kim F. Storm <storm@cua.dk>
22007
22008 * startup.el (command-line): Add --bare-bones alias for -Q.
22009
22010 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22011
22012 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
22013 create the startup fontset if a font specification ends with
22014 `mac-roman'.
22015
22016 2005-04-06 Lute Kamstra <lute@gnu.org>
22017
22018 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
22019 change.
22020
22021 * emacs-lisp/copyright.el (copyright-update-year): Replace the
22022 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
22023
22024 2005-04-05 Lute Kamstra <lute@gnu.org>
22025
22026 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
22027 (define-generic-mode): Ditto. Fix debug declaration.
22028
22029 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
22030 Put them in the generic-x group.
22031
22032 * calendar/timeclock.el (timeclock): Doc fix.
22033
22034 * generic.el (define-generic-mode): Don't use custom-current-group.
22035 Document default :group value.
22036 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
22037 (define-global-minor-mode): Don't use custom-current-group.
22038
22039 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
22040
22041 * startup.el (command-line-1): Display startup-echo-area-message
22042 when fancy splash screen is in use.
22043
22044 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
22045 (sh-escaped-newline): New face.
22046 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
22047 newline, and use sh-escaped-newline face.
22048
22049 * progmodes/tcl.el (tcl-escaped-newline): New face.
22050 (tcl-builtin-list): New variable.
22051 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
22052 newlines. Fix keywords subexpression number.
22053
22054 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
22055
22056 * textmodes/org.el (org-diary-default-entry): Fix call to
22057 `add-to-diary-entry'.
22058
22059 2005-04-05 Kim F. Storm <storm@cua.dk>
22060
22061 * ediff-init.el: Use (featurep 'xemacs).
22062
22063 2005-04-05 David Ponce <david@dponce.com>
22064
22065 * cus-edit.el (face): Derive from symbol widget. Display sample
22066 of the current face on the fly.
22067 (widget-face-sample-face-get, widget-face-notify): New functions.
22068 (widget-face-value-create): Remove.
22069
22070 * wid-edit.el (widget-field-end): Temporarily remove field
22071 narrowing before to call `get-char-property'.
22072
22073 2005-04-04 Jay Belanger <belanger@truman.edu>
22074
22075 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
22076 (math-read-subscripts): New variable.
22077 (math-read-preprocess-string): Process subscripts.
22078
22079 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
22080
22081 * comint.el (comint-prompt-read-only): Doc fix.
22082
22083 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
22084 `-1'. Doc fix.
22085
22086 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
22087
22088 * textmodes/org.el (org-insert-mode-line-in-empty-file):
22089 Change default value to nil.
22090
22091 2005-04-04 Lute Kamstra <lute@gnu.org>
22092
22093 * autorevert.el (auto-revert-mode): Specify :group.
22094 * battery.el (display-battery-mode): Specify :group.
22095 * diff-mode.el (diff-minor-mode): Specify :group.
22096 * font-core.el (font-lock-mode): Specify :group.
22097 * hl-line.el (hl-line-mode): Specify :group.
22098 * iimage.el (iimage): New customization group.
22099 (iimage-mode): Specify :group.
22100 * longlines.el (longlines-mode): Specify :group.
22101 * master.el: Don't require easy-mmode.
22102 (master): New customization group.
22103 (master-mode): Specify :group.
22104 * msb.el (msb-mode): Specify :group.
22105 * reveal.el (reveal-mode): Specify :group.
22106 * simple.el (next-error-follow-minor-mode): Specify :group.
22107 * smerge-mode.el (smerge-mode): Specify :group.
22108 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
22109 * emulation/cua-base.el (cua-mode): Specify :group.
22110 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
22111 * language/thai-util.el (thai-auto-composition-mode)
22112 (thai-word-mode): Specify :group.
22113 * mail/supercite.el (sc-minor-mode): Specify :group.
22114 * progmodes/cwarn.el (cwarn-mode): Specify :group.
22115 * progmodes/flymake.el (flymake-mode): Specify :group.
22116 * progmodes/glasses.el (glasses-mode): Specify :group.
22117 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
22118 * textmodes/enriched.el (enriched-mode): Specify :group.
22119 * textmodes/refill.el (refill-mode): Specify :group.
22120
22121 * add-log.el (change-log-font-lock-keywords): Names in
22122 parenthesized lists can contain spaces.
22123
22124 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
22125
22126 * startup.el (fancy-splash-text): Shorten default text of
22127 "Emacs Tutorial" line. Also, if the current language env
22128 indicates an available tutorial file other than TUTORIAL,
22129 extract its title and append it to the line in parentheses.
22130 (fancy-splash-insert): If arg is a thunk, funcall it.
22131
22132 2005-04-04 Jay Belanger <belanger@truman.edu>
22133
22134 * calc.el (calc-language-alist): Add tags to customization type.
22135
22136 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
22137
22138 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
22139 Doc fix.
22140
22141 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
22142
22143 * add-log.el (change-log-font-lock-keywords): The manual
22144 describing a Change Log entry, says: (...) "Aside from these
22145 header lines, every line in the change log starts with a space or
22146 a tab.". The font-lock was not highlighting lines started with
22147 spaces, added support for it.
22148
22149 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
22150
22151 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
22152 (bibtex-generate-url-list): Update docstring accordingly. Put the
22153 complex example in the docstring.
22154 (bibtex-font-lock-url): Use pop.
22155
22156 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
22157
22158 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
22159
22160 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
22161
22162 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
22163
22164 * filesets.el (filesets-set-default): Doc fix.
22165
22166 2005-04-03 Lute Kamstra <lute@gnu.org>
22167
22168 * generic.el (define-generic-mode): Add argument to specify
22169 keywords for defcustom.
22170 (default-generic-mode): Specify :group.
22171
22172 * generic-x.el: Specify :group for all generic modes.
22173
22174 * desktop.el (desktop-no-desktop-file-hook)
22175 (desktop-after-read-hook): Doc fix.
22176
22177 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
22178
22179 * simple.el (visible-mode): Use explicit :group keyword.
22180 This changes the group of `visible-mode-hook' from paren-blinking
22181 to editing-basics.
22182
22183 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
22184
22185 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
22186 mailbox specifications as well as URLs.
22187 (rmail-insert-inbox-text): Remove unused conditional branches.
22188
22189 2005-04-01 Jay Belanger <belanger@truman.edu>
22190
22191 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
22192 (calc-gnuplot-print-command): Move definitions to calc.el.
22193
22194 * calc/calc-embed.el (calc-embedded-announce-formula)
22195 (calc-embedded-open-formula, calc-embedded-close-formula)
22196 (calc-embedded-open-word, calc-embedded-close-word)
22197 (calc-embedded-open-plain, calc-embedded-close-plain)
22198 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
22199 (calc-embedded-open-mode, calc-embedded-close-mode):
22200 Move definitions to calc.el.
22201
22202 * calc/calc.el (calc-settings-file, calc-language-alist):
22203 Make customizable.
22204 (calc-embedded-announce-formula, calc-embedded-open-formula)
22205 (calc-embedded-close-formula, calc-embedded-open-word)
22206 (calc-embedded-close-word, calc-embedded-open-plain)
22207 (calc-embedded-close-plain, calc-embedded-open-new-formula)
22208 (calc-embedded-close-new-formula, calc-embedded-open-mode)
22209 (calc-embedded-close-mode, calc-gnuplot-name)
22210 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
22211 from other files and make customizable.
22212
22213 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
22214
22215 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
22216 Use buffer-live-p.
22217 (cvs-mode-run): Don't call cvs-update-header here.
22218 (cvs-run-process): Call cvs-update-header.
22219 Use process properties for cvs-postprocess and cvs-buffer so that
22220 the sentinel can behave better if the temp buffer is killed.
22221 Use a pipe rather than a tty, to better handle unexpected prompts.
22222 (cvs-sentinel): Rewrite. Call cvs-update-header.
22223
22224 2005-04-01 Andre Spiegel <spiegel@gnu.org>
22225
22226 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
22227 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
22228
22229 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
22230
22231 * generic.el (define-generic-mode): Add indentation rule.
22232
22233 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
22234
22235 * files.el (mode-require-final-newline): Make Custom correctly
22236 report a nil value and allow to set it to nil via Custom.
22237 Doc fix.
22238
22239 2005-04-01 Kenichi Handa <handa@m17n.org>
22240
22241 * international/characters.el: Enable the correct case setting for
22242 dotless-i and dotted-I.
22243
22244 2005-04-01 Kim F. Storm <storm@cua.dk>
22245
22246 * ido.el (ido-file-internal): Fall back to non-ido command if
22247 initial directory is on slow ftp (or tramp) host.
22248
22249 2005-03-31 Richard M. Stallman <rms@gnu.org>
22250
22251 * emacs-lisp/autoload.el (make-autoload):
22252 Handle define-global-minor-mode.
22253
22254 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
22255 Rename from easy-mmode-define-global-mode.
22256 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
22257
22258 * progmodes/scheme.el (scheme-mode-syntax-table):
22259 Update syntax of | and # for two-character comment syntax.
22260
22261 2005-03-31 Lute Kamstra <lute@gnu.org>
22262
22263 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
22264 (define-minor-mode): Call custom-current-group at load-time.
22265
22266 * generic.el (define-generic-mode): Add debug declaration.
22267 Add defcustom for the mode hook.
22268 (generic-mode-internal): Use run-mode-hooks.
22269
22270 2005-03-31 Kim F. Storm <storm@cua.dk>
22271
22272 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
22273 (mouse-fixup-help-message): New defun called by show_help_echo
22274 to fixup mouse-2 prefix in help messages when applicable.
22275
22276 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
22277
22278 2005-03-31 Kenichi Handa <handa@m17n.org>
22279
22280 * language/thai-word.el (thai-find-word-ends): Pay attention to
22281 the case that we reach the end of buffer.
22282
22283 * textmodes/fill.el (fill-text-properties-at): New function.
22284 (fill-newline): Use fill-text-properties-at instead of
22285 text-properties-at.
22286
22287 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
22288
22289 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
22290 not comint-quote-filename.
22291
22292 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
22293
22294 * help-fns.el (help-with-tutorial): Revert last change.
22295
22296 2005-03-31 Kim F. Storm <storm@cua.dk>
22297
22298 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
22299
22300 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
22301
22302 * calendar/cal-china.el: Update reference to "Calendrical
22303 Calculations" book; there's a new edition.
22304 * calendar/cal-coptic.el: Likewise.
22305 * calendar/cal-french.el: Likewise.
22306 * calendar/cal-hebrew.el: Likewise.
22307 * calendar/cal-islam.el: Likewise.
22308 * calendar/cal-iso.el: Likewise.
22309 * calendar/cal-julian.el: Likewise.
22310 * calendar/cal-mayan.el: Likewise.
22311 * calendar/cal-persia.el: Likewise.
22312 * calendar/calendar.el: Likewise.
22313 * calendar/holidays.el: Likewise.
22314 * calendar/lunar.el: Likewise.
22315 * calendar/solar.el: Likewise.
22316
22317 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
22318 white space from doc string.
22319
22320 2005-03-30 Jay Belanger <belanger@truman.edu>
22321
22322 * calc/calc-help.el (calc-full-help): Remove email address.
22323
22324 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
22325
22326 * help-fns.el (help-with-tutorial): Delete title line.
22327
22328 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
22329
22330 * calendar/cal-x.el (calendar-one-frame-setup)
22331 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
22332 rather than `symbol' for set-window-dedicated-p.
22333
22334 * calendar/appt.el (appt-buffer-name): Make it a constant.
22335 (appt-add): Doc fix.
22336
22337 * filesets.el (filesets-menu-path, filesets-menu-before)
22338 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
22339 (filesets-menu-cache-file): Use directory ~/.emacs.d.
22340 (filesets-add-submenu): Delete and use add-submenu instead.
22341
22342 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
22343
22344 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
22345 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
22346 (org-diary-default-entry): New function.
22347 (org-get-entries-from-diary): Better parsing of diary entries.
22348 (org-agenda-check-no-diary): New function.
22349 ("diary-lib"): Advice to function `add-to-diary-list', to allow
22350 linking to diary entries.
22351 (org-agenda-execute-calendar-command): New function.
22352 (org-agenda): Improve visible section in window.
22353 Use `org-fit-agenda-window'.
22354 (org-fit-agenda-window): New option.
22355 (org-move-subtree-down): Better handling of empty lines
22356 at end of subtree.
22357 (org-cycle): Numeric prefix is interpreted now as show-subtree N
22358 levels up.
22359 (org-fontify-done-headline): New option.
22360 (org-headline-done-face): New face.
22361 (org-set-font-lock-defaults): Use `org-headline-done-face'.
22362 (org-table-copy-down): Rename from `org-table-copy-from-above'.
22363 When current field is non-empty, it is copied to next row.
22364 (org-table-copy-from-above): Fix bug which made it
22365 impossible to copy fields containing only a single non-white character.
22366
22367 2005-03-30 Kim F. Storm <storm@cua.dk>
22368
22369 * kmacro.el (kmacro-end-macro): Isearch may store this command
22370 into the macro -- so ignore it when executing keyboard macro.
22371
22372 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
22373
22374 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
22375
22376 2005-03-29 Kenichi Handa <handa@m17n.org>
22377
22378 * language/thai.el ("Thai"): Set setup-function and exit-function
22379 for Thai language environment.
22380
22381 * language/thai-util.el: Require thai-word.
22382 (thai-word-mode-map): New variable.
22383 (thai-word-mode): New minor mode.
22384 (setup-thai-language-environment-internal): New function.
22385 (exit-thai-language-environment-internal): New function.
22386
22387 * language/thai-word.el (thai-word-table): Declare it by defvar,
22388 use dolist to initialize it.
22389 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
22390 (thai-fill-find-break-point): New functions.
22391
22392 2005-03-29 Richard M. Stallman <rms@gnu.org>
22393
22394 * simple.el (idle-update-delay): Move definition up.
22395 (set-mark): Doc fix.
22396
22397 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
22398
22399 * longlines.el: New file.
22400
22401 * simple.el (buffer-substring-filters): New variable.
22402 (filter-buffer-substring): New function.
22403 (kill-region, copy-region-as-kill): Use it.
22404
22405 * register.el (copy-to-register, append-to-register)
22406 (prepend-to-register): Use filter-buffer-substring.
22407
22408 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
22409
22410 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
22411 (gud-filter-pending-text): Move in front of gdb.
22412 (gud-overlay-arrow-position): New variable.
22413 (gud-sentinel, gud-display-line): Use it in place of
22414 overlay-arrow-position.
22415
22416 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
22417
22418 * progmodes/fortran.el (fortran-if-indent): Doc fix.
22419 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
22420 (fortran-font-lock-keywords-4): New variable.
22421 (fortran-blocks-re, fortran-end-block-re)
22422 (fortran-start-block-re): New constants, for hideshow.
22423 (hs-special-modes-alist): Add a Fortran entry.
22424 (fortran-mode-map): Bind fortran-end-of-block,
22425 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
22426 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
22427 (fortran-looking-at-if-then, fortran-end-of-block)
22428 (fortran-beginning-of-block): New functions, for hideshow.
22429
22430 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
22431 Doc fix. Tweak regexp.
22432 (f90-beginning-of-block): Push mark first.
22433
22434 2005-03-29 Jay Belanger <belanger@truman.edu>
22435
22436 * calc/calc.el: Update copyright date.
22437 (calc-version): Increase to 2.1.
22438 (calc-version-date): Remove.
22439
22440 * calc/calc-help.el: Update copyright date.
22441 (calc-full-help): Remove reference to calc-version-date.
22442 Update copyright date.
22443
22444 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
22445
22446 * vc.el (vc-do-command): Use a pipe for async processes, so password
22447 prompts don't show up at places where the user can't reply.
22448
22449 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
22450
22451 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
22452 on the file name we pass to the inferior shell.
22453
22454 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
22455
22456 * progmodes/which-func.el (which-function): Be robust in the face of an
22457 imenu--make-index-alist failure.
22458
22459 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
22460
22461 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
22462
22463 * progmodes/python.el (python-preoutput-filter): Fix last change.
22464
22465 2005-03-29 Lute Kamstra <lute@gnu.org>
22466
22467 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
22468 functions and compiled macros.
22469 (debug-convert-byte-code): Handle macros too.
22470 (debug-on-entry-1): Don't signal an error when trying to clear a
22471 function that is not set to debug on entry.
22472
22473 2005-03-29 Jay Belanger <belanger@truman.edu>
22474
22475 * calc/calc-lang.el: Add functions to math-function-table
22476 properties of tex and math.
22477
22478 2005-03-29 Kenichi Handa <handa@m17n.org>
22479
22480 * ps-mule.el (ps-mule-plot-string): Translate characters by
22481 ps-print-translation-table.
22482 (ps-mule-begin-job): Call find-charset-region/string with
22483 ps-print-translation-table.
22484 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
22485
22486 * ps-print.el (ps-print-translation-table): New variable.
22487 (ps-plot-region): Translate characters by ps-print-translation-table.
22488
22489 2005-03-29 Juri Linkov <juri@jurta.org>
22490
22491 * simple.el (next-error-highlight-timer): New variable.
22492
22493 * progmodes/compile.el (compilation-goto-locus):
22494 Use `next-error-highlight-timer' instead of `sit-for'.
22495
22496 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
22497
22498 * mail/supercite.el (sc-mail-field): Use assoc-string.
22499 (sc-get-address): Simplify regexps.
22500
22501 * files.el (minibuffer-with-setup-hook): New macro.
22502 (find-file-read-args): Use it to avoid let-binding
22503 minibuffer-with-setup-hook (which breaks turning on/off
22504 file-name-shadow-mode while in the prompt).
22505
22506 * complete.el (PC-read-include-file-name-internal):
22507 Use test-completion.
22508
22509 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
22510
22511 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
22512
22513 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
22514
22515 * window.el (window-buffer-height): Use count-screen-lines.
22516
22517 * progmodes/python.el (python-preoutput-leftover): New var.
22518 (python-preoutput-filter): Use it.
22519 (python-send-receive): Loop until all the result has been received.
22520
22521 2005-03-28 Juri Linkov <juri@jurta.org>
22522
22523 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
22524
22525 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
22526 "Recover Crashed Session".
22527 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
22528 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
22529 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
22530 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
22531 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
22532 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
22533 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
22534 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
22535
22536 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
22537 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
22538 Ediff Sessions", "Toggle use of separate control buffer frame",
22539 "Use separate frame for Ediff control buffer".
22540
22541 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
22542 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
22543 "Rename Bookmark", "Delete Bookmark".
22544
22545 * info.el (Info-mode-menu): Remove ellipsis from "Index".
22546 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
22547 Add `:active Info-index-alternatives' to "Next Matching Item".
22548
22549 * wdired.el (wdired-change-to-wdired-mode):
22550 Mention `wdired-abort-changes' key in the initial message.
22551
22552 * international/mule.el (auto-coding-alist): Associate non-ascii
22553 image filename extensions with `no-conversion'.
22554
22555 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
22556
22557 * international/iso-acc.el:
22558 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
22559
22560 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
22561
22562 * textmodes/sgml-mode.el (html-mode): Doc update.
22563
22564 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
22565
22566 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
22567
22568 * term.el (term-move-columns): Fix face after extending a line.
22569 (term-insert-spaces): Likewise.
22570 (term-reset-terminal): Fix off by one error.
22571
22572 2005-03-26 Eli Zaretskii <eliz@gnu.org>
22573
22574 * international/mule.el (auto-coding-alist): Add .xpi files.
22575
22576 * files.el (auto-mode-alist): Add .xpi files.
22577
22578 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
22579
22580 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
22581
22582 2005-03-26 Eli Zaretskii <eliz@gnu.org>
22583
22584 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
22585
22586 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
22587
22588 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
22589 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
22590
22591 * calendar/cal-move.el (calendar-beginning-of-year): Move the
22592 cursor to Jan 1 when needed.
22593 (calendar-end-of-year): Fix -/+ typo.
22594 Reported by Chong Yidong <cyd@stupidchicken.com>.
22595
22596 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
22597
22598 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
22599
22600 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
22601 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
22602
22603 2005-03-25 Richard M. Stallman <rms@gnu.org>
22604
22605 * filesets.el (filesets-init): Add autoload.
22606
22607 * mail/mailalias.el (mail-directory): Doc fix.
22608
22609 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
22610
22611 * mail/mailalias.el (mail-directory-process): Do nothing if
22612 mail-directory-process is an atom.
22613 (mail-get-names): Ignore mail-directory-names if it is an atom.
22614 (mail-directory-process defvar): Doc fix.
22615 (mail-names): Doc fix.
22616
22617 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
22618
22619 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
22620
22621 2005-03-26 Kenichi Handa <handa@m17n.org>
22622
22623 * international/mule-util.el (detect-coding-with-priority):
22624 Call update-coding-systems-internal before detect-coding-region.
22625
22626 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
22627
22628 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
22629 (gdb-frames-mode-map): Add follow-link property.
22630
22631 2005-03-25 Jay Belanger <belanger@truman.edu>
22632
22633 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
22634 for variables.
22635
22636 2005-03-25 Juri Linkov <juri@jurta.org>
22637
22638 * image-mode.el: Optimize image filename extension regexps in
22639 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
22640 in `auto-mode-alist'.
22641 (image-mode): Add `image-toggle-display-text' to local hook
22642 `change-major-mode-hook'. Display the image as an image by
22643 default. Set `cursor-type' and `truncate-lines' if the image
22644 is already displayed. Take into account the current mode (image
22645 or text) in message.
22646 (image-minor-mode): New minor mode.
22647 (image-mode-maybe, image-toggle-display-text): New functions.
22648 (image-toggle-display): Use called-interactively-p.
22649 Let-bind `inhibit-read-only' to t.
22650
22651 * image-mode.el (image-minor-mode): Set `cursor-type' and
22652 `truncate-lines' if the image is already displayed. Add turning
22653 image-minor-mode off to `change-major-mode-hook'. Add message.
22654 Call `image-toggle-display-text' after turning image-minor-mode off.
22655
22656 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
22657
22658 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
22659 Terminal.app, use utf-8.
22660 (set-display-table-and-terminal-coding-system): Add coding-system arg.
22661 (set-locale-environment): Use it.
22662
22663 * term/xterm.el: Undo last change, better done in mule-cmds.el.
22664
22665 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
22666
22667 * progmodes/python.el (python-close-block-statement-p)
22668 (python-outdent-p, python-current-defun): Use symbol-end.
22669
22670 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
22671
22672 * files.el (save-some-buffers): Doc fix.
22673
22674 2005-03-25 Werner Lemberg <wl@gnu.org>
22675
22676 * complete.el, thumbs.el: Replace `legal' with `valid'.
22677 * calendar/calendar.el: Replace `legal' with `valid'.
22678 * emacs-lisp/advice.el: Replace `legal' with `valid'.
22679 * mail/supercite.el: Replace `legal' with `valid'.
22680 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
22681 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
22682 Replace `legal' with `valid'.
22683 * textmodes/reftex-vars.el, textmodes/reftex.el:
22684 Replace `legal' with `valid'.
22685
22686 2005-03-25 Werner Lemberg <wl@gnu.org>
22687
22688 * calc/calc-forms.el, calc/calc-sel.el
22689 * midnight.el, vc-cvs.el
22690 * emacs-lisp/cl-macs.el
22691 * emulation/vip.el
22692 * eshell/esh-io.el, eshell/esh-var.el
22693 * mail/supercite.el
22694 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
22695 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
22696 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
22697 * progmodes/sh-script.el, progmodes/xscheme.el
22698 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
22699 * textmodes/reftex-index.el, textmodes/reftex-parse.el
22700 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
22701 * textmodes/reftex.el, textmodes/org.el:
22702 Replace `illegal' with `invalid'.
22703
22704 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
22705
22706 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
22707 (flymake-find-buildfile, flymake-find-possible-master-files)
22708 (flymake-check-include, flymake-parse-line): Replace loops over the
22709 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
22710
22711 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
22712 Substitute file-name-as-directory in the rest of the file.
22713 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
22714 (flymake-replace-region): Remove unused arg `buffer'.
22715 (flymake-check-patch-master-file-buffer): Update calls to it.
22716 (flymake-add-err-info): Remove unused var `count'.
22717 (flymake-mode): Use define-minor-mode.
22718
22719 * progmodes/flymake.el: Use with-current-buffer.
22720 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
22721 flymake-replace-regexp-in-string, flymake-line-beginning-position)
22722 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
22723 Avoid testing for `xemacs'.
22724 (flymake-nop): Move.
22725 (flymake-region-has-flymake-overlays): Return the computed value.
22726 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
22727 Remove unused var `endline'.
22728 (flymake-get-line-count): Remove unused function.
22729 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
22730
22731 * emulation/vi.el:
22732 * generic.el:
22733 * hilit-chg.el (global-highlight-changes):
22734 * hi-lock.el (hi-lock-mode):
22735 * follow.el: find-file-hooks -> find-file-hook.
22736
22737 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
22738
22739 2005-03-24 Juri Linkov <juri@jurta.org>
22740
22741 * dired.el (dired-mode-map): Add menu item "Compare directories"
22742 for dired-compare-directories.
22743
22744 * dired-aux.el (dired-compare-directories): Add autoload cookie.
22745 Doc fix. Replace `read-file-name' with `read-directory-name'.
22746
22747 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
22748
22749 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
22750
22751 2005-03-24 Jay Belanger <belanger@truman.edu>
22752
22753 * calc/calc-embed.el (calc-embedded-mode-change): Save all
22754 relevant mode settings in calc-embedded-original-modes when modes
22755 are permanently changed.
22756
22757 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
22758
22759 * autoinsert.el: find-file-hooks -> find-file-hook.
22760
22761 2005-03-24 Lute Kamstra <lute@gnu.org>
22762
22763 * generic.el (generic-font-lock-defaults): Make it obsolete.
22764 (generic-font-lock-keywords): New variable to replace
22765 generic-font-lock-defaults.
22766 (generic-mode-set-font-lock): Delete it.
22767 (generic-mode-internal): Don't call generic-mode-set-font-lock.
22768 (generic-bracket-support): Add docstring.
22769
22770 * generic-x.el: Rename generic-font-lock-defaults to
22771 generic-font-lock-keywords throughout.
22772 (mailagent-rules-setup-function): Delete it.
22773 (mailagent-rules-generic-mode): Use anonymous function instead.
22774 (show-tabs-generic-mode-font-lock-defaults-1)
22775 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
22776 Quote faces.
22777 (show-tabs-tab-face, show-tabs-space-face): Specify background,
22778 not foreground.
22779
22780 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
22781 Recognize define-generic-mode.
22782
22783 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
22784
22785 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
22786 if there's no completion table.
22787
22788 2005-03-23 Miles Bader <miles@gnu.org>
22789
22790 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
22791 Remove tty-specific variants, as they're no longer needed.
22792
22793 2005-03-23 Lute Kamstra <lute@gnu.org>
22794
22795 * generic-x.el: Code cleanup: make args constant whenever possible.
22796 (installshield-statement-keyword-list)
22797 (installshield-system-functions-list)
22798 (installshield-system-variables-list, installshield-types-list)
22799 (installshield-funarg-constants-list): Make them constants.
22800
22801 * generic.el (generic-make-keywords-list): Add autoload cookie.
22802
22803 * calendar/time-date.el: Add comment on time value formats.
22804 Don't require parse-time.
22805 (with-decoded-time-value): New macro.
22806 (encode-time-value): New function.
22807 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
22808 (days-to-time): Return a valid time value when arg is huge.
22809 (time-since): Use time-subtract.
22810 (time-to-number-of-days): Use time-to-seconds.
22811
22812 2005-03-23 David Ponce <david@dponce.com>
22813
22814 * recentf.el (recentf-keep): New option.
22815 (recentf-menu-action): Default to `find-file'.
22816 (recentf-keep-non-readable-files-flag)
22817 (recentf-keep-non-readable-files-p)
22818 (recentf-file-readable-p, recentf-find-file)
22819 (recentf-cleanup-remote): Remove.
22820 (recentf-include-p): More robust.
22821 (recentf-keep-p): New function.
22822 (recentf-remove-if-non-kept): Rename from
22823 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
22824 All callers updated.
22825 (recentf-menu-items-for-commands): Fix help string.
22826 (recentf-track-closed-file): Update. Doc fix.
22827 (recentf-cleanup): Update. Count removed files. Doc fix.
22828
22829 2005-03-23 Kim F. Storm <storm@cua.dk>
22830
22831 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
22832 Don't inherit from fringe face (now happens automatically).
22833
22834 2005-03-22 Kim F. Storm <storm@cua.dk>
22835
22836 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
22837 position values.
22838
22839 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
22840
22841 * menu-bar.el (showhide-date-time): Remove.
22842 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
22843 (menu-bar-make-mm-toggle): Simplify.
22844
22845 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
22846
22847 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
22848 Accept qualified variable and function names.
22849
22850 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
22851
22852 * bindings.el (completion-ignored-extensions):
22853 Remove ".lis" for `vax-vms'.
22854
22855 2005-03-22 Andreas Schwab <schwab@suse.de>
22856
22857 * generic-x.el: Revert last change.
22858 * ldefs-boot.el: Update.
22859
22860 2005-03-22 Jay Belanger <belanger@truman.edu>
22861
22862 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
22863 (calc-embedded-save-original-modes)
22864 (calc-embedded-restore-original-modes): New functions.
22865 (calc-do-embedded): Save original modes when entering embedded mode
22866 and restore when leaving embedded mode.
22867 (calc-embedded-modes-change): Change the value of
22868 calc-embedded-original-modes to reflect permanent changes.
22869
22870 2005-03-22 Lute Kamstra <lute@gnu.org>
22871
22872 * generic-x.el: Require generic again.
22873
22874 2005-03-22 Miles Bader <miles@gnu.org>
22875
22876 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
22877 Tweak details to look good on both ttys and bitmap displays, light
22878 or dark background, etc.
22879
22880 2005-03-21 Kim F. Storm <storm@cua.dk>
22881
22882 * tooltip.el (tooltip-show-help-function): Check car and cdr of
22883 mouse position.
22884
22885 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
22886
22887 * icomplete.el: Don't forcibly turn on the mode upon load.
22888 (icomplete-mode): Use define-minor-mode.
22889 (icomplete-eoinput): Default to nil.
22890 (icomplete-minibuffer-setup): Remove autoload.
22891 (icomplete-tidy): Simplify.
22892 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
22893 in the initial state or if the user has modified the field.
22894 Fix handling of icomplete-max-delay-chars.
22895 Remove code that handles the oddball case where
22896 minibuffer-completion-table is an integer.
22897 Wrap icomplete-completions in while-no-input in case building
22898 completions takes more time than expected.
22899 (icomplete-completions): Simplify.
22900
22901 2005-03-21 Richard M. Stallman <rms@gnu.org>
22902
22903 * jka-compr.el (jka-compr-really-do-compress):
22904 Make variable buffer-local.
22905
22906 * image-mode.el: Handle .xpm files too.
22907 (image-toggle-display): Preserve modification flag.
22908
22909 * help.el (where-is): Don't mention aliases with no key bindings.
22910
22911 2005-03-21 Lute Kamstra <lute@gnu.org>
22912
22913 * generic.el: Fix commentary section. Don't require cl for
22914 compilation.
22915 (generic-mode-list): Add autoload cookie.
22916 (generic-use-find-file-hook, generic-lines-to-scan)
22917 (generic-find-file-regexp, generic-ignore-files-regexp)
22918 (generic-mode, generic-mode-find-file-hook)
22919 (generic-mode-ini-file-find-file-hook): Fix docstrings.
22920 (define-generic-mode): Make it a defmacro. Fix docstring.
22921 (generic-mode-internal): Code cleanup. Add autoload cookie.
22922 (generic-mode-set-comments): Code cleanup.
22923 * generic-x.el: Don't prevent compilation. Don't require generic.
22924 Follow coding conventions. Minor code cleanup.
22925 (etc-fstab-generic-mode): Add some keywords.
22926 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
22927 define-generic-mode like a function declaration.
22928
22929 2005-03-21 Jay Belanger <belanger@truman.edu>
22930
22931 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
22932 changing modes.
22933
22934 2005-03-21 Sam Steingold <sds@gnu.org>
22935
22936 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
22937
22938 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
22939
22940 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
22941 Add underscore to "f$ lexicals" regexp.
22942
22943 2005-03-20 Juri Linkov <juri@jurta.org>
22944
22945 * subr.el (progress-reporter-do-update): When `min-value' is equal
22946 to `max-value', set `percentage' to 0 and prevent division by zero.
22947
22948 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
22949
22950 Sync with Tramp 2.0.48.
22951
22952 * net/tramp.el (all): Change all addresses to .gnu.org.
22953 (tramp-append-tramp-buffers): New defun.
22954 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
22955 Catch `dont-send' signal.
22956 (tramp-set-auto-save-file-modes): Set always permissions, because
22957 there might be an old auto-saved file belonging to another
22958 original file. This could be a security threat. Reported by
22959 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
22960 Check for Emacs 21.3.50 removed.
22961
22962 * net/tramp-smb.el (all): Remove debug construct for
22963 `with-parsed-tramp-file-name'.
22964 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
22965 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
22966 No error message if DIRECTORY or FILENAME doesn't exist.
22967 (tramp-smb-open-connection): Check existence of
22968 `tramp-smb-program'.
22969
22970 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22971
22972 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
22973 Properly handle the case where the `m' or `s' command's argument is not
22974 yet terminated.
22975 (perl-indent-new-calculate): New function.
22976 (perl-indent-line): Use it.
22977
22978 2005-03-20 Miles Bader <miles@gnu.org>
22979
22980 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
22981 in text-mode too. Change to new face names.
22982 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
22983 Add `:weight bold' attribute.
22984 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
22985
22986 2005-03-19 Juri Linkov <juri@jurta.org>
22987
22988 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
22989
22990 * international/mule.el (auto-coding-alist): Sync with
22991 `auto-mode-alist' by adding upper case archive file extensions
22992 and adding ear/war to jar extension.
22993
22994 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
22995
22996 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
22997 running, restart it.
22998
22999 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
23000
23001 * finder.el (finder-current-item): Throw an error on an empty line.
23002
23003 * man.el (Man-follow-manual-reference): If current-word returns
23004 nil, use "".
23005
23006 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
23007
23008 * simple.el (goto-line): Doc fix.
23009
23010 2005-03-19 Aaron S. Hawley <Aaron.Hawley@uvm.edu>
23011
23012 * files.el (save-buffer): Doc fix.
23013
23014 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
23015
23016 * recentf.el (recentf-cleanup-remote): New variable.
23017 (recentf-cleanup): Use it to conditionally check availability of
23018 remote files.
23019
23020 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
23021
23022 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
23023 function names.
23024
23025 2005-03-19 Eli Zaretskii <eliz@gnu.org>
23026
23027 * language/thai-word.el: New file.
23028
23029 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
23030
23031 * files.el (backup-buffer): If the file's directory is not
23032 writable, use copy instead of move to backup the file.
23033
23034 2005-03-19 Eli Zaretskii <eliz@gnu.org>
23035
23036 * obsolete/keyswap.el: Moved to obsolete/ from term/.
23037
23038 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
23039
23040 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
23041 Use functionp instead of symbolp and fboundp. Reported by Drkm
23042 <darkman_spam@yahoo.fr>.
23043 (ps-print-version): New version 6.6.6.
23044
23045 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
23046
23047 * textmodes/table.el (table--line-column-position): New idiom.
23048 (table--row-column-insertion-point-p): New function to test
23049 validity of row and column insertion operation at a location.
23050 (table-global-menu, table-cell-menu): Use above functions for
23051 deterministic test operation.
23052 (table--editable-cell-p): Behave in deterministic fashion.
23053
23054 2005-03-18 Juri Linkov <juri@jurta.org>
23055
23056 * isearch.el (isearch-lazy-highlight-new-loop):
23057 Make arguments beg and end optional.
23058 (isearch-update): Remove optional arguments nil from
23059 isearch-lazy-highlight-new-loop.
23060 (isearch-lazy-highlight-search): Let-bind case-fold-search to
23061 isearch-lazy-highlight-case-fold-search instead of
23062 isearch-case-fold-search, and let-bind isearch-regexp to
23063 isearch-lazy-highlight-regexp.
23064 Use isearch-lazy-highlight-last-string instead of isearch-string.
23065
23066 * replace.el (perform-replace): Remove bindings of global
23067 variables isearch-string, isearch-regexp, isearch-case-fold-search.
23068 Add three new arguments to `replace-highlight'.
23069 (replace-highlight): Add arguments string, regexp, case-fold.
23070 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
23071 to allow isearch-lazy-highlight-new-loop to use these values
23072 to set corresponding isearch-lazy-highlight-* internal
23073 variables whose values lazy highlighting will use regardless of
23074 changes to global variables isearch-string, isearch-regexp,
23075 isearch-case-fold-search during lazy highlighting loop.
23076 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
23077 to `lazy-highlight-cleanup'.
23078
23079 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
23080 (ispell-highlight-face): Set default face to `isearch' when
23081 lazy highlighting is enabled.
23082 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
23083 priority to 1. Add lazy highlighting.
23084 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
23085 from `isearch-dehighlight'.
23086
23087 2005-03-18 David Ponce <david@dponce.com>
23088
23089 * files.el (hack-local-variables): Do a case-insensitive search
23090 for End.
23091
23092 2005-03-18 Juri Linkov <juri@jurta.org>
23093
23094 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
23095 `isearch-lazy-highlight-cleanup', add alias to old name and
23096 declare obsolete. Add release numbers to other obsolete vars.
23097 (isearch-done, isearch-lazy-highlight-new-loop):
23098 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
23099 (lazy-highlight-cleanup) <variable>: Doc fix.
23100 (isearch-lazy-highlight-update): Rename obsolete
23101 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
23102
23103 2005-03-18 Kenichi Handa <handa@m17n.org>
23104
23105 * language/thai-util.el: Fix categorization of Thai characters in
23106 thai-category-table.
23107 (thai-composition-pattern): Adjust it for the above change.
23108 (thai-self-insert-command, thai-compose-syllable): New functions.
23109 (thai-compose-region): Use thai-compose-syllable.
23110 (thai-compose-string): Likewise.
23111 (thai-composition-function): Likewise.
23112 (thai-auto-composition): New function.
23113 (thai-auto-composition-mode): New minor mode.
23114
23115 * language/thai.el: Fix patterns to be registered in
23116 composition-function-table.
23117
23118 * international/quail.el (quail-input-method): Locally bind
23119 inhibit-modification-hooks to t.
23120
23121 2005-03-17 Richard M. Stallman <rms@gnu.org>
23122
23123 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
23124 (perl-mode): Use run-mode-hooks.
23125
23126 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
23127 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
23128 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
23129
23130 * mail/sendmail.el (sendmail-send-it): Reenable the code
23131 to compute resend-to-address and use it.
23132
23133 * tar-mode.el (tar-mode): Turn off undo unconditionally.
23134
23135 * image-mode.el: New file.
23136
23137 * image.el (insert-sliced-image): Add autoload cookie.
23138
23139 * font-lock.el (font-lock-lines-before): New user option.
23140 (font-lock-after-change-function): Obey it.
23141
23142 * bindings.el (esc-map): Make M-g a prefix.
23143 Bind M-g g and M-g M-g to goto-line.
23144
23145 * faces.el (face-id): Doc fix.
23146
23147 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
23148
23149 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
23150 (rmail-show-message): Use rmail-unknown-mail-followup-to.
23151 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
23152
23153 * mail/sendmail.el (mail-yank-ignored-headers)
23154 (mail-font-lock-keywords, mail-mode-fill-paragraph):
23155 Add Mail-Followup-To and Mail-Reply-To headers.
23156 (mail-citation-hook): Add autoload cookie.
23157 (mail-mode): Doc fix.
23158 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
23159 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
23160 (mail-mode-fill-paragraph): Handle those headers.
23161 (mail-mailing-lists): New variable.
23162 (mail-mail-reply-to, mail-mail-followup-to): New functions.
23163
23164 2005-03-17 Juri Linkov <juri@jurta.org>
23165
23166 * isearch.el (isearch-fallback): Check for `(car previous)'
23167 before calling `isearch-other-end-state'.
23168
23169 2005-03-17 Kim F. Storm <storm@cua.dk>
23170
23171 * simple.el (move-beginning-of-line): Move to beginning of buffer
23172 line, as well as beginning of screen line.
23173
23174 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
23175
23176 * calendar/diary-lib.el (mark-diary-entries): Use new optional
23177 argument REDRAW rather than calendar-redrawing variable.
23178 * calendar/calendar.el (calendar-redrawing): Delete.
23179 (redraw-calendar): Do not bind calendar-redrawing.
23180
23181 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
23182
23183 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
23184 diary-file buffer.
23185
23186 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
23187
23188 * help.el (describe-mode): Allow a :minor-mode-function property to
23189 specify a different minor mode toggle function than the variable.
23190 * simple.el (auto-fill-function):
23191 * subr.el (add-minor-mode): Use it.
23192
23193 2005-03-16 Kenichi Handa <handa@m17n.org>
23194
23195 * language/ethio-util.el (sera-being-called-by-w3): New variable.
23196 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
23197 (ethio-fidel-to-sera-buffer): Likewise.
23198
23199 2005-03-16 Juri Linkov <juri@jurta.org>
23200
23201 * emacs-lisp/find-func.el (find-function-regexp):
23202 Add defun-emitting macro `menu-bar-make-toggle'.
23203
23204 * isearch.el: Put `isearch-scroll' property to
23205 `split-window-horizontally'.
23206
23207 * info.el: Update error messages for `debug-ignored-errors'.
23208 (Info-isearch-search): Doc fix.
23209 (Info-find-node): Move up code to go into info buffer before
23210 recording the node to the history.
23211 (Info-fontify-node): Fontify titles only if the next line
23212 has two or more `*', `=', `-', `.'.
23213 Display "go to this node" for empty (match-string 3).
23214
23215 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23216
23217 * term/mac-win.el: Add mouse pointer shape constants.
23218
23219 2005-03-15 Kim F. Storm <storm@cua.dk>
23220
23221 * simple.el (move-beginning-of-line): Use vertical-motion.
23222
23223 2005-03-15 Juri Linkov <juri@jurta.org>
23224
23225 * isearch.el (isearch-error): New variable.
23226 (isearch-invalid-regexp, isearch-within-brackets): Remove.
23227 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
23228 (isearch-within-brackets-state): Remove.
23229 (isearch-case-fold-search-state, isearch-pop-fun-state):
23230 Decrease frame index.
23231 (isearch-mode, isearch-top-state, isearch-push-state)
23232 (isearch-edit-string, isearch-abort, isearch-search-and-update)
23233 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
23234 (isearch-search, isearch-lazy-highlight-new-loop):
23235 Replace `isearch-invalid-regexp' with `isearch-error'.
23236 Remove `isearch-within-brackets'.
23237 (isearch-search): Add `search-failed' handler to `condition-case'.
23238 (isearch-lazy-highlight-search): Add `condition-case' to catch
23239 errors and allow `isearch-lazy-highlight-update' to try
23240 highlighting from the beginning of the window.
23241 (isearch-repeat): Move up code to set isearch-wrapped to t
23242 before calling isearch-wrap-function.
23243
23244 * info.el (Info-isearch-initial-node): New internal variable.
23245 (Info-search): Signal an error in isearch mode when search leaves
23246 the initial node. Signal an error when `bound' is non-nil and
23247 nothing was found in the current subfile.
23248 (Info-isearch-search): Remove `condition-case'.
23249 (Info-isearch-wrap): Don't wrap when search failed during leaving
23250 the initial node. If `Info-isearch-search' is nil, wrap around
23251 the current node.
23252 (Info-isearch-start): New fun.
23253 (Info-mode): Add buffer-local hook `Info-isearch-start' to
23254 `isearch-mode-hook'.
23255
23256 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23257
23258 * simple.el (normal-erase-is-backspace): Set default to t if
23259 running on Mac.
23260
23261 * term/mac-win.el (function-key-map): Sync with x-win.el.
23262
23263 2005-03-15 Kenichi Handa <handa@m17n.org>
23264
23265 * international/mule-cmds.el (locale-language-names): Modify the
23266 format of elements and add more entries.
23267 (locale-preferred-coding-systems): Add more entries.
23268 (set-locale-environment): Adjust for the change of
23269 locale-language-names.
23270
23271 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
23272
23273 * pcvs.el (smerge-ediff): Remove bogus autoload.
23274
23275 2005-03-14 Lute Kamstra <lute@gnu.org>
23276
23277 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
23278 Ignore a `*' at the beginning of a line.
23279
23280 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
23281 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
23282 subr.el.
23283 (dont-compile, eval-when-compile, eval-and-compile): Use declare
23284 to specify indentation.
23285
23286 * generic.el (define-generic-mode): Let generic-mode-list be a
23287 list of strings; test membership with equal.
23288
23289 2005-03-14 Kim F. Storm <storm@cua.dk>
23290
23291 * simple.el (next-line, previous-line): Add optional try-vscroll
23292 arg to recognize interactive use. Pass it on to line-move.
23293 (line-move): Don't perform auto-window-vscroll when defining or
23294 executing keyboard macro to ensure consistent behavior.
23295
23296 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
23297
23298 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
23299
23300 2005-03-13 Lute Kamstra <lute@gnu.org>
23301
23302 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
23303 debugger-setup-buffer so that backtrace marks the frames set to
23304 debug-on-exit and we don't have to do it manually. Set an extra
23305 debug-on-exit for macro's.
23306 (debugger-setup-buffer): Don't mark the top frame manually.
23307
23308 2005-03-12 Lute Kamstra <lute@gnu.org>
23309
23310 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
23311 lisp-indent-function throughout.
23312 (with-no-warnings): Set lisp-indent-function property.
23313
23314 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
23315
23316 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
23317 Add entry for backslash.
23318
23319 2005-03-12 Juri Linkov <juri@jurta.org>
23320
23321 * info.el (Info-search): Four fixes for backward search.
23322
23323 2005-03-11 Jay Belanger <belanger@truman.edu>
23324
23325 * calc/calc.el (calc-language-alist): New variable.
23326 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
23327 (calc-embedded-find-modes): Use calc-language-alist instead of
23328 calc-embedded-language-alist.
23329
23330 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
23331
23332 * calendar/calendar.el (calendar-redrawing): New internal
23333 variable.
23334 (redraw-calendar): Remove bogus save-excursion from previous
23335 change. Bind calendar-redrawing to t for mark-diary-entries.
23336 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
23337 calendar if that is why we were called.
23338
23339 2005-03-11 Kenichi Handa <handa@m17n.org>
23340
23341 * international/mule.el (make-coding-system): Set property
23342 coding-system-define-form to nil.
23343 (define-coding-system-alias): Likewise.
23344
23345 2005-03-11 Kenichi Handa <handa@m17n.org>
23346
23347 These changes are suggested by Dave Love <fx@gnu.org>.
23348
23349 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
23350 coding: tag.
23351 (adaptive-fill-regexp): Add more bullets.
23352 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
23353 regexps.
23354
23355 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
23356
23357 * help.el (describe-mode): Properly handle non-trivial lighters.
23358 Don't ignore minor modes that are not listed in minor-mode-list.
23359
23360 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
23361 feature ON when the user requests to turn it OFF.
23362
23363 2005-03-10 Lute Kamstra <lute@gnu.org>
23364
23365 * emacs-lisp/debug.el (debug-entry-code): Delete it.
23366 (implement-debug-on-entry): New function to replace debug-entry-code.
23367 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
23368 second argument as the 2005-03-07 change makes it obsolete.
23369 (debug-on-entry, cancel-debug-on-entry): Update call to
23370 debug-on-entry-1.
23371 (debug, debugger-setup-buffer): Comment update.
23372 (debugger-frame-number): Update to work with implement-debug-on-entry.
23373
23374 2005-03-10 Jay Belanger <belanger@truman.edu>
23375
23376 * calc/calc-embed.el (math-ms-args): Declare it.
23377 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
23378 math-ms-args.
23379 (calc-embedded-subst): Use math-multi-subst-rec to substitute
23380 variables.
23381
23382 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
23383
23384 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
23385 Use message-box.
23386
23387 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
23388 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
23389 (tooltip-gud-tips): Simplify.
23390 (tooltip-gud-tips-p): Remove superfluous :set.
23391 (tooltip-gud-modes): Add fortran-mode.
23392 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
23393
23394 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
23395
23396 2005-03-09 Kim F. Storm <storm@cua.dk>
23397
23398 * play/animate.el (animate-place-char): Use forward-line instead
23399 of next-line to improve performance.
23400
23401 2005-03-09 Simon Josefsson <jas@extundo.com>
23402
23403 * net/browse-url.el (browse-url-default-browser): Doc fix.
23404
23405 2005-03-09 Miles Bader <miles@gnu.org>
23406
23407 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
23408 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
23409
23410 2005-03-09 Kenichi Handa <handa@m17n.org>
23411
23412 * international/latin-1.el: Set case and syntax for 255 only if
23413 set-case-syntax-set-multibyte is nil.
23414
23415 * textmodes/ispell.el (ispell-insert-word): New function.
23416 (ispell-word): Use ispell-insert-word to insert a new word.
23417 (ispell-process-line): Likewise.
23418 (ispell-complete-word): Likewise.
23419
23420 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
23421
23422 * calendar/calendar.el (redraw-calendar): Preserve point.
23423 Reported by Matt Hodges <MPHodges@member.fsf.org>.
23424 (calendar-week-start-day): Move after definition of
23425 redraw-calendar. Delete buffer test, since redraw-calendar has
23426 that now.
23427
23428 * calendar/diary-lib.el (mark-diary-entries): Only call
23429 redraw-calendar in the first of any recursive calls.
23430 Reported by Alan Shutko <ats@acm.org>.
23431
23432 2005-03-08 Juri Linkov <juri@jurta.org>
23433
23434 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
23435 (html-horizontal-rule, html-line, html-image, html-checkboxes)
23436 (html-radio-buttons): Add a space before the trailing `/>' where
23437 sgml-xml-mode is non-nil.
23438 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
23439 the subsequent tag of the empty XML tag.
23440 (html-href-anchor): Don't set initial input to "http:".
23441 (html-image): Ask for the image URL and set point inside alt="".
23442 (html-name-anchor): Duplicate the name in the `id' attribute when
23443 sgml-xml-mode is non-nil.
23444 (html-paragraph): Remove \n before <p>.
23445 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
23446 instead of `checked' when sgml-xml-mode is non-nil.
23447
23448 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
23449 Remove 1 space before #RRGGBB to not truncate it on terminal
23450 windows w/o fringes. Remove 1 space between bg and fg examples
23451 to get more space.
23452 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
23453 avoid byte-compile warnings.
23454
23455 * image-file.el (image-file-handler): Put `safe-magic' property to
23456 `image-file-handler'.
23457
23458 * info.el (Info-isearch-search): Emulate word search in
23459 isearching through multiple Info nodes with Info-search.
23460 (Info-isearch-wrap): Allow isearch-word.
23461
23462 2005-03-08 Lute Kamstra <lute@gnu.org>
23463
23464 * emacs-lisp/debug.el (debugger-step-through): Make sure that
23465 stepping into the debugger's code is not possible.
23466 (debugger-jumping-flag): Docstring update.
23467
23468 2005-03-08 Jay Belanger <belanger@truman.edu>
23469
23470 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
23471 embedded mode begins.
23472 (calc-embedded-language-alist): New variable.
23473 (calc-embedded-find-modes): Use calc-embedded-language-alist to
23474 set default language mode.
23475
23476 2005-03-08 Kenichi Handa <handa@m17n.org>
23477
23478 * international/ccl.el (define-ccl-program): Fix docstring about
23479 extra 256 bytes assured for the output buffer.
23480
23481 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
23482 Fix BUFFER_MAGNIFICATION to 2.
23483 (ccl-encode-mule-utf-16be-with-signature): Likewise.
23484
23485 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
23486
23487 * align.el (align-rules-list): Added an alignment rule for CSS
23488 declarations (applies to css-mode and html-mode buffers).
23489
23490 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
23491
23492 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
23493
23494 2005-03-07 Kim F. Storm <storm@cua.dk>
23495
23496 * simple.el (move-beginning-of-line): New command.
23497
23498 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
23499
23500 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
23501
23502 * emulation/cua-base.el: Put CUA move property on move-end-of-line
23503 and move-beginning-of-line.
23504
23505 * apropos.el (apropos-print): Omit command from M-x ... RET.
23506
23507 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
23508
23509 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
23510 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
23511
23512 2005-03-06 Richard M. Stallman <rms@gnu.org>
23513
23514 * bindings.el (esc-map): Bind M-g to goto-line.
23515
23516 * facemenu.el (global-map): Bind M-o, not M-g.
23517
23518 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23519
23520 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
23521 "Open Directory" as for "Open File".
23522
23523 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
23524
23525 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
23526 (push-mark-command): Run activate-mark-hook.
23527
23528 2005-03-06 Richard M. Stallman <rms@gnu.org>
23529
23530 * help-mode.el (help-mode-finish): Don't alter the element
23531 in view-return-to-alist if there already is one.
23532
23533 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
23534 make sure the current buffer is the expected one.
23535
23536 * novice.el (disabled-command-function): Output in *Disabled Command*.
23537 Explicitly ignore non-keyboard events, and explicitly handle C-g.
23538
23539 * textmodes/flyspell.el (flyspell-large-region):
23540 Pass args differently for aspell.
23541
23542 * files.el (mode-require-final-newline): Doc fix.
23543
23544 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
23545
23546 * progmodes/which-func.el (which-function):
23547 Specify NOERROR when calling imenu--make-index-alist.
23548
23549 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
23550
23551 * simple.el (normal-erase-is-backspace): Define default value.
23552
23553 * custom.el (custom-theme-set-variables): Remove unused var
23554 `immediate'.
23555 (custom-reevaluate-setting): Simple function to handle variables
23556 that are defined before their default value can really be
23557 computed.
23558
23559 * startup.el (command-line): Use it for temporary-file-directory,
23560 small-emporary-file-directory, auto-save-file-name-transforms,
23561 blink-cursor-mode, and normal-erase-is-backspace.
23562
23563 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
23564 progress, even with buggy anchored keywords.
23565
23566 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
23567
23568 * simple.el (goto-line): Remove unbalanced final parenthesis.
23569
23570 2005-03-05 Richard M. Stallman <rms@gnu.org>
23571
23572 * simple.el (goto-line): Use a number at point as the default.
23573 With C-u as arg, switch buffers.
23574
23575 2005-03-05 Juri Linkov <juri@jurta.org>
23576
23577 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
23578 with `no-blinking-cursor'.
23579
23580 * startup.el (no-blinking-cursor): New defvar.
23581 (command-line): Add `--no-blinking-cursor' to longopts.
23582 Set `no-blinking-cursor' to t for command line arguments
23583 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
23584 with `no-blinking-cursor' in the condition for calling
23585 `blink-cursor-mode'.
23586
23587 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
23588
23589 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
23590 (menu-bar-options-save): Add blink-cursor-mode.
23591 (menu-bar-options-menu): Add blink-cursor-mode.
23592
23593 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
23594
23595 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
23596 (icalendar-export-file, icalendar-export-region)
23597 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
23598 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
23599
23600 2005-03-04 Lute Kamstra <lute@gnu.org>
23601
23602 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
23603 (debug-function-list): Ditto.
23604
23605 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
23606
23607 * textmodes/texinfmt.el (texinfo-append-refill):
23608 Redefine the types of line to which @refill
23609 is not appended by replacing a search for `@refill\\|@bye' with
23610 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
23611 itemize@refill' bug and the unfilled long lines bug.
23612 (texinfmt-version): Update number and date.
23613
23614 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
23615
23616 * international/code-pages.el (windows-1250, windows-125[2-8])
23617 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
23618
23619 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
23620
23621 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
23622 bound yet.
23623
23624 2005-03-02 Romain Francoise <romain@orebokech.com>
23625
23626 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
23627 buffer after removing limits.
23628 (ibuffer-pop-filter): Ditto.
23629 Update copyright.
23630
23631 2005-03-02 Miles Bader <miles@gnu.org>
23632
23633 * button.el (make-text-button): If the user doesn't specify a
23634 type, use the default. Rewrite to use `add-text-properties' and
23635 plist functions.
23636
23637 2005-03-01 Lute Kamstra <lute@gnu.org>
23638
23639 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
23640 (debugger-jumping-flag): New var.
23641 (debug-entry-code): Use it.
23642 (debugger-jump): Use debugger-jumping-flag and add
23643 debugger-reenable to post-command-hook.
23644 (debugger-reenable): Use debugger-jumping-flag and remove itself
23645 from post-command-hook.
23646 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
23647 debugger-reenable.
23648
23649 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
23650
23651 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
23652 inclusion of "itemize\\|", which may be unnecessary, is certainly
23653 inelegant, and stops refilling in itemize lists when formatting
23654 Japanese Texinfo files to Info.
23655 Update copyright to 2005.
23656
23657 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
23658
23659 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
23660 of an error if GDB can't find the source file.
23661
23662 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
23663
23664 * calendar/calendar.el (redraw-calendar): Work from any buffer,
23665 not just the calendar.
23666
23667 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
23668 first.
23669 (diary-redraw-calendar): New function.
23670 (make-diary-entry): Add diary-redraw-calendar to local
23671 write-contents-functions. Turn off selective display before
23672 inserting in diary.
23673
23674 2005-03-01 Kim F. Storm <storm@cua.dk>
23675
23676 * emacs-lisp/copyright.el (copyright-fix-years): New command.
23677
23678 2005-03-01 Lute Kamstra <lute@gnu.org>
23679
23680 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
23681 that debug-entry-code can be safely removed from a function while
23682 this code is being evaluated. Revert the 2005-02-27 change as the
23683 new implementation no longer requires it. Make sure that a
23684 function body containing just a string is not mistaken for a docstring.
23685 (debug): Skip one more frame in case of debug on entry.
23686 (debugger-setup-buffer): Delete one more frame line in case of
23687 debug on entry.
23688 (debugger-frame-number): Update to use the new text introduced by
23689 the 1999-11-03 change. Skip one more frame in case of debug on entry.
23690
23691 2005-02-28 Kim F. Storm <storm@cua.dk>
23692
23693 * double.el (double-translate-key): Call force-window-update after
23694 read-event to avoid crash in redisplay.
23695
23696 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
23697
23698 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
23699 (debug): Use it. Move the inhibit-trace earlier.
23700 (debug-entry-code): New const.
23701 (debug-on-entry-1): Use it.
23702
23703 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
23704
23705 * international/utf-16.el (ccl-encode-mule-utf-16le):
23706 Fix BUFFER_MAGNIFICATION to 2.
23707 (ccl-encode-mule-utf-16be): Likewise.
23708
23709 2005-02-28 Kenichi Handa <handa@m17n.org>
23710
23711 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
23712 Fix BUFFER_MAGNIFICATION to 4.
23713 (ccl-encode-mule-utf-16be-with-signature): Likewise.
23714
23715 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
23716
23717 * speedbar.el (speedbar-update-flag): Doc fix.
23718 (speedbar-show-info-under-mouse): Give set-mouse-position the right
23719 argument.
23720
23721 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
23722
23723 * reveal.el (reveal-post-command): Don't try to reveal overlays which
23724 have a non-nil `invisible' property but are actually visible.
23725
23726 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
23727 for perldoc sections.
23728 (perl-outline-regexp, perl-outline-level): New var and function.
23729 (perl-mode): Use them.
23730
23731 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
23732
23733 * calendar/diary-lib.el (diary-remind): Discard any mark portion
23734 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
23735
23736 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
23737
23738 * cus-edit.el: Comment change.
23739 (custom-buffer-create-internal): Slightly reword text at top of
23740 Custom buffers. Mention there that saving an option edits the
23741 init file. Add link to Emacs manual node on `custom-file'.
23742 (custom-magic-alist): Rewrite individual State messages to use
23743 capitalized keywords. Doc fix.
23744
23745 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
23746
23747 * calendar/calendar.el (calendar-buffer): Move above
23748 calendar-week-start-day.
23749 (calendar-week-start-day): Doc fix. Add :set function.
23750 (calendar-minimum-window-height): New variable.
23751 (generate-calendar-window): Only resize window if selected-window
23752 is displaying the calendar buffer. Use new variable
23753 calendar-minimum-window-height.
23754 (generate-calendar): Reword error message.
23755 (calendar-mode-map): Bind DEL to scroll-other-window-down.
23756
23757 2005-02-27 Andreas Schwab <schwab@suse.de>
23758
23759 * vc.el (vc-do-command): Don't run command asynchronously when
23760 operating in a remote directory.
23761
23762 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
23763 change from sync with Tramp 2.0.47.
23764
23765 2005-02-27 Richard M. Stallman <rms@gnu.org>
23766
23767 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
23768
23769 * textmodes/flyspell.el (flyspell-mode-on):
23770 Call ispell-change-dictionary only if necessary.
23771
23772 * emacs-lisp/re-builder.el (regexp-builder): New function.
23773
23774 * register.el (describe-register-1): Explicitly handle
23775 yank-excluded-properties = t.
23776
23777 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
23778 (custom-magic-alist): Change the status descriptions again.
23779 (face widget-type): Total rewrite based on `restricted-sexp'
23780 to eliminate the confusing double hiding levels.
23781
23782 * emacs-lisp/debug.el (debug-on-entry-1):
23783 If function body is empty, add nil as body form.
23784
23785 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
23786
23787 * emacs-lisp/trace.el (inhibit-trace): New var.
23788 (trace-make-advice): Use it.
23789
23790 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
23791
23792 2005-02-26 Kim F. Storm <storm@cua.dk>
23793
23794 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
23795 (mouse-on-link-p, mouse-drag-region-1): Use it.
23796
23797 2005-02-25 Lute Kamstra <lute@gnu.org>
23798
23799 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
23800
23801 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
23802
23803 * frame.el (blink-cursor-mode): Add :group keyword.
23804
23805 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
23806
23807 * calendar/icalendar.el (icalendar--decode-isodatetime):
23808 New optional argument DAY-SHIFT.
23809 (icalendar-export-region): Fix coding-system-for-write.
23810 (icalendar--convert-ical-to-diary): Shift end-day of all-day
23811 events by one.
23812
23813 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
23814
23815 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
23816
23817 2005-02-24 Kim F. Storm <storm@cua.dk>
23818
23819 * international/iso-acc.el (iso-accents-compose): Fix crash
23820 during redisplay. Call force-window-update after read-event
23821 and delete-region to signal that window is not accurate.
23822
23823 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
23824
23825 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
23826 Remove unused and inexistent var `inhibit-trace'.
23827 (debugger-mode): Use run-mode-hooks.
23828 (debugger-list-functions): Add buttons; setup xref stack.
23829
23830 2005-02-23 Richard M. Stallman <rms@gnu.org>
23831
23832 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
23833 appointment says it was explicitly made.
23834 (appt-add): Set the 3rd element.
23835 (appt-make-list): Preserve explicit appointments.
23836
23837 * subr.el (find-tag-default): Catch errors in forward-sexp.
23838
23839 2005-02-23 Juri Linkov <juri@jurta.org>
23840
23841 * info.el (Info-isearch-search): New defcustom.
23842 (Info-isearch-search): Call the default isearch function
23843 when Info-isearch-search is nil.
23844 (Info-isearch-wrap): Use variable Info-isearch-search.
23845
23846 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
23847
23848 * cus-edit.el: Comment change.
23849
23850 2005-02-22 Kim F. Storm <storm@cua.dk>
23851
23852 * progmodes/hideif.el (hide-ifdef-use-define-alist):
23853 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
23854
23855 2005-02-22 Simon Josefsson <jas@extundo.com>
23856
23857 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
23858 New variable.
23859 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
23860 Oskarsson" <myrkraverk@users.sourceforget.net>.
23861
23862 2005-02-22 Kim F. Storm <storm@cua.dk>
23863
23864 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
23865 check that window of that event is the selected window.
23866 (mouse-drag-region-1): Compare mouse event window to selected
23867 window before setting point.
23868
23869 * tooltip.el (tooltip-show-help-function): Pass event to
23870 mouse-on-link-p so it can check selected window.
23871
23872 2005-02-22 Kenichi Handa <handa@m17n.org>
23873
23874 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
23875 (ps-mule-show-warning): New function.
23876 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
23877 characters are found.
23878
23879 * ps-print.el (ps-header-footer-string): Return a list of header
23880 and footer strings.
23881
23882 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
23883
23884 * pcvs.el (cvs-retrieve-revision): Fix thinko.
23885
23886 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
23887
23888 * frame.el (blink-cursor-mode): Use define-minor-mode.
23889
23890 * term/mac-win.el (function-key-map): Use char-names more consistently.
23891 (file-name-coding-system): Only set it for MacOS-9. The other case is
23892 already handled in mule-cmds.el (where it also works when mac-win.el
23893 is not used).
23894
23895 2005-02-21 Kenichi Handa <handa@m17n.org>
23896
23897 * international/mule.el (ctext-pre-write-conversion): Always use
23898 " *code-converting-work*" buffer for work.
23899
23900 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
23901
23902 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
23903
23904 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
23905
23906 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
23907
23908 * ses.el (undo-more): Restore defadvice, but only the part that
23909 allows changes outside the restricted area of the buffer.
23910
23911 2005-02-20 Kim F. Storm <storm@cua.dk>
23912
23913 * simple.el (line-move): Add fourth optional arg try-vscroll which
23914 must be set to perform auto-window-vscroll.
23915 When moving backwards and doing auto-window-vscroll, automatically
23916 vscroll to the last part of lines which are taller than the window.
23917 (next-line, previous-line): Set try-vscroll arg on line-move.
23918
23919 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
23920
23921 * replace.el (query-replace, query-replace-regexp)
23922 (replace-string, replace-regexp): When operating on region, make
23923 the minibuffer prompt say so.
23924
23925 * isearch.el (isearch-forward): Document isearch-query-replace and
23926 isearch-query-replace-regexp keybindings.
23927
23928 2005-02-19 Jay Belanger <belanger@truman.edu>
23929
23930 * calc/calc-aent.el (math-read-token): Add local variable.
23931
23932 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
23933 (calc-edit-top): Move declaration to earlier in file.
23934 (calc-edit-macro-repeats): Add local variables.
23935
23936 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
23937 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
23938 calcFunc-tanh.
23939 Adjust integration rule for calcFunc-tan.
23940
23941 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
23942
23943 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
23944 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
23945 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
23946 (viper-skip-separators): Bug fix.
23947 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
23948 particular major mode.
23949 (viper-del-backward-char-in-replace): Don't put deleted char on the
23950 kill ring.
23951
23952 * viper-ex.el (viper-color-display-p): New function.
23953 (viper-has-face-support-p): Use viper-color-display-p.
23954
23955 * viper-keym.el (viper-gnus-modifier-map): New keymap.
23956
23957 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
23958
23959 * viper-util.el (viper-glob-unix-files): Fix shell status check.
23960 (viper-file-remote-p): Make equivalent to file-remote-p.
23961
23962 * viper.el (viper-major-mode-modifier-list):
23963 Use viper-gnus-modifier-map.
23964
23965 2005-02-19 David Kastrup <dak@gnu.org>
23966
23967 * subr.el (subregexp-context-p): Fix garbled doc string by adding
23968 quoting.
23969
23970 2005-02-19 Jay Belanger <belanger@truman.edu>
23971
23972 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
23973 Remove extra definitions.
23974 (calc-coth): New function.
23975 (calcFunc-cot): Fix `let'.
23976
23977 2005-02-19 Eli Zaretskii <eliz@gnu.org>
23978
23979 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
23980 the reasons we use "type pc" in these faces.
23981
23982 * button.el (button): Ditto.
23983
23984 2005-02-19 Michael Mauger <mmaug@yahoo.com>
23985
23986 * replace.el (query-replace-read-from): Set the value of
23987 query-replace-from-history-variable to handle the case of an empty
23988 string entered to accept the suggested default.
23989
23990 * net/tramp.el (tramp-file-name-for-operation):
23991 Use dired-call-process instead of dired-call-process-command.
23992
23993 2005-02-19 Jay Belanger <belanger@truman.edu>
23994
23995 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
23996 (math-div-non-trig): New variables.
23997 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
23998 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
23999 (math-combine-prod, math-div-symb-fancy): Add simplifications for
24000 trig expressions.
24001
24002 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
24003
24004 * progmodes/gdb-ui.el (gdb-var-update-handler)
24005 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
24006 for watch expressions,
24007 (gdb-var-create-handler): Don't set speedbar-update-flag.
24008 (gdb-post-prompt): Simplify test for speedbar.
24009
24010 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
24011
24012 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
24013 (ediff-set-fine-overlays-in-one-buffer, ediff-goto-word): Make sure
24014 we use the syntax table of the correct buffer.
24015 (ediff-same-file-contents, ediff-same-contents): Enhancements thanks to
24016 Felix Gatzemeier.
24017
24018 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
24019 (ediff-file-remote-p): Make synonymous with file-remote-p.
24020 In all deffaces ediff-*-face-*, use min-colors.
24021
24022 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
24023 ediff-recurse-to-subdirectories.
24024 (ediff-mark-if-equal): Check that the arguments are strings, use
24025 ediff-same-contents (after to Felix Gatzemeier).
24026
24027 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
24028 nil.
24029
24030 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
24031
24032 * log-view.el (log-view-message-re): Fix up Subversion regexp.
24033
24034 2005-02-18 David Kastrup <dak@gnu.org>
24035
24036 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
24037 use `mark-active' when defined.
24038
24039 2005-02-18 Kenichi Handa <handa@m17n.org>
24040
24041 * ps-print.el (ps-font-info-database): New entry
24042 ZapfChancery-MediumItalic with correct font name. Fix font name
24043 of the entry Zapf-Chancery-MediumItalic.
24044
24045 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
24046
24047 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
24048
24049 2005-02-16 Kim F. Storm <storm@cua.dk>
24050
24051 * ido.el (ido-fallback-command): Pass user input to fallback command.
24052
24053 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
24054
24055 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
24056 (gdb-find-file-hook): Add server prefix.
24057
24058 2005-02-16 Richard M. Stallman <rms@gnu.org>
24059
24060 * replace.el (perform-replace): Pass new args to replace-highlight.
24061 (replace-highlight): Take region args,
24062 and pass them to isearch-lazy-highlight-new-loop.
24063
24064 * novice.el (disabled-command-hook): Autoload the defalias
24065 and the make-obsolete-variable call.
24066
24067 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
24068
24069 * isearch.el (isearch-lazy-highlight-start-limit)
24070 (isearch-lazy-highlight-end-limit): New variables limit
24071 the region for highlighting.
24072 (isearch-lazy-highlight-new-loop): New args BEG and END.
24073 (isearch-lazy-highlight-search): Use the new vars.
24074 (isearch-lazy-highlight-update): Likewise.
24075
24076 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
24077
24078 * cus-start.el (all): Use default-boundp.
24079
24080 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
24081
24082 * menu-bar.el (menu-bar-select-frame): Handle current frame.
24083
24084 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
24085
24086 * autorevert.el (auto-revert-stop-on-user-input)
24087 (auto-revert-verbose): Doc fixes.
24088
24089 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
24090
24091 * international/mule-cmds.el (set-locale-environment): Remove call
24092 to set-selection-coding-system on Windows.
24093
24094 2005-02-15 Jay Belanger <belanger@truman.edu>
24095
24096 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
24097 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
24098 calcFunc-coth.
24099 (math-simplify-sqrt): Add simplifications.
24100
24101 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
24102 to list.
24103
24104 * calc/calc-ext.el: Add functions to autoloads.
24105
24106 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
24107 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
24108 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
24109 (math-csc-raw, math-cot-raw): New functions.
24110
24111 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
24112
24113 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
24114 the variable name in a message.
24115
24116 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
24117 calcFunc-csc, calcFunc-cot.
24118
24119 * calc/calcalg2.el: Add derivative and integration rules for
24120 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
24121 calcFunc-csch, calcFunc-coth.
24122 (math-do-integral-methods): Add to checks for when to use
24123 substitutions.
24124
24125 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
24126
24127 2005-02-15 Lute Kamstra <lute@gnu.org>
24128
24129 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
24130 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
24131 <monnier@iro.umontreal.ca>
24132 (lisp-outline-level): Improve efficiency. Suggested by David
24133 Kastrup <dak@gnu.org>.
24134
24135 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
24136
24137 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
24138 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
24139 (gdb-set-gud-minor-mode-existing-buffers): New functions.
24140 (gdb-find-file-hook): New hook. Add it to find-file-hook.
24141 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
24142
24143 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
24144
24145 * cus-start.el (all): Comment change.
24146
24147 2005-02-14 Lute Kamstra <lute@gnu.org>
24148
24149 * cus-start.el (all): Check if symbol is void.
24150
24151 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
24152
24153 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
24154 optional argument to \cite.
24155
24156 2005-02-14 Richard M. Stallman <rms@gnu.org>
24157
24158 * cus-edit.el (custom-buffer-create-internal): Update help message.
24159 (custom-magic-alist): Update help messages.
24160
24161 * cus-start.el (all): Allow a var to specify a standard value.
24162
24163 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
24164
24165 * custom.el (custom-theme-set-variables): Handle variable aliases.
24166
24167 * frame.el (blink-cursor-timer): Doc fix.
24168 (blink-cursor): Make it an alias for `blink-cursor-mode' and
24169 declare obsolete.
24170 (blink-cursor-mode): Define with defcustom and use correct
24171 standard expression in that defcustom.
24172 * startup.el (command-line): Adapt to above changes in frame.el.
24173
24174 2005-02-11 Lute Kamstra <lute@gnu.org>
24175
24176 * apropos.el (apropos-score-doc): Prevent division by zero.
24177
24178 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
24179
24180 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
24181 (icalendar--get-event-property-attributes)
24182 (icalendar--get-event-properties)
24183 (icalendar--datetime-to-diary-date): New functions.
24184 (icalendar--split-value): Doc fix.
24185 (icalendar--datetime-to-noneuropean-date)
24186 (icalendar--datetime-to-european-date): New optional argument
24187 SEPARATOR. Return result as a string instead of a list.
24188 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
24189 (icalendar--convert-string-for-export): Rename arg S to STRING.
24190 (icalendar-export-region): Doc fix. Change name of error buffer.
24191 Save output buffer.
24192 (icalendar-import-file): Add blank at end of prompt.
24193 (icalendar-import-buffer): Doc fix. Do not switch to error
24194 buffer. Indicate status in return value.
24195 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
24196 buffer. Save output buffer. Handle exception from recurrence
24197 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
24198 events. Fix problems with weekly all-day events.
24199
24200 2005-02-10 Richard M. Stallman <rms@gnu.org>
24201
24202 * simple.el (eval-expression-print-format):
24203 Avoid warning about edebug-active.
24204
24205 * help.el (help-for-help-internal): Rename from help-for-help.
24206 (help-for-help): Define with defalias.
24207
24208 * font-core.el (font-lock-default-function): Use with-no-warnings.
24209
24210 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
24211
24212 * custom.el (defface): Doc fix.
24213
24214 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
24215
24216 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
24217 width 0" to prevent word wrapping problems.
24218
24219 2005-02-09 Kim F. Storm <storm@cua.dk>
24220
24221 * ido.el (ido-file-extensions-order): New defcustom.
24222 (ido-file-extension-lessp, ido-file-extension-aux)
24223 (ido-file-extension-order): New advanced file ordering.
24224 (ido-file-lessp): New simple file ordering.
24225 (ido-sort-list): Remove.
24226 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
24227 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
24228
24229 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
24230
24231 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
24232 that some versions of grep produce.
24233 (grep-mode-font-lock-keywords): Likewise.
24234
24235 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
24236
24237 * progmodes/gdb-ui.el (gdb-location-list): New variable.
24238 (gdb-cdir): Delete.
24239 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
24240 (gdb-source-info): Treat case when source file is in another
24241 directory properly.
24242 (gdb-get-location): New function.
24243
24244 2005-02-07 Jay Belanger <belanger@truman.edu>
24245
24246 * calc/calc-prog.el (calc-write-parse-table-part)
24247 (calc-fix-token-name): Fix a check for language type.
24248
24249 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
24250
24251 2005-02-07 Andre Spiegel <spiegel@gnu.org>
24252
24253 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
24254 as directory not writable.
24255
24256 2005-02-07 Kim F. Storm <storm@cua.dk>
24257
24258 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
24259 (cua--standard-movement-commands): Remove list.
24260 Instead, set CUA property value to move for movement commands.
24261 (cua-movement-commands): Remove. Users must set CUA prop instead.
24262 (cua--pre-command-handler): Check CUA property.
24263 (cua--init-keymaps): Don't remap undo commands.
24264 (cua-mode): Don't call cua--rectangle-on-off.
24265
24266 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
24267 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
24268 (cua--rect-undo-set-point): New var.
24269 (cua--rectangle-undo-boundary): Setup undo apply entry.
24270 (cua--rect-undo-handler): New function for rectangle undo.
24271 (cua--rect-start-position, cua--rect-end-position): Add.
24272 (cua--rectangle-post-command): Call cua--rectangle-set-corners
24273 for restored rectangle. Set point if cua--rect-undo-set-point.
24274
24275 2005-02-06 Jay Belanger <belanger@truman.edu>
24276
24277 * calc/calc-lang.el (calc-tex-language): Display more information
24278 in messages.
24279
24280 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
24281 in TeX mode.
24282
24283 2005-02-06 Richard M. Stallman <rms@gnu.org>
24284
24285 * emacs-lisp/lisp.el (buffer-end): Doc fix.
24286
24287 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
24288
24289 * net/ldap.el (ldap-search-internal): Support attributes with
24290 optional descriptions separated by a semi-colon, as in
24291 "userCertificate;binary".
24292
24293 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
24294
24295 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
24296 isn't a cons (i.e. the version is 0).
24297
24298 2005-02-05 Eli Zaretskii <eliz@gnu.org>
24299
24300 * help.el (help-for-help): Doc fix.
24301
24302 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
24303
24304 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
24305 GDB-Windows on the menu-bar as this works better.
24306
24307 2005-02-04 Jay Belanger <belanger@truman.edu>
24308
24309 * calc/calc-embed.el (calc-embedded-update): Don't put in
24310 unnecessary newlines. Adjust the end of formula marker.
24311
24312 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
24313 (math-latex-parse-two-args): New function.
24314
24315 2005-02-03 Lute Kamstra <lute@gnu.org>
24316
24317 * help-fns.el (help-with-tutorial): Make sure that users cannot
24318 remove the entire text of the tutorial by means of `undo'.
24319
24320 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
24321
24322 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
24323 in recent changes, where the ispell process was repeatedly
24324 killed & restarted.
24325
24326 * international/mule-cmds.el (set-locale-environment): Set file-name
24327 coding system to utf-8 on Darwin systems.
24328 (set-default-coding-systems): Don't set default-file-name-coding-system
24329 on Darwin systems.
24330
24331 2005-02-03 Richard M. Stallman <rms@gnu.org>
24332
24333 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
24334
24335 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
24336
24337 * faces.el (list-faces-display): Add optional argument.
24338
24339 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
24340
24341 * font-core.el (font-lock-default-function): Handle the rare case where
24342 only font-lock-keywords is set.
24343
24344 2005-02-02 Kenichi Handa <handa@m17n.org>
24345
24346 * international/characters.el: Cancel previous change for
24347 I-WITH-DOT-ABOVE and DOTLESS-i.
24348
24349 * international/latin-5.el: Cancel previous change.
24350
24351 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
24352
24353 * progmodes/gud.el: Correction to syntax in gud-menu-map.
24354
24355 2005-02-02 Kenichi Handa <handa@m17n.org>
24356
24357 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
24358 DOTLESS-i.
24359
24360 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
24361 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
24362
24363 * case-table.el (get-upcase-table): New function.
24364 (copy-case-table): Copy upcaes table too if non-nil.
24365 (set-case-syntax-delims): Maintain upcase table too.
24366 (set-case-syntax-pair): Likewise.
24367 (set-upcase-syntax, set-downcase-syntax): New functions.
24368 (set-case-syntax): Maintain upcase table too.
24369
24370 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
24371
24372 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
24373
24374 * progmodes/gud.el (gud-goto-info): New function.
24375 (gud-tool-bar-map): Use correct icon.
24376
24377 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
24378
24379 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
24380 When delegating, order args in the funcall correctly.
24381
24382 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
24383
24384 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
24385
24386 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
24387
24388 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
24389 buffer not visiting a file.
24390
24391 2005-01-31 Jay Belanger <belanger@truman.edu>
24392
24393 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
24394 bound on the line with the formula.
24395
24396 2005-01-31 Kim F. Storm <storm@cua.dk>
24397
24398 * ses.el (ses-create-cell-variable-range)
24399 (ses-destroy-cell-variable-range, ses-reset-header-string)
24400 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
24401 (ses-insert-row): Fix format of apply undo entries.
24402
24403 2005-01-31 Jay Belanger <belanger@truman.edu>
24404
24405 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
24406 parts.
24407
24408 * calc/calc-embed.el (calc-embedded-open-formula)
24409 (calc-embedded-close-formula): Ignore matrix environments.
24410
24411 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
24412 TeX mode.
24413
24414 * calc/calc-lang.el (math-function-table, math-oper-table)
24415 (math-variable-table): Adjust the LaTeX portions.
24416
24417 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
24418 (math-latex-ignore-words): New constant.
24419
24420 2005-01-31 Richard M. Stallman <rms@gnu.org>
24421
24422 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
24423 (ispell-local-dictionary): Doc fix.
24424 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
24425 Don't reinitialize at run time. Don't defcustom.
24426 All uses changed to append ispell-local-dictionary-alist,
24427 or check it first.
24428 (ispell-current-dictionary): New variable for dictionary in use.
24429 (ispell-dictionary): Now used only for global default.
24430 (ispell-start-process): Set ispell-current-dictionary,
24431 not ispell-dictionary.
24432 (ispell-change-dictionary): Use this only for setting
24433 user preferences.
24434 (ispell-internal-change-dictionary): New function
24435 to change the current dictionary in use.
24436 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
24437 Use ispell-current-dictionary.
24438 Handle ispell-local-dictionary-overridden.
24439 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
24440
24441 2005-01-31 Jay Belanger <belanger@truman.edu>
24442
24443 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
24444
24445 * calc/calc-ext.el: Add calc-latex-language to autoloads.
24446 (calc-mode-map): Add calc-latex-language.
24447
24448 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
24449 (math-latex-print-frac): New functions.
24450 (math-oper-table, math-function-table, math-variable-table)
24451 (math-complex-format, math-input-filter): Add latex properties.
24452 (calc-set-language): Set math-expr-special-function-mapping.
24453
24454 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
24455 (calc-write-parse-table-part): Add LaTeX support.
24456
24457 * calc/calc.el (calc-language): Adjust docstring.
24458 (calc-set-mode-line): Add LaTeX support.
24459 (math-expr-special-function-mapping): New variable.
24460 (math-tex-ignore-words): Add to list.
24461
24462 * calc/calccomp.el (math-compose-expr, math-compose-rows):
24463 Add LaTeX support.
24464 (math-compose-expr): Add support for special functions.
24465
24466 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
24467
24468 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
24469
24470 * progmodes/gdb-ui.el (gdb-memory-address)
24471 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
24472 (gdb-memory-mode-map, gdb-memory-format-keymap)
24473 (gdb-memory-format-menu, gdb-memory-unit-keymap)
24474 (gdb-memory-unit-menu): New variables for a buffer
24475 that lets the user examine program memory.
24476 (gdb-memory-set-address, gdb-memory-set-repeat-count)
24477 (gdb-memory-format-binary, gdb-memory-format-octal)
24478 (gdb-memory-format-unsigned, gdb-memory-format-signed)
24479 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
24480 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
24481 (gdb-memory-unit-word, gdb-memory-unit-halfword)
24482 (gdb-memory-unit-byte, gdb-memory-unit-menu)
24483 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
24484 (gdb-memory-mode, gdb-memory-buffer-name)
24485 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
24486 New functions for above buffer.
24487
24488 2005-01-30 Richard M. Stallman <rms@gnu.org>
24489
24490 * cus-edit.el (custom-bury-buffer): Function deleted.
24491 (custom-buffer-done-function): Option deleted.
24492 (custom-buffer-done-kill): New replacement option.
24493 (Custom-buffer-done): Call quit-window.
24494 (custom-buffer-create-internal): Update for above changes.
24495
24496 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
24497
24498 * simple.el (undo-ask-before-discard): New var.
24499 (undo-outer-limit-truncate): Implement it.
24500 (undo-extra-outer-limit): Doc update.
24501
24502 2005-01-29 Richard M. Stallman <rms@gnu.org>
24503
24504 * ses.el (undo-more): Delete defadvice.
24505 (ses-begin-change): Doc fix.
24506
24507 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
24508 instead of rebinding C-x u and C-_.
24509
24510 * files.el (normal-backup-enable-predicate): Return nil for files
24511 in /tmp, regardless of temporary-file-directory.
24512
24513 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
24514
24515 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
24516 (open-rectangle, delete-whitespace-rectangle-line)
24517 (clear-rectangle-line): If FILL, pass t instead of FILL
24518 for move-to-column's 2nd arg.
24519
24520 * simple.el (undo): Fix the test for continuing a series of undos.
24521 (undo-more): Set pending-undo-list to t when we reach end.
24522 (pending-undo-list): Move up defvar.
24523
24524 * wid-edit.el (widget-button-click):
24525 Shorten the range of the track-mouse binding.
24526
24527 * comint.el (comint-insert-input): Undo previous changes;
24528 use last-input-event in interactive spec.
24529
24530 2005-01-29 Eli Zaretskii <eliz@gnu.org>
24531
24532 * progmodes/compile.el (compilation-start): Bind buffer-read-only
24533 to nil before invoking call-process. Reset buffer's modified flag
24534 after fontifying it in the no-async branch.
24535
24536 * wid-edit.el (widget-specify-button): If mouse pointer shape
24537 cannot be changed, use mouse face instead.
24538
24539 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
24540
24541 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
24542 (gdb-goto-breakpoint): Make breakpoint handling work on template
24543 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
24544 (gdb-assembler-custom): Update to recognize breakpoint information
24545 added on 2005-01-19.
24546
24547 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
24548
24549 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
24550 (dsssl-mode): Use define-derived-mode.
24551 (scheme-mode-initialize): Remove.
24552 (scheme-mode): Use run-mode-hooks.
24553
24554 * cus-edit.el (customize-group-other-window)
24555 (custom-buffer-create-other-window): Don't override special-display-*.
24556 (custom-mode-map): Make it dense.
24557
24558 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
24559 sets the default value.
24560
24561 2005-01-28 Eli Zaretskii <eliz@gnu.org>
24562
24563 * descr-text.el: Add more keywords.
24564
24565 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
24566
24567 * speedbar.el: Avoid unnecessary use of locate-library.
24568
24569 * international/mule-cmds.el (standard-display-european-internal):
24570 Don't fiddle with latin-1 non-break space any more since it's now
24571 special cased in the C code.
24572 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
24573
24574 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
24575
24576 * cus-start.el (all): Add `undo-outer-limit'.
24577
24578 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
24579
24580 * textmodes/bibtex.el (bibtex-format-entry):
24581 Use `bibtex-empty-field-re' only on the text of fields, not on entire
24582 field lines.
24583 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
24584 not on part of a buffer.
24585
24586 2005-01-25 Lute Kamstra <lute@gnu.org>
24587
24588 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
24589 nonempty field text strings like "{letters\\macro{}more letters}".
24590 Clarify docstring.
24591 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
24592 (bibtex-entry-offset, bibtex-parse-association)
24593 (bibtex-parse-field-name): Fix typos in docstrings.
24594 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
24595
24596 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
24597
24598 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
24599 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
24600 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
24601 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
24602
24603 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
24604 isearch minor mode.
24605
24606 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
24607
24608 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
24609
24610 2005-01-24 Lute Kamstra <lute@gnu.org>
24611
24612 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
24613 CASECHARS and NOT-CASECHARS regular expressions of the
24614 "nederlands" and "nederlands8" dictionaries to prevent a "Range
24615 striding over charsets" error.
24616
24617 2005-01-24 Jay Belanger <belanger@truman.edu>
24618
24619 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
24620 display variable name.
24621
24622 2005-01-24 Kenichi Handa <handa@m17n.org>
24623
24624 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
24625 Fix setting of the element of encoded-kbd-iso2022-invocations.
24626
24627 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
24628
24629 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
24630 (gdb-threads-select): Change to also accept mouse events.
24631 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
24632 (gdb-threads-mouse-select): Delete.
24633
24634 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
24635
24636 * files.el (insert-directory): Take care of empty directory,
24637 listed without -a switch.
24638
24639 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
24640
24641 * textmodes/refill.el (refill-post-command-function):
24642 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
24643 to the list of functions that we should be careful not to undo.
24644 (refill-late-fill-paragraph-function): Remove.
24645 (refill-saved-state): New var.
24646 (refill-mode): Use it to save fill-paragraph-function.
24647 Save also the value of auto-fill-function.
24648
24649 * term/w32-win.el: Simplify code.
24650
24651 2005-01-23 Kim F. Storm <storm@cua.dk>
24652
24653 * simple.el (line-move): Adapt to new return value from
24654 pos-visible-in-window-p.
24655
24656 * simple.el (line-move): Fix last change. Check partial
24657 visibility at point rather than at window-start.
24658
24659 2005-01-22 Jason Rumney <jasonr@gnu.org>
24660
24661 * term/w32-win.el (xw-defined-colors): Remove debug-message.
24662
24663 2005-01-22 David Kastrup <dak@gnu.org>
24664
24665 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
24666
24667 2005-01-22 Eli Zaretskii <eliz@gnu.org>
24668
24669 * type-break.el (type-break-mode): Add a test for
24670 type-break-file-name being non-nil.
24671
24672 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
24673
24674 * net/eudc.el (top level): Call (message "") via progn, so that
24675 eudc-options-file is loaded.
24676
24677 2005-01-22 Kim F. Storm <storm@cua.dk>
24678
24679 * simple.el (line-move-1): Rename from line-move.
24680 (line-move): New function that adjusts vscroll for partially
24681 visible rows, and calls line-move-1 otherwise.
24682
24683 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
24684
24685 * pcomplete.el: Define pcomplete-read-event instead of read-event,
24686 since it's not a complete read-event implementation
24687
24688 2005-01-20 Jay Belanger <belanger@truman.edu>
24689
24690 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
24691 for called function.
24692
24693 2005-01-20 Steven Tamm <steventamm@mac.com>
24694
24695 * term/mac-win.el (process-connection-type): Remove.
24696 Controlled now by s/darwin.h:PTY_ITERATION.
24697
24698 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
24699
24700 * window.el (handle-select-window): Don't switch window when we're
24701 in the minibuffer.
24702
24703 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
24704
24705 * subr.el (dotimes-with-progress-reporter): New macro.
24706
24707 * ses.el (ses-dotimes-msg): Remove macro.
24708 Use `dotimes-with-progress-reporter' instead.
24709
24710 2005-01-19 Steven Tamm <steventamm@mac.com>
24711
24712 * term/mac-win.el (process-connection-type): Use new
24713 operating-system-release variable to use ptys on Darwin 7 (OS X
24714 10.3) when using carbon build.
24715
24716 2005-01-19 Jay Belanger <belanger@truman.edu>
24717
24718 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
24719 flags if the last command was a tab or M-tab.
24720
24721 * calc/calc-prog.el (calc-user-define-edit): Put original formula
24722 in formula editing buffer.
24723
24724 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
24725
24726 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
24727 breakpoint image symbol in margin.
24728
24729 2005-01-19 Jay Belanger <belanger@truman.edu>
24730
24731 * calc/calc-prog.el (calc-execute-kbd-macro):
24732 Ignore calc-keep-arg-flag.
24733
24734 2005-01-19 Kenichi Handa <handa@m17n.org>
24735
24736 * textmodes/ispell.el (ispell-looking-at): New function.
24737 (ispell-process-line): Use ispell-looking-at to compare the ispell
24738 output and the buffer contents.
24739
24740 2005-01-18 Jay Belanger <belanger@truman.edu>
24741
24742 * calc/calc.el (calc-display-raw): Fix docstring.
24743
24744 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
24745
24746 * simple.el (blink-matching-open): Strip extra info from syntax.
24747
24748 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
24749 funny chars in the end-of-here-doc marker.
24750
24751 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
24752
24753 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
24754 that enable/disabled state of breakpoints is shown correctly in
24755 fringe and on ttys.
24756 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
24757 Add breakpoint information as text properties.
24758 (gdb-mouse-toggle-breakpoint):
24759 Rename to gdb-mouse-set-clear-breakpoint.
24760 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
24761 breakpoints in the margin.
24762 (gdb-remove-strings): Simplify.
24763
24764 2005-01-17 Jay Belanger <belanger@truman.edu>
24765
24766 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
24767 erasing buffer.
24768
24769 2005-01-17 Richard M. Stallman <rms@gnu.org>
24770
24771 * progmodes/grep.el (grep-find): Copy from `grep' the condition
24772 for calling grep-compute-defaults.
24773
24774 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
24775 if buffer is empty.
24776
24777 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
24778
24779 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
24780
24781 * hilit-chg.el (highlight-changes-mode): Don't autoload.
24782
24783 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
24784 non-preloaded variables.
24785
24786 2005-01-17 Steven Tamm <steventamm@mac.com>
24787
24788 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
24789 tex-shell cause to force interactivity when using pipes.
24790
24791 2005-01-17 Kim F. Storm <storm@cua.dk>
24792
24793 * simple.el (just-one-space): Make arg optional.
24794
24795 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
24796
24797 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
24798 posn-at-x-y to t to access left-margin.
24799
24800 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
24801
24802 Sync with Tramp 2.0.47.
24803
24804 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
24805 catching keep-date problems in cp/scp operations.
24806 (tramp-handle-copy-file): Don't call `set-file-modes'
24807 unconditionally. Specialized functions should know better what is
24808 necessary. This improves performance a little bit, and the
24809 functions could catch errors with `cp -p' and `scp -p'.
24810 (tramp-do-copy-or-rename-file-via-buffer)
24811 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
24812 when appropriate.
24813 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
24814 Call `set-file-modes' when appropriate.
24815 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
24816 Johnsson <isak@hypergene.com>
24817 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
24818 of both Tramp buffer and debug buffer. Reported by Joakim Verona
24819 <joakim@verona.se>
24820 (tramp-file-name-for-operation): Mark `shell-command' as magic for
24821 Emacs only.
24822
24823 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
24824 `find-file-hooks' and `dired-mode-hook'.
24825 (tramp-minor-mode-map): Respective map. Add remapping for
24826 `compile' and `recompile'.
24827 (tramp-remap-command, tramp-recompile): New defuns.
24828 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
24829 in buffer "*Compilation*". Call the commands asynchronously.
24830
24831 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
24832 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
24833 `shell-command', because it isn't magic in XEmacs. Reported by
24834 Adrian Aichner <adrian@xemacs.org>.
24835
24836 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
24837 `substitute-in-file-name.
24838 (tramp-smb-handle-substitute-in-file-name): New defun.
24839 (tramp-smb-advice-PC-do-completion): Delete advice.
24840
24841 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
24842
24843 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
24844 Fix error in deleting region.
24845
24846 2005-01-15 Richard M. Stallman <rms@gnu.org>
24847
24848 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
24849 In non-temp buffer, switch syntax table temporarily.
24850
24851 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
24852
24853 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
24854
24855 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
24856
24857 * imenu.el (imenu--split-menu): Copy menulist before sorting.
24858 (imenu--generic-function): Use START, not BEG, as pos of definition.
24859
24860 * simple.el (just-one-space): Argument specifies number of spaces.
24861
24862 * simple.el (eval-expression-print-format): Avoid warning
24863 about edebug-active.
24864
24865 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
24866
24867 * progmodes/sh-script.el: Code copied from make-mode.el
24868 with small changes,
24869 (sh-mode-map): Bind C-c C-\.
24870 (sh-backslash-column, sh-backslash-align): New variables.
24871 (sh-backslash-region, sh-append-backslash): New functions.
24872
24873 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
24874
24875 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
24876 (rmail-pop-password, rmail-pop-password-required): Move to
24877 rmail-obsolete group.
24878 (rmail-set-pop-password): Rename to rmail-set-remote-password.
24879 All callers updated.
24880 (rmail-get-pop-password): Rename to rmail-get-remote-password.
24881 Take an argument specifying whether it is POP or IMAP mailbox we
24882 are using. All callers updated.
24883 (rmail-pop-password-error): Rename to
24884 rmail-remote-password-error. Added mailutils-specific error message.
24885 (rmail-movemail-search-path)
24886 (rmail-movemail-variant-in-use): New variables.
24887 (rmail-remote-password, rmail-remote-password-required):
24888 New customization variables.
24889 (rmail-probe, rmail-autodetect, rmail-movemail-variant-p): New funs.
24890 (rmail-parse-url): New function.
24891 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
24892 with GNU mailutils movemail.
24893
24894 2005-01-15 Kevin Ryde <user42@zip.com.au>
24895
24896 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
24897 suffix to space, $ or '$, to correctly position point when going
24898 to @table style constants like DBL_MAX.
24899
24900 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
24901
24902 * type-break.el (type-break-mode, type-break-file-time)
24903 (type-break-file-keystroke-count, type-break-choose-file):
24904 Don't store data in or load data from the file if type-break-file-name
24905 is nil.
24906 (type-break-file-name): Doc update as per the above.
24907
24908 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
24909
24910 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
24911 lookup-key might return nil; handle that.
24912
24913 2005-01-15 Alan Mackenzie <acm@muc.de>
24914
24915 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
24916 rather than the element found, thus enabling the tree to be setcar'd.
24917
24918 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
24919
24920 * textmodes/org.el (org-show-following-heading): New option.
24921 (org-show-hierarchy-above): Use `org-show-following-heading'.
24922 (org-cycle): Documentation fix.
24923
24924 * textmodes/org.el (orgtbl-optimized): New option
24925 (orgtbl-mode): New command, a minor mode.
24926 (orgtbl-mode-map): New variable.
24927 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
24928 (orgtbl-error, orgtbl-self-insert-command)
24929 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
24930
24931 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
24932 a local variable in each org-mode buffer.
24933
24934 * textmodes/org.el (org-set-regexps-and-options): Rename from
24935 `org-set-regexps'. Added checking for STARTUP keyword.
24936 (org-get-current-options): Add STARTUP options.
24937 (org-table-insert-row): Make mode intelligent about when
24938 realignment is needed.
24939 (org-self-insert-command, org-delete-backward-char, org-delete-char):
24940 New commands.
24941 (org-enable-table-editor): New default value `optimized'.
24942 (org-table-blank-field): Support blanking regions if active.
24943
24944 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
24945
24946 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
24947 if the year is not given.
24948
24949 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
24950 Add new escapes %m and %M, fixed bug with %F by adding
24951 save-match-data.
24952 (reftex-reference): Remove ?. from list of spaces.
24953 (reftex-label-info): Add automatic label prefix recognition.
24954
24955 * textmodes/reftex-index.el (reftex-index-next-phrase):
24956 Add slave parameter to call of `reftex-index-this-phrase'.
24957 (reftex-index-this-phrase): New optional argument.
24958 (reftex-index-region-phrases): Add slave parameter to call of
24959 `reftex-index-this-phrase'.
24960 (reftex-display-index): New argument redo.
24961 (reftex-index-rescan): Add `redo' to arguments of
24962 `reftex-display-index'.
24963 (reftex-index-Rescan, reftex-index-revert)
24964 (reftex-index-switch-index-tag): Add `redo' to arguments of
24965 `reftex-display-index'.
24966 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
24967 indexing. Fix bug with matching is there is a quote before or
24968 after the word.
24969
24970 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
24971 Fix bug when collecting citation keys in lines with comments.
24972 (reftex-citation): Prefix argument no longer rescans the document,
24973 but forces prompting for optional arguments of cite macros.
24974 (reftex-do-citation): Prompting for optional arguments implemented.
24975
24976 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
24977 Add optional arguments to most cite commands.
24978 (reftex-cite-cleanup-optional-args): New option
24979 (reftex-cite-prompt-optional-args): New option.
24980 (reftex-trust-label-prefix): New option.
24981
24982 * textmodes/reftex-toc.el (reftex-toc-find-section):
24983 Add push-mark before changing the position in the buffer.
24984
24985 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
24986 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
24987
24988 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
24989
24990 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
24991 more carefully.
24992
24993 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
24994
24995 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
24996 (sgml-mode): Use it.
24997 (sgml-get-context): Better keep track of implicitly closed tags.
24998
24999 2005-01-13 Kenichi Handa <handa@m17n.org>
25000
25001 * textmodes/ispell.el: These changes are to fix misalignment error
25002 caused by equivalent characters of different Emacs charsets.
25003 (ispell-unified-chars-table): New variable.
25004 (ispell-get-decoded-string): New function.
25005 (ispell-get-casechars, ispell-get-not-casechars)
25006 (ispell-get-otherchars): Call ispell-get-decoded-string.
25007
25008 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
25009
25010 * custom.el (custom-declare-variable): Just put symbol instead
25011 of (defvar . symbol) in `current-load-list'.
25012
25013 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
25014
25015 * emacs-lisp/elint.el: Fixed typo in Commentary section.
25016
25017 2005-01-12 Jay Belanger <belanger@truman.edu>
25018
25019 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
25020 to create a Calc summary.
25021
25022 2005-01-12 Kim F. Storm <storm@cua.dk>
25023
25024 * mouse.el (mouse-on-link-p): Change functionality and doc
25025 string to comply with latest description in lisp ref.
25026
25027 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
25028
25029 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
25030 Enable mouse clicks on mode-line, header-line and margin.
25031 (event-type): Give mouse event symbols an `event-kind' property
25032 with value `mouse-click'.
25033
25034 2005-01-12 Juri Linkov <juri@jurta.org>
25035
25036 * facemenu.el (list-colors-display): Add new arg buffer-name.
25037 Use it. Fix docstring. Replace code for identifying duplicate
25038 colors by the name with call to `list-colors-duplicates' which
25039 identifies duplicate colors by the value unless the color
25040 is one of special Windows colors. Set truncate-lines to t.
25041 Print sorted duplicate color names on each line. Indent to 22
25042 \(the longest color name in rgb.txt) instead of 20. Optimize.
25043 (list-colors-duplicates): New function.
25044 (facemenu-color-name-equal): Delete function.
25045
25046 * facemenu.el (list-colors-print): New function created from code
25047 in list-colors-display. Print #RRGGBB at the window right edge.
25048 (list-colors-display): When temp-buffer-show-function is not
25049 defined, call list-colors-print from temp-buffer-show-hook
25050 to get the right value of window-width in list-colors-print
25051 after the buffer is displayed.
25052
25053 * simple.el (pop-mark): Move deactivate-mark out of conditional
25054 part to deactivate the active mark regardless of the state of the
25055 mark ring.
25056
25057 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
25058 variables line in desktop files.
25059
25060 2005-01-12 Juri Linkov <juri@jurta.org>
25061
25062 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
25063 Bring together isearch highlight related options.
25064 (lazy-highlight): Replace group `replace' by `matching'.
25065 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
25066 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
25067 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
25068 and declare them obsolete.
25069 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
25070 (isearch-faces): Remove defgroup.
25071 (isearch-overlay, isearch-highlight, isearch-dehighlight):
25072 Move isearch highlighting code closer to lazy highlighting code.
25073
25074 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
25075 (query-replace-highlight, query-replace-lazy-highlight)
25076 (query-replace): Move definitions to the beginning of the file.
25077
25078 2005-01-11 Juri Linkov <juri@jurta.org>
25079
25080 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
25081 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
25082 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
25083
25084 * info.el (Info-history-forward): New variable.
25085 (Info-select-node): Reset Info-history-forward to nil.
25086 (Info-last): Turn into defalias.
25087 (Info-history-back): Rename from Info-last.
25088 Add current node to Info-history-forward.
25089 (Info-history-forward): New fun.
25090 (Info-mode-map): Replace Info-last by Info-history-back.
25091 Bind Info-history-forward to "r".
25092 (Info-mode-menu): Replace Info-last by Info-history-back.
25093 Fix menu item text. Add menu item for Info-history-forward.
25094 (info-tool-bar-map): Replace Info-last by Info-history-back.
25095 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
25096 for Info-history-forward.
25097 (Info-mode): Replace Info-last by Info-history-back in docstring.
25098 Add local variable Info-history-forward.
25099 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
25100
25101 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
25102
25103 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
25104 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
25105 Ignore select-window events rather than fiddle with
25106 mouse-autoselect-window.
25107
25108 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
25109
25110 * type-break.el (type-break-mode): Fix previous change.
25111
25112 2005-01-10 Jay Belanger <belanger@truman.edu>
25113
25114 * calc/calc-ext.el (calc-reset): Reset when inside embedded
25115 calculator; only reset when point is inside a calculator.
25116 Don't adjust the window height if the window takes up the whole height
25117 of the frame.
25118
25119 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
25120
25121 * ebuff-menu.el (Electric-buffer-menu-mode):
25122 Preserve value of buffer-local var header-line-format.
25123
25124 2005-01-09 Jay Belanger <belanger@truman.edu>
25125
25126 * calc/calc.el (calc-mode-var-list-restore-saved-values):
25127 Make sure settings file exists before accessing it.
25128
25129 * calc/calc-embed.el (calc-embedded-subst):
25130 Replace math-multi-subst-rec, which is only supposed to be called
25131 by math-multi-subst, by math-multi-subst.
25132
25133 2005-01-09 Andre Spiegel <spiegel@gnu.org>
25134
25135 * vc.el (vc-allow-async-revert): New user option.
25136 (vc-disable-async-diff): New internal variable.
25137 (vc-revert-buffer): Use them to disable asynchronous diff.
25138
25139 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
25140 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
25141 asynchronously if vc-disable-async-diff is t.
25142
25143 2005-01-09 Jay Belanger <belanger@truman.edu>
25144
25145 * calc/calc.el (defcalcmodevar): New macro.
25146 (calc-mode-var-list-restore-default-values)
25147 (calc-mode-var-list-restore-saved-values): New functions.
25148 (calc-mode-var-list): Use defcalcmodevar to define it.
25149 (calc-always-load-extensions, calc-line-numbering)
25150 (calc-line-breaking, calc-display-just, calc-display-origin)
25151 (calc-number-radix, calc-leading-zeros, calc-group-digits)
25152 (calc-group-char, calc-point-char, calc-frac-format)
25153 (calc-prefer-frac, calc-hms-format, calc-date-format)
25154 (calc-float-format, calc-full-float-format, calc-complex-format)
25155 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
25156 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
25157 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
25158 (calc-matrix-brackets, calc-language, calc-language-option)
25159 (calc-left-label, calc-right-label, calc-word-size)
25160 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
25161 (calc-display-raw, calc-internal-prec, calc-angle-mode)
25162 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
25163 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
25164 (calc-window-height, calc-display-trail, calc-show-selections)
25165 (calc-use-selections, calc-assoc-selections)
25166 (calc-display-working-message, calc-auto-why, calc-timing)
25167 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
25168 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
25169 (calc-gnuplot-default-device, calc-gnuplot-default-output)
25170 (calc-gnuplot-print-device, calc-gnuplot-print-output)
25171 (calc-gnuplot-geometry, calc-graph-default-resolution)
25172 (calc-graph-default-resolution-3d, calc-invocation-macro)
25173 (calc-show-banner): Use defcalcmodevar to declare them and set
25174 their default values.
25175
25176 * calc/calc-ext.el (calc-reset): Restore saved values of variables
25177 instead of default values (but restore default values if there is
25178 an argument of 0).
25179
25180 2005-01-09 David Kastrup <dak@gnu.org>
25181
25182 * desktop.el (desktop-restore-eager): Fix typo in type.
25183
25184 2005-01-08 Richard M. Stallman <rms@gnu.org>
25185
25186 * cus-edit.el (customize): Delete :link.
25187
25188 2005-01-08 Jay Belanger <belanger@truman.edu>
25189
25190 * calc/calc.el (calc-mode): Remove the extension from the
25191 `calc-settings-file' file name when loading it.
25192
25193 2005-01-08 Kim F. Storm <storm@cua.dk>
25194
25195 * info.el (Info-mode-map, Info-next-link-keymap)
25196 (Info-prev-link-keymap, Info-up-link-keymap):
25197 Map follow-link to mouse-face.
25198 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
25199
25200 2005-01-08 Jay Belanger <belanger@truman.edu>
25201
25202 * calc/calc.el (calc-settings-file): Change default value.
25203 Suggested by cgw in a comment in calc-mode.el.
25204
25205 * calc/calc-mode.el (calc-settings-file-name):
25206 Compare calc-settings-file to user-init-file instead of ~/.emacs.
25207 Replace ~/.emacs in a prompt by calc-settings-file.
25208
25209 2005-01-07 Lars Hansen <larsh@math.ku.dk>
25210
25211 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
25212 (desktop-lazy-idle-delay): New customizable variables.
25213 (desktop-buffer-args-list): New variable.
25214 (desktop-append-buffer-args): New function.
25215 (desktop-save): Call desktop-append-buffer-args for some buffers.
25216 (desktop-lazy-create-buffer): New function.
25217 (desktop-idle-create-buffers): New function.
25218 (desktop-read): Add message about buffers to restore lazily.
25219 (desktop-lazy-abort): New command.
25220 (desktop-clear): Call desktop-lazy-abort.
25221 (desktop-lazy-complete): New command.
25222
25223 2005-01-06 Richard M. Stallman <rms@gnu.org>
25224
25225 * emacs-lisp/find-func.el (find-face-definition):
25226 Rename from find-face.
25227
25228 2005-01-06 Kim F. Storm <storm@cua.dk>
25229
25230 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
25231
25232 * man.el (Man-xref-man-page, Man-xref-header-file)
25233 (Man-xref-normal-file): Add follow-link property.
25234
25235 2005-01-06 Jay Belanger <belanger@truman.edu>
25236
25237 * calc/calc-units.el: Make sure the proper macro definitions are
25238 available when compiling.
25239
25240 2005-01-06 Juri Linkov <juri@jurta.org>
25241
25242 * isearch.el (isearch-lazy-highlight-update):
25243 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
25244
25245 2005-01-06 Miles Bader <miles@gnu.org>
25246
25247 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
25248 (isearch-lazy-highlight-face): Use new name.
25249
25250 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
25251
25252 * uniquify.el (uniquify-rationalize-file-buffer-names):
25253 Re-add an interactive spec.
25254 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
25255 to the same name.
25256
25257 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
25258 (isearch-update, isearch-done): Adjust calls accordingly.
25259
25260 2005-01-05 Richard M. Stallman <rms@gnu.org>
25261
25262 * custom.el (custom-set-variables, custom-theme-set-variables):
25263 Clarify documentation.
25264
25265 * emacs-lisp/find-func.el (find-variable)
25266 (find-variable-other-window, find-variable-other-frame):
25267 Fix the TYPE args to find-function-read and find-function-do-it.
25268 (find-function): Doc fix.
25269 (find-function-at-point): Replace function-at-point alias.
25270
25271 2005-01-04 Richard M. Stallman <rms@gnu.org>
25272
25273 * cus-face.el (custom-declare-face):
25274 Record defface in current-load-list.
25275
25276 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
25277
25278 * emacs-lisp/find-func.el: Doc fixes.
25279 (find-face-regexp): New variable.
25280 (find-function-regexp-alist): New variable.
25281 (find-function-C-source): Third arg is now TYPE.
25282 (find-function-search-for-symbol): Handle general TYPE.
25283 (find-function-read, find-function-do-it): Handle general TYPE.
25284 (find-definition-noselect, find-face): New functions.
25285 (function-at-point): Alias deleted.
25286
25287 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
25288
25289 * battery.el (display-battery-mode): Rename from display-battery.
25290 Handle the case where it gets turned off.
25291
25292 2005-01-04 Richard M. Stallman <rms@gnu.org>
25293
25294 * cus-edit.el (customize): Make :link point to user doc.
25295
25296 * man.el (Man-fontify-manpage): Turn off undo generation.
25297
25298 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
25299
25300 2005-01-04 Andreas Schwab <schwab@suse.de>
25301
25302 * files.el (insert-directory): Only look for error lines in
25303 inserted text. Don't move too far after processing --dired markers.
25304
25305 2005-01-04 Richard M. Stallman <rms@gnu.org>
25306
25307 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
25308 Don't expand if the character is @, period, dash, etc.
25309 (define-mail-abbrev): Quote names that contain problem characters.
25310
25311 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
25312
25313 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
25314
25315 2005-01-03 Richard M. Stallman <rms@gnu.org>
25316
25317 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
25318 (query-replace-highlight, query-replace-lazy-highlight)
25319 (query-replace): Definitions moved up. Doc fix.
25320
25321 2005-01-03 Richard M. Stallman <rms@gnu.org>
25322
25323 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
25324 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
25325 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
25326 (lazy-highlight-face): Rename from isearch-lazy-...
25327 Change all references to them.
25328
25329 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
25330
25331 * cus-edit.el (custom-file): Doc fix for defcustom.
25332 (custom-file): The function no longer sets the variable
25333 `custom-file' to its return value.
25334
25335 * startup.el (command-line): No longer load `custom-file'.
25336
25337 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
25338
25339 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
25340
25341 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
25342 Don't confuse module-prefixed identifiers for labels.
25343 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
25344
25345 2005-01-02 Richard M. Stallman <rms@gnu.org>
25346
25347 * files.el (basic-save-buffer-1): Fix previous change.
25348
25349 * loadhist.el (file-loadhist-lookup): New function.
25350 (file-provides, file-requires): Use it.
25351
25352 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
25353 instead of calculating the right size.
25354
25355 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
25356
25357 * vc-svn.el (vc-svn-diff): Stay local if possible.
25358
25359 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
25360
25361 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
25362
25363 * files.el (hack-local-variables): Fix last change.
25364
25365 2005-01-02 Jay Belanger <belanger@truman.edu>
25366
25367 * calc/calc-yank.el (calc-edit-top): New variable.
25368 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
25369 object. Change header properties.
25370 (calc-edit-finish, calc-edit-finish-stack-object)
25371 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
25372 edited object.
25373 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
25374 for the beginning of the edited object.
25375 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
25376 for the beginning of the edited object.
25377 * calc/calc-prog.el (calc-edit-macro-finish-edit)
25378 (calc-finish-formula-edit, calc-macro-repeats)
25379 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
25380 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
25381 beginning of the edited object.
25382 (calc-user-define-edit): Change the header for editing macros.
25383 Remove unnecessary variable.
25384
25385 2005-01-01 Jay Belanger <belanger@truman.edu>
25386
25387 * calc/calc-yank.el (calc-edit-mode): Change default header.
25388 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
25389 * calc/calc-store.el (calc-edit-variable): Change title to match new
25390 header.
25391 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
25392 mode to match new header.
25393 (calc-user-define-edit): Change titles to include names of commands.
25394 (calc-finish-formula-edit): Adjust to handle new header.
25395 (calc-finish-macro-edit): Remove.
25396 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
25397 (calc-edit-macro-command, calc-edit-macro-command-type)
25398 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
25399 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
25400 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
25401 (calc-edit-macro-finish-edit): New functions.
25402 (calc-user-define-edit): Use new functions to edit named calc macros.
25403
25404 2005-01-01 Stefan <monnier@iro.umontreal.ca>
25405
25406 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
25407
25408 * ses.el (copy-region-as-kill): Deactivate mark.
25409
25410 2005-01-01 Richard M. Stallman <rms@gnu.org>
25411
25412 * replace.el (occur-1): If the output buffer is also an input,
25413 don't kill it, rename it.
25414
25415 * faces.el (set-face-background, set-face-foreground): Doc fix.
25416
25417 * cus-face.el (custom-face-attributes): Fix :help-echo strings
25418 for :foreground and :background.
25419
25420 * dired.el (dired-view-command-alist): Variable deleted.
25421 (dired-view-file, dired-mouse-find-file-other-window):
25422 Delete the code to use it.
25423
25424 2005-01-01 Kim F. Storm <storm@cua.dk>
25425
25426 * image.el (insert-sliced-image): Use t for line-height property.
25427
25428 See ChangeLog.11 for earlier changes.
25429
25430 ;; Local Variables:
25431 ;; coding: iso-2022-7bit
25432 ;; End:
25433
25434 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
25435 Copying and distribution of this file, with or without modification,
25436 are permitted provided the copyright notice and this notice are preserved.
25437
25438 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1