* longlines.el (longlines-mode): Add mail-setup-hook.
[bpt/emacs.git] / lisp / ChangeLog
1 2005-11-30 Kim F. Storm <storm@cua.dk>
2
3 * apropos.el (apropos-parse-pattern): Doc fix.
4 Set apropos-regexp directly, rather than expecting callers to do so.
5 (apropos-command, apropos, apropos-value, apropos-documentation):
6 Simplify calls to apropos-parse-pattern.
7
8 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
9
10 * hi-lock.el (hi-lock-line-face-buffer, hi-lock-face-buffer)
11 (hi-lock-face-phrase-buffer): Use hi-yellow face.
12 (hi-lock-write-interactive-patterns): Use comment-region.
13
14 * longlines.el (longlines-mode): Add mail-setup-hook.
15
16 * mail/mailheader.el, mail/sendmail.el: Revert 2005-11-17 changes.
17
18 * simple.el (sendmail-user-agent-compose, next-line):
19 Conditionally use hard-newline.
20
21 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
22
23 * international/latexenc.el (latex-inputenc-coding-alist): Reword
24 doc string.
25
26 2005-11-29 Chong Yidong <cyd@stupidchicken.com>
27
28 * help.el (describe-key-briefly, describe-key): Recognize default
29 bindings.
30
31 2005-11-29 Romain Francoise <romain@orebokech.com>
32
33 * view.el (view-inhibit-help-message): New defcustom.
34 (view-mode-enter): Use it.
35
36 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu>
37
38 * ediff-wind (ediff-setup-control-frame, ediff-make-wide-display):
39 preserve user position.
40
41 2005-11-28 Luc Teirlinck <teirllm@auburn.edu>
42
43 * font-lock.el: Throw error if facemenu is not loaded to prevent
44 accidental change of loading order in loadup.el. (Suggested by RMS.)
45
46 * loadup.el: Add comment explaining why facemenu must be loaded
47 before font-lock.
48
49 2005-11-28 Jay Belanger <belanger@truman.edu>
50
51 * calc/calc.el: Change global keybinding for calc-dispatch to "\C-x*".
52 (calc-dispatch-map): Add more keys for `calc-same-interface'.
53
54 * calc/calc-misc.el (calc-dispatch-help): Update docstring.
55
56 * calc/calc-embed.el (calc-do-embedded): Update help message.
57
58 * calc/calc-prog.el (calc-user-define-invokation): Update help message.
59
60 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
61
62 * log-edit.el (log-edit-insert-cvs-rcstemplate): Ignore stderr.
63
64 * emacs-lisp/elp.el (elp-not-profilable): Replace interactive-p with
65 called-interactively-p.
66 (elp-profilable-p): Rename from elp-not-profilable-p.
67 Invert result and take into account macros and autoloaded functions.
68 (elp-instrument-function): Update call.
69 (elp-instrument-package): Update call. Add completion.
70 (elp-pack-number): Use match-string.
71 (elp-results-jump-to-definition-by-mouse): Merge into
72 elp-results-jump-to-definition and then remove.
73 (elp-output-insert-symname): Make help echo text single-line.
74
75 * replace.el (query-replace-map): Move initialization into declaration.
76 (occur-engine): Use with-current-buffer.
77 (occur-mode-goto-occurrence): Make it work for mouse-clicks as well.
78 (occur-mode-mouse-goto): Replace with an alias.
79
80 2005-11-28 Juri Linkov <juri@jurta.org>
81
82 * simple.el (quoted-insert): Let-bind input-method-function to nil.
83
84 * term/w32-win.el: Bind [S-tab] to [backtab].
85
86 * info.el (Info-fontify-node): Set 2nd arg `noerror' of
87 `Info-find-file' to t.
88
89 * replace.el (occur-mode-mouse-goto): Pop, don't switch.
90 (occur-mode-goto-occurrence): Let-bind same-window-buffer-names
91 and same-window-regexps.
92 (occur-next-error): Don't move point for arg 0.
93
94 2005-11-28 Chong Yidong <cyd@stupidchicken.com>
95
96 * replace.el (occur-mode-goto-occurrence): Pop, don't switch.
97
98 2005-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
99
100 * log-edit.el (log-edit-changelog-use-first): New var.
101 (log-edit-changelog-ours-p): Use it.
102 (log-edit-insert-changelog): Set it with new arg `use-first'.
103 (log-edit-insert-cvs-rcstemplate, log-edit-insert-filenames): New funs.
104 (log-edit-hook): Add them to the list of suggested options.
105
106 * textmodes/flyspell.el (flyspell-last-buffer): New var.
107 (flyspell-accept-buffer-local-defs): Use it to avoid doing silly
108 redundant work.
109 (flyspell-mode-on): Use add-hook for after-change-functions.
110 (flyspell-mode-off): Use remove-hook for after-change-functions.
111 (flyspell-changes): Make it buffer-local.
112 (flyspell-after-change-function): Make it non-interactive. Use push.
113 (flyspell-post-command-hook): Check input-pending-p while processing
114 the potentially long list of buffer changes.
115
116 2005-11-28 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
117
118 * buff-menu.el (list-buffers-noselect): Display the selected
119 frame's buffer list, not the global one.
120
121 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
122
123 * xt-mouse.el (xterm-mouse-event): Set last-input-event so
124 that (list last-input-event) works as in interactive spec.
125
126 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
127
128 * loadup.el ("facemenu"): Load facemenu before font-lock, because
129 `facemenu-keymap' needs to be defined when font-lock is loaded.
130 Otherwise, `M-o M-o' is not bound to `font-lock-fontify-block'.
131
132 2005-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
133
134 * completion.el: Remove useless leading * in defcustom docstrings.
135 (save-completions-file-name): Use ~/.emacs.d if available.
136 (completion-standard-syntax-table): Rename from
137 cmpl-standard-syntax-table and fold initialization into declaration,
138 thus removing cmpl-make-standard-completion-syntax-table.
139 (completion-lisp-syntax-table, completion-c-syntax-table)
140 (completion-fortran-syntax-table, completion-c-def-syntax-table): Idem.
141 (cmpl-saved-syntax, cmpl-saved-point): Remove.
142 (symbol-under-point, symbol-before-point)
143 (symbol-under-or-before-point, symbol-before-point-for-complete)
144 (add-completions-from-c-buffer): Use with-syntax-table.
145 (make-completion): Don't return a list of completion entries.
146 Update callers.
147 (cmpl-prefix-entry-head, cmpl-prefix-entry-tail): Use defalias.
148 (completion-initialize): Rename from initialize-completions.
149 (completion-find-file-hook): Rename from cmpl-find-file-hook.
150 (kill-emacs-save-completions): Collect stats here.
151 (save-completions-to-file, load-completions-from-file):
152 Use with-current-buffer.
153 (completion-def-wrapper): Rename from def-completion-wrapper. Make it
154 into a function. Move all calls to toplevel.
155 (completion-lisp-mode-hook): New fun.
156 (completion-c-mode-hook, completion-setup-fortran-mode):
157 Set the syntax-table here. Use local-set-key.
158 (completion-saved-bindings): New var.
159 (dynamic-completion-mode): Make it into a proper minor mode.
160 (load-completions-from-file): Remove unused var `num-uses'.
161
162 * emacs-lisp/cl-macs.el (defstruct): Don't define the default
163 constructor if it is explicitly overridden.
164
165 * complete.el (PC-completion-as-file-name-predicate):
166 Use minibuffer-completing-file-name.
167 (partial-completion-mode): Use find-file-not-found-functions.
168 (PC-lisp-complete-symbol): Use with-syntax-table.
169 (PC-look-for-include-file): Remove dead setq.
170 (PC-look-for-include-file, PC-expand-many-files, PC-do-completion)
171 (PC-complete): Use with-current-buffer.
172
173 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): \ doesn't
174 escape single quotes.
175
176 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
177
178 * dabbrev.el (dabbrev-completion): Simplify code, by getting rid
179 of `if' whose condition always returned nil. Doc fix.
180
181 * buff-menu.el (Buffer-menu-revert-function): Make the selected
182 window's buffer the current buffer around the call to
183 `list-buffers-noselect'. This is necessary to mark that buffer
184 with a `.' in the Buffer Menu when called from Lisp, for instance
185 by Auto Revert Mode.
186
187 2005-11-28 Nick Roberts <nickrob@snap.net.nz>
188
189 * progmodes/gdb-ui.el (gdb-stopped): Detect child process when
190 attaching to it.
191 (gdb-pre-prompt): Make sure gdb-error is reset.
192
193 * progmodes/gud.el (gud-gdb-marker-filter): When GDB is invoked
194 with a child process, detect it.
195 (gud-speedbar-buttons): Match regexp more carefully.
196
197 2005-11-27 Richard M. Stallman <rms@gnu.org>
198
199 * mouse.el (mouse-drag-move-window-bottom):
200 Use adjust-window-trailing-edge.
201
202 2005-11-27 Luc Teirlinck <teirllm@auburn.edu>
203
204 * simple.el (blink-matching-open): Ignore
205 `blink-matching-paren-on-screen' if `show-paren-mode' is enabled.
206 (blink-matching-paren-on-screen): Update docstring.
207
208 * paren.el (show-paren-mode): No longer change
209 `blink-matching-paren-on-screen'.
210
211 2005-11-27 John Paul Wallington <jpw@pobox.com>
212
213 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
214 (gdb-threads-select, gdb-edit-register-value):
215 Use `posn-set-point' instead of `mouse-set-point' because the
216 latter is not fbound when configured without X.
217
218 2005-11-27 Kim F. Storm <storm@cua.dk>
219
220 * emulation/cua-rect.el (cua--highlight-rectangle): Preserve
221 existing face when partially highlighting a TAB in a rectangle.
222
223 2005-11-26 Kim F. Storm <storm@cua.dk>
224
225 * ido.el (ido-mode-map): Doc fix.
226 (ido-mode-common-map, ido-mode-file-map)
227 (ido-mode-file-dir-map, ido-mode-buffer-map): New keymaps.
228 (ido-define-mode-map): Rewrite. Select one of the new maps as
229 parent for ido-mode-map instead of building from scratch.
230 (ido-init-mode-maps): New defun to initialize new maps.
231 (ido-mode): Call it.
232 (ido-switch-buffer): Doc fix -- use \<ido-mode-buffer-map>.
233 (ido-find-file): Doc fix -- use \<ido-mode-file-map>.
234
235 2005-11-26 John Paul Wallington <jpw@pobox.com>
236
237 * arc-mode.el (archive-extract): Use `posn-set-point' instead of
238 `mouse-set-point' because the latter is not fbound when configured
239 without X.
240
241 2005-11-26 Thien-Thi Nguyen <ttn@gnu.org>
242
243 * files.el (file-relative-name): Doc fix.
244
245 2005-11-26 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
246
247 * progmodes/octave-inf.el (inferior-octave-startup): Force a
248 non-empty string for secondary prompt PS2.
249
250 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
251
252 * progmodes/compile.el (compilation-setup): Fix last change.
253
254 2005-11-26 Nick Roberts <nickrob@snap.net.nz>
255
256 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
257 (gdb-mouse-toggle-breakpoint-margin)
258 (gdb-mouse-toggle-breakpoint-fringe, gdb-threads-select):
259 Add gdb-server-prefix to keep out of command history.
260 (gdb-edit-register-value): New function.
261 (gdb-registers-mode-map): Bind mouse-2 and RET to it.
262 (gdb-info-registers-custom): Use above map.
263
264 2005-11-25 Chong Yidong <cyd@stupidchicken.com>
265
266 * custom.el (enable-theme): Signal error if argument is not a
267 theme. Don't recalculate a face if it's not loaded yet.
268
269 * cus-face.el (custom-theme-set-faces): Don't change saved-face if
270 the `user' theme is in effect.
271
272 * info.el (Info-on-current-buffer): Record actual filename in
273 Info-current-file, instead of t, or a fake filename if a non-file
274 buffer. Make autoload.
275 (Info-find-node, Info-revert-find-node): No need to check for
276 Info-current-file nil.
277 (Info-set-mode-line, Info-up, Info-copy-current-node-name):
278 Info-current-file is now never `t'.
279 (Info-fontify-node): Many simplifications due to Info-current-file
280 always being valid. Use Info-find-file to find node filename.
281
282 2005-11-25 David Kastrup <dak@gnu.org>
283
284 * longlines.el (longlines-wrap-line): Reorder wrapping to "insert
285 new character, then delete" in order to preserve markers.
286
287 2005-11-25 David Ponce <david@dponce.com>
288
289 * recentf.el (recentf-arrange-by-rule): Handle a special
290 `auto-mode-alist'-like "strip suffix" rule.
291 (recentf-build-mode-rules): Handle second level auto-mode entries.
292
293 2005-11-25 Michael Kifer <kifer@cs.stonybrook.edu>
294
295 * viper-keym.el (viper-ESC-key): Use different values in terminal and
296 window modes.
297
298 * viper.el (viper-emacs-state-mode-list): Delete mail-mode, add
299 jde-javadoc-checker-report-mode.
300
301 * ediff-wind (ediff-make-wide-display): Slight simplification.
302
303 * ediff.el (ediff-date): Change the date of last update.
304
305 2005-11-24 Chong Yidong <cyd@stupidchicken.com>
306
307 * hi-lock.el (hi-lock-buffer-mode): Renamed from `hi-lock-mode'.
308 Use define-minor-mode, and make it a local mode. Turn on font-lock.
309 (hi-lock-mode): New global minor mode.
310 (turn-on-hi-lock-if-enabled): New function.
311 (hi-lock-line-face-buffer, hi-lock-face-buffer, hi-lock-set-pattern):
312 Change arguments to regexp and face instead of a font-lock pattern.
313 Directly set face property, instead of refontifying.
314 (hi-lock-font-lock-hook): Check if font-lock is being turned on.
315 (hi-lock-find-patterns): Use line-number-at-pos.
316
317 (hi-lock-face-phrase-buffer): Call hi-lock-buffer-mode. Use new
318 arguments for hi-lock-set-pattern.
319 (hi-lock-unface-buffer, hi-lock-set-file-patterns): Call
320 font-lock-fontify-buffer.
321 (hi-lock-find-file-hook, hi-lock-current-line)
322 (hi-lock-refontify, hi-lock-set-patterns): Delete unused functions.
323
324 (hi-lock-font-lock-hook): Turn off hi-lock when font lock is
325 turned off.
326
327 * progmodes/compile.el (compilation-setup): Don't fiddle with
328 font-lock-defaults.
329
330 2005-11-25 Nick Roberts <nickrob@snap.net.nz>
331
332 * progmodes/gdb-ui.el (gdb-var-create-handler)
333 (gdb-var-list-children-handler): Find values for all variable
334 objects. gud-speedbar-buttons decides whether to display them.
335
336 2005-11-24 Romain Francoise <romain@orebokech.com>
337
338 * info.el (Info-speedbar-fetch-file-nodes): Prefix temporary
339 buffer name with a space.
340
341 2005-11-24 Carsten Dominik <dominik@science.uva.nl>
342
343 * textmodes/org.el: (org-export-plain-list-max-depth): Renamed from
344 `org-export-local-list-max-depth'. Change default value to 3.
345 (org-auto-renumber-ordered-lists)
346 (org-plain-list-ordered-item-terminator): New options.
347 (org-at-item-p, org-beginning-of-item, org-end-of-item)
348 (org-get-indentation, org-get-string-indentation)
349 (org-maybe-renumber-ordered-list, org-renumber-ordered-list): New
350 functions.
351 (org-move-item-down, org-move-item-up): New commands.
352 (org-export-as-html): New classes for CSS support. Bug fix in
353 regular expression detecting fixed-width regions. Respect
354 `org-local-list-ordered-item-terminator'.
355 (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
356 also a list item.
357 (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
358 New item moving functions.
359
360 2005-11-24 Juri Linkov <juri@jurta.org>
361
362 * isearch.el (isearch-repeat): With empty search ring set
363 `isearch-error' to the error string instead of signaling error
364 with the function `error'.
365
366 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
367
368 * term/mac-win.el: Make modifier `ctrl' an alias for `control'.
369
370 2005-11-24 Nick Roberts <nickrob@snap.net.nz>
371
372 * progmodes/gdb-ui.el (gdb-speedbar-auto-raise): New function
373 and variable.
374 (gdb-var-create-handler, gdb-var-list-children-handler):
375 Don't match on "char **...".
376 (gdb-var-update-handler): Find values for all variable objects.
377 (gdb-info-frames-custom): Identify frames by leading "#".
378
379 * progmodes/gud.el (gud-speedbar-menu-items): Add
380 gdb-speedbar-auto-raise as radio button.
381 (gud-speedbar-buttons): Raise speedbar if requested.
382 Don't match on "char **...".
383 (gud-speedbar-buttons): Add (pointer) value for non-leaves.
384 Make it editable.
385
386 2005-11-23 Chong Yidong <cyd@stupidchicken.com>
387
388 * info.el (Info-fontify-node): Handle the case where
389 Info-current-file is t.
390
391 2005-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
392
393 * simple.el (blink-matching-open): Fix off-by-one in last change.
394
395 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
396
397 * term/mac-win.el: Don't change default directory.
398
399 2005-11-22 Luc Teirlinck <teirllm@auburn.edu>
400
401 * cus-edit.el (Custom-reset-standard): Make it handle Custom group
402 buffers correctly. (It used to throw an error in such buffers.)
403 Make it ask for confirmation in group buffers and other Custom
404 buffers containing more than one customization item.
405
406 2005-11-22 John Paul Wallington <jpw@gnu.org>
407
408 * net/goto-addr.el (goto-address-fontify): Put `follow-link'
409 property on mail and url overlays.
410 (goto-address-at-point): Use `posn-set-point' instead of
411 `mouse-set-point' because the latter is not fbound when configured
412 without X.
413
414 2005-11-22 Lars Hansen <larsh@soem.dk>
415
416 * ls-lisp.el (ls-lisp-parse-symlink): Delete.
417 (ls-lisp-classify, ls-lisp-format): Delete call to
418 ls-lisp-parse-symlink.
419 (ls-lisp-handle-switches): Handle symlinks to directories as
420 directories when ls-lisp-dirs-first in non-nil.
421
422 2005-11-21 Luc Teirlinck <teirllm@auburn.edu>
423
424 * startup.el (command-line): Make sure that loaddefs.el is handled
425 correctly in load-history.
426
427 2005-11-22 Nick Roberts <nickrob@snap.net.nz>
428
429 * progmodes/gdb-ui.el (gdb-locals-watch-keymap): New local map.
430 (gdb-struct-string, gdb-array-string): New constants.
431 (gdb-info-locals-handler): Use them.
432 (gdb-reset): Reset gdb-var-list to nil.
433
434 2005-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
435
436 * progmodes/sh-script.el (sh-font-lock-paren): Handle continued lines
437 in patterns.
438
439 2005-11-21 Juri Linkov <juri@jurta.org>
440
441 * custom.el (defcustom): Update link types in docstring.
442
443 2005-11-20 Martin Rudalics <rudalics@gmx.at> (tiny change)
444
445 * custom.el (defgroup): Add doc-string-elt info.
446
447 * widget.el (define-widget): Don't use declare for the doc-string-elt.
448
449 2005-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
450
451 * newcomment.el (comment-enter-backward): Fix last fix.
452
453 * simple.el (blink-matching-open):
454 * paren.el (show-paren-function): Allow new paren-class info.
455
456 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
457
458 * faces.el: Revert 2005-11-17 change. :ignore-defface is now
459 handled automagically.
460
461 2005-11-20 Andreas Schwab <schwab@suse.de>
462
463 * descr-text.el (describe-char): When copying overlays put them
464 over the full char description instead of just the first character
465 of it.
466
467 2005-11-20 Juri Linkov <juri@jurta.org>
468
469 * simple.el (what-cursor-position):
470 * descr-text.el (describe-char): Use Lisp-readable syntax
471 for octal and hex. Reorder decimal, octal and hex values.
472 Remove excess whitespace in the output. Use `=' in `column='
473 like in `point=' and `Hscroll='.
474
475 * international/mule-cmds.el (encoded-string-description):
476 Use Lisp-readable syntax for hex.
477
478 2005-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
479
480 * newcomment.el (comment-enter-backward): Handle the case where the
481 comment is closed by EOB.
482
483 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
484
485 * longlines.el (longlines-before-revert-hook)
486 (longlines-after-revert-hook): New functions.
487 (longlines-mode): Turn off longlines temporarily when reverting.
488 Add a message-setup-hook.
489 (longlines-decode-buffer): New function.
490 (longlines-wrap-line): Preserve marker positions.
491
492 2005-11-19 Andreas Schwab <schwab@suse.de>
493
494 * emacs-lisp/shadow.el: Handle compressed files.
495
496 2005-11-19 Romain Francoise <romain@orebokech.com>
497
498 * net/browse-url.el (browse-url-default-browser): Signal an error
499 if no usable browser can be found, rather than try to load w3.
500
501 2005-11-16 Ryan Yeske <rcyeske@gmail.com>
502
503 * net/rcirc.el (rcirc-mangle-text): Add bold face property without
504 replacing existing properties.
505 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
506 (rcirc-nick-in-message, rcirc-prompt): Use min-colors and remove
507 tty specs.
508 (rcirc-server-prefix, rcirc-server): New faces.
509 (rcirc-url-regexp): Generate with rx macro.
510 (rcirc-last-server-message-time): New variable.
511 (rcirc-filter): Record time of last message.
512 (rcirc-keepalive): Kill processes that did not send a message
513 since the last ping.
514 (rcirc-mode): Give rcirc-topic a local binding here.
515
516 2005-11-19 Michael Cadilhac <michael.cadilhac@lrde.org> (tiny change)
517
518 * subr.el (read-passwd): Fontify the prompt as we do with other
519 prompts.
520
521 2005-11-19 Ryan Yeske <rcyeske@gmail.com>
522
523 * ffap.el (ffap-menu-rescan): Use inhibit-read-only instead of
524 binding buffer-read-only to nil.
525
526 2005-11-19 Eli Zaretskii <eliz@gnu.org>
527
528 * complete.el (partial-completion-mode):
529 Mention completion-auto-help in the doc string.
530
531 * man.el (Man-highlight-references): Doc fix. Reformat code in a
532 more Lisp-ish way.
533
534 2005-11-19 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> (tiny change)
535
536 * ls-lisp.el (ls-lisp-format-file-size): Format file size with 9
537 digits, not 8, to avoid misalignment for files larger than 100MB.
538
539 2005-11-19 Eli Zaretskii <eliz@gnu.org>
540
541 * menu-bar.el (menu-bar-describe-menu) <list-keybindings>:
542 Mention "keyboard shortcuts" in the help text.
543
544 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
545
546 * startup.el (fancy-splash-default-action): Discard only
547 mouse-down and succeeding mouse-up events in the splash screen
548 window so that drag-n-drop event can be processed.
549
550 2005-11-18 Chong Yidong <cyd@stupidchicken.com>
551
552 * longlines.el (longlines-mode): Add hacks for mail-mode and
553 message-mode.
554
555 2005-11-18 Carsten Dominik <dominik@science.uva.nl>
556
557 * textmodes/org.el: (org-table-sort-lines): New command.
558 (org-tbl-menu): Add entry for `org-table-sort-lines'.
559 (org-add-file): Command removed, use `org-agenda-file-to-front'
560 instead.
561 (org-export-icalendar): Use `org-icalendar-combined-name'.
562 (org-cycle-agenda-files, org-agenda-file-to-end)
563 (org-agenda-file-to-front): New commands.
564 (org-table-tab-jumps-over-hlines,org-export-html-style): New
565 options.
566 (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
567 (org-at-table.el-p, org-set-autofill-regexps,org-html-protect):
568 New functions.
569 (org-fill-paragraph): Call `org-table-align' in tables.
570 (org-mode): Call `org-set-autofill-regexps'.
571 (org-export-as-html): Support for local handformatted lists.
572 Modified to produce valid HTML 4.0. Use `org-export-html-style'.
573 (org-export-local-list-max-depth): New option.
574 (org-html-expand): Use `org-html-protect'.
575
576 2005-11-18 Nick Roberts <nickrob@snap.net.nz>
577
578 * progmodes/gud.el (gud-install-speedbar-variables): Bind gud-pp
579 to "p".
580 (gdb): Move definition of gud-pp to...
581
582 * progmodes/gdb-ui.el (gdb-ann3): ...here. Make it work in the
583 speedbar.
584 (gdb-find-watch-expression): New function.
585
586 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
587
588 * faces.el (face-attribute, set-face-attribute): Mention existence
589 of `:ignore-defface' setting in docstring.
590
591 2005-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
592
593 * simple.el (completion-setup-function): Fix last change.
594
595 2005-11-17 John Paul Wallington <jpw@pobox.com>
596
597 * ibuf-ext.el (ibuffer-interactive-filter-by-mode):
598 Use `posn-set-point' instead of `mouse-set-point' because the
599 latter is not fbound when configured without X.
600
601 * comint.el (comint-insert-input): Likewise.
602
603 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
604
605 * simple.el (hard-newline): New variable.
606 (sendmail-user-agent-compose, next-line): Use it.
607
608 * mail/sendmail.el (mail-setup, mail-send, mail-insert-from-field)
609 (sendmail-send-it, mail-do-fcc, mail-cc, mail-bcc, mail-fcc)
610 (mail-mail-reply-to, mail-mail-followup-to)
611 (mail-position-on-field, mail-signature, mail-yank-original)
612 (mail-attach-file): Likewise.
613
614 * mail/mailheader.el (mail-header-format)
615 (mail-header-format-function): Likewise.
616
617 * add-log.el (add-change-log-entry, change-log-merge): Likewise.
618
619 2005-11-17 Juri Linkov <juri@jurta.org>
620
621 * font-lock.el (font-lock-faces): Rename this defgroup from
622 `font-lock-highlighting-faces'.
623 (font-lock-comment-face, font-lock-comment-delimiter-face)
624 (font-lock-string-face, font-lock-doc-face)
625 (font-lock-keyword-face, font-lock-builtin-face)
626 (font-lock-function-name-face, font-lock-variable-name-face)
627 (font-lock-type-face, font-lock-constant-face)
628 (font-lock-warning-face, font-lock-negation-char-face)
629 (font-lock-preprocessor-face)
630 (font-lock-regexp-grouping-backslash)
631 (font-lock-regexp-grouping-construct): Rename :group from
632 `font-lock-highlighting-faces' to `font-lock-faces'.
633
634 * cus-edit.el (lisp, c, tex):
635 * progmodes/ada-mode.el (ada):
636 * progmodes/asm-mode.el (asm):
637 * progmodes/cperl-mode.el (cperl-faces):
638 * progmodes/cpp.el (cpp):
639 * progmodes/dcl-mode.el (dcl):
640 * progmodes/f90.el (f90):
641 * progmodes/fortran.el (fortran):
642 * progmodes/icon.el (icon):
643 * progmodes/idlwave.el (idlwave-misc):
644 * progmodes/m4-mode.el (m4):
645 * progmodes/make-mode.el (makefile):
646 * progmodes/meta-mode.el (meta-font):
647 * progmodes/modula2.el (modula2):
648 * progmodes/octave-mod.el (octave):
649 * progmodes/pascal.el (pascal):
650 * progmodes/perl-mode.el (perl):
651 * progmodes/prolog.el (prolog):
652 * progmodes/ps-mode.el (PostScript-edit):
653 * progmodes/scheme.el (scheme):
654 * progmodes/sh-script.el (sh-script):
655 * progmodes/simula.el (simula):
656 * progmodes/tcl.el (tcl):
657 * textmodes/nroff-mode.el (nroff):
658 * textmodes/reftex-vars.el (reftex-fontification-configurations):
659 * textmodes/sgml-mode.el (sgml):
660 * textmodes/texinfo.el (texinfo):
661 Add :link (custom-group-link font-lock-faces) to defgroup.
662
663 * hi-lock.el (hi-lock): Rename this defgroup from
664 `hi-lock-interactive-text-highlighting'. Change parent group from
665 `faces' to `font-lock'. Add link to the manual.
666 (hi-lock-mode, hi-lock-file-patterns-range)
667 (hi-lock-exclude-modes, hi-lock-faces): Rename :group from
668 `hi-lock-interactive-text-highlighting' to `hi-lock'.
669 (hi-lock-faces): Add :group `faces'.
670
671 * cus-edit.el (custom-variable-prompt): Clarify the code.
672
673 * faces.el (face-read-string): Set the default value arg of
674 completing-read.
675
676 2005-11-16 Luc Teirlinck <teirllm@auburn.edu>
677
678 * rfn-eshadow.el (file-name-shadow-properties)
679 (file-name-shadow-tty-properties, file-name-shadow-mode):
680 Remove autoloads, because the file is now preloaded.
681
682 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
683
684 * printing.el (easy-menu-intern): Don't define.
685 (pr-get-symbol): Use easy-menu-intern only if defined.
686
687 * simple.el (blink-matching-open): Simplify a bit.
688 (completion-setup-function): Fix the case of partial-completion-mode
689 when the minibuffer's contents start with "-".
690 Obey completion-base-size-function even when
691 minibuffer-completing-file-name is non-nil.
692
693 2005-11-16 Richard M. Stallman <rms@gnu.org>
694
695 * net/eudcb-ph.el (eudc-ph-open-session):
696 Use set-process-query-on-exit-flag.
697
698 * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-contents.
699
700 * international/ucs-tables.el (ucs-set-table-for-input):
701 Use make-local-variable, not make-variable-buffer-local.
702
703 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
704 Improve warning message text.
705
706 * savehist.el (savehist-save-hook): Add :group.
707
708 * menu-bar.el (menu-bar-help-menu):
709 Rename Find Extra Packages to External Packages.
710
711 * cus-edit.el (Custom-reset-standard): Verify that
712 :custom-standard-value prop exists before calling it.
713
714 * apropos.el (apropos-calc-scores): Use apropos-pattern.
715
716 2005-11-16 Martin Rudalics <rudalics@gmx.at> (tiny change)
717
718 * wid-edit.el (color): Enclose %t in %{...%}.
719
720 * cus-edit.el (face): Enclose %t in %{...%}.
721
722 2005-11-16 Hrvoje Niksic <hniksic@xemacs.org>
723
724 * savehist.el (savehist-mode-hook): Re-add the var.
725 (savehist-mode): Use it.
726
727 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
728
729 * textmodes/flyspell.el: Fix commenting convention.
730 Remove unnecessary leading * in custom docstrings.
731 (flyspell-emacs): Remove unused var.
732 (flyspell-delete-region-overlays): Use remove-overlays.
733 (flyspell-accept-buffer-local-defs): Use save-current-buffer.
734 (flyspell-debug-signal-no-check, flyspell-debug-signal-changed-checked)
735 (flyspell-debug-signal-pre-word-checked, flyspell-post-command-hook)
736 (flyspell-debug-signal-word-checked): Use with-current-buffer.
737 (make-flyspell-overlay): Don't locally reuse a global name.
738 (flyspell-highlight-incorrect-region)
739 (flyspell-highlight-duplicate-region): Use flyspell-unhighlight-at.
740 (flyspell-check-previous-highlighted-word): Use flyspell-overlay-p.
741 (flyspell-notify-misspell): Remove unused args `start' and `end'.
742 (flyspell-word): Adjust call accordingly. Use ispell-send-string.
743 Wrap calls to accept-process-output inside with-local-quit since it's
744 often called from a post-command-hook.
745 (flyspell-correct-word, flyspell-auto-correct-word):
746 Use ispell-send-string.
747 (flyspell-xemacs-popup): Remove unused arg `event'. Update call.
748
749 * calendar/diary-lib.el (diary-list-entries): Also hide the
750 terminating newline.
751
752 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
753
754 * textmodes/reftex.el (reftex-use-fonts): Remove the check for
755 window-system, to allow fonts on tty.
756
757 2005-11-17 Nick Roberts <nickrob@snap.net.nz>
758
759 * progmodes/gud.el (gud-speedbar-item-info): New function.
760 (gud-install-speedbar-variables): Use it to display data type
761 of watch expression as a tooltip in speedbar.
762
763 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
764
765 * font-core.el (global-font-lock-mode): Add :version keyword,
766 because default was changed.
767
768 * jka-cmpr-hook.el (auto-compression-mode): Ditto.
769
770 * startup.el (command-line): Use `custom-reevaluate-setting' for
771 `file-name-shadow-mode'.
772
773 * loadup.el: Preload rfn-eshadow.
774
775 * rfn-eshadow.el (file-name-shadow-mode): Set :init-value to t.
776 Add :version keyword.
777 (file-name-shadow-properties, file-name-shadow-tty-properties)
778 (file-name-shadow): Add :version keyword.
779
780 * cus-edit.el (custom-add-parent-links): Fix bug whereby, for
781 instance, `(fringe custom-face)' shadowed `(fringe custom-group)'
782 in the custom-group property of the symbol frames and the fringe
783 group got no link to its parent group frames.
784 Doc fix.
785
786 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
787
788 * progmodes/gud.el (gud-stop-subjob): New function.
789 (gud-menu-map, gud-tool-bar-map): Use it.
790
791 2005-11-16 Kim F. Storm <storm@cua.dk>
792
793 * progmodes/gud.el (gud-menu-map): Let [stop] stop program rather
794 than kill it.
795 (gud-tool-bar-map): Likewise. Move cont/until/finish buttons
796 to a more useful/logical place.
797
798 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
799
800 * progmodes/gud.el (gud-menu-map): Make visibility of stop and
801 go buttons complementary.
802
803 2005-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
804
805 * rfn-eshadow.el (rfn-eshadow-regexp): Remove.
806 (rfn-eshadow-sifn-equal): New function.
807 (rfn-eshadow-update-overlay): Rewrite to use substitute-in-file-name.
808
809 2005-11-15 Michael Kifer <kifer@cs.stonybrook.edu>
810
811 * viper-utils (viper-non-word-characters-reformed-vi): Quote `-' in
812 string.
813
814 * viper.el (viper-emacs-state-mode-list): Ensure that
815 rcirc-mode buffers come up in Emacs state.
816
817 * ediff-util (ediff-make-temp-file): Use proper file-name-handler
818 operation.
819
820 2005-11-15 Dan Nicolaescu <dann@ics.uci.edu>
821
822 * term.el (term-termcap-format): Fix typos.
823 (term-down): Fix the negative argument case.
824
825 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
826
827 * progmodes/gdb-ui.el: Remove face-alias left over from change on
828 2005-08-15.
829 (gdb-ann3): New command gud-go.
830 (menu): Accomodate gdb-mi.el.
831 (gdb-assembler-custom): Make buffer of selected window current
832 so that set-window-point works.
833
834 * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Re-define
835 buttons and include new ones.
836
837 2005-11-16 Kim F. Storm <storm@cua.dk>
838
839 * progmodes/gud.el (gud-tool-bar-item-visible-no-fringe): New function.
840 (gud-menu-map): Use it.
841
842 2005-11-14 Luc Teirlinck <teirllm@auburn.edu>
843
844 * jka-cmpr-hook.el (auto-compression-mode): Enable it in a way
845 that works correctly for Custom and that does not override a user
846 who disables it.
847
848 * help-mode.el (help-make-xrefs, help-xref-on-pp)
849 (help-xref-interned, help-follow): Make hyperlinks for variables
850 that are unbound, but have a non-nil variable-documentation property.
851
852 * emacs-lisp/derived.el (define-derived-mode): Remove defvar for
853 mode hook. (It conflicted with defcustoms for some mode hooks.)
854 Use the `variable-documentation' property to give the mode hook a
855 docstring and expand that docstring.
856
857 2005-11-14 Hrvoje Niksic <hniksic@xemacs.org>
858
859 * savehist.el (savehist-mode): Don't bother with
860 `custom-set-minor-mode'.
861 (savehist-coding-system): Check XEmacs version.
862 (history-length): Declare also at run time.
863 (savehist-mode): Don't emit a message. Don't run the minor mode hook.
864 Don't set the customize state.
865 (savehist-minibuffer-hook): Special case for when
866 minibuffer-history-variable is equal to t.
867
868 2005-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
869
870 * files.el (write-file): Refresh VC status.
871
872 * calendar/diary-lib.el (diary-list-entries, diary-show-all-entries)
873 (mark-diary-entries, make-diary-entry): Check default-major-mode rather
874 than fundamental-mode to see if the mode was set.
875
876 2005-11-14 Romain Francoise <romain@orebokech.com>
877
878 * dired-x.el: If `vm-visit-folder' doesn't exist, define it as a
879 dummy function in `eval-when-compile' to avoid compiler warning.
880 Require `man' at compile time.
881
882 2005-11-14 Jay Belanger <belanger@truman.edu>
883
884 * calc-alg.el (calcFunc-write-out-power): Rename it to
885 calcFunc-powerexpand.
886 (math-write-out-power): Rename it to math-powerexpand; have it
887 handle negative exponents.
888 (calc-writeoutpower): Rename it to calc-powerexpand.
889
890 * calc-ext.el: Change calcFunc-writeoutpower and
891 calc-writeoutpower to calcFunc-powerexpand and calc-powerexpand in
892 autoloads.
893 Add calcFunc-ldiv to autoloads.
894
895 * calc-arith.el (calcFunc-ldiv): New function.
896
897 * calc.el (calc-left-divide): New function.
898
899 2005-11-14 Juri Linkov <juri@jurta.org>
900
901 * cus-edit.el (custom-variable-prompt): Set the default value arg
902 of completing-read.
903
904 * cus-dep.el (custom-make-dependencies): Reverse the list of
905 found dependencies.
906
907 2005-11-14 Dan Nicolaescu <dann@ics.uci.edu>
908
909 * menu-bar.el (menu-bar-options-menu): Delete "Syntax
910 Highlighting" entry, it is on by default now.
911 (menu-bar-options-save): Do not save global-font-lock-mode.
912
913 2005-11-13 Richard M. Stallman <rms@gnu.org>
914
915 * textmodes/flyspell.el (flyspell-large-region):
916 Call flyspell-accept-buffer-local-defs.
917
918 2005-11-13 Agustin Martin <agustin.martin@hispalinux.es>
919
920 * textmodes/flyspell.el (flyspell-notify-misspell):
921 Fix misspelling of "Misspelling".
922 (flyspell-process-localwords): New function.
923 (flyspell-large-region): Call flyspell-process-localwords and
924 flyspell-delete-region-overlays.
925 (flyspell-delete-region-overlays): New function.
926 (flyspell-delete-all-overlays): Call that.
927
928 2005-11-13 Richard M. Stallman <rms@gnu.org>
929
930 * help.el (help-for-help-internal): Improve doc of C-h a.
931 (describe-key): Improve prompt; doc fix.
932
933 2005-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
934
935 * vc-svn.el (vc-svn-registered): Catch all errors.
936
937 * cus-dep.el (custom-make-dependencies): Typo.
938
939 2005-11-13 Michael Albinus <michael.albinus@gmx.de>
940
941 * net/tramp-util.el (top): Fix compilation warning.
942
943 2005-11-13 Kim F. Storm <storm@cua.dk>
944
945 * help.el (help-for-help-internal): Fix `a' entry. Add `d' entry.
946
947 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
948
949 * progmodes/gud.el (gud-menu-map): Move parentheses (again).
950 (gud-speedbar-buttons): Match on "const char *" too.
951
952 * progmodes/gdb-ui.el (gdb-var-create-handler)
953 (gdb-var-list-children-handler): Match on "const char *" too.
954 (gdb-var-evaluate-expression-handler): Match on empty string.
955 (gdb-var-update-handler): Only call
956 gdb-var-evaluate-expression-handler when required.
957
958 2005-11-13 Nick Roberts <nickrob@snap.net.nz>
959
960 * progmodes/gud.el (gud-menu-map): Revert to window-fringes for
961 selected window. This still doesn't work for speedbar.
962 (gud-speedbar-buttons): Handle string expressions properly.
963
964 * progmodes/gdb-ui.el (gdb-var-evaluate-expression-handler)
965 (gdb-var-create-handler): Handle string expressions properly.
966 (gdb-var-list-children-regexp, gdb-var-list-children-handler):
967 Handle string expressions properly. Move "type" field into regexp.
968
969 2005-11-12 Karl Fogel <kfogel@red-bean.com>
970
971 * bookmark.el (bookmark-maybe-message): New function to reduce
972 code duplication: invokes `message' iff baud-rate is high enough.
973 (bookmark-write-file): Use above instead of an inline conditional.
974 (bookmark-load): Same.
975
976 2005-11-12 Karl Fogel <kfogel@red-bean.com>
977
978 * bookmark.el (bookmark-write-file): Don't visit the destination
979 file, just write the data to it using write-region. This is
980 similar to saveplace.el at 2005-05-29T08:36:26Z!rms@gnu.org, but with an additional
981 change to avoid visiting the file in the first place.
982
983 2005-11-12 Chong Yidong <cyd@stupidchicken.com>
984
985 * hi-lock.el (hi-lock-mode): Set the default value of
986 font-lock-defaults.
987
988 2005-11-11 Luc Teirlinck <teirllm@auburn.edu>
989
990 * find-lisp.el (find-lisp-find-dired-insert-file): Pass `string'
991 arg to `file-attributes'.
992 (find-lisp-format): The UID and GID can now be strings.
993
994 2005-11-12 Kim F. Storm <storm@cua.dk>
995
996 * help.el (help-map): Bind C-h d to apropos-documentation.
997
998 * simple.el (what-cursor-position): Print (EOB) instead of (100%)
999 when point is at end-of-buffer.
1000
1001 * apropos.el (apropos-match-face): Doc fix.
1002 (apropos-sort-by-scores): Add new choice `verbose'.
1003 (apropos-documentation-sort-by-scores): New defcustom.
1004 (apropos-pattern): Now contains the pattern entered by the user.
1005 (apropos-pattern-quoted): New defvar.
1006 (apropos-regexp): New defvar, containing the regexp corresponding
1007 to apropos-pattern.
1008 (apropos-all-words-regexp): Rename from apropos-all-regexp.
1009 (apropos-read-pattern): New defun. Use it to read pattern arg in
1010 interactive calls; returns list of words for a word list, and
1011 string for a regexp.
1012 (apropos-parse-pattern): Rename from apropos-rewrite-regexp. Now
1013 parses a list of words or regexp as returned by apropos-read-pattern.
1014 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
1015 (apropos-score-doc): Return a very high score if the string
1016 entered by the user matches literally.
1017 (apropos-variable): Doc fix. Use apropos-read-pattern.
1018 (apropos-command): Doc fix. Use apropos-read-pattern and
1019 apropos-parse-pattern. Call apropos-print with nosubst=t.
1020 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
1021 apropos-parse-pattern.
1022 (apropos-documentation): Doc fix. Use apropos-read-pattern and
1023 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
1024 apropos-documentation-sort-by-scores. Call apropos-print with
1025 nosubst=t.
1026 (apropos-documentation-internal): Pass doc string through
1027 substitute-key-definition before adding text properties.
1028 Highlight substring matching literal user input if possible.
1029 (apropos-documentation-check-doc-file): Remove locals beg and end.
1030 Fix calculation of score (as added twice). Pass doc string through
1031 substitute-key-definition before adding text properties.
1032 (apropos-documentation-check-elc-file): Pass doc string through
1033 substitute-key-definition before adding text properties.
1034 Highlight substring matching literal user input if possible.
1035 (apropos-print): Add new arg NOSUBST; if set, command and variable
1036 doc strings have already been passed through substitute-key-definition.
1037 Add code to handle apropos-accumulator items without score element
1038 for backwards compatibility (e.g. with woman package).
1039 Only show scores if apropos-sort-by-scores is `verbose'.
1040
1041 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1042
1043 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
1044 Add jka-compr-load-suffixes to load-suffixes.
1045
1046 * jka-compr.el: Require 'jka-cmpr-hook.
1047 (jka-compr-info-compress-message, jka-compr-info-compress-program)
1048 (jka-compr-info-compress-args, jka-compr-info-uncompress-message)
1049 (jka-compr-info-uncompress-program, jka-compr-info-uncompress-args)
1050 (jka-compr-info-can-append, jka-compr-info-strip-extension)
1051 (jka-compr-info-file-magic-bytes, jka-compr-get-compression-info)
1052 (jka-compr-info-regexp): Remove. Provided by jka-cmpr-hook.
1053 (jka-compr-uninstall): Remove entries from
1054 jka-compr-added-to-file-coding-system-alist after they are used.
1055 (jka-compr-error): Remove unused var `curbuf'.
1056 (jka-compr-file-local-copy): Remove unused var `notfound'.
1057
1058 2005-11-10 Romain Francoise <romain@orebokech.com>
1059
1060 * apropos.el (apropos-calc-scores): Use `apropos-pattern'.
1061
1062 2005-11-11 Nick Roberts <nickrob@snap.net.nz>
1063
1064 * progmodes/gud.el (gud-menu-map): Move parentheses.
1065 (gdb): New command gud-pv.
1066
1067 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1068
1069 * tar-mode.el: Remove spurious or unnecessary leading stars
1070 in docstrings.
1071 (tar-header-block-tokenize): Also obey default-file-name-coding-system.
1072 (tar-parse-octal-integer-safe): Use mapc.
1073 (tar-header-block-summarize): Remove unused var `ck'.
1074 (tar-summarize-buffer): Don't clear the modified-p bit if it wasn't
1075 cleared before. Obey default-enable-multibyte-characters.
1076 Use mapconcat. Simplify setting of tar-header-offset.
1077 (tar-mode-map): Move initialization inside delcaration.
1078 (tar-flag-deleted): Use `abs'.
1079 (tar-expunge-internal): Remove unused var `line'.
1080 (tar-expunge-internal): Don't hardcode point-min==1.
1081 (tar-expunge): Widen while doing set-buffer-multibyte.
1082 (tar-rename-entry): Use file-name-coding-system.
1083 (tar-alter-one-field): Don't hardcode point-min==1.
1084 (tar-subfile-save-buffer): string-as-unibyte works on unibyte strings.
1085 (tar-pad-to-blocksize): Don't hardcode point-min==1. Clarify the code.
1086
1087 2005-11-10 Masatake YAMATO <jet@gyve.org>
1088
1089 * add-log.el (add-log-current-defun): Handle class::method
1090 notation of c++. Fix incorrect comment.
1091
1092 2005-11-10 Alan Mackenzie <acm@muc.de>
1093
1094 * help-fns.el (describe-variable): Make C-h v work when a variable
1095 has variable documentation yet is unbound.
1096
1097 2005-11-10 Masatake YAMATO <jet@gyve.org>
1098
1099 * man.el (Man-highlight-references): Set an empty
1100 string to `Man-arguments' if it is nil.
1101 Suggested by Reiner Steib <Reiner.Steib@gmx.de>.
1102
1103 2005-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1104
1105 * Makefile.in (mh-loaddefs.el, loaddefs.el): Better follow the
1106 commenting conventions.
1107
1108 * cus-dep.el (custom-make-dependencies): Simplify.
1109 Better follow the commenting conventions.
1110
1111 2005-11-09 Richard M. Stallman <rms@gnu.org>
1112
1113 * apropos.el (apropos-pattern): Rename from apropos-regexp.
1114 (apropos-orig-pattern): Rename from apropos-orig-regexp.
1115 All uses changed.
1116 (apropos-rewrite-regexp): Doc fix.
1117 (apropos-variable, apropos-command, apropos, apropos-value):
1118 Change prompt; carry through the argument renaming.
1119
1120 2005-11-09 Luc Teirlinck <teirllm@auburn.edu>
1121
1122 * find-lisp.el: Require dired.
1123 (find-lisp-find-dired-internal): Do not call
1124 `abbreviate-file-name' on DIR.
1125
1126 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
1127
1128 * progmodes/gud.el (gdb): Make gud-pp use user-defined command pp1.
1129
1130 2005-11-09 Nick Roberts <nickrob@snap.net.nz>
1131
1132 * progmodes/gud.el (gud-menu-map): Ensure tool-bar is constant
1133 when using the speedbar.
1134 (gdb): New command gud-pp.
1135 (gud-menu-map, gud-tool-bar-map): Put it on the tool bar.
1136
1137 2005-11-09 Juri Linkov <juri@jurta.org>
1138
1139 * replace.el (occur-excluded-properties): New defcustom.
1140 (occur-1, occur-engine, occur-accumulate-lines): Use it.
1141
1142 2005-11-08 Jay Belanger <belanger@truman.edu>
1143
1144 * calc/calc-units.el (math-convert-units): Replace any composite
1145 unit by its definition.
1146
1147 2005-11-08 Lars Hansen <larsh@soem.dk>
1148
1149 * emacs-lisp/autoload.el (update-directory-autoloads):
1150 Add obsolete function alias.
1151
1152 2005-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
1153
1154 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't set
1155 comment-indent-function.
1156 (lisp-comment-indent): Replace by an alias for comment-indent-default.
1157
1158 * reveal.el (reveal-post-command): Rework the handling of
1159 reveal-open-spots, so as to be more reliable. There were several
1160 tricky corner cases where an open spot might be lost, or where
1161 a closed spot might end up on the list of open spots.
1162 Only reveal text that's ellipsised.
1163
1164 2005-11-07 Carsten Dominik <dominik@science.uva.nl>
1165
1166 * textmodes/org.el (org-export-as-html): Remove bogus (debug) form.
1167
1168 2005-11-07 John Paul Wallington <jpw@gnu.org>
1169
1170 * ibuffer.el (ibuffer): Search iconified frames too when
1171 getting Ibuffer buffer's window.
1172
1173 2005-11-06 Richard M. Stallman <rms@gnu.org>
1174
1175 * progmodes/compile.el (compilation-internal-error-properties):
1176 save-excursion around the computation of MARKER.
1177
1178 2005-11-06 Piet van Oostrum <piet@cs.uu.nl>
1179
1180 * textmodes/flyspell.el (flyspell-external-point-words):
1181 flyspell-get-word returns a list, not just a string.
1182
1183 2005-11-06 John Paul Wallington <jpw@pobox.com>
1184
1185 * ibuffer.el (ibuffer): Search all visible frames when getting
1186 Ibuffer buffer's window.
1187
1188 2005-11-07 Masatake YAMATO <jet@gyve.org>
1189
1190 * man.el (Man-reference-regexp): Accept spaces between
1191 `Man-name-regexp' and `Man-section-regexp'.
1192 (Man-apropos-regexp): New variable.
1193 (Man-abstract-xref-man-page): Use value for `Man-target-string'
1194 if available.
1195 (Man-highlight-references, Man-highlight-references0):
1196 Handle the case when `Man-arguments' includes "-k".
1197 (Man-highlight-references0): Rename the argument `TARGET-POS' to
1198 `TARGET'. `TARGET' can be a number, function or nil.
1199
1200 2005-11-06 Nick Roberts <nickrob@snap.net.nz>
1201
1202 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-var-delete)
1203 (gdb-edit-value, gdb-speedbar-expand-node, gdb-get-create-buffer)
1204 (gdb-breakpoints-mode, gdb-toggle-breakpoint, gdb-delete-breakpoint)
1205 (gdb-goto-breakpoint, gdb-frames-mode, gdb-registers-mode)
1206 (gdb-locals-mode, gdb-find-file-hook): Use buffer-local-value.
1207 (gdb-send-item): Use buffer-local-value and simplify.
1208
1209 2005-11-05 Luc Teirlinck <teirllm@auburn.edu>
1210
1211 * startup.el (command-line): Use `custom-reevaluate-setting' for
1212 `global-font-lock-mode'.
1213
1214 * font-core.el (global-font-lock-mode): Enable `global-font-lock-mode'
1215 by default, except in batch mode or when the -D option is given.
1216
1217 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Pass all
1218 specified keyword args on to `define-minor-mode'. Update docstring.
1219
1220 2005-11-05 Romain Francoise <romain@orebokech.com>
1221
1222 * replace.el (occur-engine): Add marker at end of line, too.
1223
1224 2005-11-04 Dan Nicolaescu <dann@ics.uci.edu>
1225
1226 * font-lock.el: Don't deal with font-lock-face-attributes here,
1227 move the code ...
1228
1229 * startup.el (command-line): ... here. Use face-spec-set instead
1230 of custom-declare-face.
1231
1232 * faces.el (face-spec-set): Reset the face if spec is not nil.
1233
1234 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
1235
1236 * newcomment.el (comment-region-internal): Box more tightly in the
1237 common case where there's no TAB in the boxed text.
1238
1239 2005-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1240
1241 * info.el (info-tool-bar-map): Use images prev-node, next-node and
1242 up-node.
1243
1244 2005-11-04 Ulf Jasper <ulf.jasper@web.de>
1245
1246 * newsticker.el: Commentary updated. Code formatting changed.
1247 (newsticker-version): Change to "1.9".
1248 (newsticker, newsticker-feed): Doc fix.
1249 (newsticker-url-list): Doc fix. Add option "Weekly".
1250 (newsticker-retrieval-interval): Add option "Weekly".
1251 (newsticker-headline-processing): Doc fix.
1252 (newsticker-auto-mark-filter): Remove.
1253 (newsticker-auto-mark-filter-list): New.
1254 (newsticker-layout, newsticker-sort-method): Doc fix.
1255 (newsticker-hide-old-items-in-newsticker-buffer)
1256 (newsticker-heading-format, newsticker-item-format)
1257 (newsticker-desc-format): Doc fix.
1258 (newsticker-show-all-rss-elements): Remove.
1259 (newsticker-show-all-news-elements): New.
1260 (newsticker-faces, newsticker-ticker): Doc fix.
1261 (remove-from-invisibility-spec): Code formatting.
1262 (newsticker--process-ids): New.
1263 (newsticker-mode): Doc fix.
1264 (newsticker-mode): Change mode-line-format.
1265 (newsticker-start): Remove debug output.
1266 (newsticker-start-ticker): Doc fix. Add Autoload cookie.
1267 (newsticker-w3m-show-inline-images): Code formatting.
1268 (newsticker-next-item): Call `force-mode-line-update'.
1269 (newsticker-previous-item): Call `force-mode-line-update'.
1270 (newsticker-next-feed): Call `force-mode-line-update'.
1271 (newsticker-previous-feed): Call `force-mode-line-update'.
1272 (newsticker-mark-all-items-at-point-as-read): Code formatting.
1273 (newsticker-show-old-items): Do not show descs.
1274 (newsticker-hide-entry): Hide too much.
1275 (newsticker-hide-entry, newsticker-show-entry)
1276 (newsticker-toggle-auto-narrow-to-feed): Code formatting.
1277 (newsticker-set-auto-narrow-to-feed): Update buffer immediately.
1278 (newsticker-toggle-auto-narrow-to-item): Code formatting.
1279 (newsticker-set-auto-narrow-to-item): Update buffer immediately.
1280 (newsticker-running-p, newsticker-ticker-running-p): Autoload cookie.
1281 (newsticker-get-news): Call `force-mode-line-update'.
1282 Collect process ids.
1283 (newsticker--sentinel): Change coding system handling.
1284 Move image retrieval to new functions newsticker--get-logo-url-*.
1285 Move feed parsing to new functions newsticker--parse-*.
1286 Update list of process ids.
1287 (newsticker--get-logo-url-atom-1.0, newsticker--get-logo-url-atom-0.3)
1288 (newsticker--get-logo-url-rss-2.0, newsticker--get-logo-url-rss-1.0)
1289 (newsticker--get-logo-url-rss-0.92, newsticker--get-logo-url-rss-0.91)
1290 (newsticker--parse-atom-0.3, newsticker--parse-atom-1.0)
1291 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
1292 (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0)
1293 (newsticker--parse-generic-feed, newsticker--parse-generic-items): New.
1294 (newsticker--decode-coding-string): Remove.
1295 (newsticker--decode-numeric-entities): Check input. Format code.
1296 (newsticker--remove-whitespace): Check input.
1297 (newsticker--do-forget-preformatted): Doc fix.
1298 (newsticker--decode-rfc822-date): Allow for missing time.
1299 (newsticker--update-process-ids): New.
1300 (newsticker--image-sentinel): Change comment.
1301 (newsticker--image-read): Change error message.
1302 (newsticker--imenu-goto): Doc fix. Show headline title.
1303 (newsticker--buffer-set-uptodate): Call `force-mode-line-update'.
1304 (newsticker--buffer-do-insert-text): Clean whitespace in
1305 html-rendered headline title. Code formatting.
1306 Call `newsticker--buffer-print-extra-elements'.
1307 (newsticker--buffer-print-extra-element): Remove.
1308 (newsticker--buffer-print-extra-elements): New.
1309 (newsticker--buffer-do-print-extra-element): New.
1310 (newsticker--buffer-insert-enclosure): Doc fix. Use MBytes for
1311 large sizes.
1312 (newsticker--run-auto-mark-filter)
1313 (newsticker--do-run-auto-mark-filter):
1314 Use `newsticker-auto-mark-filter-list'.
1315
1316 2005-11-04 Ryan Yeske <rcyeske@gmail.com>
1317
1318 * net/rcirc.el: Use split-string OMIT-NULLS argument.
1319 (rcirc-print): Force redisplay before running hooks. Do long
1320 buffer truncation after making new text read-only. Deal with nil
1321 text when decoding strings. If TARGET is nil, use either the
1322 currently selected buffer, if it is an rcirc buffer and of the
1323 same process or the process buffer.
1324 (rcirc-mode): Remove header-line. Recompute short buffer names.
1325 Initialize rcirc-buffer-alist here instead of rcirc-get-buffer-create.
1326 (rcirc-short-buffer-name): Add variable.
1327 (rcirc-kill-buffer-hook): Recompute short buffer names.
1328 Remove nick from private channel.
1329 (rcirc-send-input): Send command text to current-buffer.
1330 Don't clear overlay arrow here.
1331 (rcirc-short-buffer-name): Return a short buffer name.
1332 (rcirc-update-short-buffer-names, rcirc-abbreviate)
1333 (rcirc-rebuild-tree, rcirc-make-trees): Add functions to generate
1334 buffer-name abbreviations.
1335 (rcirc-kill-buffer-hook-1): Split to make debugging easier.
1336 Do not touch nick-table when killing a parted channel.
1337 (rcirc-window-configuration-change): Rename from rcirc-update-activity.
1338 Clear arrow from current buffer if it is now hidden.
1339 (rcirc-current-buffer): Add variable.
1340 (rcirc-my-nick, rcirc-other-nick, rcirc-server)
1341 (rcirc-nick-in-message, rcirc-prompt, rcirc-mode-line-nick):
1342 Remove -face from names.
1343 (rcirc-update-activity-string): Print "DND" when globally ignoring
1344 activity.
1345 (rcirc-ignore-buffer-activity-flag): Rename from
1346 rcirc-ignore-channel-activity.
1347 (rcirc-ignore-all-activity-flag): Doc fix.
1348 (rcirc-channels): Remove variable.
1349 (rcirc-kill-buffer-hook):
1350 (rcirc-get-buffer-create): Add nick to private channel.
1351 (rcirc-multiline-edit-submit): Remove tabs.
1352 (rcirc-put-nick-channel, rcirc-channel-nicks): Look up nicks case
1353 folded.
1354 (rcirc-remove-nick-channel): Bug fix.
1355 (rcirc-toggle-ignore-buffer-activity): Rename from
1356 rcirc-toggle-ignore-channel-activity.
1357 (rcirc-record-activity): Add buffers to the front of the list.
1358 (rcirc-update-activity): Remove killed buffers from list.
1359 (rcirc-process-server-response-1): Remove last argument if it is
1360 null before calling handler.
1361 (rcirc): Add "rcirc" defcustom prefix.
1362 (rcirc-prompt): Simplify default prompt.
1363 Use custom-initialize-default.
1364 (rcirc-private-chats): Remove variable.
1365 (rcirc-prompt): Change initialization.
1366 (rcirc-version): Remove function.
1367 (rcirc-id-string): Add constant.
1368 (rcirc-last-buffer): Remove variable.
1369 (rcirc-buffer-alist): Add variable.
1370 (rcirc-connect): Update variable setup.
1371 (rcirc-sentinel, rcirc-update-prompt): Use `rcirc-buffer-alist'.
1372 (rcirc-trap-errors-flag): Rename from `rcirc-trap-errors' change
1373 default.
1374 (rcirc-handler-generic): Trigger activity.
1375 (rcirc-send-message): Create the buffor of the target.
1376 (rcirc-generate-new-buffer-name): Rename from `rcirc-get-buffer-name'.
1377 (rcirc-get-buffer): Just return nil if there is no matching buffer.
1378 (rcirc-multiline-edit-cancel): Remove function.
1379 (rcirc-set-last-buffer): Remove function.
1380 (rcirc-get-any-buffer): Add function.
1381 (rcirc-join-channels): Don't print /join text.
1382 (rcirc-toggle-ignore-channel-activity): Add and update echo area
1383 messages.
1384 (rcirc-cmd-ctcp): Use rcirc-send-string to send request.
1385 (rcirc-handler-NOTICE): Recognize CTCP responses.
1386 (rcirc-handler-332, rcirc-handler-332): Use a temp buffer for
1387 constructing TOPIC string for buffers we are not JOINed.
1388 (rcirc-handler-CTCP-response): Add handler.
1389 (rcirc-multiline-edit-submit): Restore the window-configuration
1390 before adjusting point.
1391 (rcirc): Add customization group.
1392 (rcirc-server, rcirc-port, rcirc-nick, rcirc-user-name)
1393 (rcirc-user-full-name, rcirc-startup-channels-alist)
1394 (rcirc-fill-flag, rcirc-fill-column, rcirc-fill-prefix)
1395 (rcirc-ignore-all-activity-flag, rcirc-time-format)
1396 (rcirc-input-ring-size, rcirc-read-only-flag)
1397 (rcirc-buffer-maximum-lines, rcirc-authinfo-file-name)
1398 (rcirc-auto-authenticate-flag, rcirc-prompt, rcirc-print-hooks):
1399 Change defvar to defcustom.
1400 (rcirc-update-prompt): Add optional ALL arg, which will update
1401 prompts in all rcirc buffers. Regexp quote replacement text.
1402 (rcirc-fill-column): Accept 'frame-width as a value.
1403 (rcirc-set-changed): Add function.
1404 (rcirc-next-active-buffer): Write more meaningful messages.
1405 (rcirc-faces): Add customization group.
1406 (rcirc-my-nick-face, rcirc-other-nick-face, rcirc-server-face)
1407 (rcirc-nick-in-message-face, rcirc-prompt-face)
1408 (rcirc-mode-line-nick-face): Move into rcirc-faces group.
1409 (with-rcirc-process-buffer): Move before first usage.
1410 (rcirc-debug-buffer): Rename from `rcirc-log-buffer'.
1411 (rcirc-debug-flag): Rename from `rcirc-log-p'.
1412 (rcirc-debug): Rename from `rcirc-log'.
1413 (rcirc-format-response-string): Do not print '-' chars for a
1414 NOTICE with no sender. Simplify output of server responses.
1415
1416 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
1417
1418 (rcirc-browse-url-map, rcirc-browse-url-at-point)
1419 (rcirc-browse-url-at-mouse, rcirc-mangle-text): Make urls
1420 mouse and RET clickable.
1421
1422 2005-11-04 Henrik Enberg <henrik.enberg@telia.com>
1423
1424 * mail/rmailout.el (rmail-output-to-rmail-file, rmail-output): Doc fix.
1425
1426 2005-11-04 Ken Manheimer <ken.manheimer@gmail.com>
1427
1428 * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
1429 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
1430 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
1431 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
1432 argument to all these routines, so the passphrase can be managed
1433 externally and passed in to the system.
1434 (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
1435 pgg-add-passphrase-to-cache function.
1436
1437 * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
1438 (pgg-pgp5-encrypt-symmetric-region, pgg-pgp5-encrypt-symmetric)
1439 (pgg-pgp5-encrypt, pgg-pgp5-decrypt-region, pgg-pgp5-decrypt)
1440 (pgg-pgp5-sign-region, pgg-pgp5-sign): Add optional 'passphrase'
1441 argument to all these routines, so the passphrase can be managed
1442 externally and passed in to the system.
1443 (pgg-pgp5-sign-region): Use new name of pgg-add-passphrase-to-cache
1444 function.
1445
1446 2005-11-04 Edward O'Connor <hober0@gmail.com> (tiny change)
1447
1448 * net/goto-addr.el (goto-address-url-regexp): Remove `data:' URLs
1449 from goto-address-url-regexp.
1450
1451 2005-11-04 Carsten Dominik <dominik@science.uva.nl>
1452
1453 * textmodes/org.el (org-read-date, org-goto-calendar)
1454 (org-recenter-calendar, org-agenda-goto-calendar):
1455 Temporarily clear 'calendar-move-hook'.
1456
1457 2005-11-04 Michael Kifer <kifer@cs.stonybrook.edu>
1458
1459 * ediff-merge.el (ediff-merge-region-is-non-clash): Return t, if not
1460 merging.
1461
1462 * ediff-util.el (ediff-previous-difference): Don't skip regions that
1463 have merge clashes.
1464
1465 2005-11-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1466
1467 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
1468 Undo previous change.
1469
1470 * startup.el (command-line): Use `custom-reevaluate-setting' for
1471 mouse-wheel-down-event and mouse-wheel-up-event. Don't call
1472 tty-register-default-colors on Mac.
1473
1474 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
1475
1476 * progmodes/gdb-ui.el (gdb-buffer-type): Remove duplicate declaration.
1477 (gdb-buffer-type): Make it automatically buffer local...
1478 (gdb-get-create-buffer): ...and set it accordingly.
1479 (gdb-frame-gdb-buffer, gdb-display-gdb-buffer): Make these
1480 actually work.
1481
1482 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
1483
1484 * font-lock.el (font-lock-warning-face): Use the more vivid red1,
1485 not red.
1486
1487 2005-11-04 Nick Roberts <nickrob@snap.net.nz>
1488
1489 * progmodes/gdb-ui.el (gud-watch): Use save-selected-window in
1490 case GUD buffer is not visible.
1491 (gdb-goto-breakpoint): Try to force display in source buffer.
1492 (gdb-frame-gdb-buffer): Copy other similar functions.
1493 (gdb-restore-windows): Don't display source if not asked for.
1494 (gdb-assembler-buffer-name): Don't capitalise.
1495
1496 2005-11-03 Richard M. Stallman <rms@gnu.org>
1497
1498 * wid-edit.el (key-sequence): New widget type.
1499
1500 * simple.el (set-mark-command-repeat-pop): New variable.
1501 (set-mark-command): Only interpret plan C-@ after a pop as a pop
1502 if set-mark-command-repeat-pop is true.
1503
1504 * info.el (Info-fontify-node): Don't display extra "see" if there
1505 already is one here.
1506
1507 * mouse.el: Fix special handling of DEL after dragging a region:
1508 (mouse-drag-region-1): Treat mouse-set-region like mouse-set-point.
1509 (mouse-region-delete-keys): Add [backspace].
1510
1511 * mail/feedmail.el: Use insert-buffer-substring, not insert-buffer.
1512
1513 * textmodes/ispell.el (ispell-command-loop): Change `i' description
1514 not to assume it pertains to an affix.
1515
1516 * textmodes/flyspell.el (flyspell-post-command-hook):
1517 Bind deactivate-mark to prevent deactivation.
1518
1519 2005-11-03 Lars Hansen <larsh@soem.dk>
1520
1521 * dired-x.el: Add menu bindings for dired-do-find-marked-files,
1522 dired-do-relsymlink, dired-flag-extension, dired-mark-extension,
1523 dired-mark-omitted, dired-do-relsymlink-regexp, dired-omit-mode.
1524
1525 2005-11-03 Romain Francoise <romain@orebokech.com>
1526
1527 * net/eudcb-mab.el: Now part of GNU Emacs. Update FSF's address.
1528 Update copyright years.
1529
1530 2005-11-03 Sam Steingold <sds@gnu.org>
1531
1532 * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
1533 Use system-type instead of window-system because window-system is not
1534 correctly defined during loadup.
1535
1536 2005-11-02 Mark A. Hershberger <mah@everybody.org>
1537
1538 * xml.el (xml-syntax-table): Allow xml.el to compile in xemacs.
1539 (xml-parse-tag): Join strings separated by a comment properly.
1540
1541 2005-11-02 Andreas Schwab <schwab@suse.de>
1542
1543 * emacs-lisp/byte-opt.el (byte-optimize-pure-func): Fix last fix.
1544
1545 2005-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
1546
1547 * emacs-lisp/byte-opt.el (string-to-syntax): Mark it as pure.
1548 (byte-optimize-pure-func): Quote the eval'd value.
1549
1550 * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
1551 Rename from perl-font-lock-syntactic-face-function.
1552 Change the calling convention so it can be used as a font-lock MATCHER.
1553 Do the parse-partial-sexp loop outselves.
1554 (perl-font-lock-syntactic-keywords): Use it.
1555 (perl-mode): Don't set font-lock-syntactic-face-function any more.
1556
1557 2005-11-02 Nick Roberts <nickrob@snap.net.nz>
1558
1559 * progmodes/gdb-ui.el (gdb-mouse-until): Make it work in the
1560 disassembly buffer too.
1561 (gdb-exited): Remove overlay arrows when execution has finished.
1562 (gdb-info-frames-custom, gdb-info-threads-custom)
1563 (gdb-info-registers-custom): Don't add inappropriate text
1564 properties if inferior is not active.
1565
1566 2005-11-02 Glenn Morris <rgm@gnu.org>
1567
1568 * progmodes/fortran.el (fortran-blink-match):
1569 Use `blink-matching-delay'.
1570
1571 2005-11-02 John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
1572
1573 * progmodes/f90.el (f90-match-end): Use `blink-matching-delay'.
1574
1575 2005-11-02 Lars Hansen <larsh@soem.dk>
1576
1577 * net/tramp.el (tramp-action-out-of-band): Handle scp message
1578 "Permission denied".
1579
1580 2005-11-01 Richard M. Stallman <rms@gnu.org>
1581
1582 * textmodes/flyspell.el (flyspell-external-point-words):
1583 Pass nil to flyspell-get-word.
1584
1585 2005-11-02 Kim F. Storm <storm@cua.dk>
1586
1587 * menu-bar.el (menu-bar-options-menu): Show "Shift Movement (CUA)"
1588 item instead of "C-x/C-c/C-v (CUA)" if cua-enable-cua-keys is nil.
1589
1590 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
1591
1592 * calendar/cal-menu.el (date, event): Don't declare as dynamic-var.
1593 (calendar-mouse-holidays, calendar-mouse-view-diary-entries)
1594 (calendar-mouse-print-dates): Add optional `event' argument.
1595 Update interactive-spec.
1596 (calendar-mouse-cal-tex-menu, cal-tex-mouse-filofax):
1597 Use `calendar-event-to-date' instead of `event'.
1598
1599 2005-11-02 Masatake YAMATO <jet@gyve.org>
1600
1601 * progmodes/ld-script.el (ld-script-builtins):
1602 Add more words: "DATA_SEGMENT_ALIGN", "DATA_SEGMENT_END",
1603 "DATA_SEGMENT_RELRO_END", "LENGTH", "ORIGIN", and "SEGMENT_START".
1604 (auto-mode-alist): Accept .ld, .lds, ld.in and .lds.in.
1605
1606 2005-11-01 Romain Francoise <romain@orebokech.com>
1607
1608 * vc-sccs.el: Update copyright year.
1609 * ezimage.el: Likewise.
1610
1611 2005-11-01 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
1612
1613 * info.el (Info-fontify-node): Use `string-width' for fontifying
1614 underlined titles.
1615
1616 2005-11-01 Juri Linkov <juri@jurta.org>
1617
1618 * info.el (Info-fontify-node): Downcase node header keywords Node,
1619 Prev, Next, Up before comparison.
1620 (Info-history): Insert absolute directory name, and put invisible
1621 property on it.
1622
1623 2005-11-01 Juri Linkov <juri@jurta.org>
1624
1625 * info.el (Info-file-supports-index-cookies): New variable.
1626 (Info-find-node-2): Check makeinfo version for index cookie support.
1627 (Info-index-nodes): Search for nodes with index cookies only when
1628 Info-file-supports-index-cookies is t. Otherwise, search nodes
1629 with "Index" in the node name.
1630 (Info-index-node): Search index cookie in the current node only when
1631 Info-file-supports-index-cookies is t. Otherwise, check the word
1632 "Index" in the node name.
1633 (Info-find-emacs-command-nodes): Remove code that searches nodes
1634 with "Index" node name in the top menu.
1635
1636 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
1637
1638 * progmodes/scheme.el (scheme-mode-variables): Use the default
1639 comment-indent-function.
1640
1641 * faces.el (face-attribute): Handle the case where a face inherits from
1642 a non-existent face.
1643
1644 * simple.el (eval-expression-print-format): Use lisp-readable syntax
1645 for octal and hexa output, and merge the char into the paren.
1646 (kill-new): Use push.
1647 (copy-to-buffer): Use with-current-buffer.
1648 (completion-setup-function): Move code in loop to remove redundancy.
1649 (minibuffer-local-must-match-map): Don't add bindings that duplicate
1650 those inherited from minibuffer-local-completion-map.
1651
1652 * savehist.el (savehist-mode) <defcustom>:
1653 Use custom-set-minor-mode if available.
1654 (savehist-mode) <defun>: Run the minor mode hook, set the custom state
1655 and emit a message if applicable.
1656
1657 2005-11-01 Hrvoje Niksic <hniksic@xemacs.org>
1658
1659 * savehist.el: Sync up to version 19.
1660 (savehist-mode): New minor mode.
1661 (savehist-file): Use ~/.emacs.d or ~/.xemacs if available.
1662 (savehist-length): Remove (use history-length instead).
1663 (savehist-file-modes): Rename from savehist-modes.
1664 (savehist-save-hook, savehist-loaded): New vars.
1665 (savehist-load): Use savehist-mode. Try to smooth up transition from
1666 old format to new format.
1667 (savehist-install): Allow savehist-autosave-interval to be nil.
1668 (savehist-save): Run the new hook. Be more careful to only trim the
1669 history variables.
1670 (savehist-trim-history): New fun. Replaces savehist-process-for-saving.
1671 (savehist-printable): Print into a buffer rather than char-by-char.
1672
1673 2005-11-01 John Wiegley <johnw@newartisans.com>
1674
1675 * iswitchb.el (iswitchb-define-mode-map): Re-enable the
1676 toggle-ignore keybinding (C-a). The author said it had been
1677 disabled much earlier due to a possible incompatibility, but after
1678 many months of usage I have encountered no problems (and it is a
1679 rather useful option, especially for switching to " *temp*").
1680
1681 * net/eudcb-mab.el (eudc-mab-query-internal): Add backend
1682 support for OS/X's AddressBook, by calling out to the open source
1683 program "contacts" (installable through Fink).
1684
1685 * net/eudc.el (eudc-expand-inline): If the
1686 `eudc-multiple-match-handling-method' is set to `all', delete the
1687 query string before inserting the query result.
1688
1689 * eshell/em-ls.el (eshell-do-ls): Add no-op support for --dired
1690 flag, to prevent Eshell from using the system ls when
1691 `eshell-ls-insert-directory' is in used.
1692 (eshell-ls-insert-directory): Disable font-lock in directory
1693 buffer so that Eshell's own fontification is seen. This broke
1694 recently due to changes in font-lock, so this goes back to version
1695 21 behavior.
1696
1697 2005-11-01 Nick Roberts <nickrob@snap.net.nz>
1698
1699 * progmodes/gdb-ui.el (gdb-use-inferior-io-buffer): New function.
1700 (menu, toggle-gdb-use-inferior-io-buffer): Get rid of defadvice.
1701 (gdb-many-windows): Doc fix.
1702
1703 2005-10-31 Romain Francoise <romain@orebokech.com>
1704
1705 * help-fns.el (describe-simplify-lib-file-name): Add autoload cookie.
1706
1707 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
1708
1709 * loadup.el: Load emacs-lisp/syntax, font-lock and jit-lock so
1710 that global-font-lock-mode can be enabled by default.
1711
1712 * font-lock.el (font-lock-keywords, font-lock-mode-internal)
1713 (font-lock-add-keywords, font-lock-remove-keywords)
1714 (font-lock-fontify-buffer): Remove autoload cookies.
1715
1716 * jit-lock.el (jit-lock-register): Likewise.
1717
1718 * emacs-lisp/syntax.el (syntax-ppss): Likewise.
1719
1720 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
1721
1722 * progmodes/gdb-ui.el (gdb-many-windows): Leave window configuration
1723 intact if there is no gud-comint-buffer.
1724
1725 2005-10-31 Luc Teirlinck <teirllm@auburn.edu>
1726
1727 * progmodes/gud.el (gud-filter): Use comint-update-fence to delete
1728 old prompt comint-prompt-read-only is t and GDB commands are
1729 issued from tool bar etc.
1730
1731 2005-10-31 Masatake YAMATO <jet@gyve.org>
1732
1733 * vc.el (vc-directory-exclusion-list): Add "{arch}".
1734
1735 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
1736
1737 * thumbs.el (thumbs-thumbsdir): Default to ~/.emacs.d/thumbs.
1738 (thumbs-thumbsdir): Make .emacs.d if it does not exist.
1739
1740 2005-10-30 Michael Albinus <michael.albinus@gmx.de>
1741
1742 * net/tramp.el (tramp-chunksize): Escape parentheses in docstring
1743 starting at beginning of line. Fontification is messed up when
1744 `open-paren-in-column-0-is-defun-start' set to t.
1745 Reported by John Paul Wallington <jpw@pobox.com>.
1746
1747 2005-10-30 Luc Teirlinck <teirllm@auburn.edu>
1748
1749 * comint.el (comint-send-input): Call `comint-update-fence' when
1750 `comint-process-echoes' and `comint-prompt-read-only' are both
1751 non-nil, to avoid leftover read-only newline.
1752
1753 2005-10-30 Richard M. Stallman <rms@gnu.org>
1754
1755 * textmodes/flyspell.el (flyspell-external-point-words):
1756 Detect when WORD can't be checked properly because
1757 flyspell-get-word finds just part of it, and move on.
1758
1759 * textmodes/ispell.el (ispell-dictionary-alist-5): Add . as
1760 boundarychar for Polish.
1761 (ispell-dictionary-alist-4): Add . as boundarychar for Italian.
1762 (ispell-dictionary-alist-3): Add . and @ as boundarychars for French.
1763
1764 2005-10-31 Nick Roberts <nickrob@snap.net.nz>
1765
1766 * progmodes/gdb-ui.el (gdb-tooltip-print-1): Fix regexp.
1767 (gdb-registers-font-lock-keywords): Delete.
1768 (gdb-registers-mode): Don't fontify.
1769 (gdb-info-registers-custom): Use text properties instead as, in
1770 future, changed register values will use font-lock-warning-face.
1771 (gdb-local-font-lock-keywords): Rename to...
1772 (gdb-locals-font-lock-keywords): ...for consistency.
1773
1774 2005-10-30 Andre Spiegel <spiegel@gnu.org>
1775
1776 * vc.el (vc-switch-backend): Better error message if the buffer is
1777 not visiting a file under version control.
1778
1779 * vc-cvs.el (vc-cvs-delete-file): Commit the file after removing it.
1780
1781 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
1782
1783 * startup.el (command-line): Use ~/.emacs.d/init.el instead of
1784 ~/.emacs.d/.emacs.
1785
1786 2005-10-29 Richard M. Stallman <rms@gnu.org>
1787
1788 * replace.el (occur-mode-mouse-goto): Always go to other window.
1789 (occur-mode-goto-occurrence): Always switch in same window.
1790
1791 * simple.el (undo): Display message at end, not at start.
1792
1793 * emacs-lisp/timer.el (timer-activate, timer-activate-when-idle):
1794 New arg REUSE-CELL.
1795 (cancel-timer-internal): New function.
1796 (timer-event-handler): Use cancel-timer-internal,
1797 and pass the cell it returns to timer-activate...
1798
1799 * jit-lock.el (jit-lock-function, jit-lock-stealth-fontify)
1800 (jit-lock-deferred-fontify, jit-lock-context-fontify)
1801 (jit-lock-after-change): Test memory-full.
1802
1803 2005-10-29 Roland Winkler <roland.winkler@physik.uni-erlangen.de>
1804
1805 * textmodes/conf-mode.el (conf-assignment-sign)
1806 (conf-assignment-regexp): Fix docstrings.
1807 (conf-mode-initialize): New function.
1808 (conf-mode): Remove optional args. Use delay-mode-hooks to
1809 recognize recursive calls.
1810 (conf-unix-mode, conf-windows-mode, conf-javaprop-mode)
1811 (conf-space-mode, conf-colon-mode, conf-ppd-mode)
1812 (conf-xdefaults-mode): Use define-derived-mode and
1813 conf-mode-initialize.
1814
1815 2005-10-29 Romain Francoise <romain@orebokech.com>
1816
1817 * help-fns.el (describe-simplify-lib-file-name): Fix regexp.
1818
1819 2005-10-29 Ken Manheimer <ken.manheimer@gmail.com>
1820
1821 * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
1822 part of the decoded armor to find the key-identifier.
1823 (pgg-gpg-lookup-key-owner): New function to return the
1824 human-readable identifier of a key owner.
1825 (pgg-gpg-lookup-id-from-key-owner): Make it easy to identify the
1826 key itself.
1827 (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
1828 the key value) if we have a key and can match it against a secret
1829 key. Also, added a note pointing out fact that the prompt only
1830 indicates the first matching key.
1831
1832 * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
1833 pgg-decrypt-region.
1834 (pgg-pending-timers): A new hash for tracking the passphrase cache
1835 timers, so that new ones supercede old ones.
1836 (pgg-add-passphrase-to-cache): Rename from
1837 `pgg-add-passphrase-cache' to reduce confusion (all callers
1838 changed). Modified to cancel old timers when new ones are added.
1839 (pgg-remove-passphrase-from-cache): Rename from
1840 `pgg-remove-passphrase-cache' to reduce confusion (all callers
1841 changed). Modified to cancel old timers when their keys are
1842 removed from the cache.
1843 (pgg-cancel-timer): In Emacs, an alias for cancel-timer; in
1844 XEmacs, an indirection to delete-itimer.
1845 (pgg-read-passphrase-from-cache, pgg-read-passphrase):
1846 Extract pgg-read-passphrase-from-cache from pgg-read-passphrase so
1847 users can only check cache without risk of prompting. Correct bug in
1848 notruncate behavior.
1849 (pgg-read-passphrase-from-cache, pgg-read-passphrase)
1850 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
1851 Add informative docstrings.
1852 (pgg-decrypt): Convey provided passphrase in subordinate call to
1853 pgg-decrypt-region.
1854
1855 2005-10-20 Ken Manheimer <ken.manheimer+emacs@gmail.com>
1856
1857 * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
1858 (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
1859 (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
1860 'passphrase' argument, so the passphrase can be managed externally
1861 and then passed in to the system.
1862
1863 * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
1864 (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
1865 so the passphrase cache can be used reliably with identifiers
1866 besides a pgp packet's key id.
1867
1868 * pgg-gpg.el (pgg-pgp-encrypt-region)
1869 (pgg-pgp-encrypt-symmetric-region, pgg-pgp-encrypt-symmetric)
1870 (pgg-pgp-encrypt, pgg-pgp-decrypt-region, pgg-pgp-decrypt)
1871 (pgg-pgp-sign-region, pgg-pgp-sign): Add optional 'passphrase'
1872 argument to all these routines, so the passphrase can be managed
1873 externally and passed in to the system.
1874
1875 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
1876 'notruncate' argument, so the passphrase cache can be used
1877 reliably with identifiers besides a pgp packet's key id.
1878
1879 2005-10-29 Sascha Wilde <swilde@sha-bang.de>
1880
1881 * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
1882 symmetric encryption.
1883 (pgg-gpg-symmetric-key-p): New function to check for an symmetric
1884 encrypted session key.
1885 (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
1886 message ask for the passphrase in a proper way.
1887
1888 * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
1889 New user commands for symmetric encryption.
1890
1891 2005-10-28 Bill Wohler <wohler@newt.com>
1892
1893 * help-mode.el (help-url): New button type. Calls browse-url.
1894 (help-xref-url-regexp): New regexp to recognize URLs in docstring.
1895 Similar to Info nodes: URL `url'.
1896 (help-make-xrefs): Create help-url buttons for
1897 help-xref-url-regexp matches.
1898
1899 2005-10-29 Nick Roberts <nickrob@snap.net.nz>
1900
1901 * tool-bar.el (tool-bar-add-item-from-menu)
1902 (tool-bar-local-item-from-menu): Fix doc strings.
1903
1904 2005-10-28 Romain Francoise <romain@orebokech.com>
1905
1906 * ldefs-boot.el: Update.
1907
1908 * subr.el (locate-library): Move from help-fns.el.
1909 * help-fns.el (locate-library): Move to subr.el.
1910
1911 2005-10-28 Richard M. Stallman <rms@gnu.org>
1912
1913 * net/tramp.el (tramp-completion-mode): defvar moved up.
1914
1915 * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
1916
1917 * tool-bar.el (tool-bar-mode): Delete autoload cookie.
1918
1919 * files.el (find-file-noselect): Use %d to format large file size.
1920
1921 * bindings.el (mode-line-format): Add %e.
1922
1923 * loadup.el ("facemenu"): Load unconditionally.
1924 ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
1925 ("x-dnd"): Load, when appropriate.
1926
1927 * startup.el (command-line): Call before-init-hook earlier.
1928 Warn about some bad characters in -u user name.
1929
1930 * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
1931 (flyspell-external-point-words): Error if misspelled word is not found.
1932 Set flyspell-large-region-beg at end of word.
1933
1934 2005-10-28 Andreas Schwab <schwab@suse.de>
1935
1936 * view.el (View-revert-buffer-scroll-page-forward):
1937 Use view-page-size-default.
1938
1939 2005-10-28 Juri Linkov <juri@jurta.org>
1940
1941 * international/quail.el (quail-get-current-str): Translate last
1942 raw character for deterministic input methods.
1943
1944 2005-10-27 Jay Belanger <belanger@truman.edu>
1945
1946 * calc/calc-ext.el: Add functions to autoloads.
1947 (math-identity-matrix-p, math-ident-row-p): New functions.
1948
1949 * calc/calc-arith.el (calc-mul-symb-fancy): Add checks for
1950 multiplication by an identity matrix; don't turn multiplication by
1951 an inverse matrix into division.
1952 (math-div-symbol-fancy): Replace division by matrices with
1953 multiplication by inverse.
1954
1955 * calc/calc-misc.el (calcFunc-inv): Check for symbolic matrices.
1956
1957 * calc/calc-alg.el (calcFunc-writeoutpower, math-write-out-power)
1958 (calc-writeoutpower): New functions.
1959
1960 2005-10-27 Romain Francoise <romain@orebokech.com>
1961
1962 * replace.el (occur-engine): Include colon in mouse-face highlight.
1963
1964 * dired-x.el: Change Maintainer field.
1965
1966 2005-10-26 Chong Yidong <cyd@stupidchicken.com>
1967
1968 * longlines.el (longlines-mode): Bind after-change-functions to
1969 nil during initial decoding and final encoding.
1970
1971 2005-10-26 Dan Nicolaescu <dann@ics.uci.edu>
1972
1973 * term.el (term-emulate-terminal, term-handle-colors-array)
1974 (term-handle-ansi-escape): Specify the terminfo capabilities
1975 implemented.
1976
1977 2005-10-26 Richard M. Stallman <rms@gnu.org>
1978
1979 * info.el (Info-fontify-node): Fix detection of sentence-break
1980 before *Note.
1981
1982 2005-10-26 Romain Francoise <romain@orebokech.com>
1983
1984 * smerge-mode.el: Add `tools' to file keywords.
1985
1986 2005-10-26 Nick Roberts <nickrob@snap.net.nz>
1987
1988 * progmodes/gud.el (gud-menu-map): Only display gud-until icon
1989 when the fringe is not available.
1990
1991 * progmodes/gdb-ui.el (def-gdb-auto-updated-buffer)
1992 (def-gdb-auto-update-trigger): Simplify construction.
1993 (gdb-locals-buffer): Use def-gdb-auto-update-trigger instead of
1994 def-gdb-auto-updated-buffer as gdb-info-locals-handler is
1995 defined explicitly.
1996 (gdb-assembler-buffer): Use def-gdb-auto-update-handler instead of
1997 def-gdb-auto-updated-buffer as gdb-invalidate-assembler is
1998 defined explicitly.
1999 (gdb-info-locals-custom): Remove as it's a no-op.
2000
2001 2005-10-25 Chong Yidong <cyd@stupidchicken.com>
2002
2003 * longlines.el (longlines-mode): Remove narrowing before
2004 performing the initial decoding or final encoding.
2005
2006 2005-10-25 Romain Francoise <romain@orebokech.com>
2007
2008 * emacs-lisp/find-func.el (find-library-name): Also strip
2009 extension if library name ends in .el, to take advantage of
2010 `find-library-suffixes'.
2011
2012 2005-10-25 Richard M. Stallman <rms@gnu.org>
2013
2014 * menu-bar.el (menu-bar-help-menu): Say which kind of therapist.
2015
2016 2005-10-25 Juri Linkov <juri@jurta.org>
2017
2018 * textmodes/texinfo.el (texinfo-mode): Change charset of one
2019 quotation mark from [mule-unicode-0100-24ff] to [japanese-jisx0208].
2020
2021 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2022
2023 * play/blackbox.el (blackbox-mode-map): Move init into declaration.
2024 (blackbox-redefine-key): Add argument `map'.
2025
2026 * jit-lock.el (jit-lock-fontify-now): Be careful not to skip multiline
2027 regions when moving the jit-lock-context-unfontify-pos boundary.
2028
2029 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
2030
2031 * net/browse-url.el (browse-url-of-buffer): Add ".html" to filename.
2032
2033 2005-10-25 Masatake YAMATO <jet@gyve.org>
2034
2035 * dired-x.el (dired-virtual): Don't use `dired-insert-headerline'.
2036
2037 2005-10-25 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
2038
2039 * play/blackbox.el (blackbox-redefine-key): New function.
2040 (blackbox-mode-map): Use it to remap existing bindings for cursor
2041 motion instead of binding literal keys.
2042
2043 2005-10-25 Glenn Morris <rgm@gnu.org>
2044
2045 * calendar/diary-lib.el (diary-list-entries): Prevent infloop when
2046 diary does not end in a newline. Do not assume a blank line at
2047 the start of the diary file.
2048
2049 2005-10-25 Kenichi Handa <handa@m17n.org>
2050
2051 * international/quail.el (quail-translate-key): If the input
2052 method is deterministic and failed to handle the last key, restart
2053 the key handling loop from an appropriate key.
2054
2055 2005-10-25 Michael Albinus <michael.albinus@gmx.de>
2056
2057 * vc.el (vc-dired-mode): Extend comment for binding of
2058 `directory-listing-before-filename-regexp'.
2059
2060 2005-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
2061
2062 * textmodes/texinfo.el (texinfo-mode):
2063 * textmodes/paragraphs.el (sentence-end-base): Use real chars, so as
2064 not to unnecessarily expose emacs-mule's internal char codes.
2065
2066 2005-10-25 Nick Roberts <nickrob@snap.net.nz>
2067
2068 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Correct help-echo.
2069 Display hand pointer and help-echo on disabled icon too.
2070 (gdb-mouse-until): New function.
2071 (gdb-ann3): Bind it to mouse-2 and drag-mouse-1 in left fringe.
2072
2073 2005-10-24 Chong Yidong <cyd@stupidchicken.com>
2074
2075 * menu-bar.el (menu-bar-help-menu): Rename "psychiatrist", in line
2076 with 2005-10-23 change to doctor.el.
2077
2078 * finder.el (finder-mode-map): Add follow-link binding.
2079
2080 2005-10-25 Kim F. Storm <storm@cua.dk>
2081
2082 * progmodes/gdb-ui.el (gdb-ann3): Bind mouse-3 in left fringe
2083 to gdb-mouse-toggle-breakpoint-fringe.
2084 (gdb-mouse-toggle-breakpoint-margin): Rename from
2085 gdb-mouse-toggle-breakpoint. Fix doc.
2086 (gdb-mouse-toggle-breakpoint-fringe): New defun.
2087 (gdb-put-string): Add optional SPROPS arg. Add props to string.
2088 (gdb-put-breakpoint-icon): Add gdb-bptno and gdb-enabled
2089 string properties also for fringe breakpoint bitmaps.
2090
2091 2005-10-24 Carsten Dominik <dominik@science.uva.nl>
2092
2093 * textmodes/org.el (org-start-icalendar-file): Fix format form.
2094
2095 2005-10-25 Masatake YAMATO <jet@gyve.org>
2096
2097 * simple.el (completion-common-substring):
2098 Use `completion-common-substring' prior to `completion-base-size'.
2099
2100 2005-10-24 Hrvoje Niksic <hniksic@xemacs.org>
2101
2102 * savehist.el: Require CL while compiling.
2103 (savehist-history-variables): Remove.
2104 (savehist-save-minibuffer-history, savehist-additional-variables)
2105 (savehist-minibuffer-history-variables): New vars.
2106 (savehist-save): Use them.
2107 (savehist-uninstall, savehist-minibuffer-hook): New funs.
2108 (savehist-install): New fun, extracted from savehist-load.
2109 (savehist-load): Use them.
2110
2111 2005-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
2112
2113 * emacs-lisp/lisp-mode.el (easy-mmode-define-global-mode): Don't add
2114 a dummy doc-string-elt property.
2115 (defalias, defvaralias, define-category): Add a docstring property.
2116
2117 * image.el (defimage):
2118 * widget.el (define-widget):
2119 * custom.el (defface, defcustom): Add `doc-string' declaration.
2120
2121 * emacs-lisp/advice.el (ad-make-advised-definition): Fix arg-order.
2122 (defadvice): Add `doc-string' declaration.
2123
2124 * emacs-lisp/byte-run.el (macro-declaration-function):
2125 Handle `doc-string' declarations.
2126 (define-obsolete-function-alias, define-obsolete-variable-alias):
2127 Add `doc-string' declaration.
2128
2129 2005-10-24 Kenichi Handa <handa@m17n.org>
2130
2131 * international/utf-7.el (utf-7): Add autoload cookie.
2132
2133 * term/x-win.el: Register more Cyrillic characters in x-keysym-table.
2134
2135 2005-10-24 Eli Zaretskii <eliz@gnu.org>
2136
2137 * makefile.w32-in (autoloads): Use "." instead of $(lisp) in the
2138 list of directories passed to batch-update-autoloads. Add "." to
2139 the list of the echoed directories.
2140
2141 * pgg-def.el:
2142 * pgg-gpg.el:
2143 * pgg-parse.el:
2144 * pgg-pgp.el:
2145 * pgg-pgp5.el:
2146 * pgg.el: Moved here from the gnus subdirectory.
2147
2148 2005-10-24 Nick Roberts <nickrob@snap.net.nz>
2149
2150 * progmodes/gud.el (gud-filter): Bind inhibit-read-only to t
2151 in case comint-prompt-read-only is set to t.
2152
2153 * progmodes/gdb-ui.el (gdb-send): Bind inhibit-read-only to t
2154 in case comint-prompt-read-only is set to t.
2155
2156 2005-10-24 Ulf Jasper <ulf.jasper@web.de>
2157
2158 * calendar/icalendar.el (icalendar-version): Increase to 0.13.
2159 Now a string.
2160 (icalendar-import-format): Handle CLASS, STATUS, URL.
2161 Rename `subject' to `summary'.
2162 (icalendar-import-format-summary): Rename from
2163 `icalendar-import-format-subject'.
2164 (icalendar-import-format-url, icalendar-import-format-status)
2165 (icalendar-import-format-class): New variables.
2166 (icalendar--rris): Take variable argument list.
2167 (icalendar--datestring-to-isodate): Remove unnecessary
2168 calendar-style check when converting dates with explicit month names.
2169 (icalendar-export-region): Change return type of conversion
2170 subroutines. Bury current buffer unless error occurred.
2171 (icalendar--convert-to-ical)
2172 (icalendar--parse-summary-and-rest): New functions.
2173 (icalendar--convert-ordinary-to-ical)
2174 (icalendar--convert-weekly-to-ical)
2175 (icalendar--convert-yearly-to-ical)
2176 (icalendar--convert-block-to-ical)
2177 (icalendar--convert-cyclic-to-ical)
2178 (icalendar--convert-anniversary-to-ical): Change return type.
2179 Strip trailing blanks from subject.
2180 (icalendar--convert-sexp-to-ical): Change return type.
2181 Strip trailing blanks from subject. Handle simple sexp
2182 entries as generated by icalendar.el.
2183 (icalendar--convert-float-to-ical)
2184 (icalendar--convert-date-to-ical): Strip trailing blanks from subject.
2185 (icalendar-import-file): Doc fix.
2186 (icalendar--format-ical-event): Handle CLASS, STATUS, URL.
2187 Correct call to icalendar--rris.
2188 (icalendar--convert-ical-to-diary): Doc fix. Rename `subject' to
2189 `summary'.
2190 (icalendar--add-diary-entry): Rename `subject' to `summary'.
2191
2192 2005-10-24 Romain Francoise <romain@orebokech.com>
2193
2194 * server.el (server-sentinel): Set query-on-exit flag to nil on
2195 new client processes (it isn't inherited from the server process).
2196
2197 * replace.el (occur-engine): Rearrange text properties.
2198
2199 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
2200
2201 * emacs-lisp/debug.el (debugger-make-xrefs): Don't assume
2202 case-fold-search is nil.
2203 (debug-help-follow): Use help-xref-interned directly.
2204
2205 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
2206
2207 * thumbs.el (thumbs-image-type): Add .pbm.
2208
2209 2005-10-23 Richard M. Stallman <rms@gnu.org>
2210
2211 * faces.el (inhibit-face-set-after-frame-default): New variable.
2212 (set-face-attribute): Bind it.
2213 (face-set-after-frame-default): Test it.
2214
2215 * help-fns.el (describe-simplify-lib-file-name): New function.
2216 (describe-function-1, describe-variable): Use it.
2217
2218 * faces.el (describe-face): Use describe-simplify-lib-file-name.
2219
2220 * tooltip.el (tooltip-x-offset, tooltip-y-offset): Change defaults.
2221 Eliminate nil as possible value.
2222 (tooltip-hide-delay): Reduce internal-border-width.
2223
2224 * menu-bar.el (menu-bar-file-menu) <dired>: Change help-echo string.
2225 (menu-bar-file-menu) <new-file>: Likewise.
2226
2227 * simple.el (line-move-finish): Ignore fields computing LINE-END.
2228
2229 * international/mule.el (load-with-code-conversion):
2230 Pass full file name to `eval-buffer' unless preloading.
2231
2232 * textmodes/flyspell.el (flyspell-large-region):
2233 Call ispell-check-version.
2234
2235 * textmodes/ispell.el (ispell-local-dictionary-overridden):
2236 Fix the make-variable-buffer-local call that was supposed
2237 to be for this variable.
2238 (ispell-aspell-supports-utf8): Doc fix.
2239 (ispell-find-aspell-dictionaries): Preserve elements of
2240 ispell-dictionary-alist for dictionaries that aspell doesn't report.
2241 (ispell-aspell-find-dictionary): Return nil on error.
2242
2243 * play/doctor.el (doctor-doc): Don't say "psychiatrist".
2244 (doctor-symptoms): Likewise.
2245
2246 * add-log.el (add-log-current-defun): Clean up handling of DEFUNs.
2247
2248 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
2249
2250 * cus-edit.el (custom-button, custom-button-pressed): New vars.
2251 (custom-raised-buttons): Add :set spec.
2252 (custom-button-unraised, custom-button-pressed-unraised):
2253 New faces, so that custom-raised-buttons actually does something.
2254 (custom-mode): Use custom-button and custom-button-pressed.
2255
2256 * wid-edit.el (widget-specify-button): Don't ignore
2257 widget-mouse-face on graphic terminals.
2258 (widget-move-and-invoke): Cleanup.
2259
2260 2005-10-23 Thien-Thi Nguyen <ttn@gnu.org>
2261
2262 * whitespace.el (whitespace-cleanup): Doc fix.
2263
2264 2005-10-23 Romain Francoise <romain@orebokech.com>
2265
2266 * emulation/viper.el (viper-set-hooks): Quote forms passed to
2267 `eval-after-load' to avoid evaluating their result.
2268
2269 2005-10-23 Michael Albinus <michael.albinus@gmx.de>
2270
2271 * files.el (directory-listing-before-filename-regexp):
2272 New defvar. Replaces `dired-move-to-filename-regexp' from dired.el.
2273
2274 * dired.el (dired-move-to-filename-regexp): Remove.
2275 All occurences replaced by `directory-listing-before-filename-regexp'.
2276
2277 * dired-x.el, locate.el, vc.el:
2278 Replace `dired-move-to-filename-regexp' by
2279 `directory-listing-before-filename-regexp'. In vc.el it is
2280 overwritten locally; maybe this can be handled in files.el too.
2281
2282 * net/ange-ftp.el (ange-ftp-date-regexp): Remove. All occurences
2283 replaced by `directory-listing-before-filename-regexp'.
2284
2285 2005-10-23 Andreas Schwab <schwab@suse.de>
2286
2287 * font-lock.el (lisp-font-lock-keywords-2): Add eval-at-startup
2288 and eval-next-after-load.
2289
2290 2005-10-23 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
2291
2292 * mouse.el (mouse-drag-region): If the *Messages* buffer doesn't
2293 exist, create it.
2294
2295 2005-10-23 Ken Manheimer <ken.manheimer@gmail.com>
2296
2297 * allout.el: Remove autoloads for mailcrypt and crypt++.
2298 Require pgg, pgg-gpg during compilation.
2299 (allout-version): Increment version number to 2.1, and use a literal
2300 rather than RCS Id.
2301 (allout-default-encryption-scheme): Remove.
2302 (allout-passphrase-verifier-handling)
2303 (allout-passphrase-verifier-string)
2304 (allout-file-passphrase-verifier-string)
2305 (allout-passphrase-hint-string): Rename -key- to -passphrase-.
2306 (allout-passphrase-hint-handling): Rename and simplify.
2307 (allout-init): Use `find-file-hook' if available, otherwise
2308 `find-file-hooks'.
2309 (allout-mode): Use `write-file-functions' if available, otherwise
2310 `local-write-file-hooks' and, instead of making auto-save-hook
2311 buffer local, make the write-file-hook activity contingent to
2312 allout-mode.
2313 (allout-mode): Use key-binding substitution in the docstring.
2314 (allout-kill-line): Spell-out kill ring data structure mutation
2315 instead of using byte-compiler-complaint-provoking `pop'.
2316 (allout-insert-listified): Use `insert' rather than `insert-string'
2317 (allout-toggle-current-subtree-encryption): Update docstring, adjust
2318 to new gpp-based encryption, use new `allout-encrypted-topic-p'.
2319 (allout-encrypt-string): Totally revamped vis new underlying
2320 encryption facilities.
2321 (allout-mc-activate-passwd): Remove.
2322 (allout-obtain-passphrase): New, more or less replaces
2323 allout-mc-activate-passwd.
2324 (allout-encrypted-key-info): More or less replaces
2325 allout-encrypted-text-type.
2326 (outlineify-sticky, outlinify-sticky): Add autoload cookie.
2327 (my-mark-marker): Use `(featurep 'xemacs)'.
2328
2329 2005-10-23 Lars Hansen <larsh@soem.dk>
2330
2331 * emacs-lisp/bytecomp.el (byte-compile-lambda): New arg add-lambda.
2332 (byte-compile-file-form-defmumble, byte-compile-defun)
2333 (byte-compile-defmacro): Use it.
2334 (byte-compile-form): Don't call byte-compile-set-symbol-position
2335 when a byte-compile handler is called.
2336
2337 2005-10-22 Romain Francoise <romain@orebokech.com>
2338
2339 * savehist.el (savehist-history-variables): Add `grep-find-history'.
2340
2341 * subr.el (eval-after-load): Convert library name to an absolute
2342 file name using locate-library, since load-history no longer has
2343 library names in it.
2344
2345 2005-10-22 Richard M. Stallman <rms@gnu.org>
2346
2347 * files.el (make-temp-file): Move from subr.el.
2348 * subr.el (make-temp-file): Move to files.el.
2349
2350 * window.el (get-buffer-window-list): Move from subr.el.
2351 * subr.el (get-buffer-window-list): Move to window.el.
2352
2353 * image.el (image-load-path): Use eval-at-startup to initialize.
2354
2355 * subr.el (eval-at-startup): New macro.
2356
2357 * subr.el: Much rearrangement of functions and division
2358 into pages. No code changes.
2359
2360 2005-10-22 Kenichi Handa <handa@m17n.org>
2361
2362 * tar-mode.el (tar-extract): Be sure to call
2363 find-operation-coding-system if set-auto-coding doesn't find a
2364 coding system.
2365
2366 2005-10-22 Kim F. Storm <storm@cua.dk>
2367
2368 * image.el (image-type-header-regexps): Rename from image-type-regexps.
2369 Change users.
2370 (image-type-file-name-regexps): New defconst.
2371 (image-type-from-data): Simplify loop.
2372 (image-type-from-buffer): New defun.
2373 (image-type-from-file-header): Use it instead of image-type-from-data.
2374 Use image-search-load-path instead of only looking in data-directory.
2375 (image-type-from-file-name): New defun.
2376 (image-search-load-path): Change `pathname' to `filename'.
2377 Make PATH arg optional, default to image-load-path.
2378
2379 2005-10-21 Richard M. Stallman <rms@gnu.org>
2380
2381 * textmodes/texinfo.el (texinfo-mode): Set sentence-end-base.
2382
2383 * textmodes/paragraphs.el (sentence-end-base): New variable.
2384 (sentence-end): Use sentence-end-base.
2385
2386 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
2387
2388 * font-lock.el (font-lock-default-fontify-region): Check the multiline
2389 property independently from the font-lock-multiline variable.
2390
2391 2005-10-21 Richard M. Stallman <rms@gnu.org>
2392
2393 * emacs-lisp/find-func.el (find-library-name): Doc fix.
2394
2395 * startup.el (command-line): Convert library names
2396 in `load-history' to absolute file names.
2397
2398 * subr.el (symbol-file): Doc fix.
2399
2400 * loadhist.el (file-loadhist-lookup): Call locate-library
2401 instead of find-library-name. Don't try converting
2402 abs file names to library names, since load-history no longer
2403 has library names in it.
2404 (file-dependents, file-provides, file-requires): Doc fixes.
2405
2406 2005-10-21 Juri Linkov <juri@jurta.org>
2407
2408 * progmodes/etags.el (tags-table-mode): New function.
2409 (tags-verify-table): Replace initialize-new-tags-table with
2410 tags-table-mode.
2411
2412 * desktop.el (desktop-buffers-not-to-save): Remove TAGS from the
2413 default value.
2414 (desktop-modes-not-to-save): Add tags-table-mode to the
2415 default value.
2416
2417 * info.el (Info-index-next): Add total number of index
2418 alternatives to the message.
2419
2420 * textmodes/fill.el (fill-nobreak-p): Fix first two rules to skip
2421 backward only space (instead of space and period) before looking
2422 at sentence end.
2423
2424 * simple.el (set-variable): Use user-variable-p instead of symbolp.
2425 Add the old variable value as 4th default-value arg of read-string.
2426
2427 2005-10-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2428
2429 * cus-face.el (custom-declare-face): Make face from X resources
2430 also on Mac.
2431
2432 * disp-table.el (standard-display-g1, standard-display-graphic):
2433 Refuse to use string glyphs also on Mac.
2434 (standard-display-european): Don't set terminal coding system also
2435 on Mac.
2436
2437 * frame.el (display-screens): Use x-display-screens also on Mac.
2438
2439 2005-10-21 Romain Francoise <romain@orebokech.com>
2440
2441 * net/rcirc.el: Now part of GNU Emacs. Update FSF's address.
2442
2443 2005-10-21 Stefan Monnier <monnier@iro.umontreal.ca>
2444
2445 * progmodes/sh-script.el (sh-font-lock-syntactic-keywords): Make $@
2446 and $? into sexps.
2447
2448 * font-lock.el (font-lock-compile-keywords): Add a help-echo to the
2449 warning face on open-paren-in-column-0.
2450
2451 * emacs-lisp/syntax.el (syntax-ppss-flush-cache): Fix corner
2452 boundary case. Fix typo.
2453 Suggested by Martin Rudalics <rudalics@gmx.at>.
2454
2455 2005-10-21 Carsten Dominik <dominik@science.uva.nl>
2456
2457 * textmodes/org.el: (org-combined-agenda-icalendar-file)
2458 (org-icalendar-include-todo, org-icalendar-combined-name): New options.
2459 (org-export-icalendar-this-file)
2460 (org-export-icalendar-all-agenda-files)
2461 (org-export-icalendar-combine-agenda-files): New commands.
2462 (org-export-icalendar, org-print-icalendar-entries)
2463 (org-start-icalendar-file, org-finish-icalendar-file)
2464 (org-ical-ts-to-string): New functions.
2465 (org-read-date, org-goto-calendar)
2466 (org-agenda-goto-calendar): Inhibit displaying diary entries by
2467 call to `calendar'.
2468 (orgtbl-setup): Remove the :keys arguments from the menu description.
2469 (org-after-save-iCalendar-file-hook): New variable.
2470
2471 2005-10-21 Kenichi Handa <handa@m17n.org>
2472
2473 * language/vietnamese.el (tcvn-5712): Make it an alias of
2474 vietnamese-tcvn coding-system.
2475
2476 2005-10-20 Michael Albinus <michael.albinus@gmx.de>
2477
2478 * net/ange-ftp.el (ange-ftp-date-regexp): Handle also the case no
2479 group id is given.
2480
2481 2005-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
2482
2483 * progmodes/sh-script.el (sh-escaped-line-re): New var.
2484 (sh-here-doc-open-re, sh-font-lock-close-heredoc): Use it.
2485 (sh-font-lock-open-heredoc): Try to properly handle heredoc starters
2486 whose line is either continued or ends with a comment.
2487
2488 2005-10-20 Romain Francoise <romain@orebokech.com>
2489
2490 * net/rcirc.el (with-rcirc-process-buffer): Move above its first user.
2491
2492 * replace.el (occur-engine): Add follow-link property.
2493
2494 * font-core.el (font-lock-mode): Doc fix.
2495
2496 2005-10-20 Richard M. Stallman <rms@gnu.org>
2497
2498 * net/rcirc.el: New file.
2499
2500 2005-10-20 Bryan Henderson <bryanh@giraffe-data.com> (tiny change)
2501
2502 * term.el (term-term-name): Initialize to "eterm-color".
2503
2504 2005-10-20 Ken Manheimer <ken.manheimer@gmail.com>
2505
2506 * allout.el: Add autoloads of crypt++ and mailcrypt routines, all
2507 for encryption functionality.
2508 Move allout customization subgroup from `editing' to `outlines' group.
2509 Fix commentary 'keywords' to legitimate ones.
2510 Update author info (using my current email address, obscurified).
2511 (allout-encrypt-string, allout-encryption-produce-work-buffer)
2512 (allout-encrypted-topic-p, allout-encrypted-text-type)
2513 (allout-mc-activate-passwd, allout-create-encryption-key-verifier)
2514 (allout-situate-encryption-key-verifier)
2515 (allout-get-encryption-key-verifier, allout-verify-key)
2516 (allout-next-topic-pending-encryption)
2517 (allout-encrypt-decrypted, allout-encrypted-type-prefix): New funcs.
2518 (outline-topic-encryption-bullet, outline-default-encryption-scheme)
2519 (outline-key-verifier-handling, outline-key-hint-handling)
2520 (outline-encrypt-unencrypted-on-saves): New defcustoms.
2521 (allout-file-key-verifier-string, allout-encryption-scheme)
2522 (allout-key-verifier-string, allout-key-hint-string)
2523 (allout-after-save-decrypt): New variables.
2524 (allout-write-file-hook-handler, allout-auto-save-hook-handler)
2525 (allout-after-saves-handler): New hook functions.
2526 (allout-post-command-business): Do allout-after-save-decrypt.
2527 (allout-enable-file-variable-adjustment): Custom var to enable
2528 mechanism for adding and adjusting settings of Emacs file variables.
2529 (allout-adjust-file-variable, allout-file-vars-section-data):
2530 New functions, implement the mechanism.
2531 (outlineify-sticky): Use the file vars mechanism.
2532 (allout-inhibit-protection, allout-during-write-cue)
2533 (allout-override-protect, allout-before-change-protect): Remove.
2534 (allout-flag-region, allout-open-topic): Adjust read-only text.
2535 (allout-open-line-not-read-only): Add to facilitate read-only
2536 text based protection.
2537 (allout-kill-line): Revise to adjust read-only text, clue the
2538 user about the inhibition.
2539 (allout-unprotected): Use unwind-protect.
2540 (allout-shift-in, allout-shift-out): Disallow manually shifting a
2541 topic deeper than the offspring depth of the previous topic -
2542 avoiding confusing "containment discontinuities".
2543 (allout-reindent-bodies): Fix retention of body relative hanging
2544 indent during promotion of collapsed bodies.
2545 (allout-open-topic): Make it easy to open new topic with same
2546 bullet as current topic - topic creation functions provided with
2547 any universal argument provokes now prompt for bullet, defaulting
2548 to the bullet of the previous topic.
2549 (allout-plain-bullets-string, allout-distinctive-bullets-string):
2550 Plain bullet alternates '.' period and ',' comma only. All other
2551 bullets are relegated to special status (but customizable).
2552 (allout-end-of-entry): Rename from 'allout-end-of-current-entry
2553 since it actually operates w.r.t. most immediately containing
2554 entry, visible or not.
2555 (allout-hide-current-entry, allout-show-current-entry): Use the
2556 revised version.
2557 (allout-old-expose-topic): Solidify deprecation.
2558 (allout-end-of-subtree): Add so we can span concealed as well
2559 as visible topics.
2560 (allout-end-of-current-subtree): Use `allout-end-of-subtree'.
2561 (allout-end-of-current-heading): Tweak to just respect the first line.
2562 (allout-get-body-text): Add.
2563 (allout-ascend-to-depth, allout-ascend): Position at end of prefix
2564 when invoked interactively.
2565 (allout-up-current-level): Use `interactive-p'.
2566 (allout-mode, allout-init): Miscellaneous docstring and
2567 operational refinements, as well as hookups of new encryption stuff.
2568 (allout-beginning-of-current-entry): Now works as advertised.
2569 (allout-end-of-current-entry): Remove of superfluous allout-show-entry.
2570 (allout-isearch-rectification): Refine condition for isearching.
2571 (allout-isearch-abort, allout-enwrap-isearch)
2572 (allout-flag-region, my-region-active-p): Relocate some macros.
2573 (allout-title): Fallback title is '(buffer-name)', not
2574 non-existing '(current-buffer-name)'.
2575 (subst-char-in-string): Define if absent (for some XEmacs versions).
2576
2577 2005-10-20 Jari Aalto <jari.aalto@cante.net>
2578
2579 * mail/sendmail.el (mail-setup-hook, mail-aliases)
2580 (mail-yank-prefix, mail-indentation-spaces, mail-yank-hooks)
2581 (mail-citation-prefix-regexp, mail-signature-file)
2582 (mail-default-headers, mail-bury-selects-summary)
2583 (mail-send-nonascii): Add autoload cookies.
2584
2585 2005-10-20 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
2586
2587 * frame.el (blink-cursor-mode): Add `mac' to the list of
2588 window-system's that support blinking cursor.
2589
2590 2005-10-20 Reiner Steib <Reiner.Steib@gmx.de>
2591
2592 * textmodes/org.el (org-level-color-stars-only): Fix typo in docstring.
2593
2594 2005-10-20 Eli Zaretskii <eliz@gnu.org>
2595
2596 * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el):
2597 Bind find-file-suppress-same-file-warnings to t, to avoid warnings due
2598 to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el.
2599
2600 2005-10-20 Kim F. Storm <storm@cua.dk>
2601
2602 * ido.el (ido-is-tramp-root): Simplify regexp matching tramp root.
2603 (ido-set-current-directory): Don't add / after final @.
2604 (ido-file-name-all-completions-1): Adapt to fixed tramp completion.
2605 Explicitly handle ange-ftp completion oddities.
2606 (ido-make-file-list): Don't rotate list at tramp root to avoid
2607 triggering tramp file handler for expand-file-name via get-file-buffer.
2608
2609 2005-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
2610
2611 * savehist.el (savehist-coding-system): Revert to checking XEmacs.
2612
2613 2005-10-19 Jay Belanger <belanger@truman.edu>
2614
2615 * calc/calc-units.el (math-standard-units): Add units, adjust
2616 symbols and update values.
2617 (math-unit-prefixes): Add more prefixes.
2618
2619 2005-10-19 Romain Francoise <romain@orebokech.com>
2620
2621 * bookmark.el (bookmark-menu-heading): New face.
2622 (bookmark-bmenu-list): Use it.
2623 Don't fiddle with `baud-rate' at top-level.
2624
2625 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
2626
2627 * image.el (create-image, find-image): Mention max-image-size in
2628 docstring.
2629
2630 2005-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
2631
2632 * savehist.el (savehist-load): Revert to checking XEmacs.
2633
2634 * textmodes/conf-mode.el: Don't use font-lock-defaults-alist.
2635 Various docstring and line-width fixups.
2636 (conf-mode): Use cond.
2637 Set font-lock-defaults. Don't set comment-use-syntax.
2638
2639 2005-10-18 David Ponce <david@dponce.com>
2640
2641 * tree-widget.el (tree-widget-button-click): New function.
2642 (tree-widget-button-keymap): Use it.
2643
2644 2005-10-18 Romain Francoise <romain@orebokech.com>
2645
2646 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
2647 (bookmark-bmenu-hide-filenames): Add follow-link property.
2648 Improve help-echo text.
2649
2650 * ffap.el (find-file-at-point): Doc fix.
2651
2652 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2653
2654 * mouse.el (mouse-set-region): Don't do sit-for on a mac frame.
2655
2656 2005-10-18 Masatake YAMATO <jet@gyve.org>
2657
2658 Install to the CVS repository what I forgot to install in my
2659 2005-10-16 changes.
2660
2661 * progmodes/python.el (python-complete-symbol): Pass the common
2662 prefix substring of completion to `display-completion-list'.
2663
2664 * textmodes/org.el (org-complete): Ditto.
2665
2666 2005-10-18 Masatake YAMATO <jet@gyve.org>
2667
2668 Fix a bug reported by Sven Joachim <sven_joachim@web.de>.
2669
2670 * woman.el (WoMan-xref-man-page): New button type derived
2671 from `Man-abstract-xref-man-page'.
2672 (woman-mode): Pass `WoMan-xref-man-page' to `Man-highlight-references'.
2673
2674 * man.el (Man-abstract-xref-man-page): New button type.
2675 (Man-xref-man-page): Make it derived from `Man-abstract-xref-man-page'.
2676 (Man-highlight-references): Add new optional argument `xref-man-type'.
2677
2678 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
2679
2680 * progmodes/gud.el (gud-menu-map): Correct condition for fringe.
2681
2682 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
2683
2684 * cus-edit.el (Custom-move-and-invoke): Delete.
2685 (custom-mode-map): Bind mouse-1 to widget-move-and-invoke.
2686
2687 * wid-edit.el (widget-move-and-invoke): New function, from
2688 Custom-move-and-invoke.
2689
2690 2005-10-17 Bill Wohler <wohler@newt.com>
2691
2692 Move all remaining images from lisp/toolbar to etc/images, move
2693 lisp/toolbar/tool-bar to lisp and "delete" lisp/toolbar. Place
2694 the low resolution images in their own directory (low-color).
2695
2696 * toolbar/attach.*, toolbar/cancel.*, toolbar/close.*,
2697 * toolbar/copy.*, toolbar/cut.*, toolbar/diropen.*, toolbar/exit.*:
2698 * toolbar/help.*, toolbar/home.*, toolbar/index.*, toolbar/info.*:
2699 * toolbar/mail.*, toolbar/new.*, toolbar/open.*, toolbar/paste.*:
2700 * toolbar/preferences.*, toolbar/print.*, toolbar/save.*:
2701 * toolbar/saveas.*, toolbar/search.*, toolbar/search-replace.*:
2702 * toolbar/spell.*, toolbar/undo.*: Move to etc/images.
2703
2704 * toolbar/lc-copy.*: Move to etc/images/low-color/copy.*.
2705 * toolbar/lc-cut.*: Move to etc/images/low-color/cut.*.
2706 * toolbar/lc-help.*: Move to etc/images/low-color/help.*.
2707 * toolbar/lc-home.*: Move to etc/images/low-color/home.*.
2708 * toolbar/lc-index.*: Move to etc/images/low-color/index.*.
2709 * toolbar/lc-new.*: Move to etc/images/low-color/new.*.
2710 * toolbar/lc-open.*: Move to etc/images/low-color/open.*.
2711 * toolbar/lc-paste.*: Move to etc/images/low-color/paste.*.
2712 * toolbar/lc-preferences.*: Move to etc/images/low-color/preferences.*.
2713 * toolbar/lc-print.*: Move to etc/images/low-color/print.*.
2714 * toolbar/lc-save.*: Move to etc/images/low-color/save.*.
2715 * toolbar/lc-saveas.*: Move to etc/images/low-color/saveas.*.
2716 * toolbar/lc-search.*: Move to etc/images/low-color/search.*.
2717 * toolbar/lc-spell.*: Move to etc/images/low-color/spell.*.
2718 * toolbar/lc-undo.*: Move to etc/images/low-color/undo.*.
2719
2720 To conform with convention, replace the underscore (_) in the
2721 following image names with dash (-) or (/) as appropriate.
2722
2723 * toolbar/back_arrow.*: Move to etc/images/back-arrow.*.
2724 * toolbar/fld_open.*: Move to etc/images/fld-open.*.
2725 * toolbar/fwd_arrow.*: Move to etc/images/fwd-arrow.*.
2726 * toolbar/jump_to.*: Move to etc/images/jump-to.*.
2727 * toolbar/left_arrow.*: Move to etc/images/left-arrow.*.
2728 * toolbar/right_arrow.*: Move to etc/images/right-arrow.*.
2729 * toolbar/up_arrow.*: Move to etc/images/up-arrow.*.
2730 * toolbar/lc-back_arrow.*: Move to etc/images/low-color/back-arrow.*.
2731 * toolbar/lc-fwd_arrow.*: Move to etc/images/low-color/fwd-arrow.*.
2732 * toolbar/lc-jump_to.*: Move to etc/images/low-color/jump-to.*.
2733 * toolbar/lc-left_arrow.*: Move to etc/images/low-color/left-arrow.*.
2734 * toolbar/lc-right_arrow.*: Move to etc/images/low-color/right-arrow.*.
2735 * toolbar/lc-up_arrow.*: Move to etc/images/low-color/up-arrow.*.
2736 * toolbar/mail_compose.*: Move to etc/images/mail/compose.*.
2737 * toolbar/mail_send.*: Move to etc/images/mail/send.*.
2738
2739 * info.el (info-tool-bar-map): Replace underscores in image names
2740 with dashes.
2741
2742 * makefile.w32-in (WINS): Remove toolbar.
2743
2744 * menu-bar.el: Replace toolbar/tool-bar.el with tool-bar.el in comment.
2745
2746 * tool-bar.el: Move to lisp from toolbar. Now that
2747 toolbar is empty, it should be deleted when folks run "cvs up -P".
2748
2749 2005-10-18 Jay Belanger <belanger@truman.edu>
2750
2751 * calc/calc-store.el (calc-store-into): Get the proper variable name
2752 to display in message.
2753
2754 2005-10-18 Nick Roberts <nickrob@snap.net.nz>
2755
2756 * progmodes/gdb-ui.el (gdb-var-create-handler): Make watch
2757 expressions display in speedbar for all buffers when debugging.
2758 (gdb-speedbar-expand-node): Ensure node contraction is always updated.
2759
2760 * speedbar.el (speedbar-set-mode-line-format): Indent properly.
2761 (speedbar-insert-button, speedbar-make-button):
2762 Use add-text-properties.
2763 (speedbar-update-localized-contents)
2764 (speedbar-update-directory-contents)
2765 (speedbar-update-special-contents): Use dolist.
2766 (speedbar-buffer-easymenu-definition): Add a menu separator.
2767
2768 2005-10-17 Jason Rumney <jasonr@gnu.org>
2769
2770 * makefile.w32-in: Use $(lisp) consistently.
2771 (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): New targets
2772 for shell specific generation of mh-autoloads.
2773
2774 2005-10-17 Richard M. Stallman <rms@gnu.org>
2775
2776 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Undo prev change.
2777
2778 2005-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
2779
2780 * jit-lock.el (jit-lock-fontify-now):
2781 Move jit-lock-context-unfontify-pos to avoid wasted work.
2782
2783 2005-10-17 Michael Albinus <michael.albinus@gmx.de>
2784
2785 * net/tramp.el (tramp-completion-mode): New defvar. Used in
2786 `tramp-completion-mode' for checking if we are in completion mode.
2787 (tramp-completion-handle-file-name-all-completions): Reorder code
2788 in order to complete for file names only in case there are no
2789 method/user/host completions. This is necessary for cooperation
2790 with ido. Reported by Kim F. Storm <storm@cua.dk>.
2791
2792 2005-10-16 Chong Yidong <cyd@stupidchicken.com>
2793
2794 * longlines.el (longlines-search-forward)
2795 (longlines-search-backward): Match any number of spaces.
2796
2797 2005-10-16 Thien-Thi Nguyen <ttn@gnu.org>
2798
2799 * diff-mode.el (diff-mode): Doc fix.
2800
2801 2005-10-16 David Reitter <david.reitter@gmail.com>
2802
2803 * mail/sendmail.el (send-mail-function): Use mailclient-send-it
2804 as default on darwin and windows systems.
2805
2806 2005-10-16 Sven Joachim <svenjoac@gmx.de> (tiny change)
2807
2808 * arc-mode.el (archive-zip-extract): Doc fix.
2809
2810 2005-10-16 Romain Francoise <romain@orebokech.com>
2811
2812 * mouse.el (mouse-1-click-follows-link): Doc fix.
2813
2814 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
2815
2816 * savehist.el: Don't require CL at runtime.
2817 (savehist-xemacs): Remove.
2818 (savehist-coding-system): Use utf-8 if present, regardless of religion.
2819 (savehist-no-conversion): Use (featurep 'xemacs).
2820 (savehist-load): Check existence of start-itimer rather than XEmacs.
2821 Use an idle timer.
2822 (savehist-process-for-saving): Replace use of CL funs `subseq' and
2823 `delete-if-not'.
2824
2825 2005-10-16 Hrvoje Niksic <hniksic@xemacs.org>
2826
2827 * savehist.el: Newer version.
2828 (savehist-autosave-interval, savehist-coding-system, savehist-timer)
2829 (savehist-last-checksum, savehist-no-conversion): New vars.
2830 (savehist-autosave, savehist-process-for-saving, savehist-printable):
2831 New functions.
2832 (savehist-load, savehist-save): Use them.
2833 (savehist-delimit): Remove.
2834
2835 2005-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
2836
2837 * progmodes/compile.el (compilation-goto-locus): Display the
2838 compilation buffer first and the source buffer second, in case they're
2839 in overlapping frames. Don't raise the compilation frame if it was the
2840 selected window upon entry. Pass the `other-window' arg to
2841 pop-to-buffer.
2842
2843 * info.el (Info-fontify-node): Use dolist.
2844 Change add-text-properties to put-text-property.
2845
2846 2005-10-16 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2847
2848 * textmodes/bibtex.el (bibtex-font-lock-url): Catch when point past
2849 bound of search.
2850
2851 2005-10-16 Masatake YAMATO <jet@gyve.org>
2852
2853 * dabbrev.el (dabbrev-completion): Pass the common
2854 prefix substring of completion to `display-completion-list'.
2855
2856 * filecache.el (file-cache-minibuffer-complete)
2857 (file-cache-complete): Ditto.
2858
2859 * tempo.el (tempo-display-completions): Ditto.
2860
2861 * wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
2862
2863 * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
2864
2865 * eshell/em-hist.el (eshell-list-history): Ditto.
2866
2867 * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
2868
2869 * mail/mailalias.el (mail-complete): Ditto.
2870
2871 * progmodes/etags.el (complete-tag): Ditto.
2872
2873 * progmodes/make-mode.el (makefile-complete): Ditto.
2874
2875 * progmodes/meta-mode.el (meta-complete-symbol): Ditto.
2876
2877 * progmodes/octave-mod.el (octave-complete-symbol): Ditto.
2878
2879 * progmodes/pascal.el (pascal-complete-word)
2880 (pascal-show-completions): Ditto.
2881
2882 * textmodes/bibtex.el (bibtex-complete-internal): Ditto.
2883
2884 * simple.el (completion-common-substring): New variable.
2885 (completion-setup-function): Use `completion-common-substring'
2886 to put faces.
2887
2888 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2889
2890 * term/mac-win.el: Apply 2005-10-09 change for term/x-win.el.
2891 (x-get-selection, mac-select-convert-to-string): Convert from/to
2892 UTF-16 clipboard data as in native byte order, no BOM.
2893
2894 2005-10-16 Nick Roberts <nickrob@snap.net.nz>
2895
2896 * progmodes/gud.el (gud-tool-bar-map): Rename the images
2897 appropriately (gud/next, gud/nexti, gud/step, gud/stepi).
2898 (gud-sentinel): Use speedbar-frame to check for speedbar.
2899
2900 2005-10-15 Richard M. Stallman <rms@gnu.org>
2901
2902 * savehist.el: New file.
2903
2904 2005-10-14 Karl Chen <quarl@cs.berkeley.edu>
2905
2906 * textmodes/tex-mode.el (tex-font-lock-keywords-2):
2907 Fix bug in \bf fontification.
2908
2909 2005-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
2910
2911 * pcvs.el (cvs-edit-log-files): New var.
2912 (cvs-mode-edit-log): New arg `file'.
2913 (cvs-edit-log-minor-wrap): Don't set the ignore-marks property.
2914 Instead force the use of the original file and nothing else.
2915 (cvs-edit-log-filelist): Don't use the cvs-mode-* function unless
2916 the cvs-minor-wrap-function is set.
2917 (cvs-do-edit-log): Obey the vars set in cvs-edit-log-minor-wrap.
2918
2919 2005-10-14 Bill Wohler <wohler@newt.com>
2920
2921 * toolbar/gud-break.*: Moved to etc/images/gud/break.*.
2922 * toolbar/gud-cont.*: Moved to etc/images/gud/cont.*.
2923 * toolbar/gud-down.*: Moved to etc/images/gud/down.*.
2924 * toolbar/gud-finish.*: Moved to etc/images/gud/finish.*.
2925 * toolbar/gud-ni.*: Moved to etc/images/gud/ni.*.
2926 * toolbar/gud-n.*: Moved to etc/images/gud/n.*.
2927 * toolbar/gud-print.*: Moved to etc/images/gud/print.*.
2928 * toolbar/gud-pstar.*: Moved to etc/images/gud/pstar.*.
2929 * toolbar/gud-remove.*: Moved to etc/images/gud/remove.*.
2930 * toolbar/gud-run.*: Moved to etc/images/gud/run.*.
2931 * toolbar/gud-si.*: Moved to etc/images/gud/si.*.
2932 * toolbar/gud-s.*: Moved to etc/images/gud/s.*.
2933 * toolbar/gud-until.*: Moved to etc/images/gud/until.*.
2934 * toolbar/gud-up.*: Moved to etc/images/gud/up.*.
2935 * toolbar/gud-watch.*: Moved to etc/images/gud/watch.*.
2936
2937 * progmodes/gud.el (gud-tool-bar-map): Rename the images
2938 appropriately (for example, gud-break to gud/break).
2939
2940 2005-10-14 Chong Yidong <cyd@stupidchicken.com>
2941
2942 * longlines.el (longlinges-search-function)
2943 (longlines-search-forward, longlines-search-backward): New functions.
2944 (longlines-mode): Set isearch-search-fun-function to
2945 longlinges-search-function.
2946
2947 * mouse.el (mouse-drag-region-1): Handle the case where a
2948 double-click event is bound to an arbitrary function.
2949
2950 2005-10-14 David Ponce <david@dponce.com>
2951
2952 * recentf.el (recentf-track-opened-file)
2953 (recentf-track-closed-file, recentf-update-menu)
2954 (recentf-used-hooks, recentf-enabled-p): Move before dialog stuff.
2955 (recentf-dialog-mode-map): Map follow-link to RET, so dialogs obey
2956 mouse-1-click-follows-link.
2957
2958 2005-10-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2959
2960 * toolbar/diropen.xpm, toolbar/diropen.pbm: New versions made from
2961 Gnome file-manager.png. Suggested by
2962 Joachim Nilsson <joachim.nilsson@vmlinux.org>.
2963
2964 * toolbar/README: Add diropen.xpm.
2965
2966 2005-10-13 Bill Wohler <wohler@newt.com>
2967
2968 * makefile.w32-in (MH_E_SRC): Rename from MH-E-SRC per NMAKE
2969 restrictions. Suggested by David Robinow <drobinow@gmail.com>.
2970
2971 2005-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
2972
2973 * progmodes/mixal-mode.el (mixal-operation-codes-alist):
2974 Don't waste the byte-compiler's time on constant data.
2975
2976 2005-10-13 Kenichi Handa <handa@m17n.org>
2977
2978 * international/utf-8.el (utf-8-compose): Display an invalid UTF-8
2979 byte with `escape-glyph' face.
2980
2981 * international/fontset.el (ccl-encode-unicode-font):
2982 Lookup utf-subst-table-for-encode, not ucs-mule-cjk-to-unicode.
2983 Handle the case that ucs-mule-to-mule-unicode translates a character to
2984 ASCII (usually for IPA characters).
2985
2986 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
2987
2988 * info.el (Info-fontify-node): Don't be fooled by a lone "...".
2989 Don't hide the underline of titles if font-lock-mode is disabled.
2990
2991 2005-10-12 Bill Wohler <wohler@newt.com>
2992
2993 * makefile.w32-in (MH-E-SRC): New. Used by mh-autoloads.
2994 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
2995 files in MH-E-SRC have been updated.
2996 (updates, compile, recompile, bootstrap): Depend on mh-autoloads.
2997
2998 2005-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
2999
3000 * progmodes/mixal-mode.el (mixal-operation-codes): Remove.
3001 (mixal-mode-syntax-table): Add \n as end-comment.
3002 (mixal-operation-codes-alist): Immediately initialize to full value.
3003 (mixal-add-operation-code): Remove.
3004 (mixal-describe-operation-code): Make the arg non-optional.
3005 Use the interactive spec instead.
3006 Use mixal-operation-codes-alist rather than mixal-operation-codes.
3007 (mixal-font-lock-keywords): Don't highlight comments here any more.
3008 (mixal-font-lock-syntactic-keywords): New var.
3009 (mixal-mode): Use it. Fix comment-start-skip.
3010
3011 2005-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3012
3013 * startup.el (command-line-x-option-alist): -nb => -nbi
3014
3015 2005-10-12 Kim F. Storm <storm@cua.dk>
3016
3017 * startup.el (fancy-splash-default-action): Discard mouse click in
3018 the splash screen window, as it has no sensible meaning in the
3019 next window to be selected. Fixes error reported by Jan D.
3020
3021 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
3022
3023 * desktop.el (desktop-load-file): Do nothing when FUNCTION is nil.
3024
3025 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3026
3027 * progmodes/mixal-mode.el: Sync with version in the GNU MDK project.
3028 Try to fix up minor layout issues like indentation, line break, etc...
3029 (mixal-mode-syntax-table): Don't try to specify comment syntax,
3030 because it doesn't work.
3031 (mixal-operation-codes): Add some more codes.
3032 (mixal-font-lock-keywords): Process comments here.
3033 (mixal-mode): mixasm no longer needs -g option.
3034
3035 2005-10-11 Sven Joachim <svenjoac@gmx.de> (tiny change)
3036
3037 * progmodes/sh-script.el (sh-tmp-file):
3038 Use mktemp -t. Finish support for es and rc shells.
3039
3040 2005-10-11 Jay Belanger <belanger@truman.edu>
3041
3042 * calc/calcalg2.el (calc-integral): With an argument, compute the
3043 definite integral.
3044
3045 2005-10-11 Chong Yidong <cyd@stupidchicken.com>
3046
3047 * mouse.el (mouse-drag-region-1): Don't try to catch a
3048 double-click when doing follow-link (it's overridden anyway).
3049
3050 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
3051
3052 * emacs-lisp/autoload.el (update-directory-autoloads): Doc fix.
3053 (autoload-print-form-outbuf): Add docstring.
3054
3055 2005-10-11 Juri Linkov <juri@jurta.org>
3056
3057 * info.el (Info-mode-menu): Delete menu item "Edit".
3058 (Info-mode): Delete description of Info-edit from docstring,
3059 and rearrange descriptions of Info commands in the order
3060 they are documented in the Info manual.
3061
3062 2005-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
3063
3064 * calendar/appt.el (appt-check): Use diary-selective-display var.
3065
3066 2005-10-10 Richard M. Stallman <rms@gnu.org>
3067
3068 * net/newsticker.el (newsticker-start, newsticker-show-news):
3069 Add autoload cookies.
3070
3071 2005-10-10 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
3072
3073 * progmodes/sh-script.el (sh-tmp-file): Use mktemp.
3074
3075 2005-10-10 Karl Chen <quarl@cs.berkeley.edu>
3076
3077 * jka-cmpr-hook.el (jka-compr-handler): Fix typo in `operations' prop.
3078
3079 2005-10-10 Jay Belanger <belanger@truman.edu>
3080
3081 * calc/calc-arith.el (math-check-known-scalarp)
3082 (math-check-known-matrixp): Check the values of arguments that are
3083 variables.
3084 (math-check-known-square-matrixp): New function.
3085 (math-known-square-matrixp): Use math-check-known-square-matrixp.
3086 (math-super-types): Add sqmatrix type.
3087
3088 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec): Change the
3089 mode name `square' to 'sqmatrix'.
3090
3091 * calc/calc.el (calc-matrix-mode, calc-set-mode-line): Change the
3092 mode name `square' to 'sqmatrix'.
3093
3094 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
3095
3096 * progmodes/etags.el (select-tags-table-mode): Don't use
3097 selective-display.
3098 (tags-select-tags-table): Pass `button' to the action function.
3099 (select-tags-table): Place the side-info on button properties rather
3100 than in hidden text. Abbreviate file names.
3101 (select-tags-table-mode-map): Inherit rather than copy buttom-map.
3102 (select-tags-table-select): Add `button' argument.
3103 Get side-info from the button property rather than from hidden text.
3104
3105 2005-10-11 Nick Roberts <nickrob@snap.net.nz>
3106
3107 * progmodes/gud.el (gud-install-speedbar-variables): Add more bindings.
3108 (gud-speedbar-buttons): Preserve point if possible.
3109 (gud-sentinel): Restore previous speedbar display type.
3110
3111 * progmodes/gdb-ui.el (gdba): Improve diagram.
3112 (def-gdb-auto-update-handler, gdb-info-locals-handler)
3113 (gdb-put-breakpoint-icon, gdb-remove-breakpoint-icons):
3114 Call get-buffer-window once.
3115
3116 2005-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
3117
3118 * progmodes/pascal.el (pascal-mode-map): Move init into declaration.
3119 (pascal-mode-syntax-table): Make (* *) markers same class as { ... }.
3120 (pascal-indent-command): Remove unused var `ind'.
3121 (pascal-indent-case): Remove unused var `oldpos'.
3122 (pascal-outline-map): Don't inherit from pascal-mode-map anymore,
3123 since it's now used as a proper minor mode map.
3124 (pascal-outline): Rename to pascal-outline-mode.
3125 (pascal-outline-mode): Use define-minor-mode.
3126 (pascal-outline-mode, pascal-outline-change): Use overlays rather than
3127 selective-display.
3128
3129 2005-10-10 Andreas Schwab <schwab@suse.de>
3130
3131 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Adjust match
3132 number. Reported by Karl Chen <quarl@cs.berkeley.edu>.
3133
3134 * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Fix for building
3135 outside source directory.
3136
3137 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
3138
3139 * textmodes/org.el: (org-mode-map): Explicit definition of `C-c
3140 C-x' as a prefix.
3141 (orgtbl-mode-map): Full keymap instead of sparse, because all
3142 `self-insert-command' keys are redefined in this map.
3143 (org-export-as-html): Specify charset for HTML file, by taking it
3144 from the coding system.
3145
3146 2005-10-10 Kenichi Handa <handa@m17n.org>
3147
3148 * textmodes/flyspell.el (flyspell-check-word-p):
3149 If unread-command-events is non-empty, don't call sit-for.
3150
3151 2005-10-09 Richard M. Stallman <rms@gnu.org>
3152
3153 * font-lock.el (font-lock-syntactic-keywords)
3154 (font-lock-keywords): Doc fixes.
3155
3156 * textmodes/flyspell.el (flyspell-external-point-words):
3157 Simplify logic, and don't try to check for consecutive appearances
3158 of one incorrect word.
3159
3160 2005-10-10 Nick Roberts <nickrob@snap.net.nz>
3161
3162 * speedbar.el (speedbar-buffer-easymenu-definition): Add menu
3163 separator.
3164
3165 * progmodes/gud.el (gud-last-speedbar-buffer): Remove.
3166 (gud-install-speedbar-variables): Add GUD to speedbar "Displays" list.
3167 (gud-expansion-speedbar-buttons): New function.
3168 (gud-speedbar-buttons): Check for gud-comint-buffer.
3169
3170 2005-10-09 Bill Wohler <wohler@newt.com>
3171
3172 * Makefile.in (updates): Add mh-loaddefs dependency.
3173
3174 2005-10-09 Chong Yidong <cyd@stupidchicken.com>
3175
3176 * speedbar.el (speedbar-file-key-map): Fix typo.
3177
3178 2005-10-09 Daniel Brockman <daniel@brockman.se>
3179
3180 * cus-start.el (line-spacing): Add custom spec.
3181
3182 2005-10-09 Romain Francoise <romain@orebokech.com>
3183
3184 * textmodes/ispell.el (ispell-check-version): Fix last change.
3185
3186 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3187
3188 * term/x-win.el: Remove -i, --icon-type from comment.
3189
3190 * startup.el (command-line-x-option-alist): Remove options -i,
3191 -itype, --icon-type, added -nb, --no-bitmap-icon
3192
3193 2005-10-09 Nick Roberts <nickrob@snap.net.nz>
3194
3195 * progmodes/gud.el (gud-speedbar-menu-items): Use :visible
3196 instead of :active.
3197
3198 2005-10-08 Eric Hanchrow <offby1@blarg.net>
3199
3200 * textmodes/ispell.el (ispell-check-version):
3201 Ignore hyphen, and all that follows, in aspell's version text.
3202
3203 2005-10-08 Jay Belanger <belanger@truman.edu>
3204
3205 * calc/calc-arith.el (math-known-square-matrixp): New function.
3206 (math-pow-fancy): Check for matrices before distributing exponent
3207 across products.
3208
3209 * calc/calc-keypd.el (calc-do-keypad): Widen keypad window for
3210 fullscreen keypad. Suggested by Luc Teirlinck.
3211 (calc-keypad-show-input): Add space for formatting.
3212
3213 * calc/calc-mode.el (calc-matrix-mode, math-get-modes-vec):
3214 Add square matrix option.
3215
3216 * calc/calc-poly.el (math-expand-term): Check for matrices instead
3217 of checking calc-matrix-mode when deciding how to expand.
3218
3219 * calc/calc.el (calc-set-mode-line): Add square matrix option.
3220
3221 2005-10-08 Lars Hansen <larsh@soem.dk>
3222
3223 * net/tramp.el (tramp-perl-directory-files-and-attributes):
3224 Add error handling.
3225 (tramp-handle-directory-files-and-attributes): Handle perl error msg.
3226
3227 2005-10-08 Michael Albinus <michael.albinus@gmx.de>
3228
3229 Sync with Tramp 2.0.51.
3230
3231 * net/tramp.el (tramp-handle-set-visited-file-modtime)
3232 (tramp-handle-insert-file-contents, tramp-handle-write-region):
3233 Insert special handling for `last-coding-system-used', again
3234 it still seems to be necessary (unlike stated before).
3235 Reported by Toshinori Sugita <sugita@d-pad.co.jp>.
3236 (tramp-password-prompt-regexp): There might be other words before
3237 trailing ":". Reported by Kurt Steinkraus <kurt@steinkraus.us>.
3238 (tramp-chunksize): Improve docstring.
3239 (tramp-set-auto-save-file-modes): Octal integer code #o600 breaks
3240 Emacs 20. Use `tramp-octal-to-decimal' therefore. Reported by
3241 Christian Joergensen <bugs@razor.dk>.
3242
3243 2005-10-07 Glenn Morris <rgm@gnu.org>
3244
3245 * progmodes/f90.el (f90-keywords-re, f90-mode): Doc fix.
3246 (f90-font-lock-keywords-2, f90-mode-abbrev-table): Add `double
3247 precision'.
3248
3249 2005-10-07 Romain Francoise <romain@orebokech.com>
3250
3251 * ibuf-ext.el (ibuffer-do-shell-command-pipe)
3252 (ibuffer-do-shell-command-pipe-replace)
3253 (ibuffer-do-shell-command-file, ibuffer-do-eval)
3254 (ibuffer-do-view-and-eval, ibuffer-do-rename-uniquely)
3255 (ibuffer-do-revert, ibuffer-do-replace-regexp)
3256 (ibuffer-do-query-replace, ibuffer-do-query-replace-regexp)
3257 (ibuffer-do-print, ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
3258 (ibuffer-filter-by-name, ibuffer-filter-by-filename)
3259 (ibuffer-filter-by-size-gt, ibuffer-filter-by-size-lt)
3260 (ibuffer-filter-by-content, ibuffer-filter-by-predicate
3261 (ibuffer-do-sort-by-major-mode, ibuffer-do-sort-by-mode-name)
3262 (ibuffer-do-sort-by-alphabetic, ibuffer-do-sort-by-size):
3263 Autoload file sans suffix.
3264
3265 * emulation/cua-base.el (cua-toggle-global-mark): Likewise.
3266
3267 2005-10-07 David Ponce <david@dponce.com>
3268
3269 * recentf.el (recentf-menu-open-all-flag): New option.
3270 (recentf-digit-shortcut-command-name): New function.
3271 (recentf--shortcuts-keymap): New variable.
3272 (recentf-menu-shortcuts): New variable.
3273 (recentf-make-menu-items): Initialize it. Replace the "More..."
3274 menu item by "All...", if `recentf-menu-open-all-flag' is non-nil.
3275 (recentf-menu-value-shortcut): New function.
3276 (recentf-make-menu-item): Use it. No more in-lined.
3277 (recentf-dialog-mode-map): Base on `recentf--shortcuts-keymap'.
3278 (recentf-open-most-recent-file): Rename from
3279 `recentf-open-file-with-key'. Don't depend on key binding.
3280 (recentf-mode-map): New variable.
3281 (recentf-mode): Use it.
3282
3283 2005-10-06 Bill Wohler <wohler@newt.com>
3284
3285 * mh-e/mh-loaddefs.el: Remove. Now generated automatically.
3286
3287 * Makefile.in (AUTOGENEL): Add mh-e/mh-loaddefs.el.
3288 (MH-E-SRC): New. Used by mh-autoloads.
3289 (mh-autoloads): New. Builds mh-e/mh-loaddefs.el. Rebuilds if any
3290 files in MH-E-SRC have been updated.
3291 (compile, recompile, bootstrap): Depend on mh-autoloads.
3292
3293 2005-10-07 Nick Roberts <nickrob@snap.net.nz>
3294
3295 * progmodes/gud.el (gud-menu-map): Only display un-intuitive
3296 gud-break and gud-remove icons when the fringe is not available.
3297
3298 * progmodes/gdb-ui.el (gdb-fringe-width -> gdb-buffer-fringe-width):
3299 Typo.
3300
3301 2005-10-06 Michael Cadilhac <michael.cadilhac-@t-lrde.epita.fr> (tiny change)
3302
3303 * play/zone.el (zone): Wrap body with save-window-excursion.
3304
3305 2005-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
3306
3307 * calendar/cal-menu.el (calendar-mouse-view-diary-entries):
3308 Use the new `list-only' arg to diary-list-entries.
3309
3310 * calendar/diary-lib.el: Use overlays rather than selective-display.
3311 (diary-selective-display): New var.
3312 (diary-header-line-format): Use it.
3313 (diary-list-entries): Add argument `list-only'.
3314 Put the buffer in diary-mode. Don't add \^M at beg and end.
3315 Replace \^M by invisible overlays.
3316 (diary-unhide-everything): Replace \^M by invisible overlays.
3317 (print-diary-entries): Look for overlays rather than \^M.
3318 Add a space to the temp buffer name.
3319 (diary-show-all-entries, mark-diary-entries, make-diary-entry):
3320 Put the buffer in diary-mode.
3321 (list-sexp-diary-entries): Replace \^M by invisible overlays.
3322 (diary-anniversary): Make the year arg optional.
3323 (diary-time-regexp): New const.
3324 (diary-font-lock-keywords): Use it to accept a few more time formats.
3325
3326 * pcvs.el (cvs-sentinel): Make sure we do re-enable undo.
3327
3328 2005-10-06 Thien-Thi Nguyen <ttn@gnu.org>
3329
3330 * textmodes/artist.el (artist-ellipse-mirror-quadrant):
3331 Fix bug introduced 2005-07-03: Use (car (last ...))
3332 to faithfully reproduce replaced artist-last.
3333 (artist-set-arrow-points-for-poly): Likewise.
3334 Suggested by Johan Bockg\e,Ae\e(Brd.
3335
3336 2005-10-06 Juanma Barranquero <lekktu@gmail.com>
3337
3338 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
3339 * wid-edit.el (widget):
3340 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
3341 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
3342
3343 2005-10-06 Kenichi Handa <handa@m17n.org>
3344
3345 * international/mule-cmds.el (set-language-environment):
3346 Fix setting up of case-table for unibyte mode.
3347
3348 * simple.el (what-cursor-position): If the character is displayed
3349 by some `display' text property, show that. Don't use
3350 single-key-description for eight-bit characters in multibyte mode.
3351
3352 2005-10-06 Nick Roberts <nickrob@snap.net.nz>
3353
3354 * progmodes/gdb-ui.el (gdb-fringe-width): New variable.
3355 (gdb-ann3): Set it.
3356 (gdb-put-breakpoint-icon): Don't take fringe-width from speedbar frame.
3357 (gdb-info-frames-custom): Use inverse-video for first five
3358 characters of selected frame only.
3359 (gdb-get-frame-number): Select frame even when point is on frame
3360 number.
3361
3362 2005-10-06 Masatake YAMATO <jet@gyve.org>
3363
3364 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom):
3365 Put `font-lock-function-name-face'.
3366 (gdb-info-frames-custom): Put `font-lock-function-name-face'
3367 and `font-lock-variable-name-face'
3368 (gdb-registers-font-lock-keywords): New font lock keywords definition.
3369 (gdb-registers-mode): Use `gdb-registers-font-lock-keywords`.
3370 (gdb-memory-font-lock-keywords): New font lock keywords definition.
3371 (gdb-memory-mode): Use `gdb-memory-font-lock-keywords'.
3372 (gdb-local-font-lock-keywords): New font lock keywords definition.
3373 (gdb-locals-mode): Use `gdb-local-font-lock-keywords'
3374 (gdb-threads-font-lock-keywords): New font lock keywords definition.
3375 (gdb-threads-mode): Use `gdb-threads-font-lock-keywords'.
3376
3377 2005-10-05 Michael Kifer <kifer@cs.stonybrook.edu>
3378
3379 * ediff-merge.el (ediff-merge-region-is-non-clash): New defsubst.
3380 (ediff-merge-region-is-non-clash-to-skip): Previously called
3381 ediff-merge-region-is-non-clash.
3382
3383 * ediff-mult.el (ediff-append-custom-diff, ediff-meta-show-patch):
3384 Use insert-buffer-substring.
3385
3386 * ediff-ptch.el (ediff-fixup-patch-map): Use better heuristics for
3387 selecting files to patch. Also bug fixes.
3388
3389 * ediff-util.el (ediff-setup): Bug fix.
3390 (ediff-next-difference): Never skip clashes that differ in white
3391 space only.
3392
3393 * ediff-wind.el (ediff-setup-control-frame)
3394 (ediff-destroy-control-frame): Check the menubar feature.
3395
3396 * viper-cmd.el (viper-normalize-minor-mode-map-alist)
3397 (viper-refresh-mode-line): Use make-local-variable to localize
3398 some vars instead of make-variable-buffer-local. Suggested by
3399 Stefan Monnier.
3400
3401 * viper-init.el (viper-make-variable-buffer-local): Delete alias.
3402 (viper-restore-cursor-type, viper-set-insert-cursor-type):
3403 Use make-local-variable instead of make-variable-buffer-local.
3404 Suggested by Stefan Monnier.
3405
3406 * viper.el (viper-mode): Don't use viper-make-variable-buffer-local.
3407 (viper-comint-mode-hook): Use make-local-variable on
3408 require-final-newline.
3409 (viper-non-hook-settings): Don't use make-variable-buffer-local.
3410
3411 2005-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
3412
3413 * progmodes/scheme.el (scheme-mode-syntax-table): Mark ; as being
3414 also the second char of a comment-start sequence.
3415 (scheme-sexp-comment-syntax-table): New var.
3416 (lambda, define): Set their scheme-doc-string-elt property.
3417 (scheme-font-lock-syntactic-face-function): Handle sexp-comments.
3418 Use lisp-font-lock-syntactic-face-function now that it properly
3419 handles |...| symbols.
3420 (scheme-mode-variables): Set lisp-doc-string-elt-property,
3421 parse-sexp-lookup-properties and font-lock-extra-managed-props.
3422
3423 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Move the nesting
3424 bit from # to |.
3425 (lisp-font-lock-syntactic-face-function): Distinguish |...| symbols.
3426
3427 * emacs-lisp/lisp-mode.el (lambda): Add its doc-string-elt property.
3428 (lisp-doc-string-elt-property): New var.
3429 (lisp-font-lock-syntactic-face-function): Use it.
3430 Rewrite to recognize docstrings even for forms not at toplevel.
3431
3432 * progmodes/scheme.el (scheme-mode-syntax-table): Put the nested
3433 annotation on the | part of #| rather than on the # part.
3434 (scheme-font-lock-syntactic-face-function): New function, to
3435 distinguish strings from |...| symbols.
3436 (scheme-mode-variables): Use it. Also fix up the font-lock-time
3437 syntax-table so that #|...|# is properly highlighted.
3438
3439 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function):
3440 Don't mark as docstring the 3rd elem of an unknown toplevel form.
3441
3442 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
3443
3444 * bindings.el (global-map): Resync [home] and [end] bindings with C-a
3445 and C-e.
3446
3447 * emacs-lisp/eldoc.el: Move comments into docstrings.
3448 (eldoc-message-commands): Initialize in its declaration.
3449 Add move-beginning-of-line and move-end-of-line.
3450 (eldoc-add-command, eldoc-add-command-completions)
3451 (eldoc-remove-command, eldoc-remove-command-completions): Simplify.
3452
3453 * outline.el (outline-mark-subtree): Activate the mark.
3454
3455 * calendar/appt.el (appt-time-regexp): New var.
3456 (appt-add, appt-make-list): Use it.
3457 (appt-convert-time): Clean up.
3458
3459 * textmodes/tex-mode.el (tex-font-lock-syntactic-face-function):
3460 Don't set any syntax-table property here.
3461 (tex-font-lock-verb): New function. Do it here.
3462 (tex-font-lock-syntactic-keywords): Use it.
3463
3464 2005-10-04 Richard M. Stallman <rms@gnu.org>
3465
3466 * wid-edit.el (widget-file-complete): Get the widget start point
3467 the right way. Default directory to `/' if file has none.
3468
3469 * x-dnd.el (x-dnd-drop-data): Check for dedicated windows.
3470
3471 * textmodes/flyspell.el (flyspell-mode-on):
3472 Call ispell-maybe-find-aspell-dictionaries.
3473
3474 * textmodes/ispell.el (ispell-word, ispell-region):
3475 Call ispell-maybe-find-aspell-dictionaries.
3476 (ispell-accept-buffer-local-defs):
3477 Don't call ispell-maybe-find-aspell-dictionaries
3478
3479 2005-10-04 Richard M. Stallman <rms@gnu.org>
3480
3481 * iswitchb.el (iswitchb-buffer-ignore): Label it risky.
3482
3483 2005-10-04 Emilio C. Lopes <eclig@gmx.net>
3484
3485 * iswitchb.el (iswitchb-ignore-buffername-p): Use `functionp'
3486 instead of `fboundp' in order to allow for anonymous functions.
3487
3488 2005-10-04 Chong Yidong <cyd@stupidchicken.com>
3489
3490 * info.el (Info-next, Info-prev, Info-up): Select info buffer, in
3491 case the user clicks on the link while another window is selected.
3492 (Info-speedbar-hierarchy-buttons): Use speedbar-current-frame.
3493
3494 * dframe.el (dframe-update-keymap): Use mouse-1-click-follows-link
3495 functionality.
3496 (dframe-help-echo): Save point in case mouse tracking is off.
3497
3498 2005-10-04 Thien-Thi Nguyen <ttn@gnu.org>
3499
3500 * net/ange-ftp.el (ange-ftp-ls): Fix typo introduced in last change.
3501
3502 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
3503
3504 * progmodes/cc-styles.el (c-setup-paragraph-variables): Make sure we do
3505 not change the global value of those vars.
3506
3507 * progmodes/cc-mode.el (c-basic-common-init): Remove calls to
3508 make-local-variable which we do not need any more.
3509
3510 2005-10-03 Chong Yidong <cyd@stupidchicken.com>
3511
3512 * speedbar.el (speedbar-ignored-path-regexp, speedbar-line-path)
3513 (speedbar-ignored-path-expressions, speedbar-buffers-line-path)
3514 (speedbar-add-ignored-path-regexp, speedbar-buffers-line-path)
3515 (speedbar-path-line): Define obsolete aliases.
3516 (speedbar-line-directory): Doc fix.
3517
3518 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize)
3519 (vhdl-speedbar-rescan-hierarchy): Call speedbar-line-directory
3520 instead of speedbar-line-path.
3521
3522 2005-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3523
3524 * x-dnd.el (x-dnd-drop-data): Don't set dnd-open-file-other-window
3525 to nil if dropping on a window. Handle dropping on a minibuffer window
3526 like dropping on a non-window part of Emacs.
3527
3528 2005-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
3529
3530 * net/ange-ftp.el: Use with-current-buffer.
3531 (ange-ftp-insert-directory): Do not follow symlinks any more.
3532
3533 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
3534 Remove interactive spec.
3535
3536 2005-10-03 Kim F. Storm <storm@cua.dk>
3537
3538 * ido.el (ido-mode): Use custom-initialize-set.
3539
3540 2005-10-02 Richard M. Stallman <rms@gnu.org>
3541
3542 * progmodes/ebnf2ps.el (ebnf-eps-production-list):
3543 Use insert-buffer-substring.
3544
3545 * net/tramp.el: Pacify byte compiler warnings in pacification code.
3546 (tramp-handle-file-local-copy): Use insert-buffer-substring.
3547
3548 2005-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
3549
3550 * net/ange-ftp.el (ange-ftp-insert-directory): Undo unintended part
3551 in last change.
3552 (ange-ftp-insert-directory): Fix up the search for the case where
3553 `file' is absolute.
3554
3555 2005-10-02 Romain Francoise <romain@orebokech.com>
3556
3557 * progmodes/compile.el (compile-goto-error): Delete extra paren.
3558
3559 2005-10-02 Andreas Schwab <schwab@suse.de>
3560
3561 * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without
3562 directory component in the session info.
3563
3564 2005-10-01 Richard M. Stallman <rms@gnu.org>
3565
3566 * comint.el (comint-redirect-subvert-readonly): Doc fix.
3567
3568 * simple.el (next-error-internal): New function.
3569
3570 * progmodes/compile.el (compilation-buffer-name): New arg MODE-COMMAND.
3571 (compilation-start): Pass new arg to compilation-buffer-name.
3572 (compile-goto-error): Use next-error-internal.
3573
3574 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
3575
3576 * speedbar.el: Remove RCS tag.
3577 (speedbar-check-read-only): Handle non-existent files.
3578
3579 * dframe.el, ezimage.el, sb-image.el: Remove RCS tags.
3580
3581 * info.el (Info-speedbar-hierarchy-buttons)
3582 (Info-speedbar-goto-node): Call speedbar-select-attached-frame.
3583
3584 2005-10-01 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3585
3586 * textmodes/bibtex.el (bibtex-valid-entry-whitespace-re):
3587 Do not match newline.
3588 (bibtex-realign): Do not use bibtex-valid-entry-whitespace-re.
3589 (bibtex-summary): Remove unnecessary save-excursion.
3590 (bibtex-fill-field-bounds): Use fill-region-as-paragraph.
3591
3592 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3593
3594 * term/mac-win.el: Add charset info for "iso10646-1".
3595 Modify default fontset to use ATSUI-compatible fonts for some charsets
3596 if available.
3597
3598 2005-10-01 Chong Yidong <cyd@stupidchicken.com>
3599
3600 * speedbar.el: Re-apply arch tag.
3601 (speedbar-version): Rename to version 1.0. Suggested by Eric
3602 M. Ludlam.
3603 Reapply two changes from Emacs CVS' version of speedbar lost
3604 during the merge:
3605 (speedbar-use-imenu-flag): Avoid unnecessary use of locate-library.
3606 (speedbar-frame-parameters): Improve customize type.
3607
3608 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
3609
3610 * net/ange-ftp.el (ange-ftp-gwp-start): Use with-current-buffer.
3611 (ange-ftp-file-directory-p): Fix the symlink case.
3612 (ange-ftp-insert-directory): When listing a single file, get a list of
3613 the parent buffer and extract the relevant line. Inspired from a patch
3614 by Katsumi Yamaoka <yamaoka@jpl.org>.
3615 (ange-ftp-file-name-sans-versions): Simplify.
3616
3617 2005-09-30 Bill Wohler <wohler@newt.com>
3618
3619 Move MH-E image files from toolbar and mail directories into
3620 etc/images.
3621
3622 * mail/reply2.*: Move to etc/images/mail/reply*.
3623
3624 * toolbar/execute.*, toolbar/highlight.*, toolbar/mh-logo.xpm:
3625 * toolbar/page-down.*, toolbar/show.*, toolbar/widen.*: Move to
3626 etc/images.
3627
3628 * toolbar/alias.*, toolbar/refile.*, toolbar/repack.*:
3629 * toolbar/reply*: Move to etc/images/mail.
3630
3631 * toolbar/rescan.*: Move and rename to etc/images/refresh.*.
3632
3633 2005-09-30 Eric M. Ludlam <zappo@gnu.org>
3634
3635 * speedbar.el: New version 1.0pre3.
3636
3637 Frame management code (including timer, and mouse click specifics)
3638 moved to dframe.el:
3639 (speedbar-attached-frame): Removed. Use dframe-attached-frame.
3640 (speedbar-timer): Removed. Use dframe-timer.
3641 (speedbar-close-frame): Removed. Use dframe-close-frame.
3642 (speedbar-activity-change-focus-flag): Removed. Use
3643 dframe-activity-change-focus-flag.
3644 (speedbar-update-speed, speedbar-navigating-speed): Obsolete. Use
3645 dframe-update-speed.
3646
3647 (speedbar-current-frame): New macro. Use this instead of the
3648 variable speedbar-frame.
3649
3650 (speedbar-use-images, speedbar-expand-image-button-alist)
3651 (speedbar-insert-image-button-maybe): Moved to sb-image.el.
3652
3653 (speedbar-find-image-on-load-path): Removed. Replaced by
3654 defezimage in ezimage.el.
3655 (speedbar-expand-image-button-alist): Removed. Replaced by
3656 ezimage-expand-image-button-alist in ezimage.el.
3657
3658 (speedbar-ignored-directory-regexp)
3659 (speedbar-add-ignored-directory-regexp)
3660 (speedbar-ignored-directory-expressions)
3661 (speedbar-line-directory, speedbar-buffers-line-directory)
3662 (speedbar-directory-line, speedbar-buffers-line-directory):
3663 Renamed, replacing `path' with `directory'.
3664
3665 (speedbar-create-directory, speedbar-expand-line-descendants)
3666 (speedbar-toggle-line-expansion)
3667 (speedbar-contract-line-descendants): New commands.
3668
3669 (speedbar-query-confirmation-method, speedbar-select-frame-method)
3670 (speedbar-use-tool-tips-flag): New options.
3671
3672 (speedbar-check-read-only, speedbar-require-version)
3673 (speedbar-insert-separator, speedbar-buffers-tail-notes)
3674 (speedbar-handle-delete-frame, speedbar-try-completion)
3675 (speedbar-update-localized-contents): New functions.
3676
3677 (speedbar-incompatible-version, speedbar-ro-to-do-point)
3678 (speedbar-object-read-only-indicator): New variables.
3679
3680 (speedbar-visiting-tag-hook, speedbar-before-visiting-file-hook):
3681 New hooks.
3682
3683 (speedbar-separator-face): New face.
3684
3685 (speedbar-supported-extension-expressions): Add `.g' and `.ma?k'.
3686 (speedbar-ignored-modes): Add fundamental-mode.
3687 (speedbar-directory-unshown-regexp): Add . directories.
3688
3689 (speedbar-key-map): Remove old SPC and DEL page up/down keys.
3690 (speedbar-file-key-map): Add SPC to toggle node expansion, `[' and
3691 `]' for full expand/close.
3692 (speedbar-buffers-key-map): Add SPC to toggle node expansion.
3693
3694 (speedbar-check-vc): Support hidden files.
3695 (speedbar-vc-check-dir-p): Use vc-state if available for CVS.
3696 (speedbar-this-file-in-vc): Use vc-state if available. If VC
3697 state is nil, it is not checked out.
3698
3699 (speedbar-line-text, speedbar-line-token): Support expand buttons
3700 with no text.
3701 (speedbar-refresh): Universal argument acts as power-click.
3702 (speedbar-fetch-dynamic-tags): If a buffer is in Emacs, switch to
3703 that buffer to get variable values.
3704
3705 And many other bugfixes.
3706
3707 * dframe.el, ezimage.el, sb-image.el: New files.
3708
3709 * sb-*.xpm: Remove files. New image files installed into
3710 etc/images/ezimage.
3711
3712 2005-09-30 Kenichi Handa <handa@m17n.org>
3713
3714 * ps-mule.el (ps-mule-show-warning): If a character is in
3715 ps-print-translation-table, don't treat it as non-printable.
3716
3717 2005-09-30 David Ponce <david@dponce.com>
3718
3719 * tree-widget.el (tree-widget-themes-load-path): New variable.
3720 (tree-widget-themes-directory): Doc fix.
3721 (tree-widget-image-formats) [Emacs]: Doc fix.
3722 (tree-widget--locate-sub-directory): New function.
3723 (tree-widget-themes-directory): Use it.
3724
3725 * recentf.el (recentf-filename-handlers): Rename from
3726 `recentf-filename-handler'. Allow a list of functions.
3727 (recentf-menu-items-for-commands): Fix :help strings.
3728 (recentf-apply-filename-handlers): New function.
3729 (recentf-expand-file-name): Use it.
3730 (recentf-cleanup): Remove duplicates too.
3731
3732 2005-09-29 Juri Linkov <juri@jurta.org>
3733
3734 * faces.el: Rearrange face definitions to be in the same order as
3735 their face descriptions in "(emacs)Standard Faces".
3736
3737 * isearch.el (isearch, lazy-highlight): Add group `basic-faces'.
3738
3739 * tooltip.el (tooltip): Add group `basic-faces'.
3740
3741 * buff-menu.el (Buffer-menu-buffer): Remove group
3742 `font-lock-highlighting-faces'.
3743
3744 * progmodes/compile.el (compilation-error, compilation-warning)
3745 (compilation-info, compilation-line-number, compilation-column-number):
3746 Change group from `font-lock-highlighting-faces' to `compilation'.
3747
3748 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
3749 (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face)
3750 (vhdl-font-lock-function-face, vhdl-font-lock-directive-face)
3751 (vhdl-font-lock-reserved-words-face)
3752 (vhdl-font-lock-translate-off-face, syntax-alist): Remove group
3753 `font-lock-highlighting-faces'.
3754
3755 * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil.
3756
3757 2005-09-28 Kim F. Storm <storm@cua.dk>
3758
3759 * emulation/cua-base.el: Set CUA move property on additional commands:
3760 up-list, down-list, backward-up-list, end-of-defun beginning-of-defun,
3761 forward-sexp, backward-sexp, forward-list, backward-list.
3762
3763 2005-09-28 Romain Francoise <romain@orebokech.com>
3764
3765 * comint.el (comint-show-output): Really set point at the
3766 beginning of the output when not using `comint-use-prompt-regexp'.
3767
3768 2005-09-27 Jay Belanger <belanger@truman.edu>
3769
3770 * calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
3771 in TeX mode.
3772
3773 2005-09-26 Juanma Barranquero <lekktu@gmail.com>
3774
3775 * textmodes/org.el (org-table-sum): Fix format string.
3776
3777 * textmodes/tex-mode.el (tex-insert-quote, latex-indent):
3778 Quote face names.
3779
3780 2005-09-26 Romain Francoise <romain@orebokech.com>
3781
3782 * isearch.el (isearch-forward-regexp): Close doc string.
3783
3784 2005-09-25 Richard M. Stallman <rms@gnu.org>
3785
3786 * simple.el (blink-matching-open): Don't no-op when point is BEGV+1.
3787
3788 * isearch.el (isearch-forward, isearch-forward-regexp): Doc fixes.
3789
3790 * progmodes/compile.el (compilation-error-properties):
3791 When getting the file from the previous error message,
3792 correctly decode the new data format.
3793
3794 * progmodes/cc-cmds.el (c-electric-paren):
3795 Call old-blink-paren only for close-paren.
3796
3797 2005-09-24 Andreas Schwab <schwab@suse.de>
3798
3799 * term/rxvt.el (rxvt-register-default-colors): Delete redundant
3800 condition.
3801
3802 2005-09-25 Romain Francoise <romain@orebokech.com>
3803
3804 * dired-aux.el (dired-copy-file-recursive):
3805 * dired.el (dired-delete-file):
3806 * ediff-mult.el (ediff-dir-diff-copy-file):
3807 * ediff-util.el (ediff-test-save-region):
3808 * forms.el (forms-mode):
3809 * ido.el (ido-file-internal, ido-delete-file-at-head):
3810 * log-edit.el (log-edit-done):
3811 * ses.el (ses-yank-resize):
3812 * play/gomoku.el (gomoku-human-plays, gomoku)
3813 (gomoku-human-resigns, gomoku-prompt-for-other-game)
3814 (gomoku-offer-a-draw):
3815 * play/landmark.el (lm-human-resigns, lm):
3816 * net/eudcb-ldap.el (eudc-ldap-check-base):
3817 * play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
3818 * progmodes/ebrowse.el (ebrowse-find-pattern):
3819 * progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
3820 * textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
3821 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and space.
3822
3823 * vc.el (vc-delete-file):
3824 * play/gomoku.el (gomoku-terminate-game, gomoku)
3825 (gomoku-prompt-for-move, gomoku-human-takes-back):
3826 * play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
3827 (lm-start-robot, lm-human-plays): Remove extraneous spaces in messages.
3828
3829 2005-09-24 Dan Nicolaescu <dann@ics.uci.edu>
3830
3831 * term/rxvt.el (rxvt-register-default-colors): Add support for 255
3832 color rxvt terminals by using the code xterm.el used to use before
3833 2005-04-09 in order to match the colors used by rxvt.
3834
3835 2005-09-24 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
3836
3837 * term/rxvt.el (rxvt-register-default-colors): Add support for 88
3838 colors rxvt-unicode terminals by using the same code as xterm.el.
3839
3840 2005-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
3841
3842 * textmodes/tex-mode.el (tex-font-lock-append-prop)
3843 (tex-font-lock-suscript, tex-insert-quote, latex-indent): Adjust to the
3844 new symbol used for the tex-verbatim face.
3845
3846 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
3847
3848 * woman.el (woman-file-name):
3849 * wid-edit.el (widget-file-prompt-value)
3850 (widget-coding-system-prompt-value):
3851 * w32-fns.el (set-w32-system-coding-system):
3852 * vc.el (vc-version-diff, vc-annotate):
3853 * textmodes/reftex-auc.el (reftex-arg-cite)
3854 (reftex-arg-index-tag):
3855 * textmodes/refer.el (refer-get-bib-files):
3856 * textmodes/artist.el (artist-figlet-choose-font):
3857 * terminal.el (terminal-emulator):
3858 * replace.el (occur-read-primary-args):
3859 * rect.el (string-rectangle, string-insert-rectangle):
3860 * ps-print.el (ps-print-preprint):
3861 * progmodes/pascal.el (pascal-goto-defun):
3862 * progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
3863 * progmodes/compile.el (compilation-find-file):
3864 * printing.el (pr-interactive-n-up):
3865 * play/animate.el (animate-birthday-present):
3866 * net/rcompile.el (remote-compile):
3867 * man.el (man, Man-goto-section, Man-follow-manual-reference):
3868 * mail/rmailsum.el (rmail-summary-search-backward)
3869 (rmail-summary-search):
3870 * mail/rmailout.el (rmail-output-read-rmail-file-name)
3871 (rmail-output-read-file-name):
3872 * mail/rmail.el (rmail-search, rmail-search-backwards):
3873 * mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
3874 * locate.el (locate):
3875 * international/quail.el (quail-show-keyboard-layout):
3876 * international/mule.el (set-buffer-file-coding-system)
3877 (revert-buffer-with-coding-system, set-file-name-coding-system)
3878 (set-terminal-coding-system, set-keyboard-coding-system)
3879 (set-next-selection-coding-system):
3880 * international/mule-diag.el (describe-coding-system)
3881 (describe-font, describe-fontset):
3882 * international/mule-cmds.el (universal-coding-system-argument)
3883 (search-unencodable-char, describe-input-method)
3884 (set-language-environment, describe-language-environment):
3885 * international/codepage.el (codepage-setup):
3886 * international/code-pages.el (codepage-setup):
3887 * info.el (Info-search, Info-follow-reference)
3888 (Info-search-backward):
3889 * emacs-lisp/advice.el (ad-read-advised-function)
3890 (ad-read-advice-class, ad-clear-cache, ad-activate)
3891 (ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
3892 (ad-enable-advice, ad-disable-advice, ad-remove-advice)
3893 (ad-read-regexp):
3894 * ediff-util.el (ediff-toggle-regexp-match):
3895 * ediff-ptch.el (ediff-prompt-for-patch-file):
3896 * dired-aux.el (dired-diff):
3897 * diff.el (diff):
3898 * cus-edit.el (custom-variable-prompt):
3899 * calendar/timeclock.el (timeclock-ask-for-project):
3900 * calc/calcalg3.el (calc-get-fit-variables):
3901 * calc/calc-store.el (calc-edit-variable)
3902 (calc-permanent-variable):
3903 * vc-mcvs.el (vc-mcvs-register):
3904 * shadowfile.el (shadow-define-literal-group):
3905 * woman.el (woman-file-name):
3906 * vc.el (vc-version-diff, vc-merge):
3907 * textmodes/reftex-index.el (reftex-index-complete-tag):
3908 * format.el (format-decode-buffer, format-decode-region):
3909 * emulation/viper-cmd.el (viper-read-string-with-history):
3910 * emacs-lisp/debug.el (cancel-debug-on-entry):
3911 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3912 * ediff.el (ediff-merge-revisions)
3913 (ediff-merge-revisions-with-ancestor, ediff-revision):
3914 * completion.el (interactive-completion-string-reader):
3915 * calc/calc-prog.el (calc-user-define-formula):
3916 Follow convention for reading with the minibuffer.
3917
3918 2005-09-24 Steven Huwig <steven_h@acm.org> (tiny change)
3919
3920 * progmodes/python.el (python-describe-symbol): Add globals() and
3921 locals() to the arguments of emacs.ehelp.
3922
3923 2005-09-24 Magnus Henoch <mange@freemail.hu>
3924
3925 * textmodes/ispell.el (ispell-maybe-find-aspell-dictionaries):
3926 New function, code extracted from ispell-valid-dictionary-list.
3927 (ispell-valid-dictionary-list, ispell-accept-buffer-local-defs):
3928 Call it.
3929
3930 2005-09-24 Eli Zaretskii <eliz@gnu.org>
3931
3932 * subr.el (version-regexp-alist): Extend valid syntax for version
3933 strings: allow any of the characters -,_,+ to separate the
3934 alpha/beta/rc part from the version part. Doc fix.
3935 (version-to-list): Doc fix. Bind case-fold-search to t, as advertised.
3936
3937 2005-09-23 David Reitter <david.reitter@gmail.com>
3938
3939 * mail/mailclient.el: New file.
3940
3941 2005-09-23 Richard M. Stallman <rms@gnu.org>
3942
3943 * textmodes/flyspell.el (flyspell-highlight-incorrect-region)
3944 (flyspell-incorrect-hook, flyspell-highlight-duplicate-region):
3945 Doc fixes.
3946
3947 * progmodes/cc-mode.el (c-font-lock-init):
3948 Specify font-lock-lines-before.
3949
3950 2005-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
3951
3952 * smerge-mode.el (smerge-remove-props): Cause re-highlighting of the
3953 whole conflict.
3954
3955 2005-09-23 Carsten Dominik <dominik@science.uva.nl>
3956
3957 * textmodes/org.el (org-mode-map, orgtbl-mode-map):
3958 Move keybindings with `C-c C-h' prefix to `C-c C-x' prefix. Make use
3959 of `remap' feature when available. Additional key bindings for
3960 better tty support.
3961 (org-mode-restart, org-force-self-insert): New commands.
3962 (org-time-stamp-inactive): New command.
3963 (org-remap): New function.
3964 (org-table-auto-blank-field, org-level-color-stars-only): New options.
3965 (org-enable-fixed-width-editor): Move to `org-structure'
3966 customization group.
3967 (org-self-insert-command, orgtbl-self-insert-command): Modify to
3968 blank field after field motion commands.
3969
3970 2005-09-23 Kenichi Handa <handa@m17n.org>
3971
3972 * international/mule-cmds.el (set-language-environment):
3973 Don't check utf-translate-cjk-lang-env is nil or not on deciding if we
3974 have to call utf-translate-cjk-load-tables.
3975
3976 2005-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
3977
3978 * mouse.el (mouse-move-drag-overlay): Fix last change.
3979
3980 2005-09-22 David Ponce <david@dponce.com>
3981
3982 * tree-widget.el (tree-widget-value-create): Fix previous change.
3983
3984 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
3985
3986 * term/xterm.el (terminal-init-xterm): Fix loading rxvt at run time.
3987
3988 2005-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
3989
3990 * mouse.el (mouse-move-drag-overlay): New function.
3991 (mouse-drag-region-1): Use it.
3992 Try to simplify a bit the state handling. Handle clicks on links
3993 inside intangible areas.
3994 (mouse-save-then-kill): Minor simplification.
3995 (mouse-secondary-overlay): Make it always non-nil instead of
3996 recreating it each time.
3997 (mouse-start-secondary, mouse-set-secondary, mouse-drag-secondary)
3998 (mouse-kill-secondary, mouse-secondary-save-then-kill):
3999 Simplify accordingly.
4000
4001 2005-09-21 Dan Nicolaescu <dann@ics.uci.edu>
4002
4003 * term/rxvt.el (rxvt-standard-colors): Fix some colors.
4004
4005 2005-09-20 Michael Kifer <kifer@cs.stonybrook.edu>
4006
4007 * ediff-ptch.el (ediff-prompt-for-patch-file): More intuitive prompt.
4008 (ediff-file-name-sans-prefix): Treat nil as an empty string.
4009 (ediff-fixup-patch-map): Better heuristic for intuiting the file names
4010 to patch.
4011
4012 * ediff-util.el: Use insert-buffer-substring.
4013
4014 * ediff-vers.el (cvs-run-ediff-on-file-descriptor): Bug fix.
4015
4016 * emulation/viper-cmd.el (viper-change-state): Don't move over the
4017 field boundaries in the minibuffer.
4018 (viper-set-minibuffer-style): Add viper-minibuffer-post-command-hook.
4019 (viper-minibuffer-post-command-hook): New hook.
4020 (viper-line): Don't move cursor at bolp.
4021
4022 * emulation/viper-ex.el (ex-pwd, viper-info-on-file): Fix message.
4023
4024 * emulation/viper-init.el: Add alias to make-variable-buffer-local to
4025 avoid compiler warnings.
4026
4027 * emulation/viper-macs.el (ex-map): Better messages.
4028
4029 * emulation/viper-utils.el (viper-beginning-of-field): New function.
4030
4031 * emulation/viper.el: Replace make-variable-buffer-local with
4032 viper-make-variable-buffer-local everywhere, to avoid warnings.
4033
4034 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4035
4036 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line):
4037 Delete unused var `old-selected-window'.
4038 (mouse-drag-region-1): Delete unused vars `start-frame', `end-of-range'.
4039 (mouse-drag-secondary): Delete unused var `start-frame'.
4040
4041 2005-09-19 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
4042
4043 * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
4044
4045 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4046
4047 * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
4048 Re-indent within 80 columns. Use inhibit-read-only.
4049
4050 2005-09-19 Romain Francoise <romain@orebokech.com>
4051
4052 * calendar/diary-lib.el (mark-diary-entries): Revert last change.
4053
4054 2005-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
4055
4056 * font-lock.el (font-lock-default-fontify-region): Don't add a line
4057 unconditionally, since the after-change-function already did it.
4058
4059 2005-09-19 Miles Bader <miles@gnu.org>
4060
4061 * net/newsticker.el: Get rid of CVS keyword.
4062
4063 2005-09-19 Johan Bockg\e,Ae\e(Brd <bojohan+sf@dd.chalmers.se>
4064
4065 * dired-aux.el (dired-handle-overwrite): Don't use `format' here.
4066 The prompt is formatted later.
4067
4068 2005-09-19 David Ponce <david@dponce.com>
4069
4070 * tree-widget.el (tree-widget-value-create): Save the converted
4071 tree :node widget.
4072
4073 2005-09-19 Juanma Barranquero <lekktu@gmail.com>
4074
4075 * progmodes/sh-script.el (sh-blink): Fix spurious reference to
4076 variable `message'.
4077
4078 2005-09-18 Michael Albinus <michael.albinus@gmx.de>
4079
4080 * net/tramp.el (tramp-login-prompt-regexp): Expand regexp in order
4081 to cover prompts like "login as:". Reported by Slawomir Nowaczyk
4082 <slawomir.nowaczyk.847@student.lu.se>.
4083
4084 2005-09-18 Chong Yidong <cyd@stupidchicken.com>
4085
4086 * image.el (image-load-path): Use symbol `data-directory' instead
4087 of its value, for backward compatibility with packages that bind
4088 it during `find-image'. Suggested by Katsumi Yamaoka.
4089 (image-search-load-path): Handle symbols whose values are strings.
4090
4091 2005-09-18 Romain Francoise <romain@orebokech.com>
4092
4093 * calendar/diary-lib.el (mark-diary-entries): Rearrange to wrap
4094 with-current-buffer form in save-excursion.
4095
4096 2005-09-18 D Goel <deego@gnufans.org>
4097
4098 * apropos.el (apropos-command): Fix `message' call: first arg
4099 should be a format spec. In this and all other cases that appear
4100 below and elsewhere in the source code, I made a change only when
4101 two conditions were satisfied: [1] I can think of a possibility
4102 that the arguments would cause an error, for example, the code in
4103 question relies on external variables such as filenames. [2] I
4104 was sure that the arg to `message' could not have been nil in the code.
4105
4106 * textmodes/tildify.el (tildify-region): Ditto.
4107
4108 * textmodes/reftex-index.el (reftex-index-change-entry)
4109 (reftex-index-phrase-selection-or-word, reftex-query-index-phrase):
4110 * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite):
4111 * textmodes/org.el (org-complete, org-deadline, org-schedule)
4112 (org-priority, org-table-sum):
4113 * textmodes/ispell.el (ispell-check-version, ispell-parse-output):
4114 * textmodes/flyspell.el (flyspell-mode-on, flyspell-notify-misspell)
4115 (flyspell-word, flyspell-display-next-corrections):
4116 * textmodes/bibtex.el (bibtex-print-help-message):
4117 * textmodes/artist.el (artist-key-set-point-poly):
4118 * term/mac-win.el (mac-services-insert-text):
4119 * progmodes/vhdl-mode.el (vhdl-warning, vhdl-print-warnings)
4120 (vhdl-hooked-abbrev, vhdl-template-insert-fun)
4121 (vhdl-port-paste-testbench, vhdl-compose-new-component)
4122 (vhdl-compose-configuration):
4123 * progmodes/sh-script.el (sh-blink, sh-show-indent)
4124 (sh-set-indent, sh-learn-line-indent):
4125 * progmodes/ps-mode.el (ps-mode-target-column):
4126 * progmodes/idlwave.el (idlwave-make-tags)
4127 (idlwave-scan-library-catalogs):
4128 * progmodes/idlw-shell.el (idlwave-shell-parse-stack-and-display):
4129 * progmodes/gud.el (gud-jdb-analyze-source):
4130 * progmodes/flymake.el (flymake-log):
4131 * progmodes/ebnf2ps.el (ebnf-generate-region):
4132 * progmodes/cmacexp.el (c-macro-expansion):
4133 * progmodes/ada-xref.el (ada-treat-cmd-string):
4134 * progmodes/ada-mode.el (ada-create-case-exception-substring)
4135 (ada-justified-indent-current, ada-batch-reformat):
4136 * play/zone.el (zone):
4137 * play/landmark.el (lm-move):
4138 * play/decipher.el (decipher-show-alphabet):
4139 * net/newsticker.el (newsticker--display-jump)
4140 (newsticker--display-scroll):
4141 * mail/rmail-spam-filter.el (rsf-add-subject-to-spam-list)
4142 (rsf-add-sender-to-spam-list, rsf-add-region-to-spam-list):
4143 * mail/feedmail.el (feedmail-dump-message-to-queue):
4144 * eshell/esh-proc.el (eshell-remove-process-entry):
4145 * emulation/ws-mode.el (ws-last-error):
4146 * emulation/viper-macs.el (ex-map-read-args, ex-unmap-read-args)
4147 (viper-record-kbd-macro):
4148 * emulation/viper-ex.el (ex-pwd, viper-info-on-file):
4149 * emacs-lisp/lisp-mnt.el (lm-report-bug):
4150 * emacs-lisp/find-func.el (find-function-noselect):
4151 * calendar/timeclock.el (timeclock-status-string)
4152 (timeclock-workday-remaining-string, timeclock-workday-elapsed-string)
4153 (timeclock-when-to-leave-string):
4154 * calendar/icalendar.el (icalendar--convert-ical-to-diary):
4155 * calc/calc-units.el (calc-enter-units-table):
4156 * calc/calc-mode.el (calc-mode-record-mode):
4157 * woman.el (woman-mini-help):
4158 * wdired.el (wdired-change-to-wdired-mode):
4159 * vc.el (vc-retrieve-snapshot):
4160 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke):
4161 * startup.el (display-startup-echo-area-message):
4162 * simple.el (set-goal-column):
4163 * ses.el (ses-command-hook, ses-recalculate-cell):
4164 * server.el (server-process-filter):
4165 * printing.el (pr-interface-txt-print, pr-interface-printify)
4166 (pr-interface-ps):
4167 * pcvs.el (cvs-help):
4168 * log-edit.el (log-edit, log-edit-mode-help):
4169 * iswitchb.el (iswitchb-possible-new-buffer):
4170 * isearch.el (isearch-edit-string):
4171 * image-mode.el (image-mode, image-minor-mode):
4172 * ibuf-macs.el (define-ibuffer-filter):
4173 * hi-lock.el (hi-lock-find-patterns):
4174 * files.el (toggle-read-only):
4175 * ediff-util.el (ediff-copy-diff)
4176 (ediff-write-merge-buffer-and-maybe-kill):
4177 * echistory.el (Electric-history-undefined):
4178 * dnd.el (dnd-insert-text):
4179 * dired-aux.el (dired-query):
4180 * desktop.el (desktop-restore-file-buffer, desktop-lazy-create-buffer):
4181 * bookmark.el (bookmark-bmenu-locate):
4182 * obsolete/fast-lock.el (@top-level) <with-temp-message macro>:
4183 Fix `message' calls to ensure first arg is a format string.
4184 The change was made only when these two conditions were satisfied:
4185 [1] when there is a possibility that the arguments would cause an error
4186 for example, if the code in question relies on external variables
4187 such as filenames, and
4188 [2] if the arg to `message' could not have been nil in the code.
4189
4190 * pcomplete.el (pcomplete--help): Fix `message' format spec.
4191 Not having a %s would be weird, though not technically wrong.
4192
4193 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4194
4195 * term/mac-win.el (mac-add-charset-info): Doc fix.
4196
4197 2005-09-17 Romain Francoise <romain@orebokech.com>
4198
4199 * shell.el (shell-resync-dirs): Handle echoing processes more
4200 reliably. Don't insert resync command if `comint-process-echoes'
4201 is non-nil.
4202
4203 2005-09-17 Magnus Henoch <mange@freemail.hu>
4204
4205 * textmodes/ispell.el (ispell-aspell-supports-utf8): New variable.
4206 (ispell-check-version): Set ispell-aspell-supports-utf8 to t for
4207 aspell versions >= 0.60.
4208 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries
4209 only if ispell-aspell-supports-utf8 is non-nil.
4210
4211 2005-09-17 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
4212
4213 * progmodes/scheme.el (scheme-mode-variables): Use setq to assign
4214 buffer-local value to lisp-indent-function.
4215
4216 2005-09-17 Milan Zamazal <pdm@zamazal.org>
4217
4218 * progmodes/glasses.el (glasses-make-readable): If
4219 glasses-separator differs from underscore, put appropriate
4220 overlays over underscore characters.
4221 (glasses-convert-to-unreadable): If glasses-separator differs from
4222 underscore, try to convert glasses-separator characters to
4223 underscores.
4224
4225 2005-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
4226
4227 * calendar/diary-lib.el (mark-diary-entries): Don't move point.
4228 Use with-syntax-table and dolist.
4229
4230 2005-09-16 Carsten Dominik <dominik@science.uva.nl>
4231
4232 * textmodes/reftex-auc.el:
4233 * textmodes/reftex-cite.el:
4234 * textmodes/reftex-dcr.el:
4235 * textmodes/reftex-global.el:
4236 * textmodes/reftex-parse.el:
4237 * textmodes/reftex-ref.el:
4238 * textmodes/reftex-sel.el:
4239 * textmodes/reftex-toc.el:
4240 * textmodes/reftex-vars.el:
4241 * textmodes/reftex.el: Small changes to remove compiler warnings.
4242
4243 * textmodes/reftex-index.el: Likewise.
4244 (reftex-query-index-phrase): More efficient use of markers.
4245
4246 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
4247
4248 * image.el (image-load-path): New variable.
4249 (image-search-load-path): New function.
4250 (find-image): Search for images in `image-load-path'.
4251
4252 2005-09-15 Richard M. Stallman <rms@gnu.org>
4253
4254 * follow.el: Change Maintainer field.
4255
4256 2005-09-15 David Ponce <david@dponce.com>
4257
4258 * recentf.el (recentf-save-file-modes): New option.
4259 (recentf-save-list): Use it.
4260
4261 2005-09-15 Nick Roberts <nickrob@snap.net.nz>
4262
4263 * bindings.el (mode-line-eol-desc, mode-line-coding-system-map)
4264 (mode-line-mule-info, mode-line-modified): Move bindings from
4265 mouse-3 to mouse-1.
4266
4267 2005-09-15 Chong Yidong <cyd@stupidchicken.com>
4268
4269 * simple.el (sendmail-user-agent-compose): Revert last change.
4270
4271 2005-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
4272
4273 * net/ange-ftp.el (ange-ftp-process-filter): Revert to ^#+$.
4274 Use with-current-buffer.
4275 (ange-ftp-gwp-start): Remove unused var `gw-user'.
4276 (ange-ftp-guess-hash-mark-size): Remove unused var `result'.
4277 (ange-ftp-insert-directory): Remove unused var `short'.
4278 (ange-ftp-file-name-sans-versions): Remove unused var `host-type'.
4279
4280 * pcvs-defs.el (cvs-version): Recognize CVSNT version string.
4281 (cvs-execute-single-dir): Change default: cvs-1.9 is ancient.
4282
4283 * calendar/cal-menu.el: Don't require easymenu, since we don't use it.
4284 (check-calendar-holidays, diary-list-entries): Autoload.
4285 Otherwise `emacs -q' followed by "mouse-2 -> diary entries" burps.
4286 (calendar-mouse-holidays, calendar-mouse-view-diary-entries): Simplify.
4287
4288 * calendar/diary-lib.el (diary-show-all-entries): Fix last change,
4289 which mistakenly removed a call to display-buffer.
4290
4291 2005-09-14 Juanma Barranquero <lekktu@gmail.com>
4292
4293 * obsolete/iso-insert.el: Move to obsolete/ from international/.
4294
4295 2005-09-14 Thien-Thi Nguyen <ttn@gnu.org>
4296
4297 * progmodes/hideshow.el
4298 (hs-hide-comments-when-hiding-all): Remove autoload cookie.
4299 (hs-allow-nesting): New user var.
4300 (hs-discard-overlays): Skip "internal" overlays if nesting allowed.
4301 (hs-hide-block-at-point): When nesting allowed,
4302 if there is already an overlay in place, delete it.
4303 (hs-safety-is-job-n): Delete func; remove call sites.
4304 (hs-hide-level-recursive): Don't pre-clean if nesting allowed.
4305 (hs-overlay-at): New func.
4306 (hs-already-hidden-p, hs-show-block): Use it.
4307 (hs-hide-all): Don't pre-clean if nesting allowed.
4308 (hs-show-all): Temporarily disallow
4309 nesting around call to `hs-discard-overlays'.
4310
4311 2005-09-14 Chong Yidong <cyd@stupidchicken.com>
4312
4313 * mouse.el (mouse-major-mode-menu): Make `prefix' optional.
4314 Delete unused local var.
4315
4316 2005-09-13 Juanma Barranquero <lekktu@gmail.com>
4317
4318 * help-fns.el (describe-categories): "?\ " -> "?\s".
4319 (help-do-arg-highlight): Recognize also ARG-n, as in
4320 `move-to-left-margin' (ARG+n is already recognized). Simplify.
4321
4322 * international/codepage.el (dos-unsupported-char-glyph):
4323 * net/newsticker.el (tool-bar-map, w3-mode-map)
4324 (w3m-minor-mode-map):
4325 * progmodes/vhdl-mode.el (conf-alist, conf-entry, conf-key)
4326 (ent-alist):
4327 * textmodes/reftex-vars.el (reftex-tables-dirty): Add defvars.
4328
4329 2005-09-13 Chong Yidong <cyd@stupidchicken.com>
4330
4331 * custom.el (custom-push-theme): Handle the case where a symbol is
4332 bound but face properties have not yet been assigned.
4333
4334 * mail/sendmail.el (mail): Use new buffer if `noerase' is `new'.
4335 Fix behavior if noerase is `t' and there is no mail buffer.
4336
4337 * simple.el (sendmail-user-agent-compose): Use a new mail buffer
4338 if `continue' is nil, rather than signal an error.
4339
4340 2005-09-12 Richard M. Stallman <rms@gnu.org>
4341
4342 * font-lock.el (font-lock-keywords): Add autoload.
4343
4344 * help-fns.el (describe-variable): Rearrange to put source link
4345 in a predictable place.
4346
4347 * net/newsticker.el: New file.
4348
4349 2005-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4350
4351 * calendar/calendar.el (calendar-for-loop): Add edebug info.
4352 (calendar-basic-setup): Use the new nil arg.
4353 (number-of-diary-entries): Move to diary-lib.el.
4354
4355 * calendar/diary-lib.el: Use with-current-buffer, match-string.
4356 (diary-list-entries): Use with-syntax-table and dolist.
4357 Rename from list-diary-entries.
4358 Use number-of-diary-entries if `number' is nil.
4359 (diary, diary-view-entries): Use this new name and new nil arg value.
4360 (number-of-diary-entries): Move from calendar.el.
4361 (diary-unhide-everything): New function.
4362 (include-other-diary-files, fancy-diary-display)
4363 (diary-show-all-entries, make-diary-entry): Use it.
4364 (diary-mail-entries): Use buffer-string.
4365 (mark-diary-entries): Fix long standing paren typo.
4366 (diary-sexp-entry): Use count-lines.
4367 (make-diary-entry): Avoid `previous-line'.
4368 (diary-mode-map): New var.
4369 (diary-mode): Redraw cal after saving. Setup header-line.
4370 (fancy-diary-display-mode): Use local-set-key.
4371
4372 * startup.el (command-line): Try calling various terminal-init-foo-bar
4373 functions by stripping hyphenated suffixes from $TERM.
4374
4375 * files.el (normal-mode): Check boundness of font-lock-keywords.
4376
4377 2005-09-12 Richard M. Stallman <rms@gnu.org>
4378
4379 * progmodes/compile.el: Don't decide a file's directory
4380 until the user actually tries to go there.
4381 (compilation-next-error-function):
4382 Pass compilation-find-file the directory from the file-struct.
4383 (compilation-internal-error-properties): Separate local FILE-STRUCT
4384 from FILE. Doc the args better. Rename arg FMT to FMTS.
4385 (compilation-find-file): Arg DIR renamed to DIRECTORY.
4386 Expand it, and if nil, use default-directory.
4387 (compilation-get-file-structure): Don't mix specified directory
4388 with default directory. Put specified directory into
4389 file-struct. Don't make the file name absolute.
4390
4391 * progmodes/compile.el (compilation-error-regexp-alist): Doc fix.
4392 (compile-command): Add autoload.
4393 (compilation-disable-input): Add autoload.
4394
4395 2005-09-11 Stephen Gildea <gildea@stop.mail-abuse.org>
4396
4397 * time-stamp.el: Mention variable `time-stamp-pattern' in doc
4398 strings of the variables it can override.
4399 (time-stamp): New (as yet undocumented) time-stamp-format escapes
4400 %Q and %q, for fully-qualified domain name and unqualified host name.
4401
4402 2005-09-11 Kim F. Storm <storm@cua.dk>
4403
4404 * emacs-lisp/authors.el (authors-aliases): Update list.
4405 (authors-fixed-entries): Update mldrag.el entry.
4406
4407 2005-09-10 Alan Mackenzie <acm@muc.de>
4408
4409 * page.el (narrow-to-page): Exclude _entire_ multi-line delimiter
4410 from the region narrowed to.
4411
4412 2005-09-10 Magnus Henoch <mange@freemail.hu>
4413
4414 * textmodes/ispell.el (ispell-check-version): Signal an error if
4415 aspell version is less than 0.60.
4416
4417 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change)
4418
4419 * progmodes/octave-inf.el (inferior-octave-startup):
4420 Resync current dir at the end.
4421
4422 2005-09-10 Emilio C. Lopes <eclig@gmx.net>
4423
4424 * woman.el (woman-topic-at-point-default):
4425 Rename to woman-use-topic-at-point-default.
4426 (woman-topic-at-point): Rename to woman-use-topic-at-point.
4427 (woman-file-name): Reflect renames above. Automatically use the
4428 word at point as topic if woman-use-topic-at-point is non-nil.
4429 Otherwise offer it as default but don't insert it in the
4430 minibuffer. Also use `test-completion' instead of `assoc' as
4431 suggested by Stefan Monnier.
4432
4433 2005-09-10 Andre Spiegel <spiegel@gnu.org>
4434
4435 * vc.el (vc-directory, vc-update-change-log): Throw an error on
4436 the attempt to do it over Tramp. This is not yet supported.
4437
4438 2005-09-10 Eli Zaretskii <eliz@gnu.org>
4439
4440 * menu-bar.el (menu-bar-menu-frame-live-and-visible-p)
4441 (menu-bar-non-minibuffer-window-p): New functions.
4442 ("Split Window", "Save As..."): Use them.
4443 ("Postscript Print Buffer (B+W)", "Postscript Print Buffer")
4444 ("Print Buffer", "Truncate Long Lines in this Buffer"):
4445 Use menu-bar-menu-frame-live-and-visible-p.
4446 ("Save Buffer", "Insert File", "Open Directory...")
4447 ("Open File...", "Visit New File..."):
4448 Use menu-bar-non-minibuffer-window-p.
4449 (kill-this-buffer-enabled-p, dired <menu-enable>):
4450 Use menu-bar-non-minibuffer-window-p.
4451
4452 2005-09-09 Eli Zaretskii <eliz@gnu.org>
4453
4454 * cus-start.el (all): Don't complain about fringe-related
4455 built-ins if fringes are not supported. Ditto about
4456 selection-related built-ins. Fix the test for GTK-related built-ins.
4457
4458 * menu-bar.el ("Split Window", "Postscript Print Buffer (B+W)")
4459 ("Postscript Print Buffer", "Print Region", "Save As...")
4460 ("Save", "Insert File...", "Open Directory...")
4461 ("Open File...", "Visit New File..."")
4462 ("Truncate Long Lines in this Buffer"): Don't look at
4463 menu-updating-frame if this display does not support multiple frames.
4464
4465 2005-09-09 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
4466
4467 * mail/sendmail.el (default-sendmail-coding-system): Doc fix.
4468
4469 2005-09-09 Emilio Lopes <eclig@gmx.net>
4470
4471 * woman.el: Format- and whitespace-related changes.
4472
4473 2005-09-09 Eli Zaretskii <eliz@gnu.org>
4474
4475 * woman.el: Fix my email address.
4476
4477 2005-09-08 Richard M. Stallman <rms@gnu.org>
4478
4479 * progmodes/sh-script.el (sh-skeleton-pair-default-alist): New var.
4480 (sh-mode): Locally set skeleton-pair-default-alist.
4481
4482 * progmodes/make-mode.el (makefile-add-log-defun): Trim the result.
4483
4484 * progmodes/flymake.el: Require `compile' unconditionally.
4485
4486 * mail/sendmail.el (send-mail-function): Add Mailclient alternative.
4487
4488 * woman.el (woman-file-name): Provide a default, not initial input.
4489
4490 * smerge-mode.el (smerge-resolve): Pass args to smerge-remove-props.
4491
4492 * font-lock.el (font-lock-support-mode): Doc fix.
4493
4494 * descr-text.el (describe-property-list): Handle non-symbol prop names.
4495
4496 2005-09-08 Richard M. Stallman <rms@gnu.org>
4497
4498 * simple.el (blink-matching-open): Get rid of text props from
4499 the string shown in echo area. Don't permanently set point.
4500 Some rearrangements.
4501
4502 2005-09-08 Reiner Steib <Reiner.Steib@gmx.de>
4503
4504 * recentf.el (recentf-filename-handler): Add custom choice
4505 `abbreviate-file-name'.
4506
4507 * msb.el (msb--very-many-menus): Fix typo.
4508
4509 * disp-table.el (standard-display-european): Don't set
4510 enable-multibyte-characters to nil.
4511
4512 2005-09-08 David Ponce <david@dponce.com>
4513
4514 * recentf.el (recentf-show-file-shortcuts-flag): New option.
4515 (recentf-expand-file-name): Doc fix.
4516 (recentf-dialog-mode-map): Define digit shortcuts.
4517 (recentf--files-with-key): New variable.
4518 (recentf-show-digit-shortcut-filter): New function.
4519 (recentf-open-files-items): New function.
4520 (recentf-open-files): Use it.
4521 (recentf-open-file-with-key): New command.
4522
4523 2005-09-08 Chong Yidong <cyd@stupidchicken.com>
4524
4525 * buff-menu.el (Buffer-menu-sort-by-column): New function.
4526 Suggested by Kim F. Storm.
4527 (Buffer-menu-sort-button-map): Global keymap for sort buttons.
4528 (Buffer-menu-make-sort-button): Use global keymap.
4529
4530 2005-09-07 Michael Albinus <michael.albinus@gmx.de>
4531
4532 * woman.el (top): Remap `man' command by `woman' in `woman-mode-map'.
4533 (Man-getpage-in-background-advice): Remove defadvice; it isn't
4534 necessary any longer with the remapped command.
4535 (Man-bgproc-sentinel-advice): Remove defadvice which counts
4536 formatting time only.
4537
4538 * net/tramp.el (tramp-action-password)
4539 (tramp-multi-action-password): Compile the password prompt from
4540 `method', `user' and `host'. Sometimes it isn't obvious which
4541 password to enter, for example with remote files offered by
4542 recentf.el, or with multiple steps. Suggested by Robert Marshall
4543 <robert@chezmarshall.freeserve.co.uk>.
4544
4545 2005-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
4546
4547 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4548 Fix regexp for when "s///" is at the beginning of line.
4549
4550 2005-09-07 Jay Belanger <belanger@truman.edu>
4551
4552 * calc/calc-poly.el (math-expand-term): Multiply out any powers
4553 when in matrix mode.
4554
4555 2005-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
4556
4557 * buff-menu.el (Buffer-menu-make-sort-button): Add docstrings, use
4558 non-anonymous functions.
4559
4560 2005-09-06 Chong Yidong <cyd@stupidchicken.com>
4561
4562 * buff-menu.el (Buffer-menu-make-sort-button): Allow mouse-1 clicks
4563 when using a header line. Otherwise, use mouse-1-click-follows-link.
4564
4565 * mouse.el (mouse-drag-header-line): Do nothing if the header-line
4566 can't be moved; don't signal an error.
4567
4568 2005-09-05 Chong Yidong <cyd@stupidchicken.com>
4569
4570 * cus-theme.el (custom-theme-write-faces): Save the current face
4571 spec, not the defface spec.
4572
4573 * custom.el (custom-known-themes): Clarify meaning of "standard".
4574 (custom-push-theme): Save old values in the standard theme.
4575 (disable-theme): Correct typo.
4576 (custom-face-theme-value) Deleted unused function.
4577 (custom-theme-recalc-face): Rewritten to treat enable/disable properly.
4578
4579 2005-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
4580
4581 * progmodes/compile.el (compilation-goto-locus): Take into account
4582 iconified frames when determining whether the buffer is
4583 already visible.
4584 Don't reset window height if the window already existed.
4585
4586 2005-09-04 Chong Yidong <cyd@stupidchicken.com>
4587
4588 * custom.el (load-theme): Rename from require-theme.
4589 Add interactive spec.
4590 (enable-theme): Rename from custom-enable-theme.
4591 Add interactive spec.
4592 (disable-theme): Rename from custom-disable-theme.
4593 Add interactive spec.
4594 (custom-make-theme-feature): Doc fix.
4595 (custom-theme-directory): Doc fix.
4596 (provide-theme): Call enable-theme.
4597
4598 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
4599
4600 * obsolete/lazy-lock.el (lazy-lock-mode):
4601 * obsolete/fast-lock.el (fast-lock-mode): Don't try to turn on
4602 font-lock-mode if it's off. Print a warning instead.
4603
4604 * progmodes/compile.el (compilation-start): Ignore errors if the
4605 process died before we get to send-eof.
4606
4607 * textmodes/tex-mode.el (tex-send-tex-command, tex-bibtex-file):
4608 Undo last change. Enclosing the result in quotes broke things on Unix
4609 since tex-send-command passes it through shell-quote-argument.
4610 (tex-send-command): Pass `file' through convert-standard-filename
4611 when possible.
4612 (tex-uptodate-p): Handle the case where TeX hasn't put additional
4613 info in a transcript.
4614
4615 2005-09-02 Dan Nicolaescu <dann@ics.uci.edu>
4616
4617 * term/xterm.el (terminal-init-xterm): Add eval-when-compile to
4618 fix compilation warning. Reorder the key definitions to group
4619 together keys emitted by the current version of xterm.
4620
4621 * progmodes/vhdl-mode.el (vhdl-highlight-faces)
4622 (vhdl-speedbar-entity-face, vhdl-speedbar-entity-selected-face):
4623 Reorder predicates to correct min-color usage.
4624
4625 2005-09-01 Chong Yidong <cyd@stupidchicken.com>
4626
4627 * longlines.el (longlines-mode): Inhibit read-only when encoding.
4628 Kill local variables when longlines-mode is turned off.
4629
4630 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
4631
4632 * international/mule-cmds.el (set-locale-environment): Soothe compiler.
4633
4634 * obsolete/lazy-lock.el (lazy-lock) <defgroup>: Move from font-lock.el.
4635
4636 * obsolete/fast-lock.el (fast-lock) <defgroup>: Move from font-lock.el.
4637
4638 * font-lock.el (fast-lock, lazy-lock) <defgroup>: Remove.
4639 (font-lock-lines-before): Change default to being inactive.
4640 (font-lock-default-fontify-region): Obey font-lock-lines-before.
4641 (font-lock-after-change-function): Don't handle f-l-lines-before here.
4642
4643 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
4644
4645 * net/tramp.el (tramp-handle-make-auto-save-file-name):
4646 Deactivate temporarily advice if active (not needed for Emacs 22,
4647 but for backwards compatibility).
4648 (tramp-exists-file-name-handler): Rewrite. First implementation
4649 was too simple.
4650 (tramp-advice-make-auto-save-file-name):
4651 Call `tramp-handle-make-auto-save-file-name' (again, just for
4652 backwards compatibility).
4653
4654 2005-08-31 Reto Zimmermann <reto@gnu.org>
4655
4656 * progmodes/vhdl-mode.el
4657 (vhdl-update-sensitivity-list): Handle multi-dimensional array access.
4658 (vhdl-end-p): Fix indentation bug "else" after "-- when".
4659 (vhdl-set-default-project): New function (easier setting of default).
4660 (vhdl-port-copy): Handle extended identifiers for generics.
4661 (vhdl-compiler-alist): Better description for error message regexp.
4662 (vhdl-make): Query for target, use previous as default.
4663 (vhdl-port-copy): Fix port copy for port names starting with "signal".
4664 (vhdl-font-lock-keywords-2): Fix fontification for record
4665 el. assign.
4666 (vhdl-speedbar-make-subpack-line): Add package body link.
4667 (vhdl-generate-makefile-1): Not include itself as dependency.
4668 (vhdl-font-lock-init): Highlight c-preprocessor directives.
4669 (vhdl-*ward-syntactic-ws): Skip c-preprocessor directives.
4670 (vhdl-get-syntactic-context): Handle c-preprocessor directives.
4671 (vhdl-update-sensitivity-list): Start scan at opening parenthesis.
4672 (vhdl-fixup-whitespace-region): Fix jumping point (infinite loop).
4673 (vhdl-update-sensitivity-list-buffer): Add string argument for `error'.
4674 (vhdl-import-project): Add string argument for `error'.
4675 (vhdl-compose-configuration)
4676 (vhdl-compose-configuration-architecture): Add configuration
4677 declaration generation.
4678 (vhdl-scan-directory-contents): Scan for block/generate hierarchy.
4679 (vhdl-trailer-re): Add "record" keyword (better indentation).
4680 (vhdl-fixup-whitespace-region): "[^ \t\"-]+" instead of
4681 "[^ \t-\"]+".
4682 (vhdl-font-lock-keywords-2): Not highlight formal parameter after '|'.
4683 (vhdl-testbench-entity-file-name)
4684 (vhdl-testbench-architecture-file-name): Allow separate
4685 customization of testbench file names.
4686 (vhdl-beginning-of-block): Handle optional subprogram parameter list.
4687 (vhdl-get-visible-signals): Allow newline within alias declaration.
4688 (vhdl-update-sensitivity-list): Signal read only on certain attributes.
4689 (vhdl-fixup-whitespace-region): Fix bug with strings (double quotes).
4690 (member-ignore-case): Alias for missing function in XEmacs.
4691 (vhdl-compiler-alist): Add unit-to-file name mapping for Cadence NC.
4692 (vhdl-update-sensitivity-list): Ignore case on read signals.
4693 (vhdl-replace-string): Adjust case only for file names.
4694 (vhdl-update-sensitivity-list): Fix search for read signals.
4695 (vhdl-update-sensitivity-list): Exclude formal parameters.
4696 (vhdl-get-visible-signals): Include aliases of signals.
4697 (vhdl-get-visible-signals): Fix signal name searching.
4698 (vhdl-port-flatten, vhdl-port-reverse-direction): Better message.
4699 (vhdl-fixup-whitespace-region): Fix for character
4700 literals (e.g. ':').
4701
4702 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
4703
4704 * ansi-color.el (comint-last-output-start):
4705 * bs.el (font-lock-verbose):
4706 * diff-mode.el (add-log-buffer-file-name-function):
4707 * dired-x.el (vm-folder-directory):
4708 * faces.el (help-xref-stack-item):
4709 * files.el (font-lock-keywords):
4710 * find-lisp.el (dired-buffers, dired-subdir-alist):
4711 * ido.el (cua-inhibit-cua-keys):
4712 * log-view.el (cvs-minor-wrap-function):
4713 * outline.el (font-lock-warning-face):
4714 * simple.el (compilation-current-error):
4715 * speedbar.el (ange-ftp-path-format, efs-path-regexp)
4716 (font-lock-keywords, x-pointer-hand2, x-pointer-top-left-arrow):
4717 * tooltip.el (comint-prompt-regexp):
4718 * w32-fns.el (explicit-shell-file-name):
4719 * term/mac-win.el (mac-charset-info-alist)
4720 (mac-services-selection, mac-system-script-code):
4721 * term/tty-colors.el (msdos-color-values):
4722 * term/w32-win.el (xlfd-regexp-registry-subnum):
4723 * term/x-win.el (x-keysym-table, x-selection-timeout)
4724 (x-session-id, x-session-previous-id):
4725 * textmodes/ispell.el (mail-yank-prefix):
4726 * textmodes/makeinfo.el (tex-end-of-header, tex-start-of-header):
4727 * textmodes/org.el (calc-embedded-close-formula)
4728 (calc-embedded-open-formula)
4729 (font-lock-unfontify-region-function):
4730 * textmodes/reftex-global.el (isearch-next-buffer-function)
4731 (TeX-master):
4732 * textmodes/reftex.el (font-lock-keywords):
4733 * textmodes/tex-mode.el (font-lock-comment-face)
4734 (font-lock-doc-face):
4735 * textmodes/texinfo.el (outline-heading-alist):
4736 Add defvars.
4737
4738 * textmodes/artist.el (x-pointer-crosshair): Add defvar.
4739 (artist-spray-chars, artist-mode-init, artist-replace-string)
4740 (artist-select-erase-char, artist-vap-find-endpoints-horiz)
4741 (artist-vap-find-endpoints-vert, artist-vap-find-endpoints-swne)
4742 (artist-vap-find-endpoints-nwse): "?\ " -> "?\s".
4743
4744 * textmodes/conf-mode.el (outline-heading-end-regexp): Add defvar.
4745 (conf-align-assignments): "?\ " -> "?\s".
4746
4747 * textmodes/reftex-index.el (TeX-master): Add defvar.
4748 (reftex-index-phrases-marker): Move up defvar.
4749
4750 * textmodes/reftex-toc.el (zmacs-regions): Add defvar.
4751 (reftex-toc-include-labels-indicator)
4752 (reftex-toc-include-index-indicator)
4753 (reftex-toc-max-level-indicator): Move up declarations.
4754
4755 * net/tramp.el (tramp-handle-make-auto-save-file-name): Pass list
4756 of args to `tramp-run-real-handler', even if it's empty in this case.
4757
4758 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4759
4760 * dired.el (dired-move-to-filename-regexp): Add date format for
4761 Mac OS X 10.3 in East Asian locales.
4762
4763 2005-08-31 Michael Albinus <michael.albinus@gmx.de>
4764
4765 * files.el (make-auto-save-file-name): Add file name handler call
4766 if applicable.
4767
4768 * net/tramp.el (tramp-file-name-handler-alist)
4769 (tramp-file-name-for-operation): Add `make-auto-save-file-name'.
4770 (tramp-handle-make-auto-save-file-name): Rename from
4771 `tramp-make-auto-save-file-name'.
4772 (tramp-exists-file-name-handler): New defun.
4773 (tramp-advice-make-auto-save-file-name): Make defadvice only when
4774 `make-auto-save-file-name' is not a magic file name operation.
4775
4776 2005-08-30 Richard M. Stallman <rms@gnu.org>
4777
4778 * files.el (risky-local-variable-p):
4779 Match `-predicates' and `-commands.
4780
4781 * cus-edit.el (custom-buffer-sort-alphabetically): Default to t.
4782 (custom-save-all): Visit the file if necessary;
4783 kill the buffer if we created it.
4784 (custom-save-delete): Don't visit file or kill buffer here.
4785
4786 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
4787
4788 * textmodes/org.el (org-special-keyword): New face.
4789 (org-table-copy-down, org-table-eval-formula)
4790 (org-table-recalculate, org-init-section-numbers):
4791 Use `string-to-number' instead of `string-to-int'.
4792 (org-get-location): Use `insert-buffer-substring' instead of
4793 `insert-buffer'.
4794 (org-modify-diary-entry-string): New function.
4795 (org-get-entries-from-diary): Set the hook for `add-to-diary-list'.
4796 (org-disable-agenda-to-diary): Rename from `org-disable-diary'.
4797 (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
4798 active region.
4799 (org-export-as-html): Handle QUOTE keyword.
4800 (org-quote-string): New option.
4801 (org-bookmark-jump-unhide): New function, used for
4802 `bookmark-after-jump-hook'.
4803 (org-diary-default-entry): Apply only when not called through
4804 `org-agenda'.
4805
4806 2005-08-30 Juanma Barranquero <lekktu@gmail.com>
4807
4808 * net/eudc.el (mode-popup-menu):
4809 * play/handwrite.el (ps-printer-name, ps-lpr-command):
4810 * progmodes/ada-mode.el (compile-auto-highlight)
4811 (skeleton-further-elements):
4812 * progmodes/autoconf.el (font-lock-syntactic-keywords):
4813 * progmodes/cmacexp.el (msdos-shells):
4814 * progmodes/compile.el (font-lock-extra-managed-props)
4815 (font-lock-keywords, font-lock-maximum-size)
4816 (font-lock-support-mode):
4817 * progmodes/grep.el (font-lock-lines-before):
4818 * progmodes/idlw-complete-structtag.el (idlwave-completion-help-info):
4819 * progmodes/mixal-mode.el (compile-command):
4820 * progmodes/perl-mode.el (font-lock-comment-face)
4821 (font-lock-doc-face, font-lock-string-face):
4822 * progmodes/prolog.el (comint-prompt-regexp):
4823 * progmodes/sh-script.el (font-lock-comment-face)
4824 (font-lock-set-defaults, font-lock-string-face):
4825 * progmodes/sql.el (font-lock-keyword-face)
4826 (font-lock-set-defaults, font-lock-string-face):
4827 * progmodes/vhdl-mode.el (compilation-file-regexp-alist)
4828 (itimer-version, lazy-lock-defer-contextually)
4829 (lazy-lock-defer-on-scrolling, lazy-lock-defer-on-the-fly):
4830 Add defvars.
4831
4832 * progmodes/cperl-mode.el (cperl-electric-lbrace)
4833 (cperl-electric-keyword, cperl-electric-pod)
4834 (cperl-electric-backspace, cperl-forward-re)
4835 (cperl-fix-line-spacing, cperl-fill-paragraph): "?\ " -> "?\s".
4836 (vc-rcs-header, vc-sccs-header): Add defvars.
4837
4838 * progmodes/fortran.el (fortran-indent-to-column): "?\ " -> "?\s".
4839 (font-lock-syntactic-keywords, gud-find-expr-function):
4840 Add defvars.
4841
4842 * progmodes/gdb-ui.el (tool-bar-map): Add defvar.
4843 (gdb-frame-parameters): Declare before use.
4844
4845 * progmodes/gud.el (gdb-active-process, gdb-define-alist)
4846 (gdb-macro-info, gdb-server-prefix, gdb-show-changed-values)
4847 (gdb-var-changed, gdb-var-list, tool-bar-map): Add defvars.
4848 (gud-expr-compound-sep, gud-expr-compound): "?\ " -> "?\s".
4849
4850 * progmodes/idlw-help.el (browse-url-generic-args): Add defvar.
4851 (idlwave-help-with-source): Use `insert-buffer-substring', not
4852 `insert-buffer'.
4853
4854 2005-08-29 Juri Linkov <juri@jurta.org>
4855
4856 * outline.el (hide-entry, hide-leaves, outline-toggle-children):
4857 Put outline-back-to-heading function call inside save-excursion.
4858
4859 2005-08-29 Juanma Barranquero <lekktu@gmail.com>
4860
4861 * man.el (Man-init-defvars, Man-translate-references)
4862 (Man-support-local-filenames, Man-highlight-references):
4863 * progmodes/sql.el (sql-interactive-mode):
4864 * shell.el (shell-mode, shell-resync-dirs): Fix typos in docstrings.
4865
4866 * emacs-lisp/checkdoc.el (compilation-error-regexp-alist)
4867 (compilation-mode-font-lock-keywords): Add defvars.
4868 (checkdoc-interactive-loop): "?\ " -> "?\s".
4869
4870 * emacs-lisp/lisp-mode.el (font-lock-comment-face)
4871 (font-lock-doc-face, font-lock-string-face)
4872 (font-lock-keywords-case-fold-search): Add defvars.
4873 (emacs-lisp-mode-syntax-table): "?\ " -> "?\s".
4874
4875 * obsolete/sun-fns.el (mouse-select-or-drag-move-point):
4876 Don't pass X and Y (they are ignored anyway).
4877 (mouse-set-mark, mouse-select-window, mouse-delete-other-windows)
4878 (mouse-delete-window): Make arguments optional.
4879
4880 * obsolete/rnews.el (news-add-news-group): Don't use `end-of-line'.
4881 (caesar-translate-table, minor-modes, news-buffer-save)
4882 (news-group-name, news-minor-modes): Add defvars.
4883
4884 * emacs-lisp/lselect.el (mouse-highlight-priority)
4885 (x-lost-selection-functions, zmacs-regions):
4886 * emacs-lisp/pp.el (font-lock-verbose):
4887 * emacs-lisp/syntax.el (font-lock-beginning-of-syntax-function):
4888 * emacs-lisp/tcover-ses.el (ses-initial-global-parameters)
4889 (ses-mode-map):
4890 * emacs-lisp/tcover-unsafep.el (safe-functions):
4891 * international/mule-cmds.el (mac-system-coding-system)
4892 (mac-system-locale):
4893 * language/ethio-util.el (rmail-current-message)
4894 (rmail-message-vector):
4895 * language/thai-util.el (thai-auto-composition-mode):
4896 * mail/metamail.el (rmail-current-message, rmail-message-vector):
4897 * mail/mspools.el (rmail-inbox-list, vm-crash-box)
4898 (vm-folder-directory, vm-init-file, vm-init-file-loaded)
4899 (vm-primary-inbox, vm-spool-files):
4900 * mail/rmail.el (deleted-head, font-lock-fontified)
4901 (mail-abbrev-syntax-table, mail-abbrevs, messages-head)
4902 (rmail-use-spam-filter, rsf-beep, rsf-sleep-after-message)
4903 (total-messages):
4904 * mail/rmail-spam-filter.el (bbdb/mail_auto_create_p)
4905 (rmail-summary-mode-map):
4906 * mail/rmailkwd.el (rmail-buffer, rmail-current-message)
4907 (rmail-last-label, rmail-last-multi-labels)
4908 (rmail-summary-vector, rmail-total-messages):
4909 * mail/rmailmsc.el (rmail-current-message, rmail-inbox-list):
4910 * mail/rmailsum.el (msgnum):
4911 * mail/uce.el (gnus-original-article-buffer, mail-reply-buffer)
4912 (rmail-current-message):
4913 * obsolete/fast-lock.el (font-lock-face-list):
4914 * obsolete/rnewspost.el (mail-reply-buffer):
4915 * obsolete/scribe.el (compile-command):
4916 * obsolete/x-menu.el (x-process-mouse-hook): Add defvars.
4917
4918 2005-08-28 John Paul Wallington <jpw@gnu.org>
4919
4920 * ibuf-ext.el (ibuffer-auto-update-changed):
4921 Use `frame-or-buffer-changed-p' to check whether we need to update.
4922 (ibuffer-auto-mode): Don't advise `get-buffer-create' and
4923 `kill-buffer'. Initialise `ibuffer-auto-buffers-changed'
4924 as a `frame-or-buffer-changed-p' state vector instead.
4925
4926 2005-08-27 Romain Francoise <romain@orebokech.com>
4927
4928 * textmodes/makeinfo.el (makeinfo-compile):
4929 Use `compilation-start'. Set `next-error-function' according to
4930 `disable-errors'.
4931 (makeinfo-next-error): New function.
4932 (makeinfo-region): Adjust to new `makeinfo-compile' prototype.
4933 (makeinfo-buffer): Likewise.
4934
4935 * progmodes/compile.el (compilation-start): Add autoload cookie.
4936
4937 * progmodes/antlr-mode.el: Don't autoload `compilation-start'.
4938 * textmodes/sgml-mode.el: Likewise.
4939 * progmodes/python.el: Likewise.
4940
4941 2005-08-27 Eli Zaretskii <eliz@gnu.org>
4942
4943 * simple.el (blink-matching-paren-distance): Document the meaning
4944 of nil value, and allow to customize to nil.
4945
4946 * eshell/esh-ext.el (eshell-windows-shell-file): Look for
4947 command.com, not command.exe.
4948
4949 2005-08-26 John Wiegley <johnw@newartisans.com>
4950
4951 * eshell/esh-cmd.el (eshell-rewrite-named-command): Change the
4952 code around a bit so that an extraneous nil argument is not added
4953 to a command when no args are given.
4954
4955 * eshell/esh-arg.el (eshell-parse-double-quote): If a
4956 double-quoted argument resolves to nil, return it as an empty
4957 string rather than as nil. This made it impossible to pass "" to
4958 a shell script as a null string argument.
4959
4960 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
4961
4962 * outline.el (outline-invent-heading): New fun.
4963 (outline-promote, outline-demote): Use it.
4964 (outline-move-subtree-down): Remove unused vars `re' and `txt'.
4965 (outline-end-of-subtree): Remove unused var `opoint'.
4966
4967 2005-08-26 David Reitter <david.reitter@gmail.com>
4968
4969 * menu-bar.el (truncate-lines, write-file, print-buffer)
4970 (ps-print-buffer-faces, ps-print-buffer, split-window):
4971 Disable menu items when the frame they refer to is invisible, or when
4972 they refer to a buffer and the minibuffer is selected.
4973
4974 2005-08-26 Pavel Kobiakov <pk_at_work@yahoo.com>
4975
4976 * progmodes/flymake.el (flymake-highlight-err-lines):
4977 Use save-excursion around flymake-highlight-line to preserve point.
4978
4979 2005-08-26 Eli Zaretskii <eliz@gnu.org>
4980
4981 * progmodes/octave-mod.el: Change Author and Maintainer address.
4982 (octave-maintainer-address): Change Kurt's email address.
4983 * progmodes/octave-inf.el: Change Author and Maintainer address.
4984 * progmodes/octave-hlp.el: Change Author and Maintainer address.
4985
4986 2005-08-26 Kim F. Storm <storm@cua.dk>
4987
4988 * subr.el (version-list-<, version-list-<=, version-list-=):
4989 Renamed from integer-list-*.
4990 (version-list-not-zero): Likewise. Fix while loop.
4991 (version=): Use version-list-= instead of string-equal.
4992
4993 2005-08-26 Richard M. Stallman <rms@gnu.org>
4994
4995 * outline.el (outline-promote): Try shortening the heading.
4996 As last resort, read the heading to use.
4997 (outline-demote): As last resort, read the heading to use.
4998
4999 2005-08-26 Romain Francoise <romain@orebokech.com>
5000
5001 * progmodes/compile.el (compilation-start): Doc fix.
5002
5003 * progmodes/antlr-mode.el (antlr-default): Fix defface form.
5004 (antlr-font-lock-additional-keywords): Fix reference to
5005 `antlr-font-lock-literal-regexp' erroneously changed during the
5006 mass face rename.
5007 (antlr-run-tool): Use `compilation-start'.
5008
5009 * textmodes/sgml-mode.el (sgml-validate): Use `compilation-start'
5010 instead of the obsolete `compile-internal'.
5011
5012 2005-08-26 Juanma Barranquero <lekktu@gmail.com>
5013
5014 * calendar/cal-bahai.el (date, displayed-month, displayed-year)
5015 (number, original-date):
5016 * calendar/cal-china.el (date):
5017 * calendar/cal-coptic.el (date):
5018 * calendar/cal-french.el (date):
5019 * calendar/cal-hebrew.el (date, entry, number, original-date):
5020 * calendar/cal-islam.el (date, number, original-date):
5021 * calendar/cal-iso.el (date):
5022 * calendar/cal-julian.el (date):
5023 * calendar/cal-mayan.el (date):
5024 * calendar/cal-menu.el (date, event):
5025 * calendar/cal-persia.el (date):
5026 * calendar/lunar.el (date):
5027 * calendar/solar.el (date): Add defvars.
5028
5029 * emerge.el:
5030 * ibuffer.el:
5031 * info-xref.el:
5032 * obsolete/bg-mouse.el:
5033 * obsolete/sun-curs.el:
5034 * obsolete/swedish.el: Move the `defvar's to the top level.
5035
5036 * smerge-mode.el (smerge-refined-change): Add :group.
5037
5038 2005-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
5039
5040 * smerge-mode.el (smerge-remove-props): Make the args non-optional.
5041 (smerge-keep-n): Remove props.
5042 (smerge-keep-base, smerge-keep-other, smerge-keep-mine)
5043 (smerge-keep-current, smerge-kill-current): Don't remove props anymore
5044 now that it's done in smerge-keep-n.
5045 (smerge-refined-change): New face.
5046 (smerge-refine-chopup-region, smerge-refine-highlight-change)
5047 (smerge-refine): New funs.
5048 (smerge-basic-map): Bind smerge-refine.
5049
5050 2005-08-25 Juri Linkov <juri@jurta.org>
5051
5052 * progmodes/grep.el (grep, grep-mode): Make buffer-local variables
5053 compilation-process-setup-function and compilation-disable-input
5054 in grep-mode instead of let-bindings in grep.
5055
5056 * menu-bar.el (menu-bar-options-menu, menu-bar-options-save):
5057 Delete "Automatic File De/compression" (auto-compression-mode).
5058
5059 2005-08-25 Juanma Barranquero <lekktu@gmail.com>
5060
5061 * obsolete/bg-mouse.el: Move to obsolete/ from term/.
5062 Silence warning about non-existent variable.
5063
5064 2005-08-25 Richard M. Stallman <rms@gnu.org>
5065
5066 * menu-bar.el (menu-bar-describe-menu): Delete "What's New".
5067 Rename "Describe Key" to "Describe Key or Mouse Operation".
5068
5069 * mail/mailalias.el (build-mail-aliases): Delete comments
5070 from the contents before processing them.
5071
5072 * isearch.el (isearch-edit-string): Erase the Search prompt
5073 if user enters an empty string and there is no default.
5074
5075 * comint.el (comint-file-name-prefix): Add autoload.
5076
5077 2005-08-25 Joe Corneli <jcorneli@math.utexas.edu>
5078
5079 * subr.el (play-sound): Rearrange to avoid warning.
5080
5081 2005-08-25 Carsten Dominik <dominik@science.uva.nl>
5082
5083 * calendar/diary-lib.el (diary-modify-entry-list-string-function):
5084 New hook.
5085 (add-to-diary-list): Call `diary-modify-entry-list-string-function'
5086
5087 2005-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
5088
5089 * emacs-lisp/easy-mmode.el (define-minor-mode): Simplify.
5090
5091 * custom.el (custom-theme-set-variables): Sort minor modes last.
5092
5093 2005-08-24 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5094
5095 * subr.el (version-separator, version-regexp-alist): New vars used by
5096 version comparison funs.
5097 (integer-list-<, integer-list-=, integer-list-<=)
5098 (integer-list-not-zero): New funs for integer list comparison.
5099 (version-to-list, version=, version<, version<=): New funs for version
5100 comparison.
5101
5102 2005-08-24 Juanma Barranquero <lekktu@gmail.com>
5103
5104 * emerge.el (merge-begin, merge-end, template, A-begin, A-end)
5105 (B-begin, B-end, diff, diff-vector, valid-diff): Defvar at compile
5106 time to silence the byte-compiler.
5107
5108 * ibuffer.el (ibuffer-compile-make-eliding-form)
5109 (ibuffer-check-formats): Use `with-no-warnings' to hide references
5110 to `ibuffer-elide-long-columns' (which is defined on ibuffer.el,
5111 so it's silly to get warnings for it).
5112 (ibuffer-auto-mode, ibuffer-cached-filter-formats)
5113 (ibuffer-compiled-filter-formats, ibuffer-filter-format-alist)
5114 (ibuffer-filter-group-kill-ring, ibuffer-filter-groups)
5115 (ibuffer-filtering-qualifiers, ibuffer-hidden-filter-groups)
5116 (ibuffer-inline-columns, ibuffer-show-empty-filter-groups)
5117 (ibuffer-tmp-hide-regexps, ibuffer-tmp-show-regexps):
5118 Defvar at compile time.
5119 (ibuffer-compiled-formats, ibuffer-cached-eliding-string)
5120 (ibuffer-cached-formats, ibuffer-cached-elide-long-columns):
5121 Declare them before use.
5122
5123 * info-xref.el (info-xref-xfile-alist, info-xref-filename-heading)
5124 (info-xref-good, info-xref-bad): Defvar at compile time.
5125
5126 * obsolete/mlsupport.el (filter-region, execute-monitor-command):
5127 Use `let*' instead of `let'.
5128
5129 * obsolete/sun-curs.el (icon-edit, *mouse-window*, *mouse-x*)
5130 (*mouse-y*, menu, char): Defvar at compile time.
5131 (sc::menu): Declare it before use.
5132 (sc::pack-one-line): Use `let', not `let*'.
5133
5134 * obsolete/swedish.el (news-inews-hook, news-group-hook-alist)
5135 (mail-send-hook): Defvar at compile time.
5136
5137 * term/bg-mouse.el (bg-mouse-x, bg-mouse-y, bg-cursor-window):
5138 Defvar at compile time.
5139
5140 * term/sun-mouse.el (current-global-mousemap)
5141 (current-local-mousemap): Declare them before use.
5142
5143 2005-08-24 Carsten Dominik <dominik@science.uva.nl>
5144
5145 * bookmark.el (bookmark-after-jump-hook): New hook.
5146 (bookmark-jump): Run `bookmark-after-jump-hook'.
5147
5148 2005-08-23 Juri Linkov <juri@jurta.org>
5149
5150 * faces.el (minibuffer-prompt): Doc fix.
5151
5152 2005-08-23 Juanma Barranquero <lekktu@gmail.com>
5153
5154 * progmodes/xscheme.el: Trivial changes to silence warnings.
5155 (xscheme-previous-mode, xscheme-previous-process-state):
5156 Add defvars.
5157 (xscheme-last-input-end, xscheme-process-command-line)
5158 (xscheme-process-name, xscheme-buffer-name)
5159 (xscheme-expressions-ring-max, xscheme-expressions-ring)
5160 (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
5161 (xscheme-control-g-synchronization-p)
5162 (xscheme-control-g-disabled-p, xscheme-string-receiver)
5163 (default-xscheme-runlight, xscheme-runlight)
5164 (xscheme-runlight-string, xscheme-process-filter-state)
5165 (xscheme-allow-output-p, xscheme-prompt, xscheme-mode-string):
5166 Move to beginning of file.
5167 (scheme-interaction-mode-commands-alist)
5168 (scheme-interaction-mode-map, scheme-debugger-mode-map):
5169 Declare them before use. Note: the initialization code for the variables
5170 has not been moved because it uses functions that reference the variables.
5171 (xscheme-control-g-message-string, xscheme-process-filter-alist)
5172 (xscheme-prompt-for-expression-map): Declare them before use.
5173 (scheme-debugger-mode-commands): "?\ " -> "?\s".
5174
5175 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change)
5176
5177 * hexl.el (hexl-print-current-point-info): Fix simple spelling error.
5178
5179 2005-08-22 Juri Linkov <juri@jurta.org>
5180
5181 * faces.el (set-face-underline): Delete this duplicate function
5182 and make an obsolete alias to set-face-underline-p.
5183 (set-face-underline-p): Use docstring of set-face-underline.
5184 (describe-face): Create hyperlink to parent face.
5185
5186 * info.el (Info-insert-dir): Use save-excursion around
5187 insert-buffer-substring.
5188 (Info-isearch-search): Use LITERAL arg of replace-regexp-in-string.
5189 (Info-escape-percent): Delete function.
5190 (Info-fontify-node): Replace Info-escape-percent by
5191 replace-regexp-in-string with REP arg set to lambda that
5192 duplicates `%' and preserves text properties.
5193
5194 * progmodes/compile.el (compilation-disable-input): Doc fix.
5195 (define-compilation-mode): Doc fix and refill.
5196 (kill-compilation): Use `mode-name' in the error message.
5197 (compilation-find-file): Use `compilation-error' in the
5198 read-file-name's prompt.
5199
5200 2005-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
5201
5202 * smerge-mode.el (smerge-basic-map): Bind smerge-combine-with-next.
5203 (smerge-auto-leave): Make undo re-enable the mode.
5204 (debug-ignored-errors): Add the user-error of impossible resolution.
5205 (smerge-resolve): Move things around a bit, in preparation for later.
5206 (smerge-diff): Don't fail if the buffer has no associated file.
5207 (ediff-ancestor-buffer, ediff-quit-hook): Quieten byte-compiler.
5208 (smerge-conflict-overlay): New function.
5209 (smerge-match-conflict): Don't add text properties here.
5210 (smerge-find-conflict): Instead, add an overlay here.
5211 Also check for the case where we're inside a conflict already, so as to
5212 obviate the need for font-lock-multiline, which is unbearably slow with
5213 large conflicts and ciomplex font-lock patterns.
5214 (smerge-remove-props): Remove overlay rather than text-properties.
5215 (smerge-mode): Don't set font-lock-multiline.
5216 Remove overlays when turned off.
5217
5218 2005-08-21 Kim F. Storm <storm@cua.dk>
5219
5220 * ido.el (ido-ignore-item-p): Use save-match-data.
5221 Bind case-fold-search to ido-case-fold locally.
5222
5223 2005-08-20 Richard M. Stallman <rms@gnu.org>
5224
5225 * files.el (normal-mode): If font lock is on, turn it off and on.
5226
5227 * subr.el (replace-regexp-in-string): Doc fix.
5228
5229 * startup.el (command-line-1): Don't suppress startup screen
5230 due to existing processes.
5231
5232 * progmodes/grep.el (grep): Bind compilation-disable-input to t.
5233
5234 * progmodes/compile.el (compilation-disable-input): Default to nil.
5235
5236 2005-08-20 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change)
5237
5238 * progmodes/compile.el (compilation-disable-input): New defcustom.
5239 (compilation-start): If compilation-disable-input is non-nil, send
5240 EOF to the compilation process.
5241
5242 2005-08-20 Eli Zaretskii <eliz@gnu.org>
5243
5244 * textmodes/tex-mode.el (tex-bibtex-file, tex-send-tex-command):
5245 Run the argument of tex-shell-cd-command through
5246 convert-standard-filename, to get the correct style of slashes on
5247 Windows, and enclose the result in quotes, in case the file name
5248 includes whitespace or other special characters.
5249
5250 2005-08-19 Andreas Schwab <schwab@suse.de>
5251
5252 * progmodes/gud.el (gud-kill-buffer-hook): Don't kill unrelated
5253 process.
5254
5255 2005-08-18 Luc Teirlinck <teirllm@auburn.edu>
5256
5257 * cus-start.el (minibuffer-prompt-properties): Correct typo.
5258
5259 2005-08-18 Kim F. Storm <storm@cua.dk>
5260
5261 * scroll-lock.el: Fix errors due to incorrect line wrapping.
5262
5263 2005-08-18 Richard M. Stallman <rms@gnu.org>
5264
5265 * scroll-lock.el: New file.
5266
5267 2005-08-18 Thien-Thi Nguyen <ttn@gnu.org>
5268
5269 * dired.el (dired-move-to-end-of-filename):
5270 Handle fifo as rendered by "ls -lF": Don't include trailing "|".
5271
5272 2005-08-18 Kim F. Storm <storm@cua.dk>
5273
5274 * ido.el (ido-everywhere): Fix defcustom :set function to disable
5275 rather than toggle mode when custom value is nil.
5276 (ido-everywhere): Fix defun doc string.
5277
5278 2005-08-17 Richard M. Stallman <rms@gnu.org>
5279
5280 * cus-start.el (minibuffer-prompt-properties): Use "Don't Enter"
5281 as tag instead of "Inviolable".
5282
5283 2005-08-17 Kim F. Storm <storm@cua.dk>
5284
5285 * windmove.el (windmove-coordinates-of-position): Remove.
5286 (windmove-coordinates-of-window-position): Remove.
5287 (windmove-reference-loc): Use posn-at-point instead.
5288
5289 * subr.el (insert-for-yank-1): Doc fix.
5290
5291 * ido.el (ido-enter-matching-directory): Rename from
5292 ido-enter-single-matching-directory. Change 'slash choice to
5293 'only. Add 'first choice.
5294 (ido-exhibit): Adapt to above changes.
5295
5296 2005-08-16 Luc Teirlinck <teirllm@auburn.edu>
5297
5298 * Makefile.in: Expand comment about building loaddefs.el.
5299
5300 2005-08-16 Nick Roberts <nickrob@snap.net.nz>
5301
5302 * progmodes/gdb-ui.el (toggle-gdb-use-inferior-io-buffer):
5303 Comment use of defadvice.
5304
5305 * progmodes/gud.el (gud-jump): Rework for gdb-ui.
5306
5307 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
5308
5309 * buff-menu.el, compare-w.el, emacs-lisp/testcover.el,
5310 * play/gomoku.el, play/mpuz.el, progmodes/flymake.el,
5311 * progmodes/gdb-ui.el, progmodes/idlw-help.el,
5312 * progmodes/idlw-shell.el, progmodes/ld-script.el,
5313 * progmodes/which-func.el, ruler-mode.el, strokes.el,
5314 * textmodes/sgml-mode.el, textmodes/table.el: Do not use face-alias
5315 for backward compatibility for faces that did not appear in the
5316 previous Emacs release.
5317
5318 * simple.el (next-error-follow-minor-mode): Fix init value and lighter.
5319
5320 2005-08-15 Kim F. Storm <storm@cua.dk>
5321
5322 * emulation/cua-base.el (cua-delete-region): Return t if
5323 deleted region was non-empty.
5324 (cua-replace-region): Inhibit overwrite-mode for
5325 self-insert-command if replaced region was non-empty.
5326 (cua--explicit-region-start, cua--status-string): Make them
5327 buffer-local at top-level...
5328 (cua-mode): ...rather than when mode is enabled.
5329
5330 2005-08-15 Thien-Thi Nguyen <ttn@gnu.org>
5331
5332 * progmodes/vhdl-mode.el (vhdl-emacs-21):
5333 Set t for Emacs 21, 22, and so on.
5334
5335 2005-08-15 David Ponce <david@dponce.com>
5336
5337 * tree-widget.el: Update Commentary header.
5338 (tree-widget-theme): Doc fix.
5339 (tree-widget-space-width): New option.
5340 (tree-widget-image-properties): Look up in the default theme too.
5341 (tree-widget--cursors): Only for images with arrow pointer shape.
5342 (tree-widget-lookup-image): Pointer shape is hand by default.
5343 (tree-widget-icon): Rename generic icon widget from
5344 `tree-widget-control'.
5345 (tree-widget-*-icon): Rename from `tree-widget-*-control' and
5346 derive from `tree-widget-icon'.
5347 (tree-widget-handle): Improve default look and feel of the text
5348 representation.
5349 (tree-widget): Rename :*-control properties to :*-icon properties.
5350 Add :action and :help-echo properties.
5351 (tree-widget-after-toggle-functions): Move.
5352 (tree-widget-close-node, tree-widget-open-node): Remove.
5353 (tree-widget-before-create-icon-functions): New hook.
5354 (tree-widget-value-create): Update to allow customization of icons
5355 and nodes at run-time via that new hook.
5356 (tree-widget-icon-create, tree-widget-leaf-node-icon-p)
5357 (tree-widget-icon-action, tree-widget-icon-help-echo)
5358 (tree-widget-action, tree-widget-help-echo): New functions.
5359
5360 2005-08-15 Kim F. Storm <storm@cua.dk>
5361
5362 * ido.el (ido-buffer-internal): Use with-no-warnings.
5363 (ido-make-merged-file-list): Use while-no-input.
5364
5365 2005-08-15 Richard M. Stallman <rms@gnu.org>
5366
5367 * textmodes/flyspell.el (flyspell-mark-duplications-flag): Doc fix.
5368 (flyspell-large-region): Fix doc and custom type.
5369
5370 2005-08-14 Richard M. Stallman <rms@gnu.org>
5371
5372 * files.el (interpreter-mode-alist): Doc fix.
5373
5374 * mail/rmail.el (rmail-nonignored-headers): New variable.
5375 (rmail-clear-headers): Use it.
5376 (rmail-reply): Better handling of mail-followup-to header.
5377
5378 * progmodes/sh-script.el (sh-font-lock-keywords-var):
5379 Rename variable from sh-font-lock-keywords. In the `shell' entry,
5380 don't try to refer to executable-font-lock-keywords.
5381 (sh-font-lock-keywords-var-1): Rename from sh-font-lock-keywords-1.
5382 (sh-font-lock-keywords-var-2): Rename from sh-font-lock-keywords-2.
5383 (sh-font-lock-keywords): Append executable-font-lock-keywords here.
5384 (sh-mode): Set comment-start-skip, local-abbrev-table,
5385 imenu-case-fold-search.
5386 (sh-set-shell): Don't set them here.
5387 (sh-feature): Simplify. Get rid of the eval-a-variable feature.
5388 Don't cache the results in the original alist; don't ever modify
5389 that alist.
5390
5391 * textmodes/flyspell.el (flyspell-mode): Autoload a defvar.
5392
5393 * textmodes/ispell.el (lookup-words): Cope with case where ARGS is
5394 empty.
5395
5396 2005-08-15 Andreas Schwab <schwab@suse.de>
5397
5398 * desktop.el: Put autoload cookie at risky-local-variable declarations.
5399
5400 * dired.el, info.el, mail/rmail.el: Revert last change.
5401
5402 2005-08-14 Thien-Thi Nguyen <ttn@gnu.org>
5403
5404 * dired.el: Fix dependency bug: Wrap `desktop-buffer-mode-handlers'
5405 modification in `eval-after-load' form.
5406 * info.el: Likewise.
5407 * mail/rmail.el: Likewise.
5408
5409 2005-08-14 Juri Linkov <juri@jurta.org>
5410
5411 * progmodes/compile.el (compilation-mode-font-lock-keywords):
5412 Remove highlighting of "Compilation started". Highlight only
5413 the word "finished" in "Compilation finished". Add highlighting
5414 of "interrupt", "killed", "terminated" and the exit code.
5415 (compilation-start): Add newline after header. Use exactly the
5416 same time stamp format as the finishing message.
5417 (compilation-mode-map): Add ellipsis to "Search Files (grep)".
5418
5419 * progmodes/grep.el (grep-mode-map): Add ellipsis to "Another grep".
5420 (grep-mode-font-lock-keywords): Don't highlight "Grep started".
5421 Add highlighting of "interrupt", "killed", "terminated".
5422
5423 * delsel.el (delete-selection-pre-hook): If overwrite-mode is
5424 enabled and the current command is self-insert-command, call it
5425 explicitly with overwrite-mode bound to nil, to not allow it
5426 to delete the character after the selected region.
5427
5428 2005-08-12 Matt Hodges <MPHodges@member.fsf.org>
5429
5430 * emacs-lisp/eldoc.el: Add move-beginning-of-line,
5431 move-end-of-line, end-of-line, and beginning-of-line to the list
5432 of commands after which the echo area is updated.
5433
5434 2005-08-12 Eli Zaretskii <eliz@gnu.org>
5435
5436 * cus-edit.el (custom-save-all, custom-save-delete):
5437 Bind recentf-exclude to exclude custom-file.
5438
5439 2005-08-12 Ehud Karni <ehud@unix.mvs.co.il>
5440
5441 * mail/rmailsum.el (rmail-summary-end-of-message): New command
5442 to go to the bottom of the mail message. Added to
5443 `rmail-summary-mode-map' with key "/".
5444 (rmail-summary-show-message): New (internal) function for use by
5445 both `rmail-summary-beginning/end-of-message'.
5446 (rmail-summary-beginning-of-message): Change to use
5447 rmail-summary-show-message.
5448
5449 * mail/rmail.el (rmail-end-of-message): New command to go to the
5450 end of the current message. Added to `rmail-mode-map' with key "/".
5451 (rmail-beginning-of-message): Fix to work as documented.
5452 (rmail-mode): Change documentation.
5453
5454 * progmodes/compile.el (compilation-start): Add the line
5455 "Compilation started" with compilation start time.
5456 (compilation-mode-font-lock-keywords): Add `started' to keywords.
5457
5458 2005-08-11 Luc Teirlinck <teirllm@auburn.edu>
5459
5460 * menu-bar.el (menu-bar-options-menu): Standardize capitalization
5461 of menu items.
5462
5463 2005-08-11 Richard M. Stallman <rms@gnu.org>
5464
5465 * simple.el (pop-global-mark): Reverse test of widen-automatically.
5466
5467 * battery.el (battery-status-function): Don't use ignore-errors.
5468
5469 2005-08-11 Lute Kamstra <lute@gnu.org>
5470
5471 * emacs-lisp/generic.el (generic-font-lock-defaults): Declare with
5472 define-obsolete-variable-alias.
5473
5474 2005-08-11 Stefan Monnier <monnier@iro.umontreal.ca>
5475
5476 * net/ange-ftp.el: Use \\` and \\' instead of ^ and $ in regexps.
5477 (ange-ftp-send-cmd): Revert last change, and expand
5478 the comment explaining the problem.
5479
5480 2005-08-10 Luc Teirlinck <teirllm@auburn.edu>
5481
5482 * ldefs-boot.el: Update.
5483
5484 * menu-bar.el (menu-bar-showhide-menu): Rename "Date, Time and Mail"
5485 item to "Time, Load and Mail". Change help echo text.
5486
5487 * time.el (display-time-use-mail-icon, display-time-format)
5488 (display-time-string-forms): Shorten first line of docstrings.
5489
5490 2005-08-10 Lars Hansen <larsh@soem.dk>
5491
5492 * desktop.el (desktop-buffer-mode-handlers):
5493 Make non-customizable. Add autoload cookie. Change initial value to
5494 nil; add elements in respective modules instead. Fix doc string.
5495 (desktop-load-file): New function.
5496 (desktop-minor-mode-handlers): New autoloaded variable.
5497 (desktop-create-buffer): Call minor mode handlers.
5498 Use desktop-load-file to load major and minor mode modules prior to
5499 checking for a handler.
5500 (desktop-save): Don't add nil to desktop-minor-modes for minor
5501 modes with nil function in desktop-minor-mode-table. Don't delete
5502 desktop file before rewriting it.
5503 (desktop-locals-to-save): Add autoload cookie. Don't make
5504 automatically buffer-local. Add variables column-number-mode,
5505 size-indication-mode, indent-tabs-mode,
5506 indicate-buffer-boundaries, indicate-empty-lines and
5507 show-trailing-whitespace.
5508 (desktop-clear): Allow desktop-clear-preserve-buffers to contain
5509 regexps. Don't use desktop-clear-preserve-buffers-regexp.
5510 (desktop-clear-preserve-buffers-regexp): Delete.
5511 (desktop-clear-preserve-buffers): Update initial value and docstring.
5512 (desktop-save-buffer): Fix doc string.
5513
5514 * hilit-chg.el: Add handler to desktop-minor-mode-handlers.
5515 (hilit-chg-desktop-restore): New function.
5516 (highlight-changes-mode): Add highlight-changes-mode to
5517 desktop-locals-to-save.
5518
5519 * dired.el: Add handler to desktop-buffer-mode-handlers.
5520 (dired-restore-desktop-buffer): Remove autoload cookie.
5521 (dired-mode): Add autoload cookie.
5522
5523 * info.el: Add handler to desktop-buffer-mode-handlers.
5524 (Info-restore-desktop-buffer): Remove autoload cookie.
5525 (Info-mode): Add autoload cookie.
5526
5527 * mh-e/mh-e.el: Add handler to desktop-buffer-mode-handlers.
5528 (mh-restore-desktop-buffer): Remove autoload cookie.
5529 (mh-folder-mode): Add autoload cookie.
5530
5531 * mail/rmail.el: Add handler to desktop-buffer-mode-handlers.
5532 (rmail-restore-desktop-buffer): Remove autoload cookie.
5533
5534 2005-08-11 Masatake YAMATO <jet@gyve.org>
5535
5536 * hexl.el (hexl-address-region):
5537 (hexl-ascii-region, hexl-font-lock-keywords):
5538 (hexl-highlight-line-range): Use the term "region"
5539 instead of "area" for consistency with the other symbols
5540 defined in hexl.el.
5541
5542 2005-08-09 Luc Teirlinck <teirllm@auburn.edu>
5543
5544 * menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
5545 correct group: it is set with `menu-bar-make-mm-toggle' (pointed
5546 out by Juri Linkov). Add `display-battery-mode'.
5547
5548 2005-08-09 Juri Linkov <juri@jurta.org>
5549
5550 * progmodes/compile.el (compilation-mode-font-lock-keywords):
5551 Remove `-text' from face variable names.
5552 (compilation-error-file-name, compilation-warning-file-name)
5553 (compilation-info-file-name): Delete faces.
5554 (compilation-line-number, compilation-column-number):
5555 Remove face underlining.
5556 (compilation-message-face): Set to `underline' value by default.
5557 (compilation-error-face, compilation-warning-face)
5558 (compilation-info-face): Remove `-file-name' from face names.
5559 (compilation-error-text-face, compilation-warning-text-face)
5560 (compilation-info-text-face): Delete face variables.
5561 (compilation-text-face): Delete function.
5562
5563 * progmodes/grep.el (grep-regexp-alist): Use `.+?' instead of `[^:\n]+'.
5564 (grep-mode-font-lock-keywords): Use `.+?' instead of `[^\n-]+'.
5565 (grep-error-face): Set to `compilation-error' instead of
5566 `compilation-error-face' (which is redefined to `grep-hit-face' in
5567 grep buffers).
5568 (grep-mode-font-lock-keywords): Remove `-text' from face variable
5569 names. Use `grep-error-face' instead of `compilation-error-text-face'.
5570
5571 * dired-aux.el (dired-do-query-replace-regexp):
5572 Use `query-replace-read-args'.
5573
5574 * replace.el (query-replace-read-from, query-replace-read-to)
5575 (query-replace-read-args): Rename arg `string' to `prompt'.
5576
5577 * menu-bar.el (menu-bar-showhide-menu): Add `showhide-battery'.
5578
5579 2005-08-09 Katsumi Yamaoka <yamaoka@jpl.org> (tiny change)
5580
5581 * net/ange-ftp.el (ange-ftp-send-cmd): Make it work properly with
5582 uploading files.
5583 (ange-ftp-canonize-filename): Handle file names beginning with ~
5584 correctly.
5585
5586 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
5587
5588 * textmodes/fill.el (canonically-space-region)
5589 (fill-context-prefix, fill-french-nobreak-p)
5590 (fill-delete-newlines, fill-comment-paragraph)
5591 (justify-current-line): "?\ " -> "?\s".
5592
5593 2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
5594
5595 * textmodes/fill.el (fill-nonuniform-paragraphs):
5596 Improve argument/docstring consistency.
5597
5598 2005-08-09 Richard M. Stallman <rms@gnu.org>
5599
5600 * textmodes/ispell.el (ispell-word): More fboundp checks.
5601
5602 * files.el (find-file-noselect): Don't call set-buffer-major-mode.
5603 (find-file-noselect-1): Call it here, only if RAWFILE.
5604 (normal-mode): Always set some major mode.
5605 (save-some-buffers-action-alist): Change some explanation strings.
5606 (file-name-non-special): In the `quote' method, use unwind-protect.
5607
5608 2005-08-09 Magnus Henoch <mange@freemail.hu>
5609
5610 * textmodes/ispell.el (ispell-find-aspell-dictionaries): New command.
5611 (ispell-have-aspell-dictionaries): New variable.
5612 (ispell-aspell-data-dir, ispell-aspell-dict-dir): New variables.
5613 (ispell-get-aspell-config-value): New function.
5614 (ispell-aspell-find-dictionary): New function.
5615 (ispell-aspell-add-aliases): New function.
5616 (ispell-valid-dictionary-list): Call ispell-find-aspell-dictionaries if
5617 appropriate. Don't look for ispell dictionaries if we use aspell.
5618 (ispell-menu-map): Don't build a submenu of dictionaries.
5619
5620 2005-08-09 Richard M. Stallman <rms@gnu.org>
5621
5622 * progmodes/sql.el (sql-interactive-mode-map): Use fboundp.
5623 (sql-read-passwd): Use read-passwd.
5624
5625 * progmodes/idlw-toolbar.el (idlwave-toolbar)
5626 (idlwave-toolbar-is-possible): Add defvars.
5627
5628 * progmodes/idlw-shell.el (idlwave-xemacs-hack-mouse-track):
5629 Avoid warnings.
5630
5631 * progmodes/idlw-rinfo.el (idlwave-system-variables-alist)
5632 (idlwave-system-class-info, idlwave-executive-commands-alist):
5633 Use defvar.
5634
5635 * progmodes/cc-engine.el (c-guess-basic-syntax): Add autoload.
5636
5637 * mail/supercite.el (sc-ask, sc-no-blank-line-or-header):
5638 Avoid warnings.
5639
5640 * mail/rmail.el (rmail-ignored-headers): Don't hide mime-version:
5641 and content-type: headers.
5642
5643 * eshell/eshell.el (eshell): Avoid warnings about eshell-mode.
5644
5645 * emacs-lisp/map-ynp.el (map-y-or-n-p): Reorder the options
5646 and rename some of them to be more self-explanatory.
5647
5648 * calendar/calendar.el (calendar-mode-map): Bind < and > usefully.
5649
5650 * startup.el (command-line-1): Implement -scriptload.
5651
5652 * replace.el (occur-engine): Initial *Occur* output not undoable.
5653
5654 * menu-bar.el (menu-bar-file-menu): Rename some menu items
5655 and improve help strings.
5656
5657 * isearch.el (isearch-repeat): When changing direction,
5658 mark search successful.
5659
5660 * ediff-init.el: Use (featurep 'xemacs).
5661
5662 * comint.el (send-invisible): Identify buffer, if not selected.
5663
5664 * align.el: Delete autoload for c-guess-basic-syntax.
5665
5666 2005-08-09 Juanma Barranquero <lekktu@gmail.com>
5667
5668 * textmodes/refbib.el (r2b-convert-record, r2b-convert-buffer):
5669 Improve argument/docstring consistency. Doc fixes.
5670 (r2b-variables, r2bv-address, r2bv-annote, r2bv-author)
5671 (r2bv-booktitle, r2bv-date, r2bv-decade, r2bv-editor)
5672 (r2bv-entry-kind, r2bv-institution, r2bv-journal, r2bv-keywords)
5673 (r2bv-kn, r2bv-month, r2bv-note, r2bv-number, r2bv-ordering)
5674 (r2bv-organization, r2bv-pages, r2bv-primary-author)
5675 (r2bv-publisher, r2bv-school, r2bv-title, r2bv-title-first-word)
5676 (r2bv-tr, r2bv-type, r2bv-volume, r2bv-where, r2bv-year):
5677 Defvar at compile time.
5678
5679 2005-08-09 Juri Linkov <juri@jurta.org>
5680
5681 * info.el: Replace `info' with upper-case `Info' where appropriate.
5682 (info-title-1, info-title-2, info-title-3, info-title-4)
5683 (info-menu-header): Move up face definitions.
5684 (info-menu-star): Rename from `info-menu-5'.
5685 (Info-fontify-node): Replace `info-menu-5' with `info-menu-star'.
5686 (Info-fontify-visited-nodes): Fix docstring.
5687 (Info-hide-note-references): Fix docstring.
5688 (Info-up, Info-next-reference, Info-prev-reference): Put cursor on
5689 menu items in the same way as on cross-references.
5690 (info-apropos): Fix sorting order and formatting to be like in the
5691 stand-alone Info browser. Display error messages for 1 sec.
5692 (Info-mode-map): Move down `c' key binding. Bind `^' to `Info-up'.
5693 (Info-mode-menu): Remove item for `Info-search-case-sensitively'
5694 from the menu bar.
5695 (Info-insert-dir): Restore point after calling
5696 `insert-buffer-substring'.
5697
5698 2005-08-08 Richard M. Stallman <rms@gnu.org>
5699
5700 * emacs-lisp/lmenu.el (lucid-menubar-map, lucid-failing-menubar)
5701 (recompute-lucid-menubar): Add defvars.
5702
5703 * mail/sendmail.el (mail-yank-original): Use with-no-warnings.
5704
5705 * mail/reporter.el (reporter-dump-state): Use insert-buffer-substring.
5706
5707 * net/net-utils.el (run-dig): Rename from `dig'.
5708
5709 * play/gametree.el (gametree-mode): Use make-local-variable,
5710 not make-variable-buffer-local.
5711
5712 * progmodes/ada-prj.el (ada-prj-display-page): Use with-no-warnings.
5713
5714 * ansi-color.el (ansi-color-make-extent)
5715 (ansi-color-set-extent-face): Use fboundp, not functionp.
5716
5717 * autorevert.el (auto-revert-tail-mode): Use make-local-variable,
5718 not make-variable-buffer-local.
5719
5720 * bookmark.el (Info-current-file): Add defvar.
5721 (bookmark-jump-noselect): Use with-no-warnings.
5722
5723 * completion.el (c-mode-map, fortran-mode-map): Add defvars.
5724
5725 * ebuff-menu.el (Helper-return-blurb): Add defvar.
5726
5727 * ffap.el (gnus-summary-buffer, gnus-article-buffer): Add defvars.
5728
5729 * find-file.el (ada-procedure-start-regexp)
5730 (ada-package-start-regexp): Add defvars.
5731
5732 * info.el (Info-insert-dir): Use insert-buffer-substring.
5733
5734 * xml.el (xml-att-def-re): Add defvar.
5735
5736 * icomplete.el (icomplete-exhibit): Adapt to new while-no-input
5737 calling convention.
5738
5739 * subr.el (while-no-input): Return t if there is input.
5740
5741 2005-08-08 Luc Teirlinck <teirllm@auburn.edu>
5742
5743 * cus-start.el (all): Add `overflow-newline-into-fringe'.
5744
5745 2005-08-08 Juanma Barranquero <lekktu@gmail.com>
5746
5747 * cmuscheme.el (inferior-scheme-mode-hook, inferior-scheme-mode)
5748 (scheme-prev-l/c-dir/file): Fix typos in docstrings.
5749
5750 2005-08-08 Emilio C. Lopes <eclig@gmx.net>
5751
5752 * cmuscheme.el (scheme-start-file): Replace reference to
5753 `user-emacs-directory' by "~/.emacs.d/".
5754
5755 2005-08-08 Thien-Thi Nguyen <ttn@gnu.org>
5756
5757 * info.el (Info-dir-remove-duplicates): Avoid case folding
5758 in loop; instead, keep downcased strings for comparison.
5759 Suggested by Helmut Eller.
5760
5761 2005-08-07 Michael Albinus <michael.albinus@gmx.de>
5762
5763 Sync with Tramp 2.0.50.
5764
5765 * net/tramp.el: Remove defvar of `last-coding-system-used' in the
5766 XEmacs case; not necessary anymore.
5767 (tramp-user-regexp): Allow "@" as part of user name.
5768 (tramp-handle-set-visited-file-modtime)
5769 (tramp-handle-insert-file-contents)
5770 (tramp-handle-write-region): No special handling for
5771 `last-coding-system-used, because this is done in
5772 `tramp-accept-process-output' now.
5773 (tramp-accept-process-output): New defun.
5774 (tramp-process-one-action, tramp-process-one-multi-action)
5775 (tramp-wait-for-regexp, tramp-wait-for-output)
5776 (tramp-discard-garbage-erase-buffer): Call it. Reported by David
5777 Howells <dhowells@redhat.com>.
5778 (clear-visited-file-modtime): Defadvice removed. The check for
5779 unset buffer's modtime does not need to be based on
5780 `tramp-buffer-file-attributes'. Suggested by RMS.
5781 (tramp-message): Insert "\n" if not being at beginning of line.
5782 (tramp-find-shell): Use `tramp-barf-if-no-shell-prompt' for code
5783 sequence with same logic.
5784 (tramp-completion-handle-expand-file-name): Discard call of
5785 `tramp-drop-volume-letter'. It is not necessary, and there have
5786 been problems with (expand-file-name "~/.netrc" "/") in ange-ftp.
5787 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
5788 (tramp-do-copy-or-rename-file-out-of-band): Transfer message
5789 should always be visible.
5790 (tramp-handle-insert-directory, tramp-setup-complete)
5791 (tramp-set-process-query-on-exit-flag)
5792 (tramp-append-tramp-buffers): Pacify byte-compiler.
5793 (tramp-bug): Delete non-existing variables from list.
5794 Apply `tramp-load-report-modules' as pre-hook.
5795 Mask `tramp-password-prompt-regexp', `tramp-shell-prompt-pattern' and
5796 `shell-prompt-pattern' because of non-7bit characters.
5797 Reported by Sebastian Luque <sluque@mun.ca>.
5798 (tramp-reporter-dump-variable, tramp-load-report-modules): New defuns.
5799 (tramp-match-string-list): Remove function.
5800 (tramp-wait-for-regexp): Remove call of that function.
5801 Suggested by Kim F. Storm <storm@cua.dk>.
5802 (tramp-set-auto-save-file-modes): Use octal integer code #o600
5803 instead of octal character code ?\600. The latter resulted in a
5804 syntax error with XEmacs.
5805
5806 * net/tramp-smb.el: Remove defvar of `last-coding-system-used' in the
5807 XEmacs case; not necessary anymore.
5808 (tramp-smb-handle-write-region): No special handling for
5809 `last-coding-system-used, because this is done in
5810 `tramp-accept-process-output' now.
5811 (tramp-smb-wait-for-output): Call `tramp-accept-process-output'.
5812
5813 2005-08-06 Luc Teirlinck <teirllm@auburn.edu>
5814
5815 * wid-edit.el (widget-choice-value-create):
5816 Unconditionally respect user choice. Set :explicit-choice back to nil
5817 when no longer needed.
5818 (widget-choice-action): Unconditionally respect user choice.
5819 Eliminate :explicit-choice-value.
5820
5821 * fringe.el (set-fringe-indicators-1, fringe-indicators): Delete.
5822
5823 * menu-bar.el (menu-bar-options-save): Replace `fringe-indicators'
5824 with `indicate-empty-lines' and `indicate-buffer-boundaries'.
5825 (menu-bar-showhide-fringe-menu): Add new item "Empty line indicators"
5826 running new function `toggle-indicate-empty-lines'.
5827 Rename "Customize" item to "Customize fringe".
5828 Rename "Indicators" item to "Buffer boundaries" and change help echo.
5829 (menu-bar-showhide-fringe-ind-menu): Change several help echos.
5830 Add `menu-bar-showhide-fringe-ind-customize' as "Other (customize)".
5831 Delete "Empty lines only" item.
5832 (menu-bar-showhide-fringe-ind-customize): New function.
5833 (menu-bar-showhide-fringe-ind-mixed)
5834 (menu-bar-showhide-fringe-ind-box)
5835 (menu-bar-showhide-fringe-ind-right)
5836 (menu-bar-showhide-fringe-ind-left)
5837 (menu-bar-showhide-fringe-ind-none): Use `indicate-buffer-boundaries'
5838 instead of `fringe-indicators'.
5839
5840 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
5841
5842 * viper.el (viper-emacs-state-mode-list): Add recentf-dialog-mode.
5843 Change the date of last update.
5844
5845 2005-08-06 Michael Kifer <kifer@cs.stonybrook.edu>
5846
5847 * viper-cmd.el (viper-harness-minor-mode, viper-exec-delete)
5848 (viper-exec-yank, viper-put-back): Don't display modification msg
5849 if in the minibuffer.
5850
5851 * viper-init.el (viper-replace-overlay-cursor-color)
5852 (viper-insert-state-cursor-color, viper-vi-state-cursor-color):
5853 Make variables frame local.
5854
5855 * viper-util.el (viper-append-filter-alist): Use append instead of
5856 nconc.
5857
5858 * viper.el (viper-vi-state-mode-list)
5859 (viper-emacs-state-mode-list): Move help-mode and
5860 completion-list-mode from the first list to the second.
5861 (viper-mode): Docstring.
5862 (viper-go-away, viper-non-hook-settings): Don't localize
5863 minor-mode-alist in newer Emacsen. Add advice to
5864 set-cursor-color. Don't bind "\C-c\\".
5865
5866 2005-08-06 Emilio C. Lopes <eclig@gmx.net>
5867
5868 * cmuscheme.el (scheme-trace-command, scheme-untrace-command)
5869 (scheme-macro-expand-command): New user options.
5870 (scheme-trace-procedure, scheme-expand-current-form): New commands.
5871 (scheme-form-at-point, scheme-start-file)
5872 (scheme-interactively-start-process): New functions.
5873 (scheme-get-process): New function, extracted from `scheme-proc'.
5874 (run-scheme): Call `scheme-start-file' to get start file, and pass
5875 it to `make-comint'.
5876 (switch-to-scheme, scheme-proc):
5877 Call `scheme-interactively-start-process' if no Scheme buffer/process
5878 is available.
5879
5880 2005-08-06 Juri Linkov <juri@jurta.org>
5881
5882 * progmodes/compile.el (compilation-mode-font-lock-keywords):
5883 Use `compilation-text-face', `compilation-info-text-face' and
5884 `compilation-error-text-face' instead of `font-lock-keyword-face'.
5885 (compilation-error): New face.
5886 (compilation-error-file-name): Inherit from
5887 `compilation-error' instead of `font-lock-warning-face'.
5888 (compilation-warning-file-name): Inherit from
5889 `compilation-warning' instead of `font-lock-warning-face'.
5890 (compilation-info, compilation-error-file-name)
5891 (compilation-warning-file-name, compilation-info-file-name)
5892 (compilation-line-number, compilation-column-number): Doc fix.
5893 (compilation-error-text-face, compilation-warning-text-face)
5894 (compilation-info-text-face): New face variables.
5895 (compilation-line-face, compilation-column-face)
5896 (compilation-enter-directory-face)
5897 (compilation-leave-directory-face): Doc fix.
5898 (compilation-text-face): New function.
5899
5900 * progmodes/grep.el (grep-regexp-alist): Set 5th arg `TYPE' to 0
5901 instead of 1 to display binary file names as info file links.
5902 (grep-error-face): Use `compilation-error-face' instead of
5903 `font-lock-keyword-face'.
5904 (grep-mode-font-lock-keywords): Use `compilation-info-text-face'
5905 and `compilation-warning-text-face' instead of
5906 `font-lock-keyword-face'. Use `compilation-error-text-face'
5907 instead of `grep-error-face'.
5908
5909 2005-08-05 Kenichi Handa <handa@m17n.org>
5910
5911 * international/code-pages.el: Add autoload cookies for all coding
5912 systems.
5913
5914 2005-08-04 Luc Teirlinck <teirllm@auburn.edu>
5915
5916 * cus-start.el (all): Put undo.c where it alphabetically belongs.
5917
5918 2005-08-04 Juri Linkov <juri@jurta.org>
5919
5920 * progmodes/compile.el (compilation-mode-map):
5921 * progmodes/grep.el (grep-mode-map):
5922 Bind TAB to `compilation-next-error' and [backtab] to
5923 `compilation-previous-error'.
5924
5925 * progmodes/grep.el (grep-regexp-alist): Replace complex regexp
5926 matching line numbers, column numbers and their ranges with regexp
5927 matching only line numbers.
5928 (grep-context-face): New face variable.
5929 (grep-mode-font-lock-keywords): Use it.
5930
5931 * faces.el (read-face-name): Delete duplicate faces.
5932
5933 2005-08-02 Juanma Barranquero <lekktu@gmail.com>
5934
5935 * thumbs.el (thumbs-find-image): Don't make variables
5936 automatically buffer local.
5937 (thumbs-current-tmp-filename, thumbs-current-image-filename)
5938 (thumbs-image-num): Make automatically buffer local.
5939 (thumbs-show-thumbs-list): Use `make-local-variable', not
5940 `make-variable-buffer-local'.
5941 (thumbs-insert-image): Make `thumbs-current-image-size' buffer-local.
5942
5943 * play/doctor.el (doctor-type-symbol): "?\ " -> "?\s".
5944 (**mad**, *debug*, *print-space*, *print-upcase*, abuselst)
5945 (abusewords, account, afraidof, arerelated, areyou, bak, beclst)
5946 (bother, bye, canyou, chatlst, continue, deathlst, describe)
5947 (drnk, drugs, eliza-flag, elizalst, famlst, feared, fears)
5948 (feelings-about, foullst, found, hello, history, howareyoulst)
5949 (howdyflag, huhlst, ibelieve, improve, inter, isee, isrelated)
5950 (lincount, longhuhlst, lover, machlst, mathlst, maybe, moods)
5951 (neglst, obj, object, owner, please, problems, qlist)
5952 (random-adjective, relation, remlst, repetitive-shortness)
5953 (replist, rms-flag, schoollst, sent, sexlst, shortbeclst)
5954 (shortlst, something, sportslst, stallmanlst, states, subj)
5955 (suicide-flag, sure, things, thlst, toklst, typos, verb, want)
5956 (whatwhen, whereoutp, whysay, whywant, zippy-flag, zippylst):
5957 Defvar at compile time.
5958
5959 * progmodes/ada-mode.el (ada-mode): Use `make-local-variable',
5960 not `make-variable-buffer-local'.
5961
5962 2005-08-02 Kim F. Storm <storm@cua.dk>
5963
5964 * emulation/cua-rect.el (cua--highlight-rectangle): Only show
5965 rectangle overlay in selected window.
5966
5967 2005-08-01 Luc Teirlinck <teirllm@auburn.edu>
5968
5969 * cus-start.el (all): Put `indicate-empty-lines' in fringe group
5970 instead of display group. Make `indicate-buffer-boundaries'
5971 customizable through Custom.
5972
5973 2005-08-01 Juanma Barranquero <lekktu@gmail.com>
5974
5975 * progmodes/gdb-ui.el (gdb-frame-address, gdb-var-changed)
5976 (gdb-output-sink, gdba, gdb-cpp-define-alist-program)
5977 (gdb-set-gud-minor-mode, gdb-exited, gdb-setup-windows)
5978 (gdb-put-string): Fix typos in docstrings.
5979
5980 2005-08-01 Nick Roberts <nickrob@snap.net.nz>
5981
5982 Update copyright notices of files in progmodes directory for
5983 release of Emacs 22.1.
5984
5985 * progmodes/gdb-ui.el (gdb-enable-debug-log): Add autoload cookie.
5986
5987 * progmodes/gud.el (gud-tooltip-mode): Add autoload cookie.
5988 Don't barf if the GUD buffer has been killed.
5989
5990 2005-08-01 Kim F. Storm <storm@cua.dk>
5991
5992 * textmodes/table.el (table-yank-handler): Change defcustom to defvar.
5993
5994 2005-07-29 Stefan Monnier <monnier@iro.umontreal.ca>
5995
5996 * simple.el (next-error-follow-minor-mode):
5997 make-variable-buffer-local -> make-local-variable.
5998
5999 * emacs-lisp/cl-extra.el: Require CL also when compiling.
6000
6001 * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local)
6002 (byte-compile-form-make-variable-buffer-local): New functions to warn
6003 about misuses of make-variable-buffer-local where make-local-variable
6004 was meant.
6005
6006 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
6007
6008 * bs.el (bs-attributes-list): Doc fix.
6009 (bs): Update url-link.
6010
6011 * desktop.el (desktop-save-buffer): Fix typos in docstring.
6012 (desktop-load-default): Simplify.
6013
6014 * ibuffer.el (ibuffer-columnize-and-insert-list)
6015 (ibuffer-mouse-toggle-mark, ibuffer-count-marked-lines)
6016 (ibuffer-unmark-all, ibuffer-toggle-marks)
6017 (ibuffer-unmark-forward, ibuffer-unmark-backward)
6018 (ibuffer-compile-make-format-form, ibuffer-format-column)
6019 (ibuffer-current-buffers-with-marks)
6020 (ibuffer-update-title-and-summary): "?\ " -> "?\s".
6021 (ibuffer): Doc fix.
6022 (ibuffer-mode): Fix typo in docstring.
6023 (ibuffer-hooks, ibuffer-mode-hooks): Make obsolete and declare
6024 with `define-obsolete-variable-alias'.
6025 (ibuffer-elide-long-columns): Mark as obsolete. Doc fix.
6026
6027 2005-07-29 Kenichi Handa <handa@m17n.org>
6028
6029 * international/mule-cmds.el (select-message-coding-system):
6030 Be sure to use LF for end-of-line. If no coding system is decided,
6031 return iso-8859-1-unix.
6032
6033 2005-07-28 Stefan Monnier <monnier@iro.umontreal.ca>
6034
6035 * net/ange-ftp.el (ange-ftp-gateway-fatal-msgs)
6036 (ange-ftp-pending-error-line): New vars.
6037 (ange-ftp-process-handle-line, ange-ftp-process-filter): Use them
6038 to handle the non-fatal no-route-to-host messages.
6039 (internal-ange-ftp-mode): Make the no-match regexp more efficient.
6040
6041 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
6042
6043 * isearch.el (isearch-mode-map, isearch-other-meta-char)
6044 (isearch-quote-char, isearch-printing-char)
6045 (isearch-text-char-description): "?\ " -> "?\s".
6046 (isearch-lazy-highlight-cleanup)
6047 (isearch-lazy-highlight-initial-delay)
6048 (isearch-lazy-highlight-interval)
6049 (isearch-lazy-highlight-max-at-a-time)
6050 (isearch-lazy-highlight-face, isearch-lazy-highlight-cleanup):
6051 Declare with define-obsolete-*-alias macros.
6052 (isearch-forward): Fix typo in docstring.
6053 (search-invisible, search-ring-yank-pointer)
6054 (regexp-search-ring-yank-pointer): Doc fixes.
6055
6056 * recentf.el (recentf-menu-append-commands-p): Declare with
6057 `define-obsolete-variable-alias'.
6058 (recentf-max-saved-items, recentf-menu-filter)
6059 (recentf-arrange-by-rule-subfilter): Doc fixes.
6060 (recentf-menu-append-commands-flag)
6061 (recentf-initialize-file-name-history, recentf-expand-file-name)
6062 (recentf-clear-data): Fix typos in docstrings.
6063
6064 2005-07-28 Nick Roberts <nickrob@snap.net.nz>
6065
6066 * progmodes/gdb-ui.el: Smarten comments.
6067 (gdb-info-breakpoints-custom): Use nowarn when finding file.
6068
6069 2005-07-27 Dan Nicolaescu <dann@ics.uci.edu>
6070
6071 * term/apollo.el (terminal-init-apollo): New function containing
6072 all former top level forms in the file.
6073 * term/bobcat.el (terminal-init-bobcat):
6074 * term/cygwin.el (terminal-init-cygwin):
6075 * term/iris-ansi.el (terminal-init-iris-ansi):
6076 * term/linux.el (terminal-init-linux):
6077 * term/news.el (terminal-init-news):
6078 * term/rxvt.el (terminal-init-rxvt):
6079 * term/sun.el (terminal-init-sun):
6080 * term/tvi970.el (terminal-init-tvi970):
6081 * term/vt100.el (terminal-init-vt100):
6082 * term/vt102.el (terminal-init-vt102):
6083 * term/vt125.el (terminal-init-vt125):
6084 * term/vt200.el (terminal-init-vt200):
6085 * term/vt201.el (terminal-init-vt201):
6086 * term/vt220.el (terminal-init-vt220):
6087 * term/vt240.el (terminal-init-vt240):
6088 * term/vt300.el (terminal-init-vt300):
6089 * term/vt320.el (terminal-init-vt320):
6090 * term/vt400.el (terminal-init-vt400):
6091 * term/vt420.el (terminal-init-vt420):
6092 * term/wyse50.el (terminal-init-wyse50):
6093 * term/xterm.el (terminal-init-xterm): Likewise.
6094
6095 * term/README: Describe the terminal-init-* functionality.
6096
6097 * startup.el (command-line): After loading the terminal initialization
6098 file call the corresponding terminal initialization function.
6099
6100 2005-07-27 Kenichi Handa <handa@m17n.org>
6101
6102 * ps-bdf.el (bdf-read-font-info): Ignore glyphs whose ENCODING is
6103 negative.
6104
6105 * ps-mule.el (ps-mule-bitmap-prologue): Fix arguments to setcharwidth.
6106 (ps-mule-composition-prologue): Fix for the case that
6107 RelativeCompose is false.
6108
6109 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6110
6111 * smerge-mode.el (smerge-ediff): Use insert-buffer-substring.
6112
6113 * descr-text.el (describe-char): Handle the case where the list of
6114 chars is displayed in a separate frame.
6115 Be a bit more discriminating when looking for the char.
6116
6117 2005-07-26 Juanma Barranquero <lekktu@gmail.com>
6118
6119 * bookmark.el (bookmark-automatically-show-annotations)
6120 (bookmark-read-annotation-text-func): Doc fixes.
6121 (bookmark-save): Improve argument/docstring consistency.
6122 (bookmark-get-bookmark, bookmark-get-bookmark-record)
6123 (bookmark-alist-from-buffer)
6124 (bookmark-upgrade-file-format-from-0)
6125 (bookmark-grok-file-format-version)
6126 (bookmark-maybe-upgrade-file-format, bookmark-kill-line)
6127 (bookmark-read-annotation-mode)
6128 (bookmark-insert-current-bookmark, bookmark-jump)
6129 (bookmark-exit-hook): Fix typos in docstrings.
6130 (bookmark-exit-hooks): Define as obsolete alias.
6131 (bookmark-exit-hook-internal): Run `bookmark-exit-hook',
6132 not `bookmark-exit-hooks'. Fix docstring.
6133 (bookmark-bmenu-select): "?\ " -> "?\s".
6134
6135 2005-07-25 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
6136
6137 * startup.el (command-line): Fix typo.
6138
6139 2005-07-24 Richard M. Stallman <rms@gnu.org>
6140
6141 * tooltip.el (tooltip-mode): Test emacs-basic-display,
6142 not emacs-quick-startup.
6143
6144 2005-07-24 Juanma Barranquero <lekktu@gmail.com>
6145
6146 * emacs-lisp/re-builder.el (reb-with-current-window): Delete.
6147 (reb-next-match, reb-show-subexp): Use `with-selected-window'
6148 instead of `reb-with-current-window'.
6149 (reb-prev-match): Likewise. Also, don't move left if the search
6150 was unsuccessful.
6151 (reb-initialize-buffer): New function.
6152 (re-builder, reb-change-syntax): Use it.
6153
6154 * man.el (Man-goto-page): Make second argument NOERROR optional.
6155
6156 2005-07-23 Richard M. Stallman <rms@gnu.org>
6157
6158 * man.el (Man-bgproc-sentinel): Check here for failure to find
6159 any man page in the output, and report the error here.
6160 (Man-arguments): Make it permanent local.
6161 (Man-goto-page): New arg NOERROR. Never kill the current buffer.
6162 (Man-mode): Pass t for NOERROR.
6163
6164 * progmodes/grep.el (grep-error-face): Use font-lock-keyword-face.
6165 (grep-mode-font-lock-keywords):
6166 Don't use compilation-...-face for messages that are not file names.
6167
6168 * progmodes/compile.el (compilation-mode-font-lock-keywords):
6169 Don't use compilation-...-face for messages that are not file names.
6170
6171 2005-07-22 Juri Linkov <juri@jurta.org>
6172
6173 * startup.el (normal-splash-screen): Update menu name.
6174
6175 * tempo.el (tempo-insert-template): Fix 2005-07-16 change.
6176
6177 2005-07-22 Dan Nicolaescu <dann@ics.uci.edu>
6178
6179 * term/xterm.el: Load term/rxvt if the terminal is actually an
6180 rxvt terminal.
6181 (xterm-rxvt-set-background-mode): Remove, not used anymore.
6182
6183 * term/rxvt.el (function-key-map): Use substitute-key-definition
6184 to bind {C,S,C-S}-{f1-f10}. Add a few missing key bindings.
6185
6186 * term/cygwin.el: New file.
6187
6188 2005-07-22 Kim F. Storm <storm@cua.dk>
6189
6190 * image-file.el (insert-image-file, image-file-yank-handler):
6191 Fix last change to maintain a (unique) yank-handler on yanked images.
6192
6193 2005-07-22 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
6194
6195 * dired.el (dired-move-to-filename-regexp): Recognize the B suffix
6196 of the file size (as in "177B" for 177 bytes). This happens with
6197 "ls -lh" on FreeBSD.
6198
6199 2005-07-22 Juanma Barranquero <lekktu@gmail.com>
6200
6201 * hilit-chg.el (highlight-changes-global-initial-state)
6202 (highlight-compare-buffers, hilit-chg-turn-on-maybe)
6203 (hilit-chg-fixup, highlight-changes-mode):
6204 Fix typos in docstrings.
6205 (highlight-changes-global-modes, highlight-changes-rotate-faces):
6206 Doc fixes.
6207
6208 2005-07-21 Luc Teirlinck <teirllm@auburn.edu>
6209
6210 * emacs-lisp/easy-mmode.el (define-minor-mode): Never call the
6211 mode function using `eval-after-load'.
6212
6213 2005-07-21 Kim F. Storm <storm@cua.dk>
6214
6215 * mail/emacsbug.el (report-emacs-bug): Request that backtraces are
6216 included when reporting an emacs crash, and tell about the DEBUG file.
6217
6218 * image-file.el (insert-image-file): Add yank-handler.
6219 (image-file-yank-handler): Yank handler to make unique copies of
6220 images when they are yanked into a buffer next to each other.
6221
6222 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
6223
6224 * comint.el (comint-use-prompt-regexp, comint-send-input)
6225 (comint-source-default, comint-extract-string)
6226 (comint-get-source, comint-word, comint-completion)
6227 (comint-source, comint-prompt-read-only, comint-update-fence):
6228 Fix typos in docstrings.
6229 (comint-use-prompt-regexp-instead-of-fields, comint-kill-output):
6230 Declare with define-obsolete-*-alias macros.
6231 (comint-previous-matching-input-from-input)
6232 (comint-next-matching-input-from-input)
6233 (comint-previous-matching-input, comint-next-matching-input)
6234 (comint-forward-matching-input):
6235 Improve argument/docstring consistency.
6236
6237 * desktop.el (desktop-clear-preserve-buffers-regexp):
6238 Also preserve the *server* buffer.
6239
6240 * simple.el (clone-indirect-buffer): Doc fix.
6241 (fixup-whitespace, just-one-space)
6242 (backward-delete-char-untabify, lambda): "?\ " -> "?\s".
6243 (next-error, next-error-highlight)
6244 (next-error-highlight-no-select, next-error-last-buffer)
6245 (next-error-buffer-p, next-error-find-buffer, next-error)
6246 (previous-error, next-error-no-select, previous-error-no-select)
6247 (open-line, split-line, minibuffer-prompt-width, kill-new)
6248 (binary-overwrite-mode): Fix typos in docstrings.
6249 (set-fill-column): Fix typo in message.
6250
6251 * skeleton.el (skeleton-proxy-new): Doc fix.
6252
6253 * strokes.el (strokes-load-hook): Doc fix.
6254 (strokes-grid-resolution, strokes-get-grid-position)
6255 (strokes-renormalize-to-grid, strokes-read-stroke)
6256 (strokes-read-complex-stroke, strokes-file, strokes-last-stroke)
6257 (strokes-global-map): Fix typos in docstrings.
6258 (strokes-help): Doc fix. Fix help message and pass it through
6259 `substitute-command-keys'.
6260
6261 * tempo.el (tempo-insert-prompt, tempo-interactive)
6262 (tempo-show-completion-buffer, tempo-tags, tempo-match-finder)
6263 (tempo-insert-string-functions, tempo-local-tags)
6264 (tempo-define-template, tempo-insert-template)
6265 (tempo-insert-prompt-compat, tempo-is-user-element)
6266 (tempo-insert-mark, tempo-find-match-string, tempo-complete-tag):
6267 Fix typos in docstrings.
6268
6269 * vcursor.el (vcursor-other-window, vcursor-bind-keys)
6270 (vcursor-key-bindings, vcursor-use-vcursor-map)
6271 (vcursor-find-window, vcursor-scroll-down)
6272 (vcursor-disable, vcursor-beginning-of-buffer)
6273 (vcursor-end-of-buffer): Fix typos in docstrings.
6274 (vcursor-relative-move, vcursor-get-char-count):
6275 Improve argument/docstring consistency.
6276
6277 * version.el: "?\ " -> "?\s".
6278
6279 * wid-edit.el (widget-default-create, widget-after-change)
6280 (widget-default-format-handler, widget-checklist-add-item)
6281 (widget-radio-add-item, widget-choose, widget-specify-secret)
6282 (widget-field-value-create, widget-field-value-get)
6283 (widget-editable-list-format-handler)
6284 (widget-editable-list-entry-create, widget-group-value-create)
6285 (widget-documentation-link-add)
6286 (widget-documentation-string-value-create): "?\ " -> "?\s".
6287 (widget-convert-text): Doc fix.
6288 (widget-narrow-to-field, widget-field-find)
6289 (widget-url-link-action, widget-emacs-library-link-action)
6290 (widget-color-notify): Fix typos in docstrings.
6291
6292 * w32-fns.el (w32-shell-name): Use `bound-and-true-p'.
6293 (x-select-text, set-w32-system-coding-system)
6294 (w32-add-charset-info): Fix typos in docstrings.
6295
6296 * emulation/cua-base.el (cua-mode, cua-enable-register-prefix)
6297 (cua-enable-cua-keys, cua-use-hyper-key)
6298 (cua-virtual-rectangle-edges): Fix typos in docstrings.
6299 (cua--M/H-key, cua--init-keymaps): "?\ " -> "?\s".
6300
6301 * net/tramp.el (tramp-handle-load): Fix typo in error message.
6302
6303 * emacs-lisp/re-builder.el (regexp-builder): Declare with
6304 `defalias' instead of faking it.
6305
6306 * eshell/em-ls.el (eshell-ls-decorated-name): Doc fix.
6307 (eshell-ls-missing, eshell-ls-dired-initial-args)
6308 (eshell-ls-use-in-dired): Fix typos in docstrings.
6309
6310 2005-07-20 Kim F. Storm <storm@cua.dk>
6311
6312 * emulation/cua-base.el (cua-mode): Improve doc string.
6313
6314 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
6315
6316 * abbrev.el (expand-region-abbrevs): Doc fix.
6317 (inverse-add-mode-abbrev, inverse-add-global-abbrev):
6318 Improve argument/docstring consistency.
6319
6320 * arc-mode.el (archive-get-descr, archive-alternate-display):
6321 Doc fixes.
6322 (archive-l-e): Improve argument/docstring consistency.
6323 (archive-tmpdir, archive-unixdate, archive-unixtime)
6324 (archive-chmod-entry): Fix typos in docstrings.
6325 (archive-unflag, archive-unflag-backwards)
6326 (archive-unmark-all-files): "?\ " -> "?\s".
6327
6328 * buff-menu.el (Buffer-menu-unmark): Doc fix.
6329 (Buffer-menu-not-modified, Buffer-menu-execute)
6330 (Buffer-menu-toggle-read-only, Buffer-menu-buffer+size)
6331 (list-buffers-noselect, Buffer-menu-select): "?\ " -> "?\s".
6332
6333 * composite.el (compose-string, encode-composition-rule)
6334 (compose-last-chars): Fix typos in docstrings.
6335
6336 * desktop.el (desktop-enable, desktop-basefilename):
6337 Declare with `define-obsolete-variable-alias'.
6338 (desktop-internal-v2s): Don't quote keywords.
6339 (desktop-clear): "?\ " -> "?\s".
6340
6341 * dired.el (dired-align-file, dired-flag-backup-files)
6342 (dired-change-marks, dired-unmark-all-files): "?\ " -> "?\s".
6343 (dired-listing-switches, dired-ls-F-marks-symlinks)
6344 (dired-dwim-target, dired-load-hook, dired-mode-hook)
6345 (dired-directory, dired-faces, dired, dired-revert)
6346 (dired-mode, dired-summary, dired-view-file)
6347 (dired-copy-filename-as-kill, dired-delete-file)
6348 (dired-no-confirm, dired-unmark-all-marks)
6349 (dired-sort-by-date-regexp, dired-sort-by-name-regexp)
6350 (dired-sort-inhibit, dired-sort-other): Fix typos in docstrings.
6351 (dired-undo, dired-get-file-for-visit, dired-sort-toggle-or-edit):
6352 Fix typos in message strings.
6353
6354 * dired-x.el (virtual-dired): Declare with `defalias'.
6355 (dired-mark-unmarked-files, dired-local-variables-file)
6356 (dired-omit-here-always): Doc fix.
6357 (dired-omit-mode, dired-find-subdir)
6358 (dired-enable-local-variables, dired-clean-up-buffers-too)
6359 (dired-extra-startup, dired-mark-extension, dired-jump)
6360 (dired-jump-other-window, dired-omit-localp, dired-virtual-mode)
6361 (dired-smart-shell-command, dired-guess-shell-alist-user)
6362 (dired-man, dired-initial-position, dired-x-hands-off-my-keys)
6363 (dired-x-bind-find-file, dired-x-submit-report):
6364 Fix typos in docstrings.
6365 (dired-mark-unmarked-files): "?\ " -> "?\s".
6366
6367 * dirtrack.el (dirtrack-list): Fix typos in docstring.
6368
6369 * faces.el (describe-face): "?\ " -> "?\s".
6370 (read-all-face-attributes, read-face-font, modify-face)
6371 (face-attr-construct, italic): Fix typos in docstrings.
6372 (frame-update-face-colors): Declare with
6373 `define-obsolete-function-alias'.
6374
6375 * files.el (find-file-noselect, recode-file-name): Doc fixes.
6376 (insert-directory, kill-some-buffers): "?\ " -> "?\s".
6377 (magic-mode-alist, buffer-file-numbers-unique)
6378 (write-file-functions, get-free-disk-space):
6379 Fix typos in docstrings.
6380 (find-file-not-found-hooks, find-file-hooks, write-file-hooks)
6381 (write-contents-hooks, write-file-hooks):
6382 Declare with `define-obsolete-variable-alias'.
6383
6384 * forms-d2.el (arch-rj): Fix typo in docstrings.
6385 (arch-tocol): Likewise. "?\ " -> "?\s".
6386
6387 * frame.el (set-frame-font, cursor-in-non-selected-windows):
6388 Fix typo in docstring.
6389 (set-screen-width, set-screen-height): Delete redundant info in
6390 doctrings.
6391 (new-frame, screen-height, screen-width): Declare with
6392 `define-obsolete-function-alias'.
6393 (delete-frame-hook, blink-cursor): Declare with
6394 `define-obsolete-variable-alias'.
6395
6396 * paths.el (prune-directory-list): Fix typos in docstring.
6397
6398 * pcvs-util.el (cvs-flags-query, cvs-strings->string)
6399 (cvs-prefix-get): Fix typos in docstrings.
6400
6401 * ps-print.el (ps-extend-face-list, ps-extend-face)
6402 (ps-print-background-image): Fix typos in docstrings.
6403 (ps-default-fg, ps-default-bg): Doc fixes.
6404
6405 * s-region.el (s-region-bind): Doc fix.
6406 (s-region-move-p1, s-region-move-p2): Fix typos in docstrings.
6407
6408 * textmodes/org.el (org-table-formula-substitute-names)
6409 (org-table-get-vertical-vector): Doc fixes.
6410 (org-table-recalculate): Remove unused argument to `message'.
6411
6412 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
6413
6414 * textmodes/org.el (org-table-column-names)
6415 (org-table-column-name-regexp)
6416 (org-table-named-field-locations): New variables.
6417 (org-archive-subtree): Protect `this-command' when calling
6418 `org-copy-subtree' and `org-cut-subtree', to avoid appending to
6419 the kill buffer.
6420 (org-complete): Remove fixed-formula completion.
6421 (org-edit-formulas-map): New variable.
6422 (org-table-edit-formulas): New command.
6423 (org-finish-edit-formulas, org-abort-edit-formulas)
6424 (org-show-variable, org-table-get-vertical-vector): New functions.
6425 (org-table-maybe-eval-formula): Handle `:=' fields.
6426 (org-table-get-stored-formulas, org-table-store-formulas)
6427 (org-table-get-formula, org-table-modify-formulas)
6428 (org-table-replace-in-formulas): Handle named field formulas.
6429 (org-table-get-specials): Store locations of named fields.
6430
6431 2005-07-19 Juri Linkov <juri@jurta.org>
6432
6433 * progmodes/grep.el (grep-regexp-alist)
6434 (grep-mode-font-lock-keywords, grep-process-setup):
6435 Use default GNU grep match color "01;31m" instead of "01;41m".
6436 (grep-regexp-alist, grep-mode-font-lock-keywords):
6437 Use `\\[[0-9]*m' instead of `\\[00m'.
6438 (grep-regexp-alist): Move `\\(?:\033\\[K\\)?' from sgr_end to
6439 sgr_start where its handling is more important. Use the real
6440 length of sgr_start instead of constant 8.
6441 (grep-mode-font-lock-keywords): Don't delete `\\(?:\033\\[K\\)?'
6442 specially. Delete all remaining escape sequences.
6443 (grep-process-setup): Set "GREP_COLORS" for GNU grep 2.5.1-cvs.
6444 (grep-regexp-alist): Make hyperlink only for binary file name
6445 instead of the whole line.
6446 (grep-mode-map): Bind `backtab' to `compilation-previous-file'.
6447 (grep-mode): Add autoload.
6448
6449 * emacs-lisp/find-func.el (find-function-regexp):
6450 Add `define-compilation-mode'.
6451
6452 2005-07-19 Juri Linkov <juri@jurta.org>
6453
6454 * compare-w.el (compare-ignore-whitespace, compare-windows-sync)
6455 (compare-windows-sync-string-size, compare-windows-recenter)
6456 (compare-windows-highlight, compare-windows): Add version 22.1.
6457 (compare-windows) <defface>: Inherit from lazy-highlight instead
6458 of duplicating its default value.
6459
6460 * cus-edit.el (custom-mode-map): Bind `C-c C-c' to `Custom-set'.
6461 (Custom-mode-menu): Use `info' instead of `Info-goto-node'.
6462
6463 * descr-text.el (describe-char): Create link buttons for `charset'
6464 and `code point'. Add the current input method name with a link
6465 button to `to input' field. Print face names of display table
6466 characters in `The display table entry is displayed by' section
6467 instead of printing face-id in the `display' field.
6468 Guess hardcoded faces and create a link button for them.
6469 Skip empty fields when calculating max-width.
6470 Treat `widget-create' specially while inserting strings from the
6471 collected field list.
6472 (describe-char-after): Made obsolete in version 22.1, not 21.5.
6473
6474 * diff-mode.el (diff-file-header): Change foreground color from
6475 yellow to green on light backgrounds.
6476 (diff-context): Inherit from `shadow' only for color/grayscale
6477 with more than 88 colors.
6478 (diff-indicator-removed, diff-indicator-added)
6479 (diff-indicator-changed): New faces.
6480 (diff-font-lock-keywords): Use new faces. Regroup rules.
6481 Add "^---$" for `normal' diff format. Fontify `#' lines with
6482 font-lock-comment-delimiter-face and font-lock-comment-face.
6483 Add `#' to ^[^...] in the rule for `diff-context-face'.
6484
6485 * faces.el (mode-line-highlight): Replace RoyalBlue4 with
6486 a button-like box. Inherit from `highlight' on low colors.
6487 (shadow): Use shades of gray only for color/grayscale with
6488 more than 88 colors. Use green for light backgrounds with
6489 8 colors, and yellow for dark backgrounds with 8 colors.
6490
6491 * font-lock.el (font-lock-regexp-grouping-backslash):
6492 Don't inherit from escape-glyph (use bold for all cases).
6493
6494 * info.el (info-xref-visited): Use light foreground color `violet'
6495 for dark backgrounds instead of dark color `magenta3'.
6496 (info-title-1): Use `yellow' color for dark backgrounds.
6497
6498 * isearch.el (isearch): Use not-too-dark magenta3 instead of
6499 too-light magenta2.
6500
6501 * replace.el (match): Use slightly more light RoyalBlue3 instead
6502 of dark RoyalBlue4.
6503
6504 * wid-edit.el (widget-inactive): Inherit from `shadow'.
6505
6506 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
6507
6508 * novice.el (disabled-command-hook): Declare it with
6509 `define-obsolete-variable-alias'.
6510
6511 * desktop.el (desktop-enable, desktop-buffer-modes-to-save)
6512 (desktop-buffer-misc-functions, desktop-buffer-handlers)
6513 (desktop-load-default): Add release to obsolescence info.
6514 (desktop-globals-to-clear, desktop-buffer-mode-handlers)
6515 (desktop-append-buffer-args, desktop-read):
6516 Fix typos in docstrings.
6517 (desktop-kill): Fix typo in message.
6518 (desktop-save): Doc fix.
6519
6520 2005-07-19 Michael Kifer <kifer@cs.stonybrook.edu>
6521
6522 * viper-cmd.el (viper-escape-to-state): Bug fix.
6523 (viper-envelop-ESC-key): Change the definition of fast
6524 keysequence so it'll work with keyboard macros.
6525
6526 * ediff.el (ediff-patch-buffer): Change the docstring.
6527
6528 2005-07-19 Kenichi Handa <handa@m17n.org>
6529
6530 * international/mule-cmds.el (select-safe-coding-system): Try to
6531 use an auto-coding (if any) before anything else. If the found
6532 auto-coding is invalid, show a warning message.
6533
6534 * international/mule.el (find-auto-coding): New function created
6535 by modifying the body of set-auto-coding.
6536 (set-auto-coding): Use find-auto-coding to find a coding.
6537
6538 2005-07-18 Richard M. Stallman <rms@gnu.org>
6539
6540 * allout.el (allout-isearch-expose): Use isearch-mode-end-hook-quit,
6541 not isearch-mode-end-hook-error.
6542 (allout-before-change-protect): Fix error message.
6543
6544 2005-07-18 Juri Linkov <juri@jurta.org>
6545
6546 * allout.el (allout-mode):
6547 * calculator.el (calculator-copy):
6548 * custom.el (custom-known-themes):
6549 * dired.el (dired-desktop-buffer-misc-data)
6550 (dired-restore-desktop-buffer):
6551 * dired-x.el (dired-omit-marker-char):
6552 * files.el (basic-save-buffer):
6553 * font-core.el (font-lock-mode):
6554 * calendar/calendar.el (calendar-goto-hebrew-date)
6555 (calendar-goto-coptic-date, calendar-goto-ethiopic-date)
6556 (calendar-goto-persian-date):
6557 * language/ethio-util.el (ethio-sera-to-fidel-region):
6558 * textmodes/picture.el (picture-mode):
6559 Delete duplicate duplicate words.
6560
6561 2005-07-18 Juri Linkov <juri@jurta.org>
6562
6563 * isearch.el (isearch-mode-map): Remove key bindings for regexp
6564 chars * ? } |.
6565 (isearch-fallback): Don't call `isearch-process-search-char'.
6566 (isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
6567 (isearch-process-search-char): Call `isearch-fallback' for regexp
6568 chars * ? } |.
6569 (isearch-return-char): Make obsolete with `make-obsolete' instead
6570 of simply documenting it as obsolete in the docstring.
6571 (isearch-fallback): Refill docstring.
6572
6573 * international/isearch-x.el
6574 (isearch-process-search-multibyte-characters): Remove unneeded
6575 `concat'. Add intermediate values to `junk-hist' instead of
6576 `minibuffer-history'. Test the length of `str'.
6577
6578 2005-07-18 Juanma Barranquero <lekktu@gmail.com>
6579
6580 * allout.el (allout-resolve-xref): Fix typos in error strings.
6581 (allout-before-change-protect): Remove unneeded `concat'.
6582
6583 * array.el (array-mode, array-reconfigure-rows)
6584 (untabify-backward): Fix typos in docstrings.
6585 (array-reconfigure-rows): Use `insert-buffer-substring', not
6586 `insert-buffer'.
6587
6588 * calendar/icalendar.el (icalendar--get-unfolded-buffer):
6589 * progmodes/ada-mode.el (ada-make-body):
6590 Use `insert-buffer-substring' and `goto-char', not `insert-buffer'.
6591
6592 * dired.el (dired-log):
6593 * tar-mode.el (tar-subfile-save-buffer):
6594 * play/zone.el (zone-pgm-stress-destress):
6595 Use `insert-buffer-substring', not `insert-buffer'.
6596
6597 2005-07-17 Simon Josefsson <jas@extundo.com>
6598
6599 * mail/smtpmail.el (smtpmail-auth-supported): Prefer PLAIN over LOGIN.
6600
6601 2005-07-16 Jose E. Marchesi <jemarch@gnu.org>
6602
6603 * lisp/mail/smtpmail.el (smtpmail-auth-supported):
6604 Add plain auth method.
6605 (smtpmail-try-auth-methods): Add AUTH PLAIN dialog.
6606
6607 2005-07-17 Kim F. Storm <storm@cua.dk>
6608
6609 * ido.el (dired-other-window): Add ido property.
6610
6611 2005-07-16 Juanma Barranquero <lekktu@gmail.com>
6612
6613 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
6614 Fix typo in docstring.
6615 (byte-compile-interactive-only-functions): Add `insert-buffer' and
6616 `insert-file-literally'.
6617
6618 * emacs-lisp/edebug.el (def-edebug-form-spec): Add obsolescence
6619 info and delete redundant message. Doc fix.
6620 (edebug-install-custom-print-funcs, edebug-reset-print-funcs)
6621 (edebug-uninstall-custom-print-funcs): Define as obsolete aliases.
6622
6623 2005-07-16 Richard M. Stallman <rms@gnu.org>
6624
6625 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
6626 (byte-compile-and): Use byte-compile-and-recursion.
6627 (byte-compile-or-recursion): New function.
6628 (byte-compile-or): Use that.
6629 (byte-compile-if): Guard the else-clause too.
6630 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
6631
6632 * isearch.el (isearch-mode-end-hook-quit): New variable.
6633 (isearch-done): Bind it.
6634 (isearch-mode-end-hook): Doc fix.
6635
6636 * allout.el (allout-isearch-did-quit): Variable deleted.
6637 (allout-real-isearch-abort): Function name no longer used.
6638 (allout-mode): Do allout-enwrap-isearch whenever feature is wanted.
6639 (allout-isearch-rectification): isearch-mode always exists.
6640 Don't set allout-isearch-did-quit.
6641 (allout-isearch-expose): Check isearch-mode-end-hook-error, not
6642 allout-isearch-did-quit.
6643 (allout-enwrap-isearch): Just add the hook.
6644 (allout-isearch-abort): Function deleted.
6645 (allout-pre-command-business): Avoid warning.
6646
6647 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
6648 Correctly avoid warnings.
6649 (pascal-outline): Likewise.
6650
6651 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
6652
6653 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
6654
6655 * play/tetris.el (tetris-mode): Avoid warning.
6656
6657 * play/snake.el (snake-mode): Avoid warning.
6658
6659 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
6660 (gamegrid-set-display-table): Avoid warning.
6661 (gamegrid-set-timer): Likewise.
6662 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
6663 (gamegrid-add-score-with-update-game-score-1): Take FILE
6664 as argument.
6665 (gamegrid-add-score-with-update-game-score): Pass that argument.
6666 Rename have-shared-game-dir to gamegrid-shared-game-dir.
6667
6668 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
6669
6670 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
6671 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
6672
6673 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
6674 and insert-file.
6675
6676 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
6677 (sc-ask): Avoid warnings.
6678
6679 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
6680 (eshell-hist-initialize): Use that var the natural way.
6681
6682 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
6683
6684 * emacs-lisp/re-builder.el (reb-cook-regexp):
6685 Avoid warning calling lre-compile-string.
6686 (reb-color-display-p): Avoid warning.
6687
6688 * calculator.el (calculator-last-input): Guard uses
6689 of event-key and key-press-event-p.
6690 (event-key, key-press-event-p): Delete definitions.
6691
6692 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
6693 (find-gc-source-directory, find-gc-subrs-callers)
6694 (find-gc-noreturn-list, find-gc-source-files)
6695 (find-gc-subrs-called): Vars renamed and defvar'd.
6696
6697 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
6698 (checkdoc-overlay-put, checkdoc-delete-overlay)
6699 (checkdoc-overlay-start, checkdoc-overlay-end)
6700 (checkdoc-mode-line-update, checkdoc-char=):
6701 Define such that compiler knows they are defined.
6702 (checkdoc-call-eval-buffer): Delete. Use eval-buffer directly.
6703 (checkdoc-read-event): Delete. Use read-event directly.
6704
6705 * whitespace.el (whitespace-make-overlay)
6706 (whitespace-overlay-put, whitespace-delete-overlay)
6707 (whitespace-overlay-start, whitespace-overlay-end):
6708 Define such that compiler knows they are defined.
6709 (whitespace): Move conditional inside.
6710
6711 * tempo.el (tempo-insert-template): Suppress warning.
6712
6713 * ediff-diff.el (longlines-mode): Add defvar.
6714
6715 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
6716
6717 * server.el: Bind "C-x #" in a way that works even if C-x is
6718 redefined to a command key, not a prefix key.
6719
6720 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
6721
6722 * emacs-lisp/cl-macs.el (cl-make-type-test): Defer evaluation of
6723 cl-make-type-test till execution time.
6724
6725 2005-07-16 Markus Rost <rost@math.uni-bielefeld.de>
6726
6727 * dired-x.el (dired-do-relsymlink-regexp): Add missing optional
6728 arg ARG and use it.
6729
6730 2005-07-16 Johan Bockgard <bojohan@users.sourceforge.net> (tiny change)
6731
6732 * emacs-lisp/cl-macs.el (cl-make-type-test): Add `atom' type.
6733
6734 2005-07-15 Luc Teirlinck <teirllm@auburn.edu>
6735
6736 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
6737 a defcustom with two :set or :type keywords.
6738
6739 2005-07-15 Richard M. Stallman <rms@gnu.org>
6740
6741 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
6742 Don't give ^M comment-end syntax.
6743
6744 2005-07-16 Nick Roberts <nickrob@snap.net.nz>
6745
6746 * progmodes/gdb-ui.el (gdb-var-update, gdb-var-update-handler):
6747 Don't consider gdbmi (gdb-mi.el has its own update functions).
6748 (gdb-var-delete): Make it work for gdbmi as well.
6749 (gdb-speedbar-expand-node): Move var-update here for gdbmi.
6750
6751 * progmodes/gud.el (etags, sdb): Only require etags when needed.
6752 (gud-speedbar-menu-items): Correct logic for enabling items.
6753
6754 2005-07-15 Kim F. Storm <storm@cua.dk>
6755
6756 * ido.el: Fix commentary.
6757 (ido-define-mode-map): Move ido-next-work-file to C-M-o.
6758 Use with-no-warnings around ffap-guesser.
6759 (ido-file-internal, ido-read-file-name, ido-read-directory-name):
6760 Let bind minibuffer-completing-file-name to t.
6761
6762 2005-07-15 Juanma Barranquero <lekktu@gmail.com>
6763
6764 * startup.el (site-run-file, keyboard-type): Doc fixes.
6765 (command-line): Check for "--basic-display" argument; also for
6766 "--quick", not "--bare-bones" (which was renamed).
6767 (fancy-splash-text): Add missing item "Getting New Versions".
6768 (normal-splash-screen): Fix typos and improve consistency with
6769 `fancy-splash-text'. Update copyright year.
6770
6771 * hexl.el (hexl-mode-map): Recognize also `ehelp-command' as a
6772 valid binding for `help-char'.
6773
6774 * emacs-lisp/derived.el (derived-mode-hook-name): Doc fix.
6775
6776 2005-07-14 Dan Nicolaescu <dann@ics.uci.edu>
6777
6778 * term.el (term-mode): Disable cua-mode for term buffers.
6779
6780 2005-07-14 Juanma Barranquero <lekktu@gmail.com>
6781
6782 * add-log.el (add-log-mailing-address, change-log-merge):
6783 Doc fixes.
6784 (change-log-get-method-definition): Fix typo in docstring.
6785
6786 2005-07-14 Kim F. Storm <storm@cua.dk>
6787
6788 * emulation/cua-base.el:
6789 (cua--pre-command-handler-1, cua--pre-command-handler)
6790 (cua--post-command-handler-1, cua--post-command-handler):
6791 Split in two. Check (buffer local) value of cua-mode.
6792 (cua-selection-mode): New command.
6793
6794 2005-07-13 Luc Teirlinck <teirllm@auburn.edu>
6795
6796 * custom.el (custom-initialize-safe-set)
6797 (custom-initialize-safe-default): Doc fixes.
6798
6799 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
6800 and simplify :init-value again.
6801
6802 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
6803 and simplify :init-value again. Delete autoload.
6804
6805 * startup.el (command-line): Use `custom-reevaluate-setting' again
6806 for tooltip-mode.
6807
6808 * emacs-lisp/easy-mmode.el (define-minor-mode): Avoid constructing
6809 a defcustom with two :initialize keywords.
6810
6811 2005-07-13 Juanma Barranquero <lekktu@gmail.com>
6812
6813 * allout.el (my-mark-marker, allout-isearch-prior-pos)
6814 (allout-unprotected, allout-undo-aggregation, allout-snug-back)
6815 (allout-post-command-business, allout-flag-region)
6816 (isearch-reenable-font-lock, allout-yank)
6817 (allout-insert-latex-header, allout-insert-latex-trailer)
6818 (allout-latex-verbatim-quote-curr-line, allout-latexify-exposed)
6819 (allout-latex-verb-quote): Fix typos in docstrings.
6820 (allout-enwrap-isearch, regexp-sans-escapes): Doc fixes.
6821 (allout-unprotected, allout-prefix-data):
6822 Improve argument/docstring consistency.
6823 (allout-chart-subtree): Fix argument spec.
6824 (allout-open-topic): Rename `use_sib_bullet' argument to
6825 `use-sib-bullet'. Doc fix.
6826
6827 * whitespace.el (whitespace-check-buffer-leading)
6828 (whitespace-check-buffer-trailing)
6829 (whitespace-check-buffer-indent)
6830 (whitespace-check-buffer-spacetab)
6831 (whitespace-check-buffer-ateol, whitespace-highlighted-space)
6832 (whitespace-check-leading-whitespace)
6833 (whitespace-check-trailing-whitespace)
6834 (whitespace-check-spacetab-whitespace)
6835 (whitespace-check-indent-whitespace)
6836 (whitespace-check-ateol-whitespace, whitespace-abort-on-error)
6837 (whitespace-modes): Fix typos in docstrings.
6838 (defgroup, defcustom): Doc fixes.
6839
6840 * winner.el (winner-mode, winner-boring-buffers)
6841 (winner-pending-undo-ring): Doc fixes.
6842 (winner-ring): Remove unneeded `progn'.
6843 (winner-equal): `defsubst' it.
6844 (winner-redo): Fix message.
6845
6846 2005-07-13 Kim F. Storm <storm@cua.dk>
6847
6848 * simple.el (line-move-1): Always use vertical-motion to
6849 do the last (or only) line move to ensure some movement.
6850 Undo 2005-06-23 change--don't check for overlays.
6851
6852 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6853
6854 * term/mac-win.el (ccl-encode-mac-roman-font)
6855 (ccl-encode-mac-centraleurroman-font)
6856 (ccl-encode-mac-cyrillic-font, ccl-encode-mac-symbol-font):
6857 (ccl-encode-mac-dingbats-font): Remove check for ASCII.
6858 Change charset-id boundary of dimension to ?\xef.
6859 (mac-char-fontspec-list): New constant.
6860 (fontset-add-mac-fonts): Use it. Accept non-string `base-family'
6861 argument. Nil uses itself as family in font-spec. Previous
6862 behavior for nil is now provided by non-nil non-string argument.
6863 All callers changed. Add font-specs for Mac fonts to
6864 "fontset-default" unless iso8859-1 fonts are installed.
6865
6866 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
6867
6868 * progmodes/sh-script.el (sh-get-indent-info): Only indent
6869 a continuation line if the \ is preceded by SPC or TAB.
6870 (sh-get-indent-info): Simplify.
6871 (sh-mark-init, sh-learn-buffer-indent, sh-add-completer):
6872 Use with-current-buffer.
6873
6874 * font-lock.el (font-lock-fontify-keywords-region): Avoid inf-loops
6875 when the matched text is empty.
6876
6877 2005-07-12 Luc Teirlinck <teirllm@auburn.edu>
6878
6879 * startup.el (command-line): Revert to previous handling of
6880 tooltip-mode. Explain in comment why the complexity is needed.
6881
6882 * tooltip.el (tooltip-mode): Revert to previous implementation of
6883 its defcustom.
6884
6885 * frame.el (blink-cursor-mode): Revert to previous implementation
6886 of its defcustom. Update comment.
6887
6888 2005-07-12 Lars Hansen <larsh@soem.dk>
6889
6890 * desktop.el: Update e-mail address.
6891
6892 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6893
6894 * term/mac-win.el (mac-services-mail-selection)
6895 (mac-services-mail-to): New functions.
6896 (mac-application-menu-map): Bind them.
6897
6898 2005-07-12 wulei <milton@wulei.net> (tiny change)
6899
6900 * progmodes/gdb-ui.el: Add note about buffering with Windows.
6901
6902 2005-07-11 Luc Teirlinck <teirllm@auburn.edu>
6903
6904 * custom.el (custom-reevaluate-setting): Doc fix.
6905
6906 2005-07-11 Jay Belanger <belanger@truman.edu>
6907
6908 * calc/calc.el (calc-embedded-announce-formula-alist)
6909 (calc-embedded-open-close-plain-alist)
6910 (calc-embedded-open-close-mode-alist): Add checks for additional
6911 major modes (due to Robert J. Chassell <bob@rattlesnake.com>).
6912
6913 2005-07-11 Juanma Barranquero <lekktu@gmail.com>
6914
6915 * custom.el (custom-enable-theme): Don't add theme to
6916 `custom-enabled-themes' with `push' because there is no
6917 setf-method for `delq'.
6918
6919 2005-07-11 Richard M. Stallman <rms@gnu.org>
6920
6921 * custom.el (custom-declare-variable): Doc fix.
6922
6923 * dired-aux.el (dired-compare-directories): Remove "." and ".."
6924 from the alists.
6925
6926 * emacs-lisp/edebug.el (edebug-slow-after, edebug-slow-before):
6927 Do nothing if edebug-active.
6928
6929 * emacs-lisp/edebug.el (edebug-enter): Don't with-timeout-suspend here.
6930 (edebug-display): Do it here instead.
6931
6932 2005-07-10 Richard M. Stallman <rms@gnu.org>
6933
6934 * cus-face.el (custom-theme-set-faces): Make it work.
6935 (custom-reset-faces): Doc fix.
6936 (custom-theme-reset-internal-face, custom-theme-face-value):
6937 Functions deleted.
6938
6939 * custom.el (custom-push-theme): Maintain list of the settings
6940 of a given theme in its theme-settings property.
6941 Maintain position of old settings in the theme-value
6942 or theme-face property.
6943 (custom-enabled-themes): New variable.
6944 (custom-theme-enabled-p): New function.
6945 (provide-theme): Update custom-enabled-themes.
6946 Disable and reenable the `user' theme.
6947 (require-theme): Doc fix.
6948 (custom-do-theme-reset, custom-remove-theme): Functions deleted.
6949 (custom-theme-value, custom-theme-variable-value): Likewise.
6950 (custom-theme-reset-internal): Likewise.
6951 (custom-theme-load-themes): Fix bugs and use custom-disable-theme.
6952 (custom-enable-theme, custom-disable-theme): New functions.
6953 (custom-variable-theme-value, custom-face-theme-value): Likewise.
6954 (custom-theme-recalc-variable, custom-theme-recalc-face): Likewise.
6955 (custom-theme-reset-variables): Simplify.
6956 (deftheme, custom-declare-theme, custom-make-theme-feature):
6957 Definitions moved.
6958
6959 2005-07-10 Chong Yidong <cyd@stupidchicken.com>
6960
6961 * longlines.el (longlines-show-region)
6962 (longlines-unshow-hard-newlines): Recognize hard newlines by
6963 non-nil hard property, instead of t.
6964
6965 2005-07-10 Michael Kifer <kifer@cs.stonybrook.edu>
6966
6967 * viper-cmd.el (viper--key-maps): New variable.
6968 (viper-normalize-minor-mode-map-alist): Use viper--key-maps and
6969 emulation-mode-map-alists.
6970 (viper-envelop-ESC-key): Use viper-subseq.
6971 (viper-search-forward/backward/next): Disable debug-on-error.
6972
6973 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
6974 (viper-ESC-key): New defcustoms.
6975
6976 * viper-macs.el (ex-map-read-args): Use viper-subseq.
6977
6978 * viper-util.el (viper-key-to-emacs-key): Use viper-subseq.
6979 (viper-subseq): Copy of subseq from cl.el.
6980
6981 * viper.el (viper-go-away, viper-set-hooks): Use
6982 emulation-mode-map-alists, advise self-insert-command, add-minor-mode.
6983
6984 * viper-mous.el (viper-current-frame-saved): Use defvar.
6985
6986 * viper-init.el: Get rid of -face in face names.
6987
6988 * ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
6989 Make it work with longlines mode
6990
6991 * ediff-mult.el (ediff-meta-mode-hook): New variable.
6992
6993 * ediff-ptch.el (ediff-file-name-sans-prefix): Quote regexp.
6994
6995 * ediff-init.el: Get rid of -face in face names.
6996
6997 2005-07-10 Richard M. Stallman <rms@gnu.org>
6998
6999 * emacs-lisp/edebug.el (edebug-enter): Call with-timeout-suspend
7000 and with-timeout-unsuspend.
7001
7002 * emacs-lisp/debug.el (debug): Call with-timeout-suspend
7003 and with-timeout-unsuspend.
7004
7005 * emacs-lisp/timer.el (with-timeout-timers): New variable.
7006 (with-timeout): Bind that variable to record timers.
7007 (with-timeout-suspend, with-timeout-unsuspend): New functions.
7008
7009 * emacs-lisp/debug.el (debug-help-follow): New function.
7010 (debugger-mode-map): Use that instead of help-follow.
7011 (debugger-setup-buffer): Use eval-buffer-list
7012 to handle eval-buffer frames.
7013
7014 2005-07-10 N. Raghavendra <raghu@mri.ernet.in> (tiny change)
7015
7016 * timezone.el (timezone-parse-date): Change first regexp
7017 so it will not mistakenly match dates with no time zone.
7018
7019 2005-07-10 Jeff Dwork <jeff.dwork@amd.com> (tiny change)
7020
7021 * facemenu.el (facemenu-read-color): Do case-insensitive matching.
7022
7023 2005-07-10 Luc Teirlinck <teirllm@auburn.edu>
7024
7025 * custom.el (custom-initialize-safe-set)
7026 (custom-initialize-safe-default): New functions.
7027
7028 * frame.el (blink-cursor-mode): Use `custom-initialize-safe-default'
7029 and simplify :init-value.
7030
7031 * tooltip.el (tooltip-mode): Use `custom-initialize-safe-default'
7032 and simplify :init-value. Delete obsolete comment.
7033
7034 * startup.el (command-line): Use `custom-reevaluate-setting' to
7035 handle `tooltip-mode'. Delete obsolete comment.
7036
7037 * files.el (set-visited-file-name): Avoid calling
7038 `file-name-nondirectory' with a nil argument.
7039
7040 2005-07-09 Richard M. Stallman <rms@gnu.org>
7041
7042 * emacs-lisp/debug.el (debugger-setup-buffer): When eval-buffer
7043 was called with nil for the buffer, handle the read position right.
7044 Handle read position for eval-region, too.
7045
7046 2005-07-09 Juri Linkov <juri@jurta.org>
7047
7048 * fringe.el (fringe-mode): Add period in docstring.
7049 (fringe-query-style): Build prompt depending on `all-frames' arg.
7050
7051 * dired.el (dired-marker-char): Avoid quotations for `do' and `mark'
7052 to not create links to unrelated functions in the Help buffer.
7053
7054 * progmodes/compile.el (compilation-mode-hook, compilation-mode):
7055 Doc fix.
7056
7057 * simple.el (next-error-hook): New variable.
7058 (next-error): Use it. Doc fix.
7059
7060 * textmodes/ispell.el (ispell-command-loop): Add current
7061 dictionary name and program name to mode-line-format.
7062 (ispell-region, ispell-process-line): Add current dictionary name
7063 and program name to messages.
7064
7065 2005-07-08 Jay Belanger <belanger@truman.edu>
7066
7067 * calc/calc.el (calc-embedded-announce-formula-alist)
7068 (calc-embedded-open-close-formula-alist)
7069 (calc-embedded-open-close-word-alist)
7070 (calc-embedded-open-close-plain-alist)
7071 (calc-embedded-open-close-new-formula-alist)
7072 (calc-embedded-open-close-mode-alist)
7073 (calc-embedded-new-buffer-hook, calc-embedded-new-formula-hook)
7074 (calc-embedded-mode-hook): New variables.
7075
7076 * calc/calc-embed.el (calc-embedded-firsttime)
7077 (calc-embedded-firsttime-buf, calc-embedded-firsttime-formula):
7078 New variables.
7079 (calc-do-embedded): Use calc-embedded-firsttime,
7080 calc-embedded-firsttime-buf and calc-embedded-firsttime-formula to
7081 determine whether or not to run hooks.
7082 (calc-embedded-make-info) Set calc-embedded-firsttime-buf and
7083 calc-embedded-firsttime-formula appropriately.
7084 Set calc-embedded delimiter variables according to mode.
7085
7086 2005-07-08 Richard M. Stallman <rms@gnu.org>
7087
7088 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-list):
7089 Check for "emacs", etc., as entire symbol, not just as word.
7090 (checkdoc-file-comments-engine): Use regexp-quote on FN.
7091
7092 * files.el (set-visited-file-name): Report the error
7093 for "empty filename" earlier.
7094 (kill-some-buffers): Ignore buffers already dead.
7095
7096 * fringe.el (fringe-mode): Doc fix.
7097
7098 * emacs-lisp/bytecomp.el (byte-compile-maybe-guarded):
7099 Check for (featurep 'xemacs) and turn off warnings in what it guards.
7100 Use unwind-protect to ensure byte-compile-unresolved-functions
7101 is updated.
7102
7103 * whitespace.el (whitespace-buffer-leading-cleanup):
7104 Simplify w/ skip-chars-forward.
7105 (whitespace-buffer-trailing-cleanup): Simplify w/ skip-chars-backward.
7106
7107 * mail/rmail.el (rmail-only-expunge): Fix paren error.
7108 Unconditionally try to leave point at the same old place.
7109
7110 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de> (tiny change)
7111
7112 * comint.el (comint-postoutput-scroll-to-bottom)
7113 (comint-show-maximum-output): Take scroll-margin into consideration.
7114
7115 2005-07-08 Kim F. Storm <storm@cua.dk>
7116
7117 * ido.el (ido-use-filename-at-point): New choice `guess'.
7118 (ido-file-internal): Try ffap-guesser if selected.
7119
7120 * ido.el (ido-before-fallback-functions): New hook.
7121 (ido-buffer-internal, ido-file-internal, ido-read-buffer)
7122 (ido-read-file-name): Run it.
7123
7124 2005-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
7125
7126 * progmodes/hideif.el (hide-ifdef-use-define-alist): Pass a list of
7127 strings rather than a list of symbols to the completion function.
7128
7129 2005-07-07 Jay Belanger <belanger@truman.edu>
7130
7131 * calc/calc-units.el (math-apply-units): Change the places in
7132 which units are simplified.
7133
7134 2005-07-07 Luc Teirlinck <teirllm@auburn.edu>
7135
7136 * cus-edit.el (customize-option, customize-option-other-window):
7137 Make them handle aliases.
7138
7139 * custom.el (custom-variable-p): Make it recursively follow
7140 aliases. Mention that in the docstring.
7141
7142 2005-07-07 Richard M. Stallman <rms@gnu.org>
7143
7144 * cus-start.el (exec-path): Use `directory' instead of `file'.
7145 Fix tag for nil.
7146
7147 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
7148
7149 * replace.el (occur-rename-buffer): Use `generate-new-buffer' also
7150 when called non-interactively. Doc fix.
7151
7152 2005-07-07 Lute Kamstra <lute@gnu.org>
7153
7154 * elide-head.el (elide-head-headers-to-hide): Recognize the FSF's
7155 new address as well.
7156
7157 2005-07-07 Kenichi Handa <handa@m17n.org>
7158
7159 * international/mule.el (make-coding-system):
7160 Describe `ascii-incompatible' property in the docstring.
7161 (set-file-name-coding-system): Signal an error if coding-system is
7162 ascii-incompatible.
7163 (set-keyboard-coding-system): Likewise.
7164
7165 * international/mule-cmds.el (set-default-coding-systems):
7166 Don't set default-file-name-coding-system and
7167 default-keyboard-coding-system if coding-system is ASCII-incompatible.
7168
7169 * international/utf-16.el: Declare that all UTF-16-based coding
7170 systems are ASCII-incompatible.
7171
7172 2005-07-07 Nick Roberts <nickrob@snap.net.nz>
7173
7174 * progmodes/gud.el: Require font-lock for displaying errors.
7175 Used by gdb-ui.el.
7176
7177 2005-07-07 Juanma Barranquero <lekktu@gmail.com>
7178
7179 * hi-lock.el (hi-lock-find-patterns): Protect also against invalid
7180 values for the pattern lists which are `read'able but not
7181 `append'able (like symbols).
7182
7183 2005-07-06 Richard M. Stallman <rms@gnu.org>
7184
7185 * progmodes/flymake.el (flymake-float-time): Instead of
7186 with-no-warnings, test for xemacs.
7187 (flymake-replace-regexp-in-string): Test fboundp of replace-in-string
7188 to avoid warning.
7189
7190 2005-07-06 Juanma Barranquero <lekktu@gmail.com>
7191
7192 * w32-vars.el (w32-fixed-font-alist): Fix typo in `defcustom' tag.
7193
7194 2005-07-05 Lute Kamstra <lute@gnu.org>
7195
7196 * battery.el: Add support for Darwin (with much debugging help
7197 from Samuel Lauber <sam124@operamail.com>).
7198 (battery-status-function, battery-echo-area-format)
7199 (battery-mode-line-format): Add support for pmset on Darwin.
7200 (battery-load-low, battery-load-critical): New user options.
7201 (battery-pmset): New function.
7202
7203 2005-07-05 Lute Kamstra <lute@gnu.org>
7204
7205 Update FSF's address in GPL notices.
7206
7207 * textmodes/page-ext.el: Update FSF's address.
7208
7209 2005-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
7210
7211 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Prevent adaptive
7212 filling from using prefix when filling a single-line docstring.
7213
7214 * progmodes/flymake.el: Remove useless eval-when-compile.
7215
7216 * arc-mode.el (archive-lzh-ogm): Reorder save excursion/restriction.
7217
7218 2005-07-04 Richard M. Stallman <rms@gnu.org>
7219
7220 * textmodes/org.el (org-file-apps-defaults-gnu):
7221 Rename from org-file-apps-defaults-linux.
7222 (org-default-apps): Don't test system-type for `linux'.
7223 (org-file-apps): Doc fix.
7224
7225 2005-07-04 David Ponce <david@dponce.com>
7226
7227 * tree-widget.el: Improve header Commentary section.
7228 (tree-widget) [defgroup]
7229 (tree-widget-image-enable, tree-widget-themes-directory)
7230 (tree-widget-theme, tree-widget-image-properties-emacs)
7231 (tree-widget-image-properties-xemacs, tree-widget-create-image)
7232 (tree-widget-image-formats, tree-widget-control)
7233 (tree-widget-empty-control, tree-widget-leaf-control
7234 (tree-widget-guide, tree-widget-end-guide, tree-widget-no-guide)
7235 (tree-widget-handle, tree-widget-no-handle, tree-widget-p)
7236 (tree-widget-keep, tree-widget-after-toggle-functions)
7237 (tree-widget-open-node, tree-widget-close-node): Doc fix.
7238 (tree-widget-open-control, tree-widget-close-control): Fix doc and
7239 :help-echo message.
7240 (tree-widget-set-theme): Doc fix. Use `string-equal'.
7241 (tree-widget-image-properties): Doc fix. Clearer implementation.
7242 (tree-widget--cursors): New constant.
7243 (tree-widget-lookup-image): New function split from
7244 `tree-widget-find-image'. Clearer implementation.
7245 (tree-widget-find-image): Use it.
7246 (tree-widget-button-keymap): Use `set-keymap-parent'.
7247 (tree-widget) [define-widget]: Use `widget-children-value-delete'.
7248 Define the sub-widgets here.
7249 (tree-widget-node): Check that :node is not a tree-widget.
7250 (tree-widget-get-super, tree-widget-open-control)
7251 (tree-widget-close-control, tree-widget-empty-control)
7252 (tree-widget-leaf-control, tree-widget-guide)
7253 (tree-widget-end-guide, tree-widget-no-guide, tree-widget-handle)
7254 (tree-widget-no-handle, tree-widget-value-delete)
7255 (tree-widget-map): Remove.
7256 (tree-widget-children-value-save): Doc fix. Simplified.
7257 (tree-widget-value-create): Update according to previous changes.
7258
7259 2005-07-04 Carsten Dominik <dominik@science.uva.nl>
7260
7261 * textmodes/org.el: Leading space replaced by TABS.
7262 (org-recalc-marks, org-table-rotate-recalc-marks)
7263 (org-table-get-specials): Treat "^" and "_" marks.
7264 (org-table-justify-field-maybe): Optional argument NEW.
7265 (org-table-eval-formula): Parsing of the format simplified.
7266 New modes C,I. Honor the %= parameter in the current table.
7267 Avoid unnecessary re-align by using the NEW argument to
7268 `org-table-justify-field-maybe'.
7269 (org-calc-default-modes): Default for date-format mimicks org-mode.
7270 (org-agenda, org-timeline): Quote argument in org-agenda-redo-command.
7271
7272 2005-07-03 Luc Teirlinck <teirllm@auburn.edu>
7273
7274 * cus-face.el (custom-theme-set-faces): Make it handle face
7275 aliases whose alias declarations are pre- or autoloaded.
7276
7277 2005-07-04 Juri Linkov <juri@jurta.org>
7278
7279 * faces.el (read-face-name): Put the code for getting a face name
7280 from the buffer before adding the faces from the `face' property.
7281 Use `completing-read-multiple' instead of `completing-read'.
7282 Require `crm'. Add default value and post-process the returned
7283 list of faces.
7284
7285 * emacs-lisp/crm.el (crm-find-current-element)
7286 (crm-minibuffer-complete-and-exit): Handle minibuffer prompt.
7287
7288 * emacs-lisp/lisp-mode.el (eval-defun-1):
7289 * emacs-lisp/edebug.el (edebug-eval-defun):
7290 Remove unnecessary quotes.
7291
7292 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
7293
7294 * progmodes/prolog.el (prolog-eof-string): Doc fixes.
7295 (prolog-indent-level): Fix typo in docstring.
7296
7297 * info.el (Info-history, Info-history-forward)
7298 (Info-history-list, Info-speedbar-fetch-file-nodes): Doc fixes.
7299
7300 * add-log.el (add-change-log-entry):
7301 * comint.el (comint-dynamic-list-input-ring)
7302 (comint-dynamic-list-completions):
7303 * dabbrev.el (dabbrev-expand):
7304 * delim-col.el (delimit-columns-rectangle-line):
7305 * diff-mode.el (diff-context->unified, diff-reverse-direction)
7306 (diff-unified->context):
7307 * ediff-init.el (ediff-abbrev-jobname):
7308 * ediff-mult.el (ediff-replace-session-status-in-meta-buffer)
7309 (ediff-replace-session-activity-marker-in-meta-buffer):
7310 * info.el (Info-summary):
7311 * lpr.el (printify-region):
7312 * printing.el (pr-create-interface):
7313 * ps-print.el (ps-print-quote):
7314 * ses.el (ses-column-widths, ses-print-cell)
7315 (ses-adjust-print-width, ses-center):
7316 * shell.el (shell-file-name-quote-list):
7317 * strokes.el (strokes-read-stroke, strokes-read-complex-stroke)
7318 (strokes-fill-current-buffer-with-whitespace)
7319 (strokes-xpm-for-stroke, strokes-list-strokes)
7320 (strokes-xpm-char-bit-p, strokes-xpm-for-compressed-string):
7321 * term.el (term-dynamic-list-input-ring)
7322 (term-dynamic-list-completions):
7323 * calc/calc.el (math-format-stack-value):
7324 * emacs-lisp/edebug.el (edebug-display-freq-count):
7325 * progmodes/delphi.el (delphi-indent-line, delphi-fill-comment)
7326 (delphi-new-comment-line):
7327 * progmodes/ebnf2ps.el (ebnf-eps-filename, ebnf-trim-right):
7328 * progmodes/executable.el (executable-set-magic):
7329 * progmodes/python.el (inferior-python-mode):
7330 * progmodes/scheme.el (scheme-mode-syntax-table):
7331 * progmodes/sh-script.el (sh-maybe-here-document):
7332 * progmodes/sql.el (sql-copy-column):
7333 * progmodes/tcl.el (tcl-comment-indent, tcl-quote):
7334 * textmodes/bibtex.el (bibtex-mode):
7335 * textmodes/sgml-mode.el (html-imenu-index, sgml-attributes)
7336 (sgml-auto-attributes):
7337 * textmodes/table.el (table-insert, table-shorten-cell)
7338 (table--generate-source-scan-lines, table-delete-row)
7339 (*table--cell-delete-char, table--spacify-frame)
7340 (table--horizontally-shift-above-and-below)
7341 (table--cell-insert-char, table--cell-blank-str)
7342 (table--fill-region-strictly):
7343 * textmodes/tex-mode.el (tex-insert-quote, latex-find-indent):
7344 * textmodes/texinfo.el (texinfo-insert-quote): "?\ " -> "?\s".
7345
7346 * add-log.el (change-log):
7347 * apropos.el (apropos):
7348 * comint.el (comint-completion, comint-source):
7349 * dabbrev.el (dabbrev):
7350 * delim-col.el (columns):
7351 * diff-mode.el (diff-mode):
7352 * ediff.el (ediff):
7353 * ediff-diff.el (ediff-diff):
7354 * ediff-init.el (ediff-highlighting, ediff-merge, ediff-hook):
7355 * ediff-mult.el (ediff-mult):
7356 * ediff-ptch.el (ediff-ptch):
7357 * ediff-wind.el (ediff-window):
7358 * facemenu.el (facemenu):
7359 * indent.el (indent):
7360 * info.el (info):
7361 * jka-cmpr-hook.el (compression, jka-compr):
7362 * lpr.el (lpr):
7363 * outline.el (outlines):
7364 * pcmpl-cvs.el (pcmpl-cvs):
7365 * pcmpl-rpm.el (pcmpl-rpm):
7366 * printing.el (printing):
7367 * ps-print.el (postscript, ps-print, ps-print-horizontal)
7368 (ps-print-vertical, ps-print-headers, ps-print-font)
7369 (ps-print-color, ps-print-face, ps-print-n-up, ps-print-zebra)
7370 (ps-print-background, ps-print-printer, ps-print-page)
7371 (ps-print-miscellany):
7372 * ses.el (ses):
7373 * shell.el (shell, shell-directories, shell-faces):
7374 * startup.el (initialization):
7375 * strokes.el (strokes):
7376 * term.el (term):
7377 * uniquify.el (uniquify):
7378 * w32-vars.el (w32):
7379 * calc/calc.el (calc):
7380 * emacs-lisp/bytecomp.el (bytecomp):
7381 * emacs-lisp/cl-indent.el (lisp-indent):
7382 * emacs-lisp/edebug.el (edebug):
7383 * emacs-lisp/elp.el (elp):
7384 * emacs-lisp/testcover.el (testcover):
7385 * emacs-lisp/trace.el (trace):
7386 * emulation/viper-ex.el (viper-ex):
7387 * emulation/viper-mous.el (viper-mouse):
7388 * mail/mailalias.el (mailalias):
7389 * mail/supercite.el (supercite, supercite-frames)
7390 (supercite-attr, supercite-cite, supercite-hooks):
7391 * net/rcompile.el (remote-compile):
7392 * net/rlogin.el (rlogin):
7393 * obsolete/ooutline.el (outlines):
7394 * progmodes/delphi.el (delphi):
7395 * progmodes/ebnf2ps.el (postscript, ebnf2ps, ebnf-special)
7396 (ebnf-except, ebnf-repeat, ebnf-terminal, ebnf-non-terminal)
7397 (ebnf-production, ebnf-shape, ebnf-displacement, ebnf-syntactic)
7398 (ebnf-optimization):
7399 * progmodes/etags.el (etags):
7400 * progmodes/executable.el (executable):
7401 * progmodes/idlwave.el (idlwave):
7402 * progmodes/pascal.el (pascal):
7403 * progmodes/prolog.el (prolog):
7404 * progmodes/python.el (python):
7405 * progmodes/scheme.el (scheme):
7406 * progmodes/sh-script.el (sh, sh-script):
7407 * progmodes/sql.el (SQL):
7408 * progmodes/tcl.el (tcl):
7409 * textmodes/bibtex.el (bibtex, bibtex-autokey):
7410 * textmodes/enriched.el (enriched):
7411 * textmodes/makeinfo.el (makeinfo):
7412 * textmodes/sgml-mode.el (sgml):
7413 * textmodes/table.el (table-hooks):
7414 * textmodes/tex-mode.el (tex-file, tex-run, tex-view):
7415 * textmodes/texinfo.el (texinfo):
7416 * textmodes/two-column.el (two-column):
7417 Finish `defgroup' description with period.
7418
7419 * emacs-lisp/cl-indent.el (lisp-indent-maximum-backtracking):
7420 * eshell/esh-var.el (eshell-var):
7421 * progmodes/vhdl-mode.el (vhdl-testbench):
7422 * textmodes/org.el (org): Fix typos in docstrings.
7423
7424 * emacs-lisp/timer.el (with-timeout): Improve argument/docstring
7425 consistency.
7426
7427 * progmodes/flymake.el (flymake-find-file): Remove.
7428 (flymake-float-time): Use `with-no-warnings'.
7429 (flymake-check-start-time, flymake-check-was-interrupted)
7430 (flymake-err-info, flymake-is-running, flymake-last-change-time)
7431 (flymake-new-err-info): `defvar' at compile time.
7432
7433 2005-07-03 Juanma Barranquero <lekktu@gmail.com>
7434
7435 * replace.el (occur-hook): Doc fix.
7436 (occur-1): Don't call `occur-hook' if there are no matches.
7437
7438 2005-07-03 Richard M. Stallman <rms@gnu.org>
7439
7440 * emulation/tpu-edt.el (tpu-original-global-map): Don't copy
7441 global-map, save the same map.
7442 (global-map): Don't alter it at top level.
7443 (tpu-edt-on): Save global map in tpu-original-global-map, then copy.
7444 Then alter it here instead.
7445 (tpu-edt-off): Set global-map to the saved one.
7446
7447 * emulation/tpu-edt.el (tpu-emacs19-p): Var deleted.
7448 All references simplified.
7449 (tpu-lucid-emacs-p): Rename from tpu-lucid-emacs19-p. Uses changed.
7450 (zmacs-regions): Add defvar.
7451 (repeat-complex-command-map): Everything about that deleted.
7452
7453 * textmodes/artist.el (artist-key-is-drawing)
7454 (artist-key-endpoint1, artist-key-poly-point-list)
7455 (artist-key-shape, artist-key-draw-how, artist-popup-menu-table)
7456 (artist-key-compl-table, artist-rb-save-data)
7457 (artist-arrow-point-1, artist-arrow-point-2): Move defvars up.
7458 Don't put them in eval-when-compile.
7459 (artist-set-arrow-points-for-poly): Use `last', not `artist-last'.
7460
7461 * progmodes/ebrowse.el (ebrowse-revert-tree-buffer-from-file):
7462 Use with-no-warnings.
7463
7464 * net/browse-url.el (dos-windows-version): Add defvar.
7465
7466 * mail/supercite.el (filladapt-prefix-table): Add defvar.
7467
7468 * mail/rmailsum.el (rmail-summary-redo): Add defvar.
7469 (rmail-summary-mode-map, rmail-summary-overlay): Defvars moved up.
7470 (rmail-new-summary-line-count): Rename from new-summary-line-count.
7471 Add defvar.
7472 (rmail-summary-beginning-of-message): Use with-no-warnings.
7473 (rmail-summary-first-message, rmail-summary-last-message): Likewise.
7474
7475 * emulation/vip.el (vip-replace-string, ex-map, ex-read):
7476 Use with-no-warnings.
7477
7478 * emulation/vi.el (vi-mark-region): Use c-mark-function.
7479 (c-mark-function): Add point-moving-unit property.
7480 (vi-goto-line): Use with-no-warnings.
7481
7482 * emulation/edt.el (edt-last-copied-word): Add defvar.
7483 (zmacs-region-stays): Likewise.
7484 (edt-mark-section-wisely): Use c-mark-function for C.
7485 Use makr-defun for Fortran.
7486 (time-string): defvar deleted.
7487 (edt-display-the-time): Don't set time-string.
7488
7489 * emacs-lisp/macroexp.el (macroexp-accumulate): Rename arg to var+list.
7490
7491 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
7492 Don't warn when name is not constant
7493 or for defining the group `emacs'.
7494
7495 * tooltip.el (gud-tooltip-mode): Add defvar.
7496
7497 * startup.el (default-frame-background-mode): Add defvar.
7498
7499 * smerge-mode.el (smerge-mode): Add duplicate defvar near top.
7500
7501 * info.el (tool-bar-map): Add defvar.
7502
7503 * dired.el (dnd-protocol-alist): Add defvar.
7504
7505 * dired-aux.el (dired-query): Display question with answer, when
7506 the user answers.
7507
7508 * custom.el (custom-add-option): Doc fix.
7509
7510 * bookmark.el (Info-current-node, Info-suffix-list): Add defvars.
7511
7512 2005-07-03 Eli Zaretskii <eliz@gnu.org>
7513
7514 * font-lock.el (font-lock-regexp-grouping-construct): Fix the
7515 bogus name from the last change.
7516
7517 2005-07-02 Luc Teirlinck <teirllm@auburn.edu>
7518
7519 * custom.el (custom-declare-variable): Fix typos in comment.
7520 (custom-known-themes): Doc fix.
7521 (custom-theme-directory): New defcustom.
7522 (require-theme): Make it check `custom-theme-directory'.
7523
7524 * cus-theme.el (custom-new-theme-mode): New function.
7525 (custom-theme-name, custom-theme-variables, custom-theme-faces)
7526 (custom-theme-description): Add compiler defvars.
7527 (customize-create-theme): Add doc to the "*New Custom Theme*"
7528 buffer. Use `custom-new-theme-mode'.
7529 (custom-theme-write): Put the created buffer in emacs-lisp-mode
7530 and save it to the `custom-theme-directory'. Make this the
7531 default directory of the buffer.
7532
7533 2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
7534
7535 * progmodes/flymake.el (flymake-mode, flymake-mode-off):
7536 Fix unbalanced parentheses.
7537
7538 2005-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
7539
7540 * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
7541 into flymake-mode and delegate to flymake-mode.
7542
7543 * find-file.el (ff-which-function-are-we-in): Clean up.
7544
7545 2005-07-02 Juanma Barranquero <lekktu@gmail.com>
7546
7547 * replace.el (occur-rename-buffer): Fix docstring.
7548
7549 * emulation/edt.el (*EDT-keys*, edt-default-global-map)
7550 (edt-last-copied-word, edt-learn-macro-count)
7551 (edt-orig-page-delimiter, edt-orig-transient-mark-mode)
7552 (edt-rect-start-point, edt-user-global-map, rect-start-point)
7553 (time-string, zmacs-region-stays):
7554 * emulation/edt-mapper.el (edt-save-function-key-map)
7555 (EDT-key-name): `defvar' to silence the byte-compiler.
7556
7557 2005-07-02 Martin Rudalics <rudalics@gmx.at> (tiny change)
7558
7559 * font-lock.el (font-lock-regexp-grouping-backslash): Rename from
7560 font-lock-regexp-backslash. Doc fix.
7561 (font-lock-regexp-backslash-grouping-construct): Rename from
7562 font-lock-regexp-backslash-construct. Doc fix.
7563 (lisp-font-lock-keywords-2): Fix highlighting of Elisp regexp
7564 grouping constructs.
7565
7566 2005-07-02 Eli Zaretskii <eliz@gnu.org>
7567
7568 * makefile.w32-in (bootstrap): Remove the $(EMACS) binary after
7569 updating all the prerequisites.
7570
7571 2005-07-01 Juanma Barranquero <lekktu@gmail.com>
7572
7573 * textmodes/org.el (org-agenda-start-on-weekday)
7574 (org-calendar-to-agenda-key, org-agenda-sorting-strategy)
7575 (org-agenda-use-time-grid, org-archive-location)
7576 (org-allow-space-in-links, org-usenet-links-prefer-google)
7577 (org-enable-table-editor, org-export-default-language)
7578 (org-export-html-show-new-buffer, org-fill-paragraph)
7579 (org-cycle, org-goto-ret, org-goto-left, org-goto-right)
7580 (org-goto-quit, org-occur, org-eval-in-calendar)
7581 (org-agenda-cleanup-fancy-diary, org-agenda-no-heading-message)
7582 (org-agenda-diary-entry, org-remember-help)
7583 (org-table-convert-region, org-at-table-p)
7584 (org-table-move-row-down, org-table-move-row-up)
7585 (org-table-copy-region, org-table-toggle-vline-visibility)
7586 (org-table-get-stored-formulas, org-table-get-specials)
7587 (org-recalc-commands, org-table-eval-formula)
7588 (org-table-formula-substitute-names, orgtbl-make-binding)
7589 (org-format-org-table-html, org-format-table-table-html)
7590 (org-format-table-table-html-using-table-generate-source)
7591 (org-customize): Fix typos in docstrings.
7592 (org-level-2, org-at-timestamp-p, org-agenda-day-view)
7593 (org-agenda-toggle-diary, org-agenda-toggle-time-grid)
7594 (org-back-to-heading): Doc fixes.
7595 (org-agenda-toggle-time-grid, org-cmp-category, org-cmp-time)
7596 (org-agenda-change-all-lines, org-get-header):
7597 Improve argument/docstring consistency.
7598 (orgtbl-error): Fix error message.
7599
7600 * progmodes/flymake.el (flymake-find-possible-master-files)
7601 (flymake-master-file-compare, flymake-get-line-err-count)
7602 (flymake-highlight-line, flymake-gui-warnings-enabled):
7603 Fix typos in docstrings.
7604 (flymake-parse-line, flymake-get-project-include-dirs-function)
7605 (flymake-get-prev-err-line-no, flymake-goto-prev-error):
7606 Doc fixes.
7607 (flymake-get-project-include-dirs-function)
7608 (flymake-make-err-menu-data):
7609 Improve argument/docstring consistency.
7610
7611 2005-07-01 Lute Kamstra <lute@gnu.org>
7612
7613 * battery.el (battery-linux-proc-apm): Fix typo in docstring.
7614 Catch errors with ignore-errors. Use temporary buffer.
7615 (battery-linux-proc-acpi): Fix typo in docstring. Document `%r'.
7616
7617 * facemenu.el (facemenu-unlisted-faces): Delete foreground and
7618 background color faces.
7619 (facemenu-set-foreground, facemenu-set-background):
7620 Use facemenu-set-face-from-menu.
7621 (facemenu-set-face-from-menu): Treat face names that start with
7622 "fg:" or "bg:" as special.
7623 (facemenu-add-new-color): Don't create faces. Simplify.
7624
7625 2005-06-30 Richard M. Stallman <rms@gnu.org>
7626
7627 * emacs-lisp/crm.el (crm-do-completion): Handle minibuffer prompt.
7628 (crm-find-current-element): Likewise.
7629
7630 2005-06-30 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
7631
7632 * help-fns.el (help-do-arg-highlight): Regexp-quote argument names.
7633
7634 2005-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
7635
7636 * arc-mode.el (archive-extract): Make it work as a mouse binding.
7637 (archive-mouse-extract): Make it an obsolete alias.
7638 (archive-mode-map): Don't use archive-mouse-extract any more.
7639 (archive-mode, archive-extract): write-contents-hooks ->
7640 write-contents-functions.
7641 (archive-arc-rename-entry, archive-lzh-rename-entry): Remove unused
7642 first arg.
7643 (archive-rename-entry): Update the call.
7644 (archive-zip-summarize): Remove unused var `method'.
7645 (archive-lzh-summarize): Remove unused var `creator'.
7646
7647 * emacs-lisp/debug.el (debug): Quieten Drew Adams by killing the
7648 dedicated frame upon exit.
7649
7650 * arc-mode.el: Bind inhibit-read-only rather than buffer-read-only.
7651 (archive-zip-extract, archive-zip-expunge)
7652 (archive-zip-update, archive-zip-update-case): Use executable-find.
7653 (archive-resummarize, archive-flag-deleted, archive-unmark-all-files):
7654 Use restore-buffer-modified-p.
7655 (archive-extract, archive-add-new-member, archive-write-file-member):
7656 Use with-current-buffer.
7657 (archive-lzh-ogm, archive-zip-chmod-entry): Use dolist.
7658
7659 2005-06-30 Andreas Schwab <schwab@suse.de>
7660
7661 * progmodes/gud.el (gud-filter): Remove unneeded progn.
7662
7663 2005-06-30 Glenn Morris <gmorris@ast.cam.ac.uk>
7664
7665 * progmodes/sh-script.el (sh-get-kw): `&' also separates words.
7666
7667 2005-06-30 Juri Linkov <juri@jurta.org>
7668
7669 * faces.el (vertical-border): Inherit from mode-line-inactive
7670 only on tty.
7671
7672 2005-06-30 Juanma Barranquero <lekktu@gmail.com>
7673
7674 * help-fns.el (help-do-arg-highlight): Highlight also -ARG (for
7675 example, -NLINES in the `occur' docstring).
7676
7677 * replace.el (occur-1): When no matches are found, do not set the
7678 `buffer-read-only' and modified flags for the occur buffer,
7679 because it is deleted.
7680
7681 * emulation/cua-base.el (cua-check-pending-input)
7682 (cua-repeat-replace-region, cua-mode, cua-debug)
7683 (cua-auto-tabify-rectangles, cua-inhibit-cua-keys):
7684 Fix typos in docstrings.
7685
7686 * emulation/cua-gmrk.el (cua-toggle-global-mark)
7687 (cua-cut-region-to-global-mark)
7688 (cua--cut-rectangle-to-global-mark):
7689 Remove period from end of messages.
7690
7691 * emulation/cua-rect.el (cua-do-rectangle-padding):
7692 Remove period from end of messages.
7693 (cua--rectangle-seq-format): Fix typo in docstring.
7694 (cua-sequence-rectangle, cua-fill-char-rectangle):
7695 Improve argument/docstring consistency.
7696
7697 2005-06-29 Juri Linkov <juri@jurta.org>
7698
7699 * faces.el (default-frame-background-mode): New internal variable.
7700 (frame-set-background-mode): Use it.
7701
7702 * startup.el (normal-top-level): Set default-frame-background-mode
7703 instead of frame-background-mode. Before setting it, test for its
7704 nil value. Remove tests for frame-background-mode and frame
7705 parameter `reverse'. Add test for "unspecified-fg".
7706
7707 * term/xterm.el (xterm-rxvt-set-background-mode):
7708 * term/rxvt.el (rxvt-set-background-mode):
7709 Set default-frame-background-mode instead of frame-background-mode.
7710
7711 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
7712
7713 * simple.el (set-variable): Warn about obsolete user variables.
7714
7715 * imenu.el (imenu--completion-buffer):
7716 * mouse.el (mouse-buffer-menu-alist):
7717 * msb.el (msb-invisible-buffer-p):
7718 * calendar/diary-lib.el (diary-header-line-format):
7719 * emacs-lisp/pp.el (pp-buffer):
7720 * progmodes/cperl-mode.el (cperl-do-auto-fill):
7721 * textmodes/picture.el (picture-replace-match):
7722 Change space constants followed by a sexp to "?\s ".
7723
7724 * play/decipher.el (decipher-loop-with-breaks):
7725 * textmodes/texinfo.el (texinfo-insert-@item): Change space
7726 constants "protected" from end of line by a comment to "?\s".
7727
7728 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
7729
7730 * font-lock.el (save-buffer-state): Use `declare'.
7731
7732 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
7733 reset the syntax-table to cperl-mode-syntax-table.
7734 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
7735 "foo_print_bar" is not matched as a reserved keyword.
7736
7737 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
7738
7739 * textmodes/org.el (orgtbl-setup): New function, for delayed
7740 setup for the orgtbl commands.
7741 (org-calc-default-modes): New option.
7742 (orgtbl-make-binding): Use `defun' to get better help display.
7743 (org-diary): Call `org-compile-prefix-format'.
7744 (org-table-formula-substitute-names): New function.
7745 (org-agenda-day-view, org-agenda-week-view): New commands.
7746 (org-agenda-toggle-week-view): Command removed.
7747 (org-tbl-menu): Split off from org-org-menu.
7748 (org-mode): Move removal of outline-mode menus to here.
7749 (org-table-formula-debug): New option.
7750 (org-table-insert-row): Keep first field if just "#" or "*".
7751 (org-mode): Paragraph regexps fixed.
7752 (org-table-recalculate-regexp): New constant.
7753 (org-table-justify-field-maybe): Avoid replace if not necessary.
7754 (org-copy-special, org-cut-special): Use `call-interactively'.
7755 (org-table-copy-region): Take region from `interactive' call.
7756 (org-trim): Return string even if no match.
7757 (org-formula): New face.
7758 (org-set-font-lock-defaults): No longer highlight "FIXME".
7759 But highlight formula-related fields in table.
7760 (org-table-p): Use regexp, not fontification.
7761 (org-table-align): Handle white space at end of line.
7762 (org-table-formula-evaluate-inline): New option.
7763 (org-mode): Auto-wrapping in comment lines turned off.
7764 (org-table-copy-down): Evaluate only in copied field, not in
7765 destination.
7766 (org-table-current-formula): Variable removed.
7767 (org-table-store-formulas, org-table-get-stored-formulas)
7768 (org-table-modify-formulas, org-table-replace-in-formulas)
7769 (org-table-maybe-eval-formula): New functions.
7770 (org-table-get-formula): Modify to use stored formulas.
7771 (org-table-insert-column, org-table-delete-column)
7772 (org-table-move-column): Call `org-table-modify-formulas'.
7773 (org-complete): Add completion for keyword formulas.
7774 (orgtbl-mode): Pull orgtbl-mode-map to start of
7775 minor-mode-map-alist.
7776
7777 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
7778
7779 * progmodes/python.el (python-check): Require `compile' before
7780 modifying its variables.
7781
7782 * newcomment.el (comment-indent-default): Don't get fooled by an early
7783 end of buffer.
7784
7785 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7786
7787 * ps-print.el (ps-print-version): Fix version number.
7788
7789 2005-06-28 Luc Teirlinck <teirllm@auburn.edu>
7790
7791 * textmodes/ispell.el (ispell-word): Remove stray parenthesis.
7792
7793 2005-06-28 Richard M. Stallman <rms@gnu.org>
7794
7795 * textmodes/flyspell.el (flyspell-use-local-map): Variable deleted.
7796 (flyspell-local-mouse-map): Declaration deleted.
7797 (flyspell-mouse-map): Bind only mouse-2.
7798 (flyspell-mode-map): Don't test flyspell-use-local-map.
7799 (flyspell-overlay-keymap-property-name): Var deleted.
7800 (flyspell-mode-on): Don't make local bindings for
7801 flyspell-mouse-map and flyspell-mode-map.
7802 (make-flyspell-overlay): Unconditionally put on `keymap' text prop.
7803
7804 * textmodes/ispell.el (ispell-word): Do not ignore short words.
7805
7806 * progmodes/compile.el (compilation-next-error-function):
7807 Don't switch buffers; operate on the current buffer.
7808
7809 * progmodes/compile.el (compilation-error-file-name)
7810 (compilation-warning-file-name, compilation-info-file-name)
7811 (compilation-line-number, compilation-column-number): New faces.
7812 (compilation-error-face, compilation-warning-face)
7813 (compilation-info-face, compilation-line-face)
7814 (compilation-column-face): Use them.
7815
7816 * facemenu.el (facemenu-add-face): Warn when font-lock is active.
7817
7818 * comint.el (comint-password-prompt-regexp): Accept ", try again".
7819
7820 * bindings.el (global-map): Bind insertchar and its variants.
7821
7822 2005-06-27 Richard M. Stallman <rms@gnu.org>
7823
7824 * textmodes/artist.el (artist-text-overwrite)
7825 (artist-figlet-get-extra-args, artist-text-see-thru): Use read-string.
7826
7827 2005-06-27 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7828
7829 * ps-print.el: It was not working the page selection for printing.
7830 Reported by Sebastian Tennant <sebyte@smolny.plus.com>.
7831 (ps-print-version): New version 6.6.7.
7832 (ps-end-sheet): New fun.
7833 (ps-header-sheet, ps-end-job): Call it.
7834
7835 2005-06-27 Luc Teirlinck <teirllm@auburn.edu>
7836
7837 * subr.el (add-to-list, add-to-ordered-list): Doc fixes.
7838
7839 2005-06-27 Lute Kamstra <lute@gnu.org>
7840
7841 * facemenu.el (facemenu-unlisted-faces): Add foreground and
7842 background color faces.
7843 (facemenu-get-face): Delete function.
7844 (facemenu-set-face-from-menu): Don't call facemenu-get-face.
7845 (facemenu-add-new-color): Make second argument mandatory.
7846 Create the appropriate face and return it. Simplify.
7847 (facemenu-set-foreground, facemenu-set-background): Don't check if
7848 color is defined. Use return value of facemenu-add-new-color.
7849
7850 2005-06-26 Nick Roberts <nickrob@snap.net.nz>
7851
7852 * progmodes/gud.el (gud-filter): Add missing argument to
7853 with-selected-window.
7854
7855 2005-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
7856
7857 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't automatically add
7858 a :require to the defcustom.
7859
7860 * emacs-lisp/autoload.el (make-autoload): Add the :setter for
7861 defcustoms corresponding to minor modes.
7862
7863 2005-06-26 David Ponce <david@dponce.com>
7864
7865 * recentf.el: Require tree-widget instead of wid-edit.
7866 (recentf-filename-handler): Fix widget :type.
7867 (recentf-cancel-dialog, recentf-open-more-files)
7868 (recentf-open-files-action): Doc fix.
7869 (recentf-dialog-goto-first): New function.
7870 (recentf-dialog-mode-map): Set parent keymap first.
7871 (recentf-dialog-mode): Define with define-derived-mode.
7872 Don't display continuation lines in dialogs.
7873 (recentf-edit-list): Rename from recentf-edit-selected-items.
7874 (recentf-edit-list-select): Rename from recentf-edit-list-action.
7875 Simplify.
7876 (recentf-edit-list-validate): New function.
7877 (recentf-edit-list): Update accordingly.
7878 (recentf-open-files-item-shift): Remove.
7879 (recentf-open-files-item): Convert menu elements into tree and
7880 link widgets. Don't create the widgets.
7881 (recentf-open-files): Update accordingly.
7882 (recentf-save-list): Untabify.
7883
7884 2005-06-25 Luc Teirlinck <teirllm@auburn.edu>
7885
7886 * replace.el (keep-lines-read-args): Add INTERACTIVE arg.
7887 (keep-lines): Add INTERACTIVE arg. Never delete lines only
7888 partially contained in the active region. Do not take active
7889 region into account when called from Lisp, unless INTERACTIVE arg
7890 is non-nil. Use `forward-line' instead of `beginning-of-line' to
7891 avoid trouble with fields. Make marker point nowhere when no
7892 longer used. Always return nil. Doc fix.
7893 (flush-lines): Add INTERACTIVE arg. Do not take active region
7894 into account when called from Lisp, unless INTERACTIVE arg is
7895 non-nil. Use `forward-line' instead of `beginning-of-line' to
7896 avoid trouble with fields. Make marker point nowhere when no
7897 longer used. Always return nil. Doc fix.
7898 (how-many): Add INTERACTIVE arg. Make RSTART and REND args
7899 interchangeable. Do not take active region into account when
7900 called from Lisp, unless INTERACTIVE arg is non-nil. Do not print
7901 message in echo area when called from Lisp, unless INTERACTIVE arg
7902 is non-nil. Avoid saying "1 occurrences". Do not use markers.
7903 Return the number of matches. Doc fix.
7904 (occur): Doc fix.
7905 (perform-replace): Make comment follow double space convention for
7906 the sake of `outline-minor-mode'.
7907
7908 * faces.el (facep): Doc fix.
7909
7910 2005-06-25 Richard M. Stallman <rms@gnu.org>
7911
7912 * facemenu.el (facemenu-enable-faces-p): New function.
7913 (facemenu-background-menu, facemenu-foreground-menu)
7914 (facemenu-face-menu): Add menu-enable property.
7915
7916 * jka-compr.el (jka-compr-insert-file-contents):
7917 Special handling if cannot find the uncompression program.
7918
7919 * cus-face.el (custom-face-attributes): Add autoload.
7920
7921 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
7922 Bind comment-indent-function locally.
7923
7924 * window.el (save-selected-window): Use save-current-buffer.
7925
7926 * subr.el (with-selected-window): Use save-current-buffer.
7927
7928 * progmodes/gud.el (gud-filter): Simplify using with-selected-window
7929 and with-current-buffer.
7930
7931 2005-06-24 Richard M. Stallman <rms@gnu.org>
7932
7933 * simple.el (line-move-1): Fix previous change.
7934
7935 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
7936
7937 * replace.el (occur-1): Set `buffer-read-only' and the
7938 buffer-modified flag before running `occur-hook' to protect
7939 against unintentional buffer switches that can lead to data loss.
7940
7941 2005-06-24 Nick Roberts <nickrob@snap.net.nz>
7942
7943 * progmodes/gud.el (gud-tooltip-print-command): Indent properly.
7944 (gud-gdb-marker-filter): Use font-lock-warning-face for any
7945 initial error.
7946
7947 * progmodes/gdb-ui.el (gdb-send): Remove warning face from errors
7948 after fresh input.
7949 (gdb-var-create-handler): Put name of expression in quotes.
7950
7951 2005-06-23 Luc Teirlinck <teirllm@auburn.edu>
7952
7953 * emacs-lisp/ring.el (ring-elements): Make it return a list of the
7954 elements of RING in order, and without bogus nil elements.
7955
7956 2005-06-23 Richard M. Stallman <rms@gnu.org>
7957
7958 * simple.el (set-variable): Args renamed; doc fix.
7959 (line-move-1): When there are overlays around, use vertical-motion.
7960
7961 * faces.el (escape-glyph): Use brown against light background.
7962 (nobreak-space): Rename from no-break-space.
7963 Fix previous change.
7964
7965 * dired-aux.el (dired-do-copy): Fix arg prompt.
7966
7967 * mail/sendmail.el (mail-setup-with-from): Fix custom type.
7968
7969 2005-06-23 Glenn Morris <gmorris@ast.cam.ac.uk>
7970
7971 * mail/emacsbug.el (report-emacs-bug): Use "X server distributor"
7972 rather than "Distributor".
7973
7974 2005-06-23 Lute Kamstra <lute@gnu.org>
7975
7976 * emacs-lisp/debug.el (debugger-special-form-p): New defun.
7977 (debug-on-entry): Use it. New interactive declaration that uses
7978 function-called-at-point.
7979
7980 2005-06-23 Kim F. Storm <storm@cua.dk>
7981
7982 * subr.el (save-match-data): Add comment about using evaporate arg
7983 to set-match-data.
7984
7985 2005-06-22 Glenn Morris <gmorris@ast.cam.ac.uk>
7986
7987 * cus-edit.el (customize-face)
7988 (customize-face-other-window): Handle face aliases.
7989
7990 * faces.el (face-documentation, set-face-attribute)
7991 (face-spec-set): Handle face aliases.
7992
7993 2005-06-22 Juanma Barranquero <lekktu@gmail.com>
7994
7995 * help-mode.el (help-make-xrefs): If a symbol representing a face
7996 name is not followed by the word "face", it could still be a
7997 function or variable name, so don't bypass other checks.
7998
7999 2005-06-22 Juri Linkov <juri@jurta.org>
8000
8001 * ps-print.el (ps-face-foreground-name, ps-face-background-name):
8002 Replace aliased functions with calls where second arg `inherit' is t.
8003
8004 2005-06-22 Nick Roberts <nickrob@snap.net.nz>
8005
8006 * progmodes/gdb-ui.el (gdb-error): New variable.
8007 (gdb-error): New function.
8008 (gdb-annotation-rules): Act on error-begin and error annotations.
8009 (gdb-concat-output): Use font-lock-warning-face for errors.
8010
8011 2005-06-22 Miles Bader <miles@gnu.org>
8012
8013 * bindings.el (propertized-buffer-identification): Use renamed
8014 `Buffer-menu-buffer' face.
8015
8016 * faces.el (vertical-border): Rename from `vertical-divider'.
8017 (escape-glyph): Change dark-background color back to `cyan'.
8018
8019 2005-06-21 Juri Linkov <juri@jurta.org>
8020
8021 * faces.el (face-user-default-spec): Try getting `customized-face'
8022 prior to `saved-face'.
8023 (frame-background-mode): Refill docstring.
8024
8025 * emacs-lisp/lisp-mode.el (eval-defun-1):
8026 * emacs-lisp/edebug.el (edebug-eval-defun):
8027 Set `saved-face' temporarily to nil before calling form.
8028 Set `customized-face' to the new spec after that.
8029
8030 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
8031
8032 * subr.el (1value, lambda, key-substitution-in-progress):
8033 Doc fixes.
8034
8035 * autoinsert.el (auto-insert-alist):
8036 * ses.el (ses-call-printer):
8037 * subr.el (noreturn):
8038 * emacs-lisp/lisp.el (check-parens):
8039 * emacs-lisp/byte-opt.el (byte-optimize-pure-func):
8040 * net/browse-url.el (browse-url-mosaic):
8041 * progmodes/cc-defs.el (c-safe-scan-lists):
8042 * progmodes/ebnf-abn.el (ebnf-abn-lex):
8043 * progmodes/ebnf-bnf.el (ebnf-bnf-lex):
8044 * progmodes/ebnf-dtd.el (ebnf-dtd-lex):
8045 * progmodes/ebnf-ebx.el (ebnf-ebx-lex):
8046 * progmodes/ebnf-iso.el (ebnf-iso-lex):
8047 * progmodes/ebnf-yac.el (ebnf-yac-lex): Fix spellings.
8048
8049 2005-06-21 Reiner Steib <Reiner.Steib@gmx.de>
8050
8051 * pcvs-defs.el (cvs-menu): Add cvs-mode-mark and cvs-mode-unmark.
8052
8053 2005-06-21 Glenn Morris <gmorris@ast.cam.ac.uk>
8054
8055 * calendar/appt.el (appt-make-list): Activate the package, if
8056 not already active (for backwards compatibility).
8057
8058 2005-06-20 Kim F. Storm <storm@cua.dk>
8059
8060 * subr.el (add-to-ordered-list): Test membership with eq. Simplify.
8061
8062 2005-06-20 Miles Bader <miles@gnu.org>
8063
8064 * faces.el (vertical-divider): New face.
8065
8066 2005-06-20 Juanma Barranquero <lekktu@gmail.com>
8067
8068 * simple.el (kill-whole-line): Doc fix.
8069 (next-error-buffer-p, next-error-find-buffer)
8070 (clone-indirect-buffer): Fix typos in docstrings.
8071 (comment-line-break-function): Doc fix: don't say variable
8072 is automatically buffer-local (it isn't).
8073
8074 2005-06-19 Michael Albinus <michael.albinus@gmx.de>
8075
8076 * net/tramp-ftp.el (top):
8077 * net/tramp-smb.el (top):
8078 * net/tramp-util.el (top):
8079 * net/tramp-uu.el (top):
8080 * net/tramp-vc.el (top):
8081 * net/tramp.el (top): Revert copyright years back to original
8082 ones. Tramp has a life outside GNU Emacs.
8083
8084 2005-06-19 Nick Roberts <nickrob@snap.net.nz>
8085
8086 * tooltip.el (tooltip-use-echo-area): Don't make it obsolete.
8087
8088 2005-06-18 Juri Linkov <juri@jurta.org>
8089
8090 * progmodes/grep.el (grep-regexp-alist): Use backreference at the
8091 end of first regexp to limit the match to the position between
8092 line number and source line with same separator character as used
8093 between file name and line number. In the second regexp limit
8094 mouse-face area to file name and line number by adding new group
8095 for them and referring it in HYPERLINK arg.
8096 (grep-regexp-alist, grep-mode-font-lock-keywords): Use shy group.
8097 (grep-mode): Set font-lock-lines-before to 0 to not refontify the
8098 previous line where grep markers may be already removed.
8099
8100 2005-06-18 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
8101
8102 * progmodes/ps-mode.el: Update version and maintainer's email address.
8103
8104 2005-06-18 Steve Youngs <steve@xemacs.org>
8105
8106 * net/browse-url.el (browse-url-browser-function)
8107 (browse-url-default-browser): Add firefox.
8108 (browse-url-firefox-program, browse-url-firefox-arguments)
8109 (browse-url-firefox-startup-arguments)
8110 (browse-url-firefox-new-window-is-tab): New defcustoms.
8111 (browse-url-firefox, browse-url-firefox-sentinel): New functions.
8112
8113 2005-06-17 Richard M. Stallman <rms@gnu.org>
8114
8115 * startup.el (command-line): Warn if specified user name has
8116 no home directory.
8117
8118 * term.el (term-get-old-input, term-input-filter, term-input-sender)
8119 (term-mode-hook, term-exec-hook, term-escape-char): Doc fixes.
8120
8121 * longlines.el (longlines-mode, longlines-show-hard-newlines):
8122 Doc fixes.
8123
8124 * faces.el (underline): Try bold if terminal doesn't support underline.
8125
8126 * mail/sendmail.el (mail-setup-with-from): New variable.
8127 (mail-insert-from-field): New function.
8128 (sendmail-send-it): Call it.
8129 (mail-setup): Optionally call it here.
8130
8131 * term/linux.el: Call tty-no-underline.
8132
8133 2005-06-17 Luc Teirlinck <teirllm@auburn.edu>
8134
8135 * emacs-lisp/edebug.el (edebug-goto-here): Doc fix.
8136
8137 2005-06-17 Miles Bader <miles@gnu.org>
8138
8139 * ediff-init.el (ediff-current-diff-A, ediff-current-diff-B)
8140 (ediff-current-diff-C, ediff-current-diff-Ancestor)
8141 (ediff-fine-diff-A, ediff-fine-diff-B, ediff-fine-diff-C)
8142 (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
8143 (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
8144 (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
8145 Remove "-face" suffix from face names.
8146 (ediff-current-diff-face-A, ediff-current-diff-face-B)
8147 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
8148 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
8149 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
8150 (ediff-even-diff-face-A, ediff-even-diff-face-B)
8151 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
8152 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
8153 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
8154 New backward-compatibility aliases for renamed faces.
8155 (ediff-current-diff-face-A, ediff-current-diff-face-B)
8156 (ediff-current-diff-face-C, ediff-current-diff-face-Ancestor)
8157 (ediff-fine-diff-face-A, ediff-fine-diff-face-B)
8158 (ediff-fine-diff-face-C, ediff-fine-diff-face-Ancestor)
8159 (ediff-even-diff-face-A, ediff-even-diff-face-B)
8160 (ediff-even-diff-face-C, ediff-even-diff-face-Ancestor)
8161 (ediff-odd-diff-face-A, ediff-odd-diff-face-B)
8162 (ediff-odd-diff-face-C, ediff-odd-diff-face-Ancestor):
8163 Use renamed ediff faces.
8164
8165 * eshell/esh-test.el (eshell-test-ok, eshell-test-failed):
8166 Remove "-face" suffix from face names.
8167 (eshell-test-ok-face, eshell-test-failed-face):
8168 New backward-compatibility aliases for renamed faces.
8169 (eshell-run-test): Use renamed eshell-test faces.
8170
8171 * eshell/em-prompt.el (eshell-prompt): Remove "-face" suffix from
8172 face name.
8173 (eshell-prompt-face): New backward-compatibility alias for renamed
8174 face.
8175 (eshell-emit-prompt): Use renamed eshell-prompt face.
8176
8177 * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink)
8178 (eshell-ls-executable, eshell-ls-readonly, eshell-ls-unreadable)
8179 (eshell-ls-special, eshell-ls-missing, eshell-ls-archive)
8180 (eshell-ls-backup, eshell-ls-product, eshell-ls-clutter):
8181 Remove "-face" suffix from face names.
8182 (eshell-ls-directory-face, eshell-ls-symlink-face)
8183 (eshell-ls-executable-face, eshell-ls-readonly-face)
8184 (eshell-ls-unreadable-face, eshell-ls-special-face)
8185 (eshell-ls-missing-face, eshell-ls-archive-face)
8186 (eshell-ls-backup-face, eshell-ls-product-face)
8187 (eshell-ls-clutter-face):
8188 New backward-compatibility aliases for renamed faces.
8189 (eshell-ls-decorated-name): Use renamed eshell-ls faces.
8190
8191 * progmodes/cc-fonts.el (c-nonbreakable-space-face):
8192 Remove "-face" suffix from face name.
8193 (c-cpp-matchers): Use the variable `c-nonbreakable-space-face'
8194 instead of literal face.
8195
8196 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
8197
8198 * emacs-lisp/warnings.el (display-warning, lwarn)
8199 (warning-minimum-log-level): Doc fixes.
8200 (warning-minimum-level, warning-minimum-log-level):
8201 Add :debug to :type choices.
8202
8203 * progmodes/ada-mode.el (ada-format-paramlist)
8204 (ada-get-indent-case, ada-check-matching-start)
8205 (ada-check-defun-name, ada-goto-matching-decl-start)
8206 (ada-goto-matching-start, ada-goto-matching-end, ada-tab)
8207 (ada-untab, ada-move-to-start, ada-fill-comment-paragraph)
8208 (ada-make-subprogram-body): Follow error conventions.
8209 (ada-case-exception-file, ada-indent-comment-as-code)
8210 (ada-indent-handle-comment-special, ada-indent-renames)
8211 (ada-indent-return, ada-search-directories-internal)
8212 (ada-tab-policy, ada-case-exception-substring)
8213 (ada-other-file-alist, ada-matching-start-re)
8214 (ada-matching-decl-start-re, ada-contextual-menu-last-point)
8215 (ada-imenu-generic-expression, ada-compile-goto-error)
8216 (ada-in-comment-p, ada-in-string-p, ada-in-string-or-comment-p)
8217 (ada-popup-menu, ada-add-extensions, ada-mode)
8218 (ada-region-selected, ada-create-case-exception)
8219 (ada-create-case-exception-substring, ada-after-keyword-p)
8220 (ada-activate-keys-for-case, ada-adjust-case-region)
8221 (ada-adjust-case-buffer, ada-format-paramlist)
8222 (ada-scan-paramlist, ada-insert-paramlist)
8223 (ada-indent-newline-indent)
8224 (ada-indent-newline-indent-conditional)
8225 (ada-justified-indent-current, ada-goto-previous-word)
8226 (ada-indent-current, ada-get-indent-open-paren)
8227 (ada-get-indent-paramlist, ada-get-indent-end)
8228 (ada-get-indent-case, ada-get-indent-when, ada-get-indent-if)
8229 (ada-get-indent-block-start, ada-get-indent-subprog)
8230 (ada-get-indent-noindent, ada-get-indent-label)
8231 (ada-get-indent-loop, ada-get-indent-type, ada-goto-stmt-start)
8232 (ada-search-prev-end-stmt, ada-goto-next-non-ws)
8233 (ada-goto-stmt-end, ada-goto-next-word)
8234 (ada-check-matching-start, ada-check-defun-name)
8235 (ada-goto-matching-decl-start, ada-goto-matching-start)
8236 (ada-goto-matching-end, ada-search-ignore-string-comment)
8237 (ada-in-decl-p, ada-looking-at-semi-or)
8238 (ada-looking-at-semi-private, ada-in-paramlist-p)
8239 (ada-in-open-paren-p, ada-tab, ada-indent-current-function)
8240 (ada-untab-hard, ada-move-to-start, ada-move-to-end)
8241 (ada-next-procedure, ada-previous-procedure, ada-next-package)
8242 (ada-previous-package, ada-create-menu)
8243 (ada-fill-comment-paragraph-justify)
8244 (ada-fill-comment-paragraph-postfix, ada-fill-comment-paragraph)
8245 (ada-other-file-name, ada-last-which-function-line)
8246 (ada-last-which-function-subprog, ada-which-function)
8247 (ada-get-body-name, ada-outline-level, ada-narrow-to-defun)
8248 (ada-gen-treat-proc, ada-check-emacs-version)
8249 (ada-continuation-indent, ada-align-region-separate):
8250 Fix typos in docstrings.
8251 (ada-adjust-case, ada-adjust-case-interactive): Doc fixes.
8252
8253 2005-06-16 Lute Kamstra <lute@gnu.org>
8254
8255 * simple.el (fundamental-mode): Run after-change-major-mode-hook
8256 conditionally.
8257
8258 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
8259
8260 * comint.el (comint-replace-by-expanded-filename)
8261 (comint-prompt-regexp, comint-delimiter-argument-list)
8262 (comint-preinput-scroll-to-bottom):
8263 * info.el (Info-hide-cookies-node):
8264 * ls-lisp.el (ls-lisp-classify):
8265 * find-file.el (ff-search-directories, ff-special-constructs)
8266 (ff-find-other-file):
8267 * font-lock.el (font-lock-keywords):
8268 * shell.el (shell-prompt-pattern)
8269 (shell-dynamic-complete-functions, shell-mode)
8270 (shell-delimiter-argument-list):
8271 * term.el (term-replace-by-expanded-filename)
8272 (term-prompt-regexp, term-delimiter-argument-list):
8273 * woman.el (woman-ignore, woman0-if):
8274 * emacs-lisp/derived.el (derived-mode-init-mode-variables):
8275 * emacs-lisp/elint.el (elint-init-env):
8276 * emacs-lisp/regexp-opt.el (regexp-opt-depth):
8277 * eshell/esh-mode.el (eshell-preinput-scroll-to-bottom):
8278 * language/ethio-util.el (ethio-tilde-escape)
8279 (ethio-use-three-dot-question):
8280 * net/zone-mode.el (zone-mode-load-time-setup):
8281 * progmodes/cc-align.el (c-lineup-argcont):
8282 * progmodes/cc-awk.el (c-awk-beginning-of-defun):
8283 * progmodes/cperl-mode.el (cperl-set-style-back):
8284 * progmodes/inf-lisp.el (inferior-lisp-prompt):
8285 * progmodes/vhdl-mode.el (vhdl-beginning-of-libunit):
8286 Fix spellings in docstrings.
8287
8288 * textmodes/sgml-mode.el (sgml-calculate-indent, html-tag-help):
8289 * progmodes/modula2.el (m2-for): Fix spellings.
8290
8291 * menu-bar.el (menu-bar-games-menu): Fix typo in menu help string.
8292
8293 * simple.el (undo-more): Don't use `format' on `error' arguments.
8294 Improve argument/docstring consistency.
8295 (pending-undo-list): Doc fix.
8296
8297 * smerge-mode.el (smerge-ensure-match):
8298 * emulation/vip.el (vip-ex):
8299 * net/zone-mode.el (zone-mode-update-serial):
8300 * progmodes/idlwave.el (idlwave-complete):
8301 * progmodes/vhdl-mode.el (vhdl-visit-file)
8302 (vhdl-compose-wire-components):
8303 Don't use `format' on `error' arguments.
8304
8305 * tooltip.el (tooltip-start-delayed-tip, tooltip-timeout)
8306 (tooltip-use-echo-area, tooltip-process-prompt-regexp)
8307 (tooltip-help-tips): Fix typos in docstrings.
8308
8309 2005-06-16 David Ponce <david@dponce.com>
8310
8311 * tree-widget.el (tree-widget-value-create): Simplify last change.
8312
8313 2005-06-15 Matt Hodges <MPHodges@member.fsf.org>
8314
8315 * ido.el (ido-incomplete-regexp): New variable.
8316 (ido-set-matches-1): Handle invalid-regexp error and set
8317 ido-incomplete-regexp.
8318 (ido-incomplete-regexp): New face.
8319 (ido-completions): Use it.
8320 (ido-complete, ido-exit-minibuffer, ido-completions):
8321 Handle incomplete regexps.
8322 (ido-completions): Add check for complete match when entering a regexp.
8323
8324 2005-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
8325
8326 * subr.el (add-to-ordered-list): Use a weak hash-table to avoid leaks.
8327
8328 2005-06-15 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
8329
8330 * textmodes/bibtex.el (bibtex-Preamble): Enclose BibTeX preamble
8331 by field delimiters.
8332
8333 2005-06-15 David Ponce <david@dponce.com>
8334
8335 * tree-widget.el: eval-and-compile inlined functions so they will
8336 be available at run-time too.
8337 (tree-widget-super-format-handler)
8338 (tree-widget-format-handler): Remove.
8339 (tree-widget-value-create): Handle the :indent property.
8340
8341 2005-06-15 Miles Bader <miles@gnu.org>
8342
8343 * progmodes/which-func.el (which-func): Only inherit
8344 `font-lock-function-name-face' when that makes sense against the
8345 default mode-line face, otherwise set the face color explicitly.
8346
8347 * progmodes/cperl-mode.el (cperl-init-faces): Use literal cperl
8348 faces instead of (non-existent) variables.
8349
8350 2005-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
8351
8352 * iswitchb.el (iswitchb-to-end): Replace mapcar with dolist.
8353 (iswitchb-get-matched-buffers): Likewise. Simplify.
8354
8355 2005-06-14 Miles Bader <miles@gnu.org>
8356
8357 * progmodes/ld-script.el (ld-script-location-counter):
8358 Remove "-face" suffix from face name.
8359 (ld-script-location-counter-face):
8360 New backward-compatibility alias for renamed face.
8361 (ld-script-location-counter-face): Use renamed face.
8362
8363 * progmodes/cperl-mode.el (cperl-nonoverridable, cperl-array)
8364 (cperl-hash): Remove "-face" suffix from face names.
8365 (cperl-nonoverridable-face, cperl-array-face, cperl-hash-face):
8366 New backward-compatibility aliases for renamed faces.
8367 (cperl-find-pods-heres, cperl-init-faces, cperl-ps-print-init)
8368 (cperl-ps-print-face-properties): Use renamed cperl-mode faces.
8369
8370 * progmodes/which-func.el (which-func): Remove "-face" suffix from face
8371 name.
8372 (which-func-face): New backward-compatibility alias for renamed face.
8373 (which-func-format): Use renamed which-func face.
8374
8375 * progmodes/vhdl-mode.el (vhdl-prompt, vhdl-attribute, vhdl-enumvalue)
8376 (vhdl-function, vhdl-directive, vhdl-reserved-word)
8377 (vhdl-translate-off): Remove "-face" suffix and "font-lock-" from face
8378 names.
8379 (vhdl-speedbar-entity, vhdl-speedbar-architecture)
8380 (vhdl-speedbar-configuration, vhdl-speedbar-package)
8381 (vhdl-speedbar-library, vhdl-speedbar-instantiation)
8382 (vhdl-speedbar-subprogram, vhdl-speedbar-entity-selected)
8383 (vhdl-speedbar-architecture-selected)
8384 (vhdl-speedbar-configuration-selected)
8385 (vhdl-speedbar-package-selected)
8386 (vhdl-speedbar-instantiation-selected): Remove "-face" suffix from face
8387 names.
8388 (vhdl-font-lock-keywords-2, vhdl-font-lock-keywords-5):
8389 Use renamed faces.
8390 (vhdl-prompt-face, vhdl-attribute-face, vhdl-enumvalue-face)
8391 (vhdl-function-face, vhdl-directive-face, vhdl-reserved-words-face)
8392 (vhdl-translate-off-face): Variables renamed to remove "font-lock-".
8393 Use renamed faces.
8394 (syntax-alist): Don't use "font-lock-" or "-face" in generated face
8395 names.
8396 (vhdl-font-lock-init, vhdl-ps-print-settings): Use renamed faces.
8397 (vhdl-speedbar-insert-hierarchy, vhdl-speedbar-expand-entity)
8398 (vhdl-speedbar-expand-package, vhdl-speedbar-update-current-unit)
8399 (vhdl-speedbar-make-inst-line, vhdl-speedbar-make-pack-line)
8400 (vhdl-speedbar-make-subpack-line, vhdl-speedbar-make-subprogram-line)
8401 (vhdl-speedbar-item-info, vhdl-speedbar-check-unit): Use renamed faces.
8402
8403 * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
8404 face name.
8405 (sh-heredoc-face): New backward-compatibility alias for renamed face.
8406 (sh-heredoc-face): Use renamed sh-heredoc face.
8407
8408 * progmodes/idlw-help.el (idlwave-help-link):
8409 Remove "-face" suffix from face name.
8410 (idlwave-help-link-face):
8411 New backward-compatibility alias for renamed face.
8412 (idlwave-highlight-linked-completions): Use renamed idlwave-help faces.
8413
8414 * progmodes/idlw-shell.el (idlwave-shell-bp-face)
8415 (idlwave-shell-disabled-bp): Remove "-face" suffix from face names.
8416 (idlwave-shell-bp-face, idlwave-shell-disabled-bp):
8417 New backward-compatibility aliases for renamed faces.
8418 (idlwave-shell-disabled-breakpoint-face)
8419 (idlwave-shell-breakpoint-face): Use renamed idlwave-shell faces.
8420
8421 * progmodes/flymake.el (flymake-errline, flymake-warnline):
8422 Remove "-face" suffix from face names.
8423 (flymake-errline-face, flymake-warnline-face):
8424 New backward-compatibility aliases for renamed faces.
8425 (flymake-highlight-line): Use renamed flymake faces.
8426
8427 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
8428 (ebrowse-file-name, ebrowse-default, ebrowse-member-attribute)
8429 (ebrowse-member-class, ebrowse-progress):
8430 Remove "-face" suffix from face names.
8431 (ebrowse-tree-mark-face, ebrowse-root-class-face)
8432 (ebrowse-file-name-face, ebrowse-default-face)
8433 (ebrowse-member-attribute-face, ebrowse-member-class-face)
8434 (ebrowse-progress-face):
8435 New backward-compatibility aliases for renamed faces.
8436 (ebrowse-show-progress, ebrowse-show-file-name-at-point)
8437 (ebrowse-set-mark-props, ebrowse-draw-tree-fn)
8438 (ebrowse-draw-member-buffer-class-line, ebrowse-draw-member-long-fn)
8439 (ebrowse-draw-member-short-fn): Use renamed ebrowse faces.
8440
8441 * progmodes/antlr-mode.el (antlr-default, antlr-keyword,
8442 antlr-syntax)
8443 (antlr-ruledef, antlr-tokendef, antlr-ruleref, antlr-tokenref)
8444 (antlr-literal): Remove "-face" suffix and "font-lock-" from face
8445 names.
8446 (antlr-font-lock-default-face, antlr-font-lock-keyword-face)
8447 (antlr-font-lock-syntax-face, antlr-font-lock-ruledef-face)
8448 (antlr-font-lock-tokendef-face, antlr-font-lock-ruleref-face)
8449 (antlr-font-lock-tokenref-face, antlr-font-lock-literal-face): New
8450 backward-compatibility aliases for renamed faces.
8451 (antlr-default-face, antlr-keyword-face, antlr-syntax-face)
8452 (antlr-ruledef-face, antlr-tokendef-face, antlr-ruleref-face)
8453 (antlr-tokenref-face, antlr-literal-face): Variables renamed to
8454 remove "font-lock-". Use renamed antlr-mode faces.
8455 (antlr-font-lock-additional-keywords): Use renamed faces. Replace
8456 literal face-names with face variable references.
8457
8458 * buff-menu.el (Buffer-menu-buffer): Remove "-face" suffix from
8459 face name.
8460 (Buffer-menu-buffer-face): New backward-compatibility alias for
8461 renamed face.
8462 (list-buffers-noselect): Use renamed Buffer-menu-buffer face.
8463
8464 2005-06-15 Daniel Pfeiffer <occitan@esperanto.org>
8465
8466 * progmodes/make-mode.el (makefile-space, makefile-makepp-perl):
8467 Eliminate "-face" suffix.
8468 (makefile-targets): Inherit from font-lock-function-name-face and
8469 eliminate "-face" suffix.
8470 (makefile-shell): Remove attributes and eliminate "-face" suffix.
8471 (makefile-*-font-lock-keywords): Append makefile-targets in rule
8472 actions, instead of prepending, to make it less visible.
8473 (makefile-previous-dependency, makefile-match-dependency):
8474 Don't match a target on a continuation line.
8475
8476 * files.el (auto-mode-alist): Put Makefile in gmake mode.
8477
8478 2005-06-15 Nick Roberts <nickrob@snap.net.nz>
8479
8480 * progmodes/gdb-ui.el (menu): Re-order menu items.
8481 (gdb-tooltip-print): Respect tooltip-use-echo-area.
8482
8483 * progmodes/gud.el (tooltip-use-echo-area): Remove alias.
8484 Define in tooltip.el.
8485 (gud-tooltip-process-output): Respect tooltip-use-echo-area.
8486 (gud-tooltip-tips): Respect tooltip-use-echo-area and
8487 gud-tooltip-echo-area.
8488
8489 * tooltip.el (tooltip-use-echo-area): Restore from gud.el for
8490 backward compatibility and make obsolete.
8491 (tooltip-help-tips): Use tooltip-use-echo-area.
8492 (tooltip-show-help-function): Rename to...
8493 (tooltip-show-help): ...this, because it is a function.
8494 (tooltip-mode, tooltip-help-message): Call tooltip-show-help.
8495
8496 2005-06-14 Luc Teirlinck <teirllm@auburn.edu>
8497
8498 * emacs-lisp/edebug.el (edebug-all-defs, edebug-initial-mode)
8499 (edebug-print-length, edebug-print-level, edebug-print-circle)
8500 (edebug-modify-breakpoint, edebug-eval-last-sexp)
8501 (edebug-eval-print-last-sexp): Doc fixes.
8502
8503 2005-06-14 Kim F. Storm <storm@cua.dk>
8504
8505 * ido.el (ido-mode): Make a new keymap every time we enable ido,
8506 as the coverage buffer/file/both may change.
8507
8508 2005-06-14 Lute Kamstra <lute@gnu.org>
8509
8510 * net/ange-ftp.el (internal-ange-ftp-mode): Use delay-mode-hooks
8511 and run-mode-hooks. Simplify.
8512
8513 * mail/rmailedit.el (rmail-edit-mode):
8514 * progmodes/octave-inf.el (inferior-octave-mode):
8515 * progmodes/sql.el (sql-interactive-mode): Use delay-mode-hooks.
8516
8517 * recentf.el (recentf-dialog-mode): Use kill-all-local-variables
8518 and run-mode-hooks.
8519 (recentf-edit-list, recentf-open-files): Don't call
8520 kill-all-local-variables directly.
8521
8522 * emacs-lisp/debug.el (debug-on-entry): Fix docstring.
8523
8524 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
8525
8526 * emacs-lisp/byte-run.el (make-obsolete)
8527 (define-obsolete-function-alias): Rename arguments FUNCTION and
8528 NEW to OBSOLETE-NAME and CURRENT-NAME respectively.
8529 (make-obsolete-variable, define-obsolete-variable-alias):
8530 Rename arguments VARIABLE and NEW to OBSOLETE-NAME and CURRENT-NAME
8531 respectively.
8532
8533 * isearchb.el (isearchb-activate):
8534 * pcvs.el (cvs-mode):
8535 * ses.el (ses-load):
8536 * vc-arch.el (vc-arch-checkin, vc-arch-diff):
8537 * net/tramp.el (tramp-find-file-exists-command)
8538 (tramp-find-shell):
8539 * progmodes/ada-mode.el (ada-create-case-exception)
8540 (ada-create-case-exception-substring, ada-make-subprogram-body):
8541 * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
8542 * progmodes/idlwave.el (idlwave-complete-class-structure-tag-help):
8543 * progmodes/vhdl-mode.el (vhdl-speedbar-place-component):
8544 * textmodes/org.el (org-promote, org-evaluate-time-range)
8545 (org-agenda-next-date-line, org-agenda-previous-date-line)
8546 (org-agenda-error, org-open-at-point, org-table-move-row)
8547 (org-format-table-table-html-using-table-generate-source)
8548 (org-shiftcursor-error, org-ctrl-c-ctrl-c):
8549 * textmodes/reftex.el (reftex-access-scan-info):
8550 * textmodes/reftex-toc.el (reftex-toc-dframe-p)
8551 (reftex-toc-promote-prepare): Follow error conventions.
8552
8553 * diff-mode.el (diff-mode): Fix typo in docstring.
8554
8555 * forms.el (forms--intuit-from-file): Fix reference to
8556 `forms-number-of-fields' in error message.
8557 (forms-print): Fix quoting in error message.
8558
8559 * forms.el (forms-mode):
8560 * emulation/vi.el (vi-goto-insert-state):
8561 * progmodes/flymake.el (flymake-new-err-info)
8562 (flymake-start-syntax-check-for-current-buffer)
8563 (flymake-simple-cleanup):
8564 * eshell/esh-var.el (eshell/export):
8565 * progmodes/gud.el (xdb):
8566 * textmodes/flyspell.el (flyspell-incorrect-hook)
8567 (flyspell-maybe-correct-transposition)
8568 (flyspell-maybe-correct-doubling): Fix quoting in docstring.
8569
8570 2005-06-13 Luc Teirlinck <teirllm@auburn.edu>
8571
8572 * emacs-lisp/debug.el (cancel-debug-on-entry): Mention default in
8573 minibuffer prompt.
8574
8575 2005-06-13 Kim F. Storm <storm@cua.dk>
8576
8577 * subr.el (add-to-ordered-list): New defun.
8578
8579 * emulation/cua-base.el (cua-mode): Use add-to-ordered-list to
8580 add cua--keymap-alist to emulation-mode-map-alists.
8581
8582 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
8583
8584 * subr.el (complete-in-turn): New macro.
8585 (dynamic-completion-table, lazy-completion-table): Add debug info.
8586
8587 * faces.el (read-face-name): Use complete-in-turn complete non-aliases
8588 in preference to face aliases.
8589
8590 * textmodes/fill.el (fill-match-adaptive-prefix): New function.
8591 (fill-context-prefix): Use it to avoid guessing absurdly long prefixes.
8592 Remove unused vars `start' and `firstline'.
8593 (fill-nobreak-p): Fix line-move-invisible -> line-move-invisible-p.
8594 (justify-current-line, fill-individual-paragraphs): Remove unused vars.
8595
8596 2005-06-13 Eli Zaretskii <eliz@gnu.org>
8597
8598 * cus-start.el (all): Don't complain about missing GTK-related
8599 variables, unless either `gtk' is boundp or this isn't a
8600 `windows-nt' build.
8601
8602 2005-06-13 Lute Kamstra <lute@gnu.org>
8603
8604 * abbrev.el (edit-abbrevs-mode): Use kill-all-local-variables and
8605 run-mode-hooks.
8606
8607 * ediff-mult.el (ediff-meta-mode):
8608 * ediff-util.el (ediff-mode): Use run-mode-hooks.
8609
8610 * ledit.el (ledit-mode): Use delay-mode-hooks.
8611
8612 * woman.el (woman-mode-line-format): Delete constant.
8613 (woman-mode-map): Initialize it properly.
8614 (woman-mode): Set mode-class property to special.
8615 Use delay-mode-hooks and run-mode-hooks. Use the right keymap.
8616 Set major-mode and mode-name. Don't set mode-line-format directly.
8617 (Man-getpage-in-background): Don't reference woman-mode-line-format.
8618
8619 * emacs-lisp/debug.el (cancel-debug-on-entry): Make the empty
8620 string argument obsolete.
8621
8622 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
8623
8624 * textmodes/org.el (org-CUA-compatible): New option.
8625 (org-disputed-keys): New variable.
8626 (org-key): New function.
8627 (orgtbl-make-binding): Add docstring to the created function.
8628 (org-mode): Set paragraph start/separate regexps.
8629 (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
8630 (org-archive-location, org-archive-mark-done)
8631 (org-archive-stamp-time): New options.
8632 (org-archive-subtree): New command.
8633 (org-fill-paragraph): New function.
8634 (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
8635 (org-fake-empty-table-line): Function removed.
8636 (org-format-org-table-html): Do not create empty table lines at
8637 separator lines. Improved table header treatment.
8638 (org-link-format): New option.
8639 (org-make-link): New function.
8640 (org-insert-link, org-store-link): Use org-make-link.
8641 (org-open-file): Quote file name for shell command, to allow
8642 spaces in file names.
8643 (org-link-regexp): Fix bug with mailto link.
8644 (org-link-maybe-angles-regexp, org-protected-link-regexp):
8645 New constants.
8646 (org-export-as-html): Deal with the optional angles around a link.
8647 Better treatment of file: links.
8648 (org-open-at-point): Replace @{ and @} with < and >.
8649 (org-run-mode-hooks): Function removed.
8650 (org-agenda-mode): No longer use `org-run-mode-hooks'.
8651
8652 2005-06-13 Nick Roberts <nickrob@snap.net.nz>
8653
8654 * progmodes/gdb-ui.el (gdb-registers-mode): Let gdbmi use
8655 MI command -data-list-register-values.
8656 (gdb-post-prompt): Indent properly.
8657
8658 2005-06-13 Juanma Barranquero <lekktu@gmail.com>
8659
8660 * hilit-chg.el (highlight-changes-colors): Rename from
8661 `highlight-changes-colours'.
8662 (highlight-changes-colours): Keep as obsolete alias.
8663 (highlight-changes-face-list): Doc fix.
8664 (hilit-chg-make-list): Use `highlight-changes-colors'.
8665
8666 2005-06-12 Mark A. Hershberger <mah@everybody.org>
8667
8668 * progmodes/cperl-mode.el (cperl-mode): Remove stray paren in
8669 defun-prompt-regexp.
8670
8671 2005-06-12 Eli Zaretskii <eliz@gnu.org>
8672
8673 * loadup.el: Don't say we are dumping under 2 names on windows-nt
8674 and cygwin.
8675
8676 * makefile.w32-in (bootstrap-clean-CMD, bootstrap-clean-SH):
8677 Don't use an old loaddefs.el, as in Makefile.in.
8678
8679 2005-06-12 Lute Kamstra <lute@gnu.org>
8680
8681 * Makefile.in (bootstrap-prepare): Don't use an old loaddefs.el.
8682
8683 * man.el (Man-mode-map): Initialize it properly.
8684 (Man-mode): Set mode-class property to special.
8685
8686 * calendar/calendar.el (calendar-mode): Use run-mode-hooks.
8687
8688 2005-06-11 Luc Teirlinck <teirllm@auburn.edu>
8689
8690 * menu-bar.el (menu-bar-make-toggle): Remove stray backslash.
8691 A newline is needed in the docstring there.
8692
8693 * emacs-lisp/debug.el (debug-on-entry, cancel-debug-on-entry):
8694 Doc fixes.
8695
8696 2005-06-11 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8697
8698 * printing.el: Doc fix. The menubar is no more changed when printing
8699 is loaded, it only changes when pr-menu-bind or pr-update-menus is
8700 called. Now, the menubar changing will work in Emacs 20, 21 and 22.
8701 (pr-version): New version number (6.8.4).
8702 (pr-menu-bind): New command.
8703 (pr-update-menus): Docstring and code fix.
8704 (pr-menu-print-item): Now is a global var in Emacs and XEmacs.
8705 Docstring fix.
8706 (pr-txt-printer-alist, pr-ps-printer-alist, pr-gv-command)
8707 (pr-gs-command, pr-gs-switches, pr-ps-utility-alist): Docstring fix.
8708
8709 2005-06-11 Thien-Thi Nguyen <ttn@gnu.org>
8710
8711 * emacs-lisp/ewoc.el: Doc fixes for public funcs:
8712 "Returns" to "return", document useful return values, etc.
8713
8714 2005-06-11 Alan Mackenzie <acm@muc.de>
8715
8716 * fill.el (fill-context-prefix): Try `adaptive-fill-function'
8717 BEFORE `adaptive-fill-regexp' when determining a fill prefix.
8718 (adaptive-file-function): Minor amendment to doc-string.
8719
8720 2005-06-11 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
8721
8722 * thumbs.el (thumbs-per-line, thumbs-thumbsdir-max-size)
8723 (thumbs-relief, thumbs-margin, thumbs-image-resizing-step):
8724 Fix :type--it is `integer', not `string'.
8725
8726 * faces.el (modeline-highlight): Rename from (the erroneous)
8727 `modeline-higilight'.
8728
8729 2005-06-11 Lute Kamstra <lute@gnu.org>
8730
8731 * emacs-lisp/edebug.el (edebug-eval-mode-map): Don't copy
8732 lisp-interaction-mode-map but make it the parent.
8733 (edebug-eval-mode): Use define-derived-mode.
8734
8735 2005-06-11 Andreas Schwab <schwab@suse.de>
8736
8737 * bindings.el: Add binding of `ESC functionkey' for every
8738 `M-functionkey'.
8739 * hexl.el (hexl-mode-map): Likewise.
8740
8741 2005-06-10 Michael Hotchin <michael@hotchin.net> (tiny change)
8742
8743 * progmodes/compile.el (compilation-error-regexp-alist-alist)
8744 [msft]: update regexp for newer msft compilers.
8745
8746 2005-06-10 Mark A. Hershberger <mah@everybody.org>
8747
8748 * xml.el (start-chars, xml-parse-dtd): Add the ability to skip
8749 ATTLIST portions of included DTDs.
8750 (xml-parse-dtd): Eliminate use of inefficient match-data.
8751
8752 2005-06-10 Miles Bader <miles@gnu.org>
8753
8754 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
8755 (mpuz-text): Remove "-face" suffix from face names.
8756 (mpuz-unsolved-face, mpuz-solved-face, mpuz-trivial-face)
8757 (mpuz-text-face): New backward-compatibility aliases for renamed faces.
8758 (mpuz-create-buffer, mpuz-paint-digit): Use renamed mpuz faces.
8759
8760 * play/gomoku.el (gomoku-O, gomoku-X):
8761 Remove "-face" suffix from face names.
8762 (gomoku-font-lock-O-face, gomoku-font-lock-X-face):
8763 New backward-compatibility aliases for renamed faces.
8764 (gomoku-font-lock-keywords): Use renamed gomoku faces.
8765
8766 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
8767
8768 * thumbs.el: Fixes for changes of 2005-06-09.
8769 (thumbs-thumbsdir): Force `thumbs-thumbsdir' to be interpretable
8770 as a directory.
8771 (thumbs-thumbname): Remove directory separator from format string;
8772 `thumbs-thumbsdir' now returns a valid directory name.
8773 (thumbs-temp-dir): New defsubst.
8774 (thumbs-temp-file, thumbs-resize-image, thumbs-modify-image):
8775 Use it.
8776
8777 * cus-edit.el (minibuffer):
8778 * files.el (make-backup-file-name-function):
8779 * filesets.el (filesets-external-viewers):
8780 * hilit-chg.el (highlight-changes-colours)
8781 (highlight-changes-face-list, highlight-changes-rotate-faces):
8782 * ielm.el (ielm-dynamic-return, inferior-emacs-lisp-mode):
8783 * kmacro.el (kmacro-call-macro):
8784 * log-edit.el (log-edit-changelog-full-paragraphs):
8785 * mouse.el (mouse-1-click-follows-link):
8786 * skeleton.el (skeleton-autowrap):
8787 * subr.el (insert-for-yank-1):
8788 * tempo.el (tempo-insert-region):
8789 * terminal.el (terminal-emulator):
8790 * time.el (display-time-mail-face):
8791 * vc.el (vc-annotate):
8792 * vcursor.el (vcursor-copy-line):
8793 * woman.el (woman-bold-headings, woman-ignore)
8794 (woman-default-faces, woman-monochrome-faces):
8795 * calendar/todo-mode.el (todo-insert-threshold):
8796 * emulation/pc-select.el (pc-select-selection-keys-only)
8797 (pc-selection-mode):
8798 * emulation/vip.el (vip-find-char-forward):
8799 * emulation/viper-cmd.el (viper-find-char-forward):
8800 * international/mule-cmds.el
8801 (select-safe-coding-system-accept-default-p)
8802 (input-method-exit-on-invalid-key):
8803 * international/mule-diag.el (describe-coding-system):
8804 * international/ucs-tables.el (unify-8859-on-encoding-mode):
8805 * net/browse-url.el (browse-url-xterm-program):
8806 * obsolete/lazy-lock.el (lazy-lock-mode):
8807 * progmodes/cperl-mode.el (cperl-info-on-command-no-prompt)
8808 (cperl-mode):
8809 * progmodes/cpp.el (cpp-face-light-name-list)
8810 (cpp-face-dark-name-list):
8811 * progmodes/delphi.el (delphi-newline-always-indents):
8812 Fix spellings in docstrings.
8813
8814 * ido.el (ido-mode, ido-file-extensions-order)
8815 (ido-default-file-method, ido-default-buffer-method)
8816 (ido-max-prospects, ido-slow-ftp-hosts, ido-setup-hook)
8817 (ido-decorations, ido-read-file-name-as-directory-commands)
8818 (ido-read-file-name-non-ido, ido-work-directory-list)
8819 (ido-ignore-item-temp-list, ido-current-directory)
8820 (ido-magic-forward-char, ido-enter-find-file)
8821 (ido-enter-switch-buffer, ido-visit-buffer, ido-switch-buffer)
8822 (ido-find-file, ido-read-buffer): Fix typos in docstrings.
8823
8824 2005-06-10 Lute Kamstra <lute@gnu.org>
8825
8826 * play/dunnet.el (dun-mode): Use define-derived-mode.
8827 (dungeon-mode-map): Rename to dun-mode-map. Keep old name as an
8828 obsolete alias.
8829
8830 * play/doctor.el (doctor-mode-map): Remove defvar.
8831 (doctor-mode): Use define-derived-mode.
8832
8833 * mail/mspools.el (mspools-mode):
8834 * net/eudc-hotlist.el (eudc-hotlist-mode):
8835 * play/blackbox.el (blackbox-mode): Use run-mode-hooks.
8836
8837 2005-06-10 Miles Bader <miles@gnu.org>
8838
8839 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
8840 Remove "-face" suffix from face names.
8841 (flyspell-incorrect-face, flyspell-duplicate-face):
8842 New backward-compatibility aliases for renamed faces.
8843 (flyspell-mode-on, make-flyspell-overlay)
8844 (flyspell-highlight-incorrect-region)
8845 (flyspell-highlight-duplicate-region)
8846 (flyspell-display-next-corrections)
8847 (flyspell-auto-correct-previous-word): Use renamed flyspell faces.
8848
8849 * textmodes/texinfo.el (texinfo-heading): Remove "-face" suffix
8850 from face name.
8851 (texinfo-heading-face): New backward-compatibility alias for
8852 renamed face.
8853 (texinfo-heading-face): Use renamed texinfo-heading face.
8854
8855 * textmodes/tex-mode.el (tex-math, tex-verbatim): Remove "-face"
8856 suffix from face names.
8857 (tex-math-face, tex-verbatim-face):
8858 New backward-compatibility aliases for renamed faces.
8859 (tex-math-face, tex-verbatim-face): Use renamed tex-mode faces.
8860 (tex-insert-quote): Use `tex-verbatim-face' variable instead of
8861 literal face name.
8862
8863 * textmodes/table.el (table-cell): Remove "-face" suffix from face
8864 name.
8865 (table-cell-face): New backward-compatibility alias for renamed face.
8866 (table--put-cell-face-property, table--update-cell-face):
8867 Use renamed table-cell face.
8868
8869 * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix
8870 from face name.
8871 (sgml-namespace-face): New backward-compatibility alias for
8872 renamed face.
8873 (sgml-namespace-face): Use renamed sgml-namespace face.
8874
8875 * textmodes/org.el (org-level-1, org-level-2, org-level-3)
8876 (org-level-4, org-level-5, org-level-6, org-level-7)
8877 (org-level-8, org-warning, org-headline-done)
8878 (org-deadline-announce, org-scheduled-today)
8879 (org-scheduled-previously, org-link, org-done, org-table)
8880 (org-time-grid): Remove "-face" suffix from face names.
8881 (org-level-1-face, org-level-2-face, org-level-3-face)
8882 (org-level-4-face, org-level-5-face, org-level-6-face)
8883 (org-level-7-face, org-level-8-face, org-warning-face)
8884 (org-headline-done-face, org-deadline-announce-face)
8885 (org-scheduled-today-face, org-scheduled-previously-face)
8886 (org-link-face, org-done-face, org-table-face)
8887 (org-time-grid-face):
8888 New backward-compatibility aliases for renamed faces.
8889 (org-level-faces, org-set-font-lock-defaults, org-timeline)
8890 (org-agenda, org-agenda-get-todos, org-agenda-get-deadlines)
8891 (org-agenda-get-timestamps, org-agenda-get-scheduled)
8892 (org-agenda-add-time-grid-maybe, org-table-p): Use renamed org faces.
8893
8894 * emulation/viper-init.el (viper-search, viper-replace-overlay)
8895 (viper-minibuffer-emacs, viper-minibuffer-insert)
8896 (viper-minibuffer-vi): Remove "-face" suffix from face names.
8897 (viper-search-face, viper-replace-overlay-face)
8898 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
8899 (viper-minibuffer-vi-face):
8900 New backward-compatibility aliases for renamed faces.
8901 (viper-search-face, viper-replace-overlay-face)
8902 (viper-minibuffer-emacs-face, viper-minibuffer-insert-face)
8903 (viper-minibuffer-vi-face): Use renamed viper faces.
8904
8905 * emacs-lisp/testcover.el (testcover-nohits, testcover-1value):
8906 Remove "-face" suffix from face names.
8907 (testcover-nohits-face, testcover-1value-face):
8908 New backward-compatibility aliases for renamed faces.
8909 (testcover-mark): Use renamed testcover faces.
8910
8911 * calendar/diary-lib.el (diary-button): Remove "-face" suffix from
8912 face name.
8913 (diary-button-face): New backward-compatibility alias for renamed face.
8914 (diary-entry): Use renamed diary-button face.
8915
8916 * calendar/calendar.el (diary, calendar-today, holiday)
8917 (mark-visible-calendar-date): Remove "-face" suffix from face names.
8918 (diary-face, calendar-today-face, holiday-face):
8919 New backward-compatibility aliases for renamed faces.
8920 (eval-after-load "facemenu", diary-entry-marker)
8921 (calendar-today-marker, calendar-holiday-marker, diary-face):
8922 Use renamed calendar faces.
8923
8924 * compare-w.el (compare-windows): Remove "-face" suffix from face name.
8925 (compare-windows-face): New backward-compatibility alias for
8926 renamed face.
8927 (compare-windows-highlight): Use renamed compare-windows face.
8928
8929 * strokes.el (strokes-char): Remove "-face" suffix from face name.
8930 (strokes-char-face): New backward-compatibility alias for renamed face.
8931 (strokes-encode-buffer): Use renamed strokes-char face.
8932
8933 * pcvs-info.el (cvs-header, cvs-filename, cvs-unknown)
8934 (cvs-handled, cvs-need-action, cvs-marked, cvs-msg):
8935 Remove "-face" suffix from face names.
8936 (cvs-header-face, cvs-filename-face, cvs-unknown-face)
8937 (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
8938 (cvs-msg-face): New backward-compatibility aliases for renamed faces.
8939 (cvs-fi-up-to-date-face, cvs-fi-unknown-face, cvs-fileinfo-pp):
8940 Use renamed pcvs faces.
8941 * pcvs.el (cvs-mode-find-file): Use renamed pcvs faces.
8942 * pcvs-defs.el (cvs-mode-map): Likewise.
8943 * cvs-status.el (cvs-status-font-lock-keywords): Likewise.
8944
8945 * info.el (info-title-1, info-title-2, info-title-3)
8946 (info-title-4): Remove "-face" suffix from and downcase face names.
8947 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
8948 (Info-title-4-face):
8949 New backward-compatibility aliases for renamed faces.
8950 (Info-fontify-node): Use renamed info faces.
8951
8952 * hilit-chg.el (highlight-changes, highlight-changes-delete):
8953 Remove "-face" suffix from face names.
8954 (highlight-changes-face, highlight-changes-delete-face):
8955 New backward-compatibility aliases for renamed faces.
8956 (hilit-chg-cust-fix-changes-face-list, hilit-chg-make-ov)
8957 (hilit-chg-make-list): Use renamed highlight-changes faces.
8958
8959 * generic-x.el (show-tabs-tab, show-tabs-space):
8960 Remove "-face" suffix from face names.
8961 (show-tabs-tab-face, show-tabs-space-face):
8962 New backward-compatibility aliases for renamed faces.
8963 (show-tabs-generic-mode-font-lock-defaults-1)
8964 (show-tabs-generic-mode-font-lock-defaults-2):
8965 Use renamed show-tabs faces.
8966
8967 * smerge-mode.el (smerge-mine, smerge-other, smerge-base)
8968 (smerge-markers): Remove "-face" suffix from face names.
8969 (smerge-mine-face, smerge-other-face, smerge-base-face)
8970 (smerge-markers-face):
8971 New backward-compatibility aliases for renamed faces.
8972 (smerge-mine-face, smerge-other-face, smerge-base-face)
8973 (smerge-markers-face): Use renamed smerge faces.
8974
8975 * log-view.el (log-view-file, log-view-message): Remove "-face"
8976 suffix from face names.
8977 (log-view-file-face, log-view-message-face):
8978 New backward-compatibility aliases for renamed faces.
8979 (log-view-file-face, log-view-message-face): Use renamed log-view
8980 faces.
8981
8982 * paren.el (show-paren-match, show-paren-mismatch):
8983 Remove "-face" suffix from face names.
8984 (show-paren-match-face, show-paren-mismatch-face):
8985 New backward-compatibility aliases for renamed faces.
8986 (show-paren-function): Use renamed show-paren faces.
8987
8988 * ruler-mode.el (ruler-mode-default, ruler-mode-pad)
8989 (ruler-mode-margins, ruler-mode-fringes)
8990 (ruler-mode-column-number, ruler-mode-fill-column)
8991 (ruler-mode-comment-column, ruler-mode-goal-column)
8992 (ruler-mode-tab-stop, ruler-mode-current-column): Remove "-face"
8993 suffix from face names.
8994 (ruler-mode-default-face, ruler-mode-pad-face)
8995 (ruler-mode-margins-face, ruler-mode-fringes-face)
8996 (ruler-mode-column-number-face, ruler-mode-fill-column-face)
8997 (ruler-mode-comment-column-face, ruler-mode-goal-column-face)
8998 (ruler-mode-tab-stop-face, ruler-mode-current-column-face):
8999 New backward-compatibility aliases for renamed faces.
9000 (ruler-mode-pad, ruler-mode-margins, ruler-mode-fringes)
9001 (ruler-mode-column-number, ruler-mode-fill-column)
9002 (ruler-mode-comment-column, ruler-mode-goal-column)
9003 (ruler-mode-tab-stop, ruler-mode-current-column)
9004 (ruler-mode-mouse-grab-any-column, ruler-mode-ruler): Use renamed
9005 faces.
9006
9007 * whitespace.el (whitespace-highlight): Remove "-face" suffix from
9008 face name.
9009 (whitespace-highlight-the-space): Use renamed face.
9010 (whitespace-highlight-face): New backward-compatibility alias for
9011 renamed face.
9012
9013 * woman.el (woman-italic, woman-bold, woman-unknown)
9014 (woman-addition, woman-symbol-face):
9015 Remove "-face" suffix from face names.
9016 (woman-italic-face, woman-bold-face, woman-unknown-face)
9017 (woman-addition-face):
9018 New backward-compatibility aliases for renamed faces.
9019 (woman-default-faces, woman-monochrome-faces, woman-man-buffer)
9020 (woman-decode-region, woman-replace-match)
9021 (woman-display-extended-fonts, woman-special-characters)
9022 (woman-font-alist, woman-change-fonts, woman2-TH, woman2-SH):
9023 Use renamed woman faces.
9024
9025 * longlines.el (longlines-visible-face): Face removed.
9026
9027 * diff-mode.el (diff-header, diff-file-header, diff-index)
9028 (diff-hunk-header, diff-removed, diff-added, diff-changed)
9029 (diff-function, diff-context, diff-nonexistent): Remove "-face"
9030 suffix from face names.
9031 (diff-header-face, diff-file-header-face, diff-index-face)
9032 (diff-hunk-header-face, diff-removed-face, diff-added-face)
9033 (diff-changed-face, diff-function-face, diff-context-face)
9034 (diff-nonexistent-face): New backward-compatibility aliases for
9035 renamed faces.
9036 (diff-header-face, diff-file-header-face)
9037 (diff-index, diff-index-face, diff-hunk-header)
9038 (diff-hunk-header-face, diff-removed, diff-removed-face)
9039 (diff-added, diff-added-face, diff-changed-face, diff-function)
9040 (diff-function-face, diff-context-face, diff-nonexistent)
9041 (diff-nonexistent-face): Use renamed diff-mode faces.
9042
9043 * progmodes/compile.el (compilation-warning-face)
9044 (compilation-info-face): Remove "-face" suffix from face names.
9045 (compilation-warning-face, compilation-info-face):
9046 New backward-compatibility aliases for renamed faces.
9047 (compilation-warning-face, compilation-info-face):
9048 Use renamed compilation faces.
9049
9050 * add-log.el (change-log-date, change-log-name)
9051 (change-log-email, change-log-file, change-log-list)
9052 (change-log-conditionals, change-log-function)
9053 (change-log-acknowledgement): Remove "-face" suffix from face names.
9054 (change-log-date-face, change-log-name-face)
9055 (change-log-email-face, change-log-file-face)
9056 (change-log-list-face, change-log-conditionals-face)
9057 (change-log-function-face, change-log-acknowledgement-face):
9058 New backward-compatibility aliases for renamed faces.
9059 (change-log-font-lock-keywords): Use renamed change-log faces.
9060
9061 * cus-edit.el (custom-invalid, custom-rogue, custom-modified)
9062 (custom-set, custom-changed, custom-saved, custom-button)
9063 (custom-button-pressed, custom-documentation, custom-state)
9064 (custom-comment, custom-comment-tag, custom-variable-tag)
9065 (custom-variable-button, custom-face-tag, custom-group-tag-1)
9066 (custom-group-tag): Remove "-face" suffix from face names.
9067 (custom-magic-alist, custom-magic-value-create)
9068 (custom-group-sample-face-get, custom-mode): Use renamed custom faces.
9069 (custom-invalid-face, custom-rogue-face, custom-modified-face)
9070 (custom-set-face, custom-changed-face, custom-saved-face)
9071 (custom-button-face, custom-button-pressed-face)
9072 (custom-documentation-face, custom-state-face)
9073 (custom-comment-face, custom-comment-tag-face)
9074 (custom-variable-tag-face, custom-variable-button-face)
9075 (custom-face-tag-face, custom-group-tag-face-1)
9076 (custom-group-tag-face):
9077 New backward-compatibility aliases for renamed faces.
9078
9079 * wid-edit.el (widget-documentation, widget-button)
9080 (widget-field, widget-single-line-field, widget-inactive)
9081 (widget-button-pressed): "-face" suffix removed from face names.
9082 (widget-documentation-face, widget-button-face)
9083 (widget-field-face, widget-single-line-field-face)
9084 (widget-inactive-face, widget-button-pressed-face):
9085 New backward-compatibility aliases for renamed faces.
9086 (widget-documentation-face, widget-button-face)
9087 (widget-button-pressed-face, widget-specify-field)
9088 (widget-specify-inactive): Use renamed widget faces.
9089
9090 2005-06-10 Kenichi Handa <handa@m17n.org>
9091
9092 * term/x-win.el (x-clipboard-yank): Remove condition-case
9093 wrapping.
9094
9095 2005-06-11 Kenichi Handa <handa@m17n.org>
9096
9097 * add-log.el (change-log-font-lock-keywords): Make the regexp for
9098 date lines stricter.
9099
9100 2005-06-10 Zhang Wei <id.brep@gmail.com> (tiny change)
9101
9102 * term/x-win.el (x-clipboard-yank): Use x-selection-value instead
9103 of x-get-selection.
9104
9105 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
9106
9107 * comint.el (comint-mode, comint-snapshot-last-prompt):
9108 * frame.el (frame-current-scroll-bars):
9109 * term.el (term-mode, term-check-proc, term-input-sender)
9110 (term-simple-send, term-extract-string, term-word)
9111 (term-match-partial-filename):
9112 * window.el (window-current-scroll-bars):
9113 * emulation/cua-base.el (cua-normal-cursor-color)
9114 (cua-read-only-cursor-color, cua-overwrite-cursor-color)
9115 (cua-global-mark-cursor-color):
9116 * mail/undigest.el (rmail-forward-separator-regex):
9117 Fix typos in docstrings.
9118
9119 * comint.el (comint-check-proc, make-comint-in-buffer)
9120 (comint-source-default): Doc fixes.
9121
9122 * term.el (term-send-string): Improve argument/docstring consistency.
9123
9124 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
9125
9126 * comint.el (comint-send-input): Bind `inhibit-read-only' around
9127 call to `delete-region'.
9128 (comint-mode-hook): Do not enable Font Lock by default.
9129
9130 2005-06-09 Lute Kamstra <lute@gnu.org>
9131
9132 * textmodes/ispell.el (ispell-menu-map-needed): flyspell-mode
9133 could be void.
9134
9135 2005-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
9136
9137 * emacs-lisp/debug.el (debugger-will-be-back): New var.
9138 (debug): Use it.
9139 (debugger-step-through, debugger-continue, debugger-jump)
9140 (debugger-return-value): Set it when needed.
9141 (debugger-make-xrefs, debugger-frame, debugger-frame-clear):
9142 Use inhibit-read-only.
9143
9144 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
9145
9146 * window.el (shrink-window-if-larger-than-buffer)
9147 (window-size-fixed): Fix typo in docstring.
9148
9149 * thumbs.el: Don't set `auto-image-file-mode'. Do not create the
9150 thumbnails directory on loading.
9151 (thumbs-conversion-program): Use `eq' to check the system type,
9152 not `equal'.
9153 (thumbs-temp-dir): Initialize to `temporary-file-directory',
9154 not "/tmp". Fix docstring.
9155 (thumbs-thumbsdir): New function to return the thumbnails
9156 directory, creating it if needed.
9157 (thumbs-cleanup-thumbsdir, thumbs-thumbname): Use it.
9158 (thumbs-temp-file): Delete variable and make it into a function.
9159 (thumbs-resize-image, thumbs-modify-image): Use it.
9160 (thumbs-kill-buffer): Simplify.
9161 (thumbs-gensym): Defalias or duplicate CL `gensym'.
9162 (thumbs-resize-image, thumbs-resize-interactive): Fix typos in
9163 docstrings.
9164
9165 2005-06-09 Kim F. Storm <storm@cua.dk>
9166
9167 * subr.el (save-match-data): Add RESEAT arg `evaporate' to
9168 set-match-data to free markers in match-data.
9169
9170 * replace.el (replace-match-data): Pass RESEAT arg `t' to
9171 match-data to unchain markers in match-data.
9172
9173 2005-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
9174
9175 * emacs-lisp/debug.el (debug): Don't iconify if we know we'll re-enter
9176 the debugger immediately anyway. Undo the 2005-06-06 change, rendered
9177 unnecessary now.
9178
9179 2005-06-08 Richard M. Stallman <rms@gnu.org>
9180
9181 * emacs-lisp/easy-mmode.el (define-minor-mode): If BODY is empty,
9182 give the variable a doc string that doesn't say don't set it directly.
9183
9184 * textmodes/ispell.el (ispell-check-version):
9185 Use match-string-no-properties.
9186 (ispell-region, ispell-buffer-local-parsing, ispell-buffer-local-dict)
9187 (ispell-buffer-local-words): Likewise.
9188
9189 * progmodes/make-mode.el (makefile-shell-face): Make this a no-op
9190 except on terminals with enough colors to really display it.
9191 (makefile-dependency-regex): Delete spurious `bb'.
9192
9193 * faces.el (escape-glyph): Use blue once again in last case.
9194 (no-break-space): Redefine so that it isn't invisible on a tty.
9195
9196 2005-06-08 Kim F. Storm <storm@cua.dk>
9197
9198 * ido.el (ido-read-file-name): Fallback to read-file-name on C-f
9199 also when reading directory name.
9200
9201 2005-06-08 Lute Kamstra <lute@gnu.org>
9202
9203 * textmodes/flyspell.el (flyspell-mode): Use define-minor-mode.
9204 (flyspell-mode-line-string): Remove autoload cookie.
9205 (flyspell-mode): Remove defvar.
9206
9207 2005-06-07 Lute Kamstra <lute@gnu.org>
9208
9209 * textmodes/org.el (org-run-mode-hooks): New function.
9210 (org-agenda-mode): Use it.
9211
9212 2005-06-07 David McCabe <davemccabe@gmail.com> (tiny change)
9213
9214 * emacs-lisp/lisp-mode.el (defstruct): Set `doc-string-elt' property.
9215
9216 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9217
9218 * international/iso-cvt.el (iso-sgml2iso-trans-tab): Add NBSP.
9219
9220 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
9221
9222 * font-lock.el (font-lock-add-keywords): Doc fix.
9223
9224 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
9225
9226 * textmodes/tex-mode.el (tex-guess-mode): Add RequirePackage.
9227 (tex-compile-default): In the absence of any history, use the order in
9228 tex-compile-alist to choose the preferred command.
9229 (tex-compile-commands): Reorder a bit.
9230
9231 * textmodes/flyspell.el (flyspell-auto-correct-binding)
9232 (flyspell-incorrect-face, flyspell-duplicate-face):
9233 Use (X)Emacs-agnostic code.
9234 (flyspell-mode-map): Don't overwrite at each load. Remove code
9235 redundant with the subsequent add-minor-mode. Merge Emacs and
9236 XEmacs code.
9237 (flyspell-word): Minor simplification.
9238 (flyspell-math-tex-command-p): Quieten the byte-compiler.
9239 (flyspell-external-point-words): Remove unused vars `size' and `start'.
9240 (flyspell-do-correct): Rename from flyspell-xemacs-correct.
9241 Merge the corresponding Emacs code.
9242 (flyspell-correct-word, flyspell-xemacs-popup):
9243 Use flyspell-do-correct.
9244
9245 * emacs-lisp/debug.el (debug): Don't bury the buffer unless it's in
9246 a dedicated window.
9247
9248 * international/latexenc.el (latexenc-find-file-coding-system):
9249 Undo part of last patch, to turn off a compiler warning.
9250
9251 2005-06-06 Juri Linkov <juri@jurta.org>
9252
9253 * tmm.el (tmm-inactive, tmm-remove-inactive-mouse-face):
9254 Rename `tmm-inactive-face' to `tmm-inactive'.
9255
9256 2005-06-06 Matt Hodges <MPHodges@member.fsf.org>
9257
9258 * iswitchb.el: Rename faces.
9259
9260 2005-06-06 Kim F. Storm <storm@cua.dk>
9261
9262 * emulation/cua-base.el (cua-rectangle, cua-rectangle-noselect)
9263 (cua-global-mark): Remove -face suffix from face names.
9264
9265 * emulation/cua-gmrk.el (cua--init-global-mark):
9266 Remove cua-global-mark face setup.
9267
9268 2005-06-06 Richard M. Stallman <rms@gnu.org>
9269
9270 * progmodes/make-mode.el (makefile-dependency-regex): Handle whitespace
9271 just like other allowed characters.
9272 (makefile-match-dependency): Exclude leading and training whitespace
9273 from the range of regexp subexp 1.
9274 (makefile-macroassign-regex): Don't try to match the body,
9275 just the name of the macro being defined.
9276
9277 * info.el (Info-read-node-name-2): New function.
9278 (Info-read-node-name-1): Use that.
9279 Add a completion-base-size-function property.
9280
9281 * simple.el (completion-setup-function): Look for
9282 completion-base-size-function property of minibuffer-completion-table.
9283
9284 * files.el (locate-file-completion): Doc fix.
9285
9286 * printing.el: Don't call pr-update-menus; user must do that.
9287
9288 * emacs-lisp/debug.el (debugger-window): New variable.
9289 (debug): Use debugger-window if it is set and still alive.
9290 Record debugger-window for next entry.
9291
9292 * mail/supercite.el (sc-mail-glom-frame): Mark as risky.
9293
9294 2005-06-06 Matthias F\e,Av\e(Brste <slashdevslashnull@gmx.net>
9295
9296 * files.el (hack-local-variables-confirm): New arg FLAG-TO-CHECK.
9297 (hack-one-local-variable, hack-local-variables)
9298 (hack-local-variables-prop-line): Pass that arg.
9299
9300 2005-06-06 Kim F. Storm <storm@cua.dk>
9301
9302 * ido.el (ido-first-match, ido-only-match, ido-subdir)
9303 (ido-indicator): Remove -face suffix from face names.
9304
9305 2005-06-06 Juri Linkov <juri@jurta.org>
9306
9307 * font-lock.el (font-lock-regexp-backslash)
9308 (font-lock-regexp-backslash-construct): New faces.
9309 (lisp-font-lock-keywords-2): Use new faces. Match `?:' only
9310 after `('. Add `while-no-input' to control structures.
9311
9312 * faces.el (no-break-space, shadow): New faces.
9313 (escape-glyph): Use less loud colors pink2 and red4.
9314
9315 * diff-mode.el (diff-context-face)
9316 * dired.el (dired-ignored)
9317 * rfn-eshadow.el (file-name-shadow)
9318 * tmm.el (tmm-inactive-face): Inherit from `shadow' face.
9319
9320 * info.el (Info-title-1-face): Use green instead of yellow because
9321 bold yellow is not readable on light backgrounds.
9322
9323 * progmodes/compile.el (compilation-start): Move `erase-buffer' up
9324 before selecting the desired mode to not spend time fontifying
9325 old contents.
9326
9327 2005-06-06 Juanma Barranquero <lekktu@gmail.com>
9328
9329 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-image-resizing-step)
9330 (thumbs-thumbsdir-auto-clean): Fix typos in docstrings.
9331
9332 * ps-print.el (ps-default-fg, ps-default-bg):
9333 Fix typos in docstrings.
9334
9335 * isearchb.el (isearchb): Don't pass a spurious second argument to
9336 `iswitchb-completions'.
9337
9338 2005-06-05 Nick Roberts <nickrob@snap.net.nz>
9339
9340 * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point
9341 to preserve point.
9342 (gdb-find-file-hook): Add doc string.
9343
9344 * progmodes/gud.el (gdb, gud-menu-map): Add command to evaluate
9345 C dereferenced pointer expression.
9346 (gud-tool-bar-map): Put it on the tool bar. Re-order icons.
9347
9348 * toolbar/gud-pstar.xpm, toolbar/gud-pstar.pbm: New files.
9349
9350 * toolbar/gud-break.xpm, toolbar/gud-cont.xpm, toolbar/gud-down.xpm
9351 * toolbar/gud-finish.xpm, toolbar/gud-ni.xpm, toolbar/gud-n.xpm
9352 * toolbar/gud-print.xpm, toolbar/gud-remove.xpm, toolbar/gud-run.xpm
9353 * toolbar/gud-si.xpm, toolbar/gud-s.xpm, toolbar/gud-until.xpm
9354 * toolbar/gud-up.xpm, toolbar/gud-watch.xpm:
9355 Make background transparent.
9356
9357 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
9358
9359 * font-lock.el (font-lock-add-keywords): Doc fix. Comment change.
9360 (font-lock-remove-keywords): Doc fix.
9361 (font-lock-mode-major-mode): Compiler defvar.
9362 (font-lock-set-defaults): Use `font-lock-mode-major-mode'.
9363
9364 * font-core.el (font-lock-mode-major-mode): Compiler defvar.
9365 (font-lock-mode): Update `font-lock-mode-major-mode'.
9366 (font-lock-set-defaults): Compiler defvar.
9367 (font-lock-default-function): Take `font-lock-mode-major-mode'
9368 into account.
9369
9370 * emacs-lisp/easy-mmode.el (define-global-minor-mode): Make it
9371 keep track of which major mode it enabled the minor mode for.
9372 Use find-file-hook again. Update docstring.
9373
9374 * simple.el (eval-expression-print-level)
9375 (eval-expression-print-length, eval-expression-debug-on-error):
9376 Doc fixes.
9377
9378 2005-06-04 Matt Hodges <MPHodges@member.fsf.org>
9379
9380 * iswitchb.el (iswitchb-single-match-face)
9381 (iswitchb-current-match-face, iswitchb-virtual-matches-face)
9382 (iswitchb-invalid-regexp-face): New faces.
9383 (iswitchb-completions): Use them.
9384 (iswitchb-use-faces): Rename from iswitchb-use-fonts, which is
9385 now marked as an obsolete alias.
9386 (iswitchb-read-buffer): Remove check for bound font variables.
9387 (iswitchb-invalid-regexp): New free variable.
9388 (iswitchb-get-matched-buffers): Catch invalid-regexp errors and
9389 set iswitchb-invalid-regexp.
9390 (iswitchb, iswitchb-complete, iswitchb-completions): Deal with
9391 invalid regexps.
9392 (iswitchb-completions): Add check for complete match when entering
9393 a regexp.
9394 (iswitchb-completions): Remove require-match argument.
9395 (iswitchb-exhibit): Fix caller.
9396 (iswitchb-common-match-inserted): New variable.
9397 (iswitchb-complete, iswitchb-completion-help): Use it.
9398
9399 2005-06-04 David Reitter <david.reitter@gmail.com> (tiny change)
9400
9401 * url-http.el (url-http-chunked-encoding-after-change-function):
9402 Use `url-http-debug' instead of `message'.
9403
9404 2005-06-04 Thierry Emery <thierry.emery@free.fr> (tiny change)
9405
9406 * url-http.el (url-http-parse-headers): Pass redirected URL as a
9407 callback argument.
9408
9409 2005-06-04 Kim F. Storm <storm@cua.dk>
9410
9411 * simple.el (line-move): Only call sit-for when moving backwards.
9412
9413 * ido.el (ido-make-merged-file-list-1): New defun split from
9414 ido-make-merged-file-list.
9415 (ido-make-merged-file-list): Bind throw-on-input around call to
9416 ido-make-merged-file-list-1. Return input-pending-p if
9417 interrupted by more input available.
9418 (ido-read-internal): Handle input-pending-p return value from
9419 ido-make-merged-file-list.
9420
9421 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
9422
9423 * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly
9424 compatibility code.
9425
9426 * international/latexenc.el (latexenc-find-file-coding-system):
9427 Don't inherit the EOL part of the coding-system from the
9428 tex-main buffer. Fit within 80 columns.
9429
9430 2005-06-03 Matt Hodges <MPHodges@member.fsf.org>
9431
9432 * tmm.el (tmm-inactive-face): New face.
9433 (tmm-remove-inactive-mouse-face): New function.
9434 (tmm-prompt, tmm-add-one-shortcut)
9435 (tmm-add-prompt, tmm-get-keymap): Make active menu items visible
9436 but not selectable.
9437
9438 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
9439
9440 * faces.el (face-equal): Improve argument/docstring consistency.
9441
9442 2005-06-03 Daniel Pfeiffer <occitan@esperanto.org>
9443
9444 * progmodes/make-mode.el (makefile-targets-face)
9445 (makefile-shell-face, makefile-makepp-perl-face): Add :version.
9446 (makefile-bsdmake-dependency-regex)
9447 (makefile-makepp-rule-action-regex)
9448 (makefile-bsdmake-rule-action-regex): New constants.
9449 (makefile-makepp-mode, makefile-bsdmake-mode): Use them.
9450
9451 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9452 Allow (...) within `...' for makepp messages.
9453
9454 2005-06-03 Michael Kifer <kifer@cs.stonybrook.edu>
9455
9456 * ediff-diff.el (ediff-same-contents): Eliminate CL-type functions.
9457
9458 * ediff-mult.el (ediff-intersect-directories): Make sure that ".." and
9459 "." files are deleted from all file lists before comparison.
9460
9461 * viper-keym.el (viper-toggle-key, viper-quoted-insert-key)
9462 (viper-ESC-key): Made them customizable.
9463
9464 * viper.el (viper-non-hook-settings): Fix the names of defadvices.
9465
9466 2005-06-01 Luc Teirlinck <teirllm@auburn.edu>
9467
9468 * autorevert.el (auto-revert-buffers): Use save-match-data.
9469
9470 2005-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
9471
9472 * emacs-lisp/easymenu.el (easy-menu-return-item): Quick fix to find
9473 menu items with a nil command binding.
9474
9475 2005-06-01 Juanma Barranquero <lekktu@gmail.com>
9476
9477 * emacs-lisp/cl-macs.el (defsetf):
9478 Improve argument/docstring consistency.
9479
9480 * faces.el (list-faces-display): Improve the formatting by
9481 computing the maximum length required for any face-name (reworked
9482 patch of 1999-01-11, accidentally deleted on 1999-07-21).
9483 (internal-find-face): Remove redundant info in docstring.
9484
9485 2005-06-01 Nick Roberts <nickrob@snap.net.nz>
9486
9487 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-1)
9488 (gdb-info-breakpoints-custom, gdb-delete-breakpoint)
9489 (gdb-goto-breakpoint, gdb-source-info, gdb-get-location)
9490 (gdb-assembler-custom): Improve regexps.
9491 (def-gdb-auto-update-handler): Use window point to preserve point.
9492
9493 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
9494
9495 * thumbs.el (thumbs-mode): Fix misuse of make-variable-buffer-local.
9496
9497 2005-05-31 Jay Belanger <belanger@truman.edu>
9498
9499 * calc/calc-embed.el (calc-embedded-word): Change argument passed
9500 to calc-embedded.
9501 (calc-embedded-make-info): Have plain prefix argument select
9502 entire line.
9503
9504 2005-05-31 Juanma Barranquero <lekktu@gmail.com>
9505
9506 * faces.el (list-faces-display): Signal error if passed a regexp
9507 that matches no face name.
9508
9509 * simple.el (filter-buffer-substring): Fix typo in docstring.
9510
9511 2005-05-31 Richard M. Stallman <rms@gnu.org>
9512
9513 * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not INTERACTIVE.
9514 (vhdl-emacs-21): Doc fix.
9515 (vhdl-mode): Unconditionally set comment-padding.
9516 (vhdl-fixup-whitespace-region): Insert spaces only where
9517 there are none.
9518 (vhdl-statistics-buffer): Make the Emacs 21 behavior universal.
9519
9520 2005-05-30 John Wiegley <johnw@newartisans.com>
9521
9522 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el
9523 * eshell/em-unix.el, eshell/esh-ext.el, eshell/esh-io.el
9524 * eshell/esh-util.el, eshell/esh-var.el: Change all uses of
9525 `directory-sep-char' to ?/, and all uses of `string-to-int' to
9526 `string-to-number'.
9527
9528 2005-05-30 Jay Belanger <belanger@truman.edu>
9529
9530 * calc/calc.el (calc-bug-address): Fix docstring.
9531 (calc-window-hook, calc-trail-window-hook): New variables.
9532 (calc-trail-display): Restore use of calc-trail-window-hook.
9533 (calc): Restore use of calc-window-hook.
9534
9535 2005-05-31 Masatake YAMATO <jet@gyve.org>
9536
9537 * emacs-lisp/find-func.el (find-function-noselect): Handle subroutines.
9538
9539 * help-fns.el (help-C-file-name): Add autoload mark for
9540 `find-function-noselect'.
9541
9542 2005-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9543
9544 * textmodes/tex-mode.el (tex-compile-commands, tex-compile)
9545 (tex-start-tex): Undo all but the last part of the 2005-05-28 change.
9546
9547 2005-05-30 Glenn Morris <gmorris@ast.cam.ac.uk>
9548
9549 * calendar/diary-lib.el (mark-included-diary-files): Only kill
9550 included diary buffer if it was not already being visited.
9551 Reported by Stephen Berman <Stephen.Berman@gmx.net>.
9552
9553 * calendar/icalendar.el (top-level): Do not require 'appt.
9554
9555 * mail/supercite.el (sc-select-attribution): Only use a list
9556 element from sc-attrib-selection-list if it returns a string.
9557 Reported by Davide G. M. Salvetti <salve@debian.org>.
9558
9559 2005-05-30 Juanma Barranquero <lekktu@gmail.com>
9560
9561 * thumbs.el (thumbs-thumbname): The resulting thumbname now
9562 includes a hash value to improve its uniqueness, and has a ".jpg"
9563 extension. Also, it is now a valid filename on all systems.
9564 (thumbs-make-thumb): Use `let', not `let*'.
9565 (thumbs-show-thumbs-list): Check for JPEG availability.
9566
9567 2005-05-30 Richard M. Stallman <rms@gnu.org>
9568
9569 * filesets.el (filesets-menu-ensure-use-cached):
9570 Prevent warning when emacs-version>= is undefined.
9571
9572 * printing.el (pr-interactive-n-up): Use string-to-number.
9573
9574 * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer.
9575
9576 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn):
9577 Warn only when name to be defined is quoted.
9578
9579 2005-05-30 Nick Roberts <nickrob@snap.net.nz>
9580
9581 * progmodes/gdb-ui.el (gdb-toggle-breakpoint):
9582 Make regexp more robust.
9583 (gdb-display-assembler-buffer, gdb-frame-assembler-buffer):
9584 Force regeneration of disassembly.
9585
9586 2005-05-29 Jay Belanger <belanger@truman.edu>
9587
9588 * calc/calc.el (calc-user-invocation): Check if
9589 calc-invocation-macro is non-nil.
9590
9591 2005-05-29 Juri Linkov <juri@jurta.org>
9592
9593 * add-log.el (change-log-font-lock-keywords):
9594 Add `+' to e-mail regexp to accept mail address with keywords.
9595
9596 * man.el (Man-name-regexp): Add `:' to accept qualified names.
9597
9598 2005-05-29 Luc Teirlinck <teirllm@auburn.edu>
9599
9600 * progmodes/inf-lisp.el (inferior-lisp-mode): Use delay-mode-hooks.
9601
9602 * ielm.el (inferior-emacs-lisp-mode): Ditto.
9603
9604 2005-05-29 Richard M. Stallman <rms@gnu.org>
9605
9606 * textmodes/flyspell.el (flyspell-auto-correct-previous-word):
9607 Undo the change that moves to end of the current word.
9608
9609 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
9610
9611 * progmodes/gdb-ui.el (gdb-memory-set-repeat-count):
9612 Throw error when count <= 0 to ensure input is a number.
9613 (gdb-read-memory-custom): Pick up address from buffer.
9614 (gdb-memory-mode): Allow user to increment and decrement
9615 memory address from header line.
9616
9617 2005-05-29 Richard M. Stallman <rms@gnu.org>
9618
9619 * flyspell.el (flyspell-version): Function deleted.
9620 (flyspell-auto-correct-previous-hook): Doc fix.
9621
9622 * jit-lock.el (jit-lock-function, jit-lock-after-change):
9623 Do nothing if memory is full.
9624
9625 * font-lock.el (font-lock-fontify-syntactically-region):
9626 Pass t for GREEDY to looking-back.
9627
9628 * saveplace.el (save-place-alist-to-file): Write the file
9629 using write-region.
9630
9631 * subr.el (looking-back): New argument GREEDY.
9632
9633 * progmodes/compile.el (compilation-start): Set the mode
9634 before inserting the initial text.
9635
9636 * progmodes/which-func.el (which-func-update-1): Turn the mode
9637 off in case of error by setting which-func-mode.
9638
9639 2005-05-29 Peter Heslin <p.j.heslin@durham.ac.uk> (tiny change)
9640
9641 * flyspell.el (flyspell-auto-correct-previous-word):
9642 Narrow down to what's on the screen, and recenter overlays
9643 at the end of the next word.
9644
9645 2005-05-29 Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
9646
9647 * flyspell.el (flyspell-emacs, flyspell-use-local-map): Vars moved up.
9648 (flyspell-default-delayed-commands): Add backward-delete-char-untabify.
9649 (flyspell-abbrev-p): Default to nil.
9650 (flyspell-use-global-abbrev-table-p): Doc fix.
9651 (flyspell-large-region): Allow nil as value.
9652 (flyspell-use-meta-tab, flyspell-auto-correct-binding): New variables.
9653
9654 (mail-mode-flyspell-verify): More robust handling
9655 of `mail-header-separator'. More efficient signature detection.
9656 Allow for regexp metacharacters in message-header-separator.
9657 Adding `To' not to be checked in mail-mode-flyspell-verify.
9658
9659 (flyspell-prog-mode): Run flyspell-prog-mode-hook.
9660 (flyspell-mouse-map): Bind M-TAB only if flyspell-use-meta-tab.
9661 Bind flyspell-auto-correct-binding.
9662 Bind C-. and C-, .
9663 (flyspell-mode-map): Likewise.
9664 (flyspell-mode): Doc fix.
9665 (flyspell-accept-buffer-local-defs): Preserve current buffer.
9666 (flyspell-mode-on): Bind flyspell-mouse-map and flyspell-mode-map.
9667 (flyspell-word-cache-result): New var, always local.
9668 (flyspell-check-pre-word-p): Doc fix.
9669 (flyspell-check-changed-word-p): Handle spc like newline.
9670 (flyspell-post-command-hook): Set flyspell-word-cache-result.
9671 (flyspell-word-search-backward, flyspell-word-search-forward):
9672 New functions.
9673 (flyspell-word): Return t if nothing to check.
9674 When parsing TeX code, check for after } or \.
9675 Use flyspell-word-search-backward to find previous word.
9676 Return nil if duplicated word.
9677 For word already checked, return same value as last time.
9678 Set flyspell-word-cache-result after checking.
9679 Don't clobber the return value.
9680 (flyspell-get-word): Major rewrite.
9681 (flyspell-external-point-words): New locals pword, pcount.
9682 Fix size used in progress message.
9683 Find the proper corresponding word in flyspell-large-region-buffer.
9684 (flyspell-region): Check for flyspell-large-region = nil.
9685 (flyspell-highlight-incorrect-region): Clean up overlays in region.
9686 (flyspell-auto-correct-word): Check that WORD is a cons.
9687 (flyspell-correct-word): Likewise.
9688
9689 2005-05-29 Daniel Pfeiffer <occitan@esperanto.org>
9690
9691 * progmodes/make-mode.el (makefile-rule-action-regex)
9692 (makefile-macroassign-regex, makefile-makepp-mode)
9693 (makefile-bsdmake-mode): Continuation lines may be empty.
9694 Reported by Joshua Varner.
9695 (makefile-makepp-font-lock-keywords): Add $(stem).
9696
9697 2005-05-28 Karl Berry <karl@gnu.org>
9698
9699 * textmodes/tex-mode.el: Now that tex-send-command calls
9700 shell-quote-argument (2005-03-31 change), remove all calls to
9701 shell-quote-argument; they all end up invoking tex-send-command.
9702 The double quoting loses on filenames with non-safe characters,
9703 such as "@". Reported by Frederik Fouvry.
9704
9705 2005-05-29 Nick Roberts <nickrob@snap.net.nz>
9706
9707 * progmodes/gdb-ui.el (gdb-assembler-custom): Be more careful
9708 about preserving point.
9709
9710 2005-05-27 Jay Belanger <belanger@truman.edu>
9711
9712 * calc/calc-misc.el (calc-info-goto-node): Use info instead of
9713 Info-goto-node.
9714
9715 * calc/calc-embed.el (calc-embed-arg): New variable.
9716 (calc-do-embedded-activate, calc-embedded-activate-formula)
9717 (calc-embedded-edit, calc-do-embedded-activate): Replace undeclared
9718 variable by new variable.
9719 (calc-embedded-make-info): Replace undeclared variable by new
9720 variable. When selecting region with positive prefix
9721 argument, use end of previous line instead of beginning of line.
9722
9723 * calc/calc-aent.el (calc-arg-values): Declare it.
9724
9725 * calc/calc-ext.el (calc-help-map, calc-alg-map, calc-alg-esc-map):
9726 Declare them.
9727
9728 * calc/calc-stuff.el (math-decls-cache-tag): Declare it.
9729
9730 * calc/calc.el (calc-alg-map): Declare it.
9731
9732 * calc/calcalg2.el (math-decls-cache, math-decls-all): Declare them.
9733
9734 2005-05-28 Nick Roberts <nickrob@snap.net.nz>
9735
9736 * progmodes/gdb-ui.el (gdb-all-registers): New variable.
9737 (gdb-registers-buffer, toggle-gdb-all-registers):
9738 Toggle display of floating point registers.
9739 (gdb-registers-mode-map): Bind SPC to toggle-gdb-all-registers.
9740
9741 * progmodes/gud.el (gud-goto-info): Use info. Don't use require.
9742 (toggle-gud-tooltip-dereference):
9743 Rename from gud-toggle-tooltip-dereference.
9744
9745 2005-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
9746
9747 * info.el (Info-goto-node): Revert autoload addition (2004-06-12).
9748
9749 2005-05-27 Jay Belanger <belanger@truman.edu>
9750
9751 * calc/calc-prog.el (calc-kbd-report): Remove.
9752 (calc-kbd-query): Rewrite.
9753
9754 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
9755
9756 * image.el (image-library-alist): Move to image.c.
9757 (image-type-available-p): Doc fix.
9758
9759 2005-05-27 Lute Kamstra <lute@gnu.org>
9760
9761 * calc/calc.el (calc):
9762 * outline.el (outline-1, outline-2, outline-3, outline-4)
9763 (outline-5, outline-6, outline-7, outline-8):
9764 * textmodes/dns-mode.el (dns-mode):
9765 * textmodes/sgml-mode.el (sgml-namespace-face):
9766 * textmodes/tex-mode.el (superscript, subscript, tex-math-face)
9767 (tex-verbatim-face, tex-use-reftex):
9768 * textmodes/texinfo.el (texinfo-heading-face):
9769 Specify customization group.
9770
9771 * longlines.el: Don't require easy-mmode.
9772 (longlines-visible-face): Specify customization group.
9773
9774 2005-05-27 Kenichi Handa <handa@m17n.org>
9775
9776 * language/cyrillic.el: Add cyrillic-iso8859-5 characters in the
9777 encoding table of windows-1251.
9778
9779 * international/ucs-tables.el (ucs-set-table-for-input):
9780 If translation-table-for-input of a coding system is a symbol, get
9781 its translation-table property.
9782
9783 * international/code-pages.el: Don't register a coding system into
9784 non-iso-charset-alist more than once.
9785 (cp-make-coding-system): Likewise.
9786
9787 2005-05-26 John Wiegley <johnw@newartisans.com>
9788
9789 * eshell/esh-cmd.el (eshell-eval-command): If the return value of
9790 `eshell-resume-eval' is wrapped in a list, it indicates that the
9791 command was run asynchronously. In that case, unwrap the value
9792 before checking the delimiter value.
9793
9794 * eshell/em-cmpl.el (eshell-complete-parse-arguments): If the
9795 character before a space at the end of a line is \, assume the space
9796 is part of the last argument rather than a final argument separator.
9797
9798 * eshell/esh-io.el (eshell-get-target): If `eshell-buffer-shorthand'
9799 is in use, and the target is `t' or `nil' (which are the most common
9800 values), don't assume that the symbol target is a buffer.
9801
9802 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
9803
9804 * calendar/calendar.el (calendar-mode-line-format):
9805 Use mode-line-highlight as mouse-face.
9806
9807 * time.el (display-time-string-forms, display-time-update):
9808 Use mode-line-highlight as mouse-face.
9809
9810 2005-05-26 Jay Belanger <belanger@truman.edu>
9811
9812 * calc/calc.el (calc-language-alist): Remove extra defvar.
9813
9814 2005-05-26 Lute Kamstra <lute@gnu.org>
9815
9816 * arc-mode.el (archive-mode):
9817 * bookmark.el (bookmark-read-annotation-mode)
9818 (bookmark-edit-annotation-mode, bookmark-bmenu-mode):
9819 * bs.el (bs-mode):
9820 * calc/calc-yank.el (calc-edit-mode):
9821 * calc/calc.el (calc-mode, calc-trail-mode):
9822 * calculator.el (calculator-mode):
9823 * chistory.el (command-history-mode):
9824 * comint.el:
9825 * cus-edit.el (custom-mode):
9826 * descr-text.el (describe-text-mode):
9827 * ebuff-menu.el (Electric-buffer-menu-mode):
9828 * ediff-util.el (ediff-mode):
9829 * emacs-lisp/re-builder.el (reb-mode):
9830 * emulation/vi.el (vi-mode-setup):
9831 * emulation/ws-mode.el (wordstar-mode):
9832 * eshell/esh-mode.el (eshell-mode):
9833 * forms.el (forms-mode):
9834 * help-mode.el (help-mode):
9835 * hexl.el (hexl-mode):
9836 * ibuffer.el (ibuffer-mode):
9837 * ielm.el (inferior-emacs-lisp-mode):
9838 * info.el (Info-mode, Info-edit-mode):
9839 * international/swedish.el:
9840 * ledit.el (ledit-from-lisp-mode):
9841 * locate.el (locate-mode):
9842 * mail/rmail.el (rmail-mode):
9843 * mail/rmailedit.el (rmail-edit-mode):
9844 * mail/rmailsum.el (rmail-summary-mode):
9845 * mail/supercite.el (sc-electric-mode):
9846 * net/eudc.el (eudc-mode):
9847 * net/quickurl.el (quickurl-list-mode):
9848 * net/snmp-mode.el (snmp-mode, snmpv2-mode):
9849 * obsolete/ooutline.el (outline-mode):
9850 * obsolete/options.el (Edit-options-mode):
9851 * obsolete/rnews.el (news-mode):
9852 * obsolete/rnewspost.el (news-reply-mode):
9853 * play/5x5.el (5x5-mode):
9854 * play/decipher.el (decipher-mode, decipher-stats-mode):
9855 * play/gomoku.el (gomoku-mode):
9856 * play/snake.el (snake-mode):
9857 * play/solitaire.el (solitaire-mode):
9858 * play/tetris.el (tetris-mode):
9859 * progmodes/ada-mode.el (ada-mode):
9860 * progmodes/antlr-mode.el (antlr-mode):
9861 * progmodes/autoconf.el (autoconf-mode):
9862 * progmodes/dcl-mode.el (dcl-mode):
9863 * progmodes/delphi.el (delphi-mode):
9864 * progmodes/ebrowse.el (ebrowse-tree-mode)
9865 (ebrowse-electric-list-mode, ebrowse-member-mode)
9866 (ebrowse-electric-position-mode):
9867 * progmodes/f90.el (f90-mode):
9868 * progmodes/fortran.el (fortran-mode):
9869 * progmodes/icon.el (icon-mode):
9870 * progmodes/idlw-help.el (idlwave-help-mode):
9871 * progmodes/idlw-shell.el (idlwave-shell-mode):
9872 * progmodes/idlwave.el (idlwave-mode):
9873 * progmodes/inf-lisp.el (inferior-lisp-mode):
9874 * progmodes/m4-mode.el (m4-mode):
9875 * progmodes/meta-mode.el (metafont-mode, metapost-mode):
9876 * progmodes/modula2.el (modula-2-mode):
9877 * progmodes/octave-inf.el (inferior-octave-mode):
9878 * progmodes/octave-mod.el (octave-mode):
9879 * progmodes/pascal.el (pascal-mode):
9880 * progmodes/sh-script.el (sh-mode):
9881 * progmodes/sql.el (sql-mode, sql-interactive-mode):
9882 * progmodes/vhdl-mode.el (vhdl-mode):
9883 * progmodes/xscheme.el (scheme-interaction-mode):
9884 * replace.el (occur-mode):
9885 * ses.el (ses-mode):
9886 * simple.el (completion-list-mode):
9887 * skeleton.el:
9888 * speedbar.el (speedbar-mode):
9889 * term.el (term-mode):
9890 * terminal.el (terminal-edit-mode):
9891 * textmodes/reftex-index.el (reftex-index-mode)
9892 (reftex-index-phrases-mode):
9893 * textmodes/reftex-sel.el (reftex-select-label-mode)
9894 (reftex-select-bib-mode):
9895 * textmodes/reftex-toc.el (reftex-toc-mode):
9896 * wdired.el (wdired-change-to-wdired-mode):
9897 * wid-browse.el (widget-browse-mode):
9898 Use run-mode-hooks.
9899
9900 * array.el (array-mode):
9901 * calendar/todo-mode.el (todo-mode):
9902 * man.el (Man-mode):
9903 * play/landmark.el (lm-mode):
9904 * play/mpuz.el (mpuz-mode):
9905 Use kill-all-local-variables and run-mode-hooks.
9906
9907 * subr.el (delay-mode-hooks): Specify indentation.
9908
9909 2005-05-26 Mark A. Hershberger <mah@everybody.org>
9910
9911 * xml.el (xml-substitute-special): Don't die for undefined xml
9912 entities.
9913
9914 2005-05-26 Jay Belanger <belanger@truman.edu>
9915
9916 * calc/calc-prog.el (calc-user-define-edit): Don't find substring
9917 of nil.
9918
9919 2005-05-27 Nick Roberts <nickrob@snap.net.nz>
9920
9921 * progmodes/gdb-ui.el (gdb-frame-address):
9922 Rename from gdb-current-address.
9923 (gdb-previous-frame-address): Rename from gdb-previous-address.
9924 (gdb-selected-frame): Rename from gdb-current-frame.
9925 (gdb-get-selected-frame): Rename from gdb-get-current-frame.
9926 (gdb-frame-number): Rename from gdb-current-stack-level.
9927 (gdb-ann3): Match new mode-name for disassembly buffer.
9928 Extend initialization of variables.
9929 (gdb-post-prompt): Update disassembly from gdb-frame-handler.
9930 (gdb-memory-mode): Use mouse-face in header line.
9931 (gdb-assembler-buffer-name): Call it disassembly and give frame
9932 in mode line.
9933 (gdb-source-spec-regexp, gdb-assembler-custom)
9934 (gdb-invalidate-assembler, gdb-frame-handler):
9935 Make robust to leading zeroes in address format.
9936
9937 2005-05-26 Carsten Dominik <dominik@science.uva.nl>
9938
9939 * textmodes/org.el (org-mode): Use `define-derived-mode' to
9940 define `org-mode'.
9941 (org-agenda-mode): Use `run-mode-hooks' instead of `run-hooks'.
9942
9943 2005-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
9944
9945 * log-edit.el (log-edit-changelog-entries): Distinguish between
9946 filenames like xfns.c and fns.c.
9947
9948 2005-05-25 Luc Teirlinck <teirllm@auburn.edu>
9949
9950 * buff-menu.el (Buffer-menu-revert-function): Improve handling of
9951 point after reverting.
9952 (Buffer-menu-make-sort-button): Handle the case where
9953 `Buffer-menu-use-header-line' is nil.
9954
9955 2005-05-25 Thien-Thi Nguyen <ttn@gnu.org>
9956
9957 * vms-patch.el (vms-magic-right-square-brace, vms-magic-colon):
9958 New funcs. In minibuffer-local-completion-map bind `]', `/'
9959 and `:' to them.
9960
9961 2005-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
9962
9963 * startup.el (normal-top-level): Allow modification of load-path while
9964 we're iterating over it.
9965
9966 2005-05-25 Juanma Barranquero <lekktu@gmail.com>
9967
9968 * thumbs.el (thumbs-thumbsdir-max-size, thumbs-temp-file)
9969 (thumbs-cleanup-thumbsdir, thumbs-call-convert)
9970 (thumbs-resize-interactive, thumbs-insert-image)
9971 (thumbs-insert-thumb, thumbs-dired-show-marked)
9972 (thumbs-find-image-at-point, thumbs-delete-images)
9973 (thumbs-rename-images, thumbs-next-image, thumbs-dired-setroot)
9974 (thumbs-increment-image-size, thumbs-decrement-image-size):
9975 Fix typos in docstrings.
9976
9977 2005-05-24 Andre Spiegel <spiegel@gnu.org>
9978
9979 * progmodes/cperl-mode.el (cperl-vc-header-alist): Obsolete.
9980 (cperl-vc-rcs-header, cperl-vc-sccs-header): New user options.
9981 (cperl-mode): Use them.
9982
9983 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
9984
9985 * window.el (quit-window, shrink-window-if-larger-than-buffer):
9986 Doc fixes.
9987
9988 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
9989
9990 * progmodes/gdb-ui.el (gdb-inferior-io-mode-map):
9991 Bind C-d to gdb-inferior-io-eof.
9992
9993 * dired.el (dired-dnd-popup-notice): Use message-box.
9994
9995 2005-05-23 Masatake YAMATO <jet@gyve.org>
9996
9997 * bindings.el (mode-line-major-mode-keymap):
9998 Bind [mode-line down-mouse-1] to `mouse-major-mode-menu'.
9999
10000 * faces.el (mode-line-highlight): New face.
10001
10002 * ruler-mode.el (ruler-mode-ruler): Use mode-line-highlight
10003 as mouse-face.
10004
10005 * bindings.el (top-level, help-echo, mode-line-modified)
10006 (mode-line-mule-info, mode-line-eol-desc): Use mode-line-highlight
10007 as mouse-face.
10008
10009 2005-05-23 Juanma Barranquero <lekktu@gmail.com>
10010
10011 * progmodes/cc-engine.el (c-guess-basic-syntax):
10012 Remove spurious call to `zerop'.
10013
10014 * emacs-lisp/cl.el (acons, pairlis): Add docstring.
10015
10016 2005-05-23 Martin Stjernholm <bug-cc-mode@gnu.org>
10017
10018 CC Mode update to 5.30.10:
10019
10020 * cc-fonts.el (c-font-lock-declarators): Fix bug where the point
10021 could go past the limit in decoration level 2, thereby causing
10022 errors during interactive fontification.
10023
10024 * cc-mode.el (c-make-inherited-keymap): Fix cc-bytecomp bug when
10025 the file is evaluated interactively.
10026
10027 * cc-engine.el (c-guess-basic-syntax): Handle operator
10028 declarations somewhat better in C++.
10029
10030 * cc-styles.el, cc-mode.el (c-run-mode-hooks): New helper macro to
10031 make use of `run-mode-hooks' which has been added in Emacs 21.1.
10032 (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
10033 (awk-mode): Use it.
10034 (make-local-hook): Suppress warning about obsoleteness.
10035
10036 * cc-engine.el, cc-align.el, cc-cmds.el
10037 (c-append-backslashes-forward, c-delete-backslashes-forward)
10038 (c-find-decl-spots, c-semi&comma-no-newlines-before-nonblanks):
10039 Compensate for return value from `forward-line' when it has moved
10040 but not to a different line due to eob.
10041
10042 * cc-engine.el (c-guess-basic-syntax): Fix anchoring in
10043 `objc-method-intro' and `objc-method-args-cont'.
10044
10045 2005-05-23 Alan Mackenzie <bug-cc-mode@gnu.org>
10046
10047 CC Mode update to 5.30.10:
10048
10049 * cc-mode.el, cc-engine.el, cc-align.el: Change the FSF's address
10050 in the copyright statement. Incidentally, change "along with GNU
10051 Emacs" to "along with this program" where it occurs.
10052
10053 * cc-mode.el: Add a fourth parameter `t' to the awk-mode autoload,
10054 so that it is interactive, hence can be found by M-x awk-mode
10055 whilst cc-mode is yet to be loaded. Reported by Glenn Morris
10056 <gmorris+emacs@ast.cam.ac.uk>.
10057
10058 * cc-awk.el: Add character classes (e.g. "[:alpha:]") into AWK
10059 Mode's regexps.
10060
10061 2005-05-23 Kevin Ryde <user42@zip.com.au>
10062
10063 * cc-align.el (c-lineup-argcont): Ignore conses for {} pairs from
10064 c-parse-state, to avoid a lisp error (on bad code).
10065
10066 2005-05-23 Lute Kamstra <lute@gnu.org>
10067
10068 * subr.el (font-lock-defaults): Remove defvar as it's already
10069 defined in font-core.el.
10070
10071 * font-lock.el (font-lock-beginning-of-syntax-function): Fix docstring.
10072
10073 2005-05-23 Nick Roberts <nickrob@snap.net.nz>
10074
10075 * progmodes/gdb-ui.el (gdb-info-locals-handler): Make regexps
10076 more general and work when GDB variable "print pretty" is on,
10077 as with Emacs, for example.
10078
10079 2005-05-22 Luc Teirlinck <teirllm@auburn.edu>
10080
10081 * font-core.el: Update comment.
10082
10083 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
10084 Use `after-change-major-mode-hook' instead of `find-file-hook'.
10085
10086 * buff-menu.el (Buffer-menu-mode): Use `run-mode-hooks'.
10087
10088 2005-05-22 Eli Zaretskii <eliz@gnu.org>
10089
10090 * simple.el (yank, yank-pop): Mention `yank-excluded-properties'
10091 and `yank-handler' in the doc strings.
10092
10093 2005-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
10094
10095 * emacs-lisp/cl.el (eql): Remove. It's a builtin already.
10096
10097 2005-05-22 Richard M. Stallman <rms@gnu.org>
10098
10099 * help.el (describe-key): Move print-help-return-message call
10100 out of conditional.
10101
10102 * progmodes/etags.el (list-tags): Use with-no-warnings.
10103
10104 * mail/smtpmail.el (smtpmail-open-stream): Use with-no-warnings.
10105 (smtpmail-send-queued-mail): Avoid beginning-of-buffer.
10106 (starttls-extra-args, starttls-extra-arguments): Add defvars.
10107
10108 * mail/mailalias.el (mail-get-names): Avoid beginning-of-buffer.
10109
10110 * language/viet-util.el (viet-viscii-nonascii-translation-table):
10111 Add defvar.
10112
10113 * emulation/viper-ex.el (viper-ex-work-buf, viper-ex-print-buf):
10114 Use defvar, not defconst.
10115
10116 * hexl.el (hexl-follow-line): Use with-no-warnings.
10117
10118 * emulation/tpu-extras.el: Use write-file-functions instead of
10119 write-file-hooks.
10120
10121 * dired.el (dired-font-lock-keywords): Fontify files with junk
10122 extensions even if marked by -F.
10123
10124 2005-05-22 Juanma Barranquero <lekktu@gmail.com>
10125
10126 * emacs-lisp/cl.el (pushnew, cl-macroexpand, floatp-safe, plusp)
10127 (minusp, oddp, evenp, mapcar*, list*, copy-list, adjoin, subst):
10128 * emacs-lisp/cl-extra.el (coerce, map, maplist, cl-mapc, mapl)
10129 (mapcan, mapcon, some, every, notany, notevery, signum, isqrt)
10130 (concatenate, list-length, get*, getf, cl-remprop):
10131 * emacs-lisp/cl-macs.el (function*, case, ecase, typecase)
10132 (etypecase, progv, lexical-let, lexical-let*)
10133 (multiple-value-bind, multiple-value-setq, shiftf):
10134 Improve argument/docstring consistency.
10135
10136 * subr.el (focus-frame, unfocus-frame):
10137 Revert deletion on 2005-05-01.
10138
10139 2005-05-22 Andre Spiegel <spiegel@gnu.org>
10140
10141 * vc-cvs.el (vc-cvs-checkout-model): Handle the case where FILE
10142 doesn't exist.
10143
10144 * vc.el (vc-trunk-p): Add autoload cookie. The function is used in
10145 vc-rcs.el when vc-mistrust-permissions is t, which is not the default.
10146
10147 2005-05-22 Nick Roberts <nickrob@snap.net.nz>
10148
10149 * emacs-lisp/bytecomp.el: Remove make-obsolete-variable for
10150 already deleted variables: auto-fill-hook, blink-paren-hook,
10151 lisp-indent-hook, inhibit-local-variables, unread-command-event,
10152 suspend-hooks, comment-indent-hook, meta-flag,
10153 before-change-function, after-change-function,
10154 font-lock-doc-string-face.
10155
10156 2005-05-21 Luc Teirlinck <teirllm@auburn.edu>
10157
10158 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
10159
10160 2005-05-21 Eli Zaretskii <eliz@gnu.org>
10161
10162 * mail/rmail.el (rmail-reply): Filter the list in reply-to through
10163 rmail-dont-reply-to.
10164
10165 2005-05-21 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
10166
10167 * mail/sendmail.el (mail-send): Use [[:space:]] instead of a
10168 literal blank when splitting new-header-values.
10169
10170 2005-05-21 Matt Hodges <MPHodges@member.fsf.org>
10171
10172 * calendar/cal-menu.el (cal-menu-update): Add separator as a
10173 string so that tmm doesn't create a completion entry for it.
10174
10175 * textmodes/table.el (table-disable-menu): Ditto.
10176
10177 2005-05-21 Richard M. Stallman <rms@gnu.org>
10178
10179 * progmodes/idlwave.el (idlwave-doc-header): Use insert-file-contents.
10180
10181 * progmodes/flymake.el (flymake-makehash): Use with-no-warnings.
10182
10183 * net/rcompile.el (remote-compile): Use compilation-start.
10184
10185 * tmm.el (tmm-shortcut): Avoid using beginning-of-buffer.
10186
10187 2005-05-21 Daniel Pfeiffer <occitan@esperanto.org>
10188
10189 * files.el (auto-mode-alist): Check GNUmakefile before makefile.
10190 Default to makefile-bsdmake-mode on BSD systems.
10191
10192 * imenu.el (imenu-generic-expression, imenu--generic-function'):
10193 REGEXP may also be a search function now. The part of doc-string
10194 for describing the structure was 95% identical to that of
10195 `imenu--generic-function'. Unify it there.
10196
10197 * progmodes/make-mode.el (makefile-imenu-generic-expression):
10198 Use function to find dependencies, because regexp alone is so complex,
10199 it easily goes into an endless loop.
10200 (makefile-makepp-mode): Also add submenu for Perl functions
10201 defined in the makefile.
10202 (makefile-bsdmake-mode): Special imenu-generic-expression no
10203 longer needed, due to function call.
10204 (makefile-match-dependency): Take BOUND into account when checking
10205 if we're through.
10206
10207 2005-05-20 Jay Belanger <belanger@truman.edu>
10208
10209 * calc/calc-units.el (calc-invalidate-units-table):
10210 Use inhibit-read-only.
10211 (math-build-units-table-buffer): Use view-mode.
10212
10213 2005-05-20 David Kastrup <dak@gnu.org>
10214
10215 * emacs-lisp/easymenu.el (easy-menu-add): Correct docstring since
10216 easy-menu-add is not a nop on Emacs; and clarify when to call it.
10217
10218 2005-05-20 Lute Kamstra <lute@gnu.org>
10219
10220 * diff-mode.el (diff-header-face, diff-file-header-face)
10221 (diff-index-face, diff-hunk-header-face, diff-removed-face)
10222 (diff-added-face, diff-changed-face, diff-function-face)
10223 (diff-context-face, diff-nonexistent-face): Put them in the
10224 diff-mode customization group.
10225
10226 2005-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
10227
10228 * progmodes/vhdl-mode.el (vhdl-font-lock-match-item): Simplify regexp.
10229
10230 * progmodes/sh-script.el (sh-mode, sh-get-word): Minor regexp fixes.
10231
10232 * font-lock.el (lisp-font-lock-keywords-2): Don't error.
10233 Minor regexp-optimization.
10234
10235 2005-05-20 Carsten Dominik <dominik@science.uva.nl>
10236
10237 * textmodes/org.el (org-agenda-toggle-time-grid): New command.
10238 (org-agenda-use-time-grid, org-agenda-time-grid): New options.
10239 (org-agenda-add-time-grid-maybe): New function.
10240 (org-agenda): Call `org-agenda-add-time-grid-maybe'.
10241 (org-table-create): `dotimes' instead of `mapcar'.
10242 (org-xor): Simplify implementation.
10243 (org-agenda): `inhibit-redisplay' turned on.
10244 (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
10245 a consistent line after a state change.
10246 (org-agenda-remove-times-when-in-prefix): New option.
10247 (org-prefix-has-time): New variable.
10248 (org-parse-time-string): Optional argument NODEFAULT.
10249 (org-format-agenda-item): Parse items for time-of-day
10250 specifications and move these into the prefix if possible.
10251 (org-agenda-priority): Get current heading, not previous heading
10252 during agenda remote editing.
10253
10254 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
10255
10256 * emacs-lisp/cl-seq.el (reduce, fill, replace, remove*)
10257 (remove-if, remove-if-not, delete*, delete-if, delete-if-not)
10258 (remove-duplicates, delete-duplicates, substitute)
10259 (substitute-if, substitute-if-not, nsubstitute, nsubstitute-if)
10260 (nsubstitute-if-not, find, find-if, find-if-not, position)
10261 (position-if, position-if-not, count, count-if, count-if-not)
10262 (mismatch, search, sort*, stable-sort, merge, member*)
10263 (member-if, member-if-not, assoc*, assoc-if, assoc-if-not)
10264 (rassoc*, rassoc-if, rassoc-if-not, union, nunion)
10265 (intersection, nintersection, set-difference, nset-difference)
10266 (set-exclusive-or, nset-exclusive-or, subsetp, subst-if)
10267 (subst-if-not, nsubst, nsubst-if, nsubst-if-not, sublis)
10268 (nsublis, tree-equal): Improve argument/docstring consistency.
10269
10270 * subr.el (send-string, send-region):
10271 Remove obsolescence declaration.
10272 (window-dot, set-window-dot, read-input, show-buffer)
10273 (eval-current-buffer, string-to-int):
10274 Add release number to obsolescence declarations.
10275
10276 2005-05-19 Kim F. Storm <storm@cua.dk>
10277
10278 * ido.el (ido-magic-forward-char): Enter ido-find-file at end of input.
10279 (ido-magic-backward-char): Enter ido-switch-buffer at start of input.
10280
10281 2005-05-20 Matt Hodges <MPHodges@member.fsf.org>
10282
10283 * faces.el (list-faces-display): Make back button respect optional
10284 regexp arg.
10285
10286 2005-05-19 Juanma Barranquero <lekktu@gmail.com>
10287
10288 * calculator.el (calculator-radix-grouping-mode)
10289 (calculator-radix-grouping-digits, calculator-displayer)
10290 (calculator-radix-grouping-separator, calculator-copy-displayer):
10291 * dabbrev.el (dabbrev-search-these-buffers-only):
10292 * diff-mode.el (diff-jump-to-old-file, diff-update-on-the-fly)
10293 (diff-advance-after-apply-hunk, diff-mode-hook)
10294 (diff-minor-mode-prefix):
10295 * imenu.el (imenu-use-popup-menu):
10296 * jit-lock.el (jit-lock-context-time):
10297 * newcomment.el (comment-fill-column, comment-column)
10298 (comment-style, comment-padding, comment-multi-line)
10299 (comment-empty-lines, comment-auto-fill-only-comments):
10300 * reveal.el (reveal-around-mark):
10301 * uniquify.el (uniquify-buffer-name-style)
10302 (uniquify-after-kill-buffer-p)
10303 (uniquify-ask-about-buffer-names-p, uniquify-ignore-buffers-re)
10304 (uniquify-min-dir-content, uniquify-separator)
10305 (uniquify-trailing-separator-p, uniquify-strip-common-suffix):
10306 * w32-vars.el (w32-fixed-font-alist):
10307 * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
10308 * obsolete/rsz-mini.el (resize-minibuffer-frame-max-height):
10309 * progmodes/antlr-mode.el (antlr-font-lock-maximum-decoration):
10310 * progmodes/perl-mode.el (perl-indent-level)
10311 (perl-continued-statement-offset, perl-continued-brace-offset)
10312 (perl-brace-offset, perl-brace-imaginary-offset)
10313 (perl-label-offset, perl-indent-continued-arguments)
10314 (perl-tab-always-indent, perl-tab-to-comment, perl-nochange):
10315 * progmodes/tcl.el (tcl-indent-level)
10316 (tcl-continued-indent-level, tcl-auto-newline)
10317 (tcl-tab-always-indent, tcl-electric-hash-style)
10318 (tcl-help-directory-list, tcl-use-smart-word-finder)
10319 (tcl-application, tcl-command-switches, tcl-prompt-regexp)
10320 (inferior-tcl-source-command):
10321 * textmodes/fill.el (enable-kinsoku):
10322 * textmodes/reftex-vars.el (reftex-index-phrases-wrap-long-lines):
10323 * textmodes/table.el (table-yank-handler):
10324 Specify missing group (and type, if simple) in defcustom.
10325
10326 2005-05-19 Luc Teirlinck <teirllm@auburn.edu>
10327
10328 * progmodes/compile.el (compilation-finish-function): Fix defvar.
10329
10330 2005-05-19 Richard M. Stallman <rms@gnu.org>
10331
10332 * progmodes/make-mode.el (makefile-mode): Use run-mode-hooks.
10333
10334 * subr.el (event-basic-type): Don't get an error.
10335 (left-fringe-p): Function deleted.
10336
10337 * buff-menu.el (Buffer-menu-buffer-face): In group Buffer-menu.
10338 (list-buffers-noselect): Set `font-lock-face' property, not `face'.
10339
10340 * dired-aux.el (dired-copy-file-recursive): Handle symlinks
10341 in recursive copy.
10342
10343 * frame.el (show-trailing-whitespace): In group `whitespace-faces'.
10344
10345 * emacs-lisp/byte-run.el (eval-when-compile): Doc fix.
10346
10347 * emacs-lisp/bytecomp.el
10348 (byte-compile-file-form-custom-declare-variable): Call
10349 byte-compile-nogroup-warn if appropriate.
10350
10351 * progmodes/compile.el (compilation-finish-function): Mark obsolete.
10352 (compilation-set-window): Don't call left-fringe-p; do it directly.
10353
10354 2005-05-19 Jay Belanger <belanger@truman.edu>
10355
10356 * calc/calc-graph.el (calc-graph-format-data): Make sure
10357 var-PlotRejects is bound before trying to check its value.
10358
10359 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
10360
10361 * textmodes/reftex.el (reftex-isearch-minor-mode): Move the
10362 definition of this variable from reftex-global.el to reftex.el,
10363 because it is needed in the menu.
10364
10365 2005-05-19 Lute Kamstra <lute@gnu.org>
10366
10367 * emacs-lisp/copyright.el (copyright-fix-years): Make sure all
10368 years are fixed. Don't insert a space after a dash.
10369
10370 2005-05-19 Kim F. Storm <storm@cua.dk>
10371
10372 * emulation/crisp.el (crisp-home, crisp-end): Put CUA property.
10373
10374 2005-05-19 Daniel Pfeiffer <occitan@esperanto.org>
10375
10376 * font-lock.el (lisp-font-lock-keywords-2): Do \\) only in
10377 strings, because (eq ... ?\\) is fairly frequent.
10378
10379 * progmodes/make-mode.el (makefile-add-this-line-targets):
10380 Simplify and integrate into `makefile-pickup-targets'.
10381 (makefile-add-this-line-macro): Simplify and integrate into
10382 `makefile-pickup-macros.
10383 (makefile-pickup-filenames-as-targets): Simplify.
10384 (makefile-previous-dependency, makefile-match-dependency):
10385 Don't stumble over `::'.
10386
10387 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
10388
10389 * subr.el (post-command-idle-hook, post-command-idle-delay):
10390 Remove obsoletion of post-command-idle-hook and
10391 post-command-idle-delay.
10392
10393 * faces.el (list-faces-display): Provide button when describe-face
10394 is called to take user back to the list of faces.
10395
10396 * help-fns.el (describe-variable): Remove hyperlinks in a
10397 variable's value as these are quite frequently inappropriate.
10398
10399 * follow.el (follow-submit-feedback, follow-mode):
10400 Remove references to post-command-idle-hook.
10401
10402 2005-05-18 Daniel Pfeiffer <occitan@esperanto.org>
10403
10404 * progmodes/make-mode.el (makefile-previous-dependency)
10405 (makefile-match-dependency): Check for := (and in bsd mode also
10406 !=) to give a better result, even when font-lock is not on.
10407
10408 2005-05-18 Jay Belanger <belanger@truman.edu>
10409
10410 * calc/calc-help.el (calc-s-prefix-help):
10411 Add `calc-copy-special-constant' to help string.
10412
10413 2005-05-18 Luc Teirlinck <teirllm@auburn.edu>
10414
10415 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
10416
10417 2005-05-18 Jay Belanger <belanger@truman.edu>
10418
10419 * calc/calc-poly.el (math-factor-poly-coefs): Make sure the terms
10420 in linear factors are in proper order.
10421
10422 2005-05-18 Carsten Dominik <dominik@science.uva.nl>
10423
10424 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
10425 Support for jurabib.
10426
10427 * textmodes/reftex.el (featurep): Define aliases for overlay
10428 commands, for XEmacs compatibility, and use these aliases in
10429 overlay initializations.
10430 (reftex-highlight): Use `reftex-move-overlay'.
10431 (reftex-unhighlight): Use `reftex-delete-overlay'.
10432 (reftex-uniq): Function removed. Use `reftex-uniquify' instead.
10433 (reftex-access-search-path): Use `reftex-uniquify' instead of
10434 `reftex-uniq'
10435
10436 * textmodes/reftex-sel.el (reftex-select-unmark): Overlay
10437 `before-string' property modification enables for Emacs as well.
10438 (reftex-select-item): Use `reftex-delete-overlay'.
10439 (reftex-select-mark): Use `reftex-make-overlay' and
10440 `reftex-overlay-put'.
10441 (reftex-select-unmark): Use `reftex-delete-overlay' and
10442 `reftex-overlay-put'.
10443
10444 2005-05-18 Lute Kamstra <lute@gnu.org>
10445
10446 * emacs-lisp/lisp.el (check-parens): Fix docstring.
10447
10448 2005-05-18 Juanma Barranquero <lekktu@gmail.com>
10449
10450 * add-log.el (add-change-log-entry):
10451 * array.el (array-make-template, array-reconfigure-rows)
10452 (array-init-max-row, array-init-max-column)
10453 (array-init-columns-per-line, array-init-field-width):
10454 * replace.el (replace-match-maybe-edit, perform-replace):
10455 * textmodes/spell.el (spell-region):
10456 Replace `read-input' by `read-string'.
10457
10458 * forms.el (forms-mode):
10459 * finder.el (finder-compile-keywords):
10460 * shadowfile.el (shadow-read-files):
10461 Replace `eval-current-buffer' by `eval-buffer'.
10462
10463 * terminal.el (te-pass-through):
10464 * net/ange-ftp.el (ange-ftp-process-filter, ange-ftp-gwp-filter)
10465 (ange-ftp-raw-send-cmd):
10466 * net/telnet.el (telnet-interrupt-subjob, telnet-c-z)
10467 (send-process-next-char, telnet-initial-filter, telnet):
10468 Replace `send-string' by `process-send-string'.
10469
10470 * progmodes/prolog.el (inferior-prolog-mode): Doc fix.
10471 (prolog-consult-region): Replace `send-string' by
10472 `process-send-string'; replace `send-region' by `process-send-region'.
10473
10474 * progmodes/delphi.el (delphi-log-msg):
10475 Replace `set-window-dot' by `set-window-point'.
10476
10477 * subr.el (window-dot, set-window-dot, read-input, send-string)
10478 (send-region, show-buffer, eval-current-buffer):
10479 Make really obsolete, as the comment says.
10480
10481 2005-05-17 Kim F. Storm <storm@cua.dk>
10482
10483 * emulation/cua-base.el (cua-use-hyper-key): Doc fix.
10484 (cua--init-keymaps): Bind C-return instead of S-return to set
10485 rectangle mark.
10486
10487 * emulation/cua-rect.el (cua--init-rectangles): Bind C-return
10488 instead of S-return to toggle/clear rectangle mark.
10489
10490 2005-05-17 Daniel Pfeiffer <occitan@esperanto.org>
10491
10492 * progmodes/make-mode.el (makefile-dependency-skip): New variable.
10493 (makefile-macroassign-regex, makefile-make-font-lock-keywords):
10494 Also fontify plain strings assigned to variables, mostly so that a
10495 colon has a face and is thus not taken as a dependency separator.
10496 (makefile-previous-dependency): Inline the new matcher, because it
10497 is too complex to work in both directions.
10498 (makefile-match-dependency): Eliminate `backward' arg (see above).
10499 Completely reimplemented so as to not sometimes go into an endless
10500 loop. It should also be more efficient, because first it only
10501 searches for `:', instead of applying the very complex regexp.
10502 (makefile-mode): Cancel `font-lock-support-mode', because blocks
10503 to be fontified in one piece can be too long for JIT.
10504 Makefiles are never *that* big.
10505
10506 2005-05-17 Reiner Steib <Reiner.Steib@gmx.de>
10507
10508 * dired.el (dired-mode): Simplify.
10509
10510 2005-05-17 Lute Kamstra <lute@gnu.org>
10511
10512 * emacs-lisp/easy-mmode.el (define-minor-mode): Don't generate a
10513 defcustom for the mode hook variable.
10514
10515 * emacs-lisp/authors.el (authors): Do parse the ChangeLogs of the
10516 Emacs Lisp Reference Manual.
10517
10518 2005-05-17 Juanma Barranquero <lekktu@gmail.com>
10519
10520 * emacs-lisp/cl.el (eql, floatp-safe, plusp, minusp, oddp)
10521 (evenp, list*):
10522 * emacs-lisp/cl-macs.el (macrolet, symbol-macrolet):
10523 * emacs-lisp/cl-seq.el (subsetp, tree-equal): Doc fixes.
10524
10525 * net/tramp-smb.el (tramp-smb-open-connection):
10526 Pass `tramp-chunksize' as fifth (required) argument.
10527
10528 2005-05-16 Daniel Pfeiffer <occitan@esperanto.org>
10529
10530 * font-lock.el (lisp-font-lock-keywords-1):
10531 Set `font-lock-negation-char-face' for [^...] char group.
10532 (lisp-font-lock-keywords-2): Highlight regexp's \\( \\| \\).
10533
10534 * progmodes/make-mode.el (makefile-dependency-regex): Turn it into
10535 a var, and refine it to mask one more level of nested vars.
10536 (makefile-rule-action-regex): Turn it into a var, and refine it so
10537 it recognizes backslashed continuation lines as belonging to the
10538 same command.
10539 (makefile-macroassign-regex): Refine it so it recognizes
10540 backslashed continuation lines as belonging to the same command.
10541 (makefile-var-use-regex): Don't look at the next char, because it
10542 might be the same one to be skipped by the initial [^$], leading
10543 to an overlooked variable use.
10544 (makefile-make-font-lock-keywords): Remove two parameters, which
10545 are now variables that some of the modes set locally.
10546 Handle dependency and rule action matching through functions, because
10547 regexps alone match too often. Dependency matching now comes
10548 last, so it can check, whether a colon already matched something else.
10549 (makefile-mode): Inform that font-lock improves makefile parsing
10550 capabilities.
10551 (makefile-match-dependency, makefile-match-action): New functions.
10552
10553 2005-05-16 Juanma Barranquero <lekktu@gmail.com>
10554
10555 * emacs-lisp/cl-extra.el (equalp): Doc fix.
10556
10557 * align.el (align-regexp):
10558 * ansi-color.el (ansi-color-get-face):
10559 * array.el (array-reconfigure-rows, array-init-max-row)
10560 (array-init-max-column, array-init-columns-per-line)
10561 (array-init-field-width):
10562 * dired-aux.el (dired-trample-file-versions):
10563 * dired-x.el (dired-mark-sexp):
10564 * ediff-diff.el (ediff-extract-diffs, ediff-get-diff3-group):
10565 * edmacro.el (edmacro-finish-edit, edmacro-parse-keys):
10566 * emerge.el (emerge-extract-diffs, emerge-get-diff3-group):
10567 * faces.el (face-read-integer):
10568 * files.el (backup-extract-version, insert-directory):
10569 * hexl.el (hexl-insert-decimal-char):
10570 * server.el (server-process-filter):
10571 * shell.el (shell-extract-num):
10572 * startup.el (command-line-1):
10573 * term.el (term-command-hook):
10574 * time-stamp.el (time-stamp, time-stamp-string-preprocess)
10575 (time-stamp-do-number):
10576 * time.el (display-time-update):
10577 * timezone.el (timezone-parse-date, timezone-zone-to-minute)
10578 (timezone-fix-time):
10579 * vms-patch.el (vms-suspend-resume-hook):
10580 * calendar/appt.el (appt-convert-time):
10581 * calendar/cal-bahai.el (mark-bahai-diary-entries):
10582 * calendar/cal-hebrew.el (mark-hebrew-diary-entries):
10583 * calendar/cal-islam.el (mark-islamic-diary-entries):
10584 * calendar/calendar.el (calendar-cursor-to-date)
10585 (calendar-star-date):
10586 * calendar/diary-lib.el (diary-attrtype-convert)
10587 (mark-diary-entries, diary-entry-time):
10588 * calendar/solar.el (solar-get-number):
10589 * emacs-lisp/lisp-mnt.el (lm-last-modified-date):
10590 * emacs-lisp/re-builder.el (reb-display-subexp):
10591 * emulation/edt.el (edt-set-scroll-margins):
10592 * emulation/tpu-extras.el (tpu-set-scroll-margins):
10593 * emulation/vip.el (vip-get-ex-token, vip-get-ex-buffer)
10594 (vip-get-ex-count):
10595 * emulation/viper-ex.el (viper-get-ex-token)
10596 (viper-get-ex-buffer, viper-get-ex-count, ex-next):
10597 * international/fontset.el (fontset-plain-name):
10598 * mail/feedmail.el (feedmail-look-at-queue-directory):
10599 * mail/mailalias.el (mail-get-names):
10600 * mail/rmail.el (rmail-convert-to-babyl-format):
10601 * mail/rmailsum.el (rmail-make-basic-summary-line)
10602 (rmail-summary-next-same-subject, rmail-summary-rmail-update)
10603 (rmail-summary-goto-msg):
10604 * mail/smtpmail.el (smtpmail-read-response):
10605 * net/ange-ftp.el (ange-ftp-guess-hash-mark-size)
10606 (ange-ftp-vms-add-file-entry):
10607 * play/gametree.el (gametree-looking-at-ply)
10608 (gametree-current-branch-score):
10609 * progmodes/ada-xref.el (ada-prj-find-prj-file)
10610 (ada-xref-find-in-modified-ali, ada-find-in-src-path):
10611 * progmodes/cperl-mode.el (condition-case):
10612 * progmodes/ebrowse.el (ebrowse-set-tree-indentation)
10613 (ebrowse-set-member-buffer-column-width)
10614 (ebrowse-select-1st-to-9nth):
10615 * progmodes/etags.el (etags-snarf-tag):
10616 * progmodes/flymake.el (flymake-parse-line):
10617 * progmodes/idlw-shell.el (idlwave-shell-parse-line)
10618 (idlwave-shell-filter-bp, idlwave-shell-goto-next-error)
10619 (idlwave-shell-menu-def):
10620 * progmodes/ps-mode.el (ps-run-goto-error):
10621 * progmodes/vhdl-mode.el (vhdl-read-offset, vhdl-load-cache)
10622 (vhdl-speedbar-contract-level):
10623 * term/mac-win.el (x-handle-numeric-switch):
10624 * term/sun-mouse.el (sun-get-frame-data):
10625 * term/w32-win.el (x-handle-numeric-switch):
10626 * term/x-win.el (x-handle-numeric-switch):
10627 * textmodes/ispell.el (ispell-parse-output):
10628 * textmodes/nroff-mode.el (nroff-outline-level):
10629 * textmodes/reftex-cite.el (reftex-bib-sort-year)
10630 (reftex-bib-sort-year-reverse, reftex-format-citation):
10631 * textmodes/reftex-parse.el (reftex-init-section-numbers)
10632 (reftex-section-number):
10633 * textmodes/texinfmt.el (texinfo-paragraphindent):
10634 Replace `string-to-int' by `string-to-number'.
10635
10636 * international/latexenc.el: Add page marker to force the "Local
10637 Variables:" string out of the last page.
10638
10639 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
10640
10641 * progmodes/gud.el (gud-tooltip-mode): Add gud prefix to
10642 tooltip-change-major-mode.
10643 (gud-tooltip-print-command): Remove case where gud-minor-mode
10644 is gdb ("--fullname").
10645 (gud-tooltip-tips): Turn GUD tooltips off for this case and
10646 explain to user.
10647
10648 2005-05-16 Jay Belanger <belanger@truman.edu>
10649
10650 * calc/calc-store.el (calc-copy-special-constant): New function.
10651
10652 * calc/calc-ext.el (calc-init-extensions): Add binding for
10653 `calc-copy-special-constant'.
10654
10655 * calc/calc-prog.el (calc-edit-format-macro-buffer): Add a case
10656 for the `calc-copy-special-constant' command.
10657
10658 2005-05-16 Nick Roberts <nickrob@snap.net.nz>
10659
10660 * subr.el (left-fringe-p): New function.
10661
10662 * progmodes/compile.el (compilation-setup): Set local value of
10663 overlay-arrow-string to "" always.
10664 (compilation-set-window): Left fringe then don't scroll.
10665 No left fringe then no arrow and scroll message to top.
10666 (compilation-context-lines): Adjust doc string accordingly.
10667
10668 2005-05-16 Kim F. Storm <storm@cua.dk>
10669
10670 * ido.el (ido-magic-forward-char, ido-magic-backward-char)
10671 (ido-magic-delete-char): New commands for C-f, C-b, C-d.
10672 (ido-wide-find-dir-or-delete-dir): New command for M-d.
10673 (ido-define-mode-map): Bind them. Add C-x prefix to fallback commands.
10674 (ido-read-file-name): Handle commands with ido property value
10675 equal to find-file as reading a file name, to allow C-d to enter dired.
10676 (ibuffer-find-file): Add ido property with value find-file.
10677
10678 2005-05-15 Kim F. Storm <storm@cua.dk>
10679
10680 * subr.el (open-network-stream-nowait): Remove.
10681 (open-network-stream-server): Remove.
10682
10683 2005-05-15 Richard M. Stallman <rms@gnu.org>
10684
10685 * faces.el (describe-face): Output a definition link button.
10686
10687 * help-mode.el (help-face-def): New button type.
10688
10689 * emacs-lisp/copyright.el (copyright-fix-years):
10690 Match properly if the first year is 2-digit.
10691 Don't mess up the whitespace after the years by filling.
10692
10693 * dired-aux.el (dired-mark-confirm):
10694 Pass t to dired-get-marked-files for DISTINGUISH-ONE-MARKED.
10695
10696 * dired.el (dired-map-over-marks): New arg DISTINGUISH-ONE-MARKED.
10697 (dired-get-marked-files): New arg DISTINGUISH-ONE-MARKED.
10698 (dired-mark-pop-up): Handle FILES = (t FILE) specially.
10699
10700 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10701 Set font-lock-comment-start-skip.
10702
10703 * font-lock.el (font-lock-comment-start-skip): New variable.
10704 (font-lock-comment-end-skip): New variable.
10705 (font-lock-fontify-syntactically-region): Use them if non-nil.
10706
10707 2005-05-15 Jay Belanger <belanger@truman.edu>
10708
10709 * calc/calc-store.el (calc-store-value): Return a string rather
10710 than display it as a message.
10711 Use calc-var-name for variable name.
10712 (calc-store-into): Add the result of calc-store-value to message.
10713 (calc-copy-variable): Add a message.
10714 (calc-store-exchange): Improve error messages.
10715 (calc-store-binary, calc-store-map): Don't reset the values of
10716 special constants.
10717
10718 2005-05-14 Luc Teirlinck <teirllm@auburn.edu>
10719
10720 * emacs-lisp/derived.el (define-derived-mode): Add link to Elisp
10721 manual to docstring.
10722
10723 * files.el (hack-local-variables-confirm): Add STRING argument.
10724 Make the function handle non file visiting buffers correctly.
10725 (hack-local-variables-prop-line, hack-local-variables)
10726 (hack-one-local-variable): Use STRING arg of
10727 `hack-local-variables-confirm'.
10728
10729 2005-05-14 Michael Albinus <michael.albinus@gmx.de>
10730
10731 Sync with Tramp 2.0.49.
10732
10733 * net/tramp.el (tramp-handle-dired-call-process)
10734 (tramp-handle-insert-directory):`insert-buffer' cannot be used
10735 because the contents of the Tramp buffer is changed before
10736 insertion (`expand-file' and alike).
10737 (tramp-handle-insert-directory): If `localname' has an empty
10738 nondirectory name, it must not be quoted.
10739 (tramp-pre-connection): Add parameter CHUNKSIZE. Make local
10740 variable `tramp-chunksize'. Change callees.
10741 (tramp-open-connection-setup-interactive-shell): Check remote host
10742 for buggy `send-process-string' implementation.
10743 Set `tramp-chunksize' if found. Reported by Michael Kifer
10744 <kifer@cs.sunysb.edu> (and a lot of other people all the years).
10745 (tramp-handle-shell-command): `insert-buffer' cannot be used
10746 because the contents of the Tramp buffer is changed before
10747 insertion (`expand-file' and alike). Reported by Fr\e,Ai\e(Bd\e,Ai\e(Bric Bothamy
10748 <frederic.bothamy@free.fr>.
10749 (tramp-set-auto-save): Actions should be done for Tramp file name
10750 handler only. Ange-FTP has its own auto-save mechanism.
10751 Reported by Richard G. Bielawski <Richard.G.Bielawski@wellsfargo.com>.
10752 (tramp-set-auto-save-file-modes): Set file modes of
10753 `buffer-auto-save-file-name' to ?\600 as fallback solution.
10754 Reported by Ferenc Wagner <wferi@tba.elte.hu>.
10755 (tramp-bug): Remove obsolete variable.
10756 (tramp-append-tramp-buffers): Rewrite partly. More suitable check
10757 for presence of `mml-mode'. Make it running for older Emacsen as well.
10758
10759 2005-05-14 John Paul Wallington <jpw@pobox.com>
10760
10761 * ibuf-ext.el (define-ibuffer-filter filename):
10762 If `dired-directory' is a list, use its car.
10763
10764 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
10765
10766 * ibuffer.el (define-ibuffer-column filename):
10767 If `dired-directory' is a list, use its car.
10768
10769 2005-05-14 Richard M. Stallman <rms@gnu.org>
10770
10771 * subr.el (symbol-file): Doc fix.
10772
10773 * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.
10774 (byte-compile-form): Call byte-compile-nogroup-warn.
10775 (byte-compile-warning-types): Doc fix.
10776
10777 * eshell/esh-mode.el (eshell-find-tag): Use with-no-warnings.
10778
10779 * progmodes/cc-engine.el (c-literal-faces):
10780 Add font-lock-comment-delimiter-face.
10781
10782 * net/net-utils.el (dig): Use with-no-warnings.
10783
10784 * mail/supercite.el (sc-cite-frame-alist, sc-uncite-frame-alist)
10785 (sc-recite-frame-alist, sc-default-cite-frame)
10786 (sc-default-uncite-frame, sc-default-recite-frame)
10787 (sc-attrib-selection-list, sc-rewrite-header-list):
10788 Mark as risky-local-variable.
10789
10790 * international/ogonek.el (ogonek-jak, ogonek-how):
10791 Don't use beginning-of-buffer.
10792
10793 * emacs-lisp/eldoc.el (eldoc-documentation-function): Add autoload.
10794
10795 * calendar/solar.el (solar-data-list): Move definition up.
10796
10797 * dnd.el (dnd-protocol-alist): Add autoload.
10798
10799 * progmodes/sh-script.el: Many doc usage fixes.
10800 (sh-indent-after-do): Change default to match common styles.
10801
10802 2005-05-13 Luc Teirlinck <teirllm@auburn.edu>
10803
10804 * files.el (interpreter-mode-alist)
10805 (auto-mode-interpreter-regexp): Doc fixes.
10806
10807 2005-05-13 Matt Hodges <MPHodges@member.fsf.org>
10808
10809 * tmm.el (tmm-get-keymap): Include only active menus and menu items.
10810
10811 * emacs-lisp/easymenu.el (easy-menu-define): Doc fixes.
10812
10813 2005-05-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10814
10815 * dired.el (dired-mode): make-variable-buffer-local =>
10816 make-local-variable.
10817
10818 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10819
10820 * term/mac-win.el (mac-select-convert-to-string): Try coding
10821 systems in mac-script-code-coding-systems if specified one cannot
10822 encode string for `com.apple.traditional-mac-plain-text'.
10823
10824 2005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
10825
10826 * progmodes/make-mode.el (makefile-targets-face)
10827 (makefile-shell-face, makefile-makepp-perl-face): New faces.
10828 (makefile-dependency-regex): Fix it to not make the colon in
10829 $(var:a=b) special.
10830 (makefile-rule-action-regex): New regexp for highlighting embedded
10831 Shell strings.
10832 (makefile-macroassign-regex): Handle != for highlighting as
10833 embedded Shell strings.
10834 (makefile-var-use-regex): New const.
10835 (makefile-statements, makefile-automake-statements)
10836 (makefile-gmake-statements, makefile-makepp-statements)
10837 (makefile-bsdmake-statements): New consts.
10838 (makefile-make-font-lock-keywords): New function.
10839 (makefile-automake-font-lock-keywords)
10840 (makefile-gmake-font-lock-keywords)
10841 (makefile-makepp-font-lock-keywords)
10842 (makefile-bsdmake-font-lock-keywords): New consts.
10843 (makefile-mode-map): Add switchers between the various submodes.
10844 (makefile-mode): Document the availability of the variants.
10845 (makefile-automake-mode, makefile-gmake-mode)
10846 (makefile-makepp-mode, makefile-bsdmake-mode): New derived modes.
10847
10848 * files.el (auto-mode-alist, interpreter-mode-alist): Set up the
10849 new variants of makefile-mode.
10850
10851 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
10852
10853 * font-lock.el (font-lock-comment-delimiter-face): Fix up
10854 the inheritance.
10855
10856 2005-05-12 Luc Teirlinck <teirllm@auburn.edu>
10857
10858 * progmodes/inf-lisp.el (inferior-lisp-mode-hook)
10859 (inferior-lisp-load-hook): Convert defcustoms back to defvars.
10860
10861 * files.el (normal-mode): Extend the scope of the
10862 `enable-local-variables' binding to include the `set-auto-mode' call.
10863 (magic-mode-alist): Doc fix.
10864
10865 2005-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
10866
10867 * font-lock.el (font-lock-comment-delimiter-face): Inherit from
10868 font-lock-comment-face rather than copying its setting.
10869
10870 2005-05-12 Andreas Schwab <schwab@suse.de>
10871
10872 * eshell/esh-mode.el (eshell-send-input): Doc fix.
10873
10874 2005-05-12 Lute Kamstra <lute@gnu.org>
10875
10876 * emacs-lisp/generic.el (define-generic-mode): Don't generate a
10877 defcustom for the mode hook variable. Delete the last argument.
10878 * generic-x.el: Fix callers of define-generic-mode.
10879 (generic-x-modes): Delete group.
10880 (show-tabs-tab-face, show-tabs-space-face): Put them in the
10881 generic-x customization group.
10882
10883 2005-05-12 Kim F. Storm <storm@cua.dk>
10884
10885 * font-lock.el (font-lock-negation-char-face): Default to "off".
10886
10887 * progmodes/cc-fonts.el (c-basic-matchers-before): Don't apply
10888 font-lock-negation-char-face to ! in !=.
10889
10890 2005-05-12 Masatake YAMATO <jet@gyve.org>
10891
10892 * add-log.el (find-change-log): Fix typos in the docstring
10893 of function.
10894
10895 2005-05-11 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
10896
10897 * international/latexenc.el (latexenc-find-file-coding-system):
10898 Avoid `re-search-forward' when looking for input encoding because
10899 of speed and safety. Better regular expressions for recognizing
10900 input encoding. Limit a search for TeX-master/tex-main-file to
10901 the local variable section.
10902
10903 2005-05-11 Dan Nicolaescu <dann@ics.uci.edu>
10904
10905 * progmodes/sh-script.el (sh-mode-default-syntax-table): Set the
10906 syntax of $ to "'" (quote).
10907
10908 2005-05-11 Reiner Steib <Reiner.Steib@gmx.de>
10909
10910 * dnd.el (dnd-protocol-alist): Improve custom type.
10911
10912 * dired.el (dired-dnd-protocol-alist): New variable.
10913 (dired-mode): Use `dired-dnd-protocol-alist'. Move call of
10914 `dired-mode-hook' to the end.
10915
10916 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
10917
10918 * font-lock.el (font-lock-fontify-syntactically-region): Don't use
10919 comment-end if comment-start-skip is not set.
10920 Obey the font-lock-comment-delimiter-face variables.
10921
10922 2005-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
10923
10924 * files.el (executable-find): Move from executable.el. Use
10925 locate-file.
10926 * progmodes/executable.el (executable-find): Move to files.el.
10927
10928 * font-lock.el (font-lock-fontify-keywords-region): Use a marker
10929 when trying to ensure forward progress.
10930
10931 2005-05-11 Chong Yidong <cyd@stupidchicken.com>
10932
10933 * mouse-sel.el (mouse-sel-follow-link-p): New function.
10934 (mouse-select, mouse-select-internal, mouse-extend-internal):
10935 Use it to implement mouse-1-click-follows-link functionality.
10936
10937 2005-05-11 Richard M. Stallman <rms@gnu.org>
10938
10939 * font-lock.el (font-lock-fontify-syntactically-region):
10940 Use font-lock-comment-delimiter-face for comment delimiters.
10941
10942 2005-05-10 Jay Belanger <belanger@truman.edu>
10943
10944 * calc/calc-help.el (calc-m-prefix-help): Add mention of
10945 preserving embedded modes.
10946
10947 2005-05-10 Richard M. Stallman <rms@gnu.org>
10948
10949 * progmodes/sh-script.el (sh-indent-for-do): Default to 0.
10950
10951 * progmodes/ada-mode.el (ada-adjust-case-skeleton):
10952 Move from ada-stmt.el.
10953 (ada-mode): Add ada-adjust-case-skeleton to skeleton-end-hook.
10954
10955 * progmodes/ada-stmt.el (ada-adjust-case-skeleton):
10956 Move to ada-mode.el.
10957 (ada-stmt-mode-hook): Delete; do the work in ada-mode.
10958
10959 * cus-edit.el (custom-file): Call file-chase-links.
10960
10961 * files.el (read-directory-name): Fix previous change.
10962 (hack-local-variables-confirm): New function.
10963 (hack-local-variables-prop-line, hack-local-variables)
10964 (hack-one-local-variable): Use it.
10965
10966 2005-05-10 Lute Kamstra <lute@gnu.org>
10967
10968 * font-lock.el (font-lock-keywords-alist)
10969 (font-lock-removed-keywords-alist): Clarify docstrings.
10970
10971 2005-05-10 Nick Roberts <nickrob@snap.net.nz>
10972
10973 * progmodes/gdb-ui.el (gdb-macro-info): New variable.
10974 (gdb-source-info): Check for preprocessor info.
10975 (gdb-tooltip-print-1): New function. Don't print tooltip if it is
10976 a macro for a function.
10977 (gdb-info-breakpoints-custom): Try to find file again if not already
10978 found (user might have used GDB dir command).
10979 (gdb-get-location): Update gdb-location-alist correctly for change
10980 to gdb-info-breakpoints-custom.
10981
10982 * progmodes/gud.el (gud-tooltip-mode): Require tooltip to be safe.
10983 (gud-tooltip-print-command): Add gdbmi case.
10984 (gud-tooltip-tips): Call gdb-tooltip-print-1 first if there is
10985 preprocessor info.
10986
10987 2005-05-09 Reiner Steib <Reiner.Steib@gmx.de>
10988
10989 * startup.el (fancy-splash-insert): Fix typo in doc string.
10990
10991 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
10992
10993 * obsolete/float.el (string-to-float):
10994 * obsolete/hilit19.el (hilit-add-pattern):
10995 * obsolete/rnews.el (news-parse-range, news-select-message)
10996 (news-get-pruned-list-of-files): Replace `string-to-int' by
10997 `string-to-number'.
10998
10999 * obsolete/uncompress.el: Set `find-file-not-found-functions', not
11000 `find-file-not-found-hooks'; use `add-hook'.
11001 (uncompress-while-visiting): Set `write-file-functions', not
11002 `write-file-hooks'; use `add-hook'.
11003
11004 2005-05-09 Kim F. Storm <storm@cua.dk>
11005
11006 * emulation/cua-base.el (cua-copy-region, cua-cut-region)
11007 (cua-paste): Handle clipboard action.
11008 (cua--init-keymaps): Remap clipboard-kill-region and
11009 clipboard-kill-ring-save.
11010
11011 2005-05-08 Eli Zaretskii <eliz@gnu.org>
11012
11013 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
11014 Improve commentary.
11015
11016 * simple.el (next-error-overlay-arrow-position): Revert the change
11017 made on 2005-04-30.
11018
11019 2005-05-07 Jay Belanger <belanger@truman.edu>
11020
11021 * calc/calcsel2.el (calc-commute-left, calc-commute-right)
11022 (calc-sel-unpack, calc-sel-isolate): Rename variable `reselect' to
11023 `calc-sel-reselect'.
11024
11025 * calc/calc-mode.el (calc-save-modes): Reset the modes list if
11026 Calc is in embedded mode.
11027
11028 2005-05-07 Eli Zaretskii <eliz@gnu.org>
11029
11030 * progmodes/compile.el (compilation-setup):
11031 Set overlay-arrow-string to an empty string on text terminals.
11032
11033 * textmodes/ispell.el (ispell-program-name): Try looking for
11034 "aspell" along exec-path, and if found, use it as the default
11035 speller program.
11036
11037 2005-05-07 Jirka Kosek <jirka@kosek.cz> (tiny change)
11038
11039 * international/mule.el (sgml-xml-auto-coding-function):
11040 Recognize encoding='FOO' in single quotes as well as in double quotes.
11041
11042 2005-05-07 Johan Bockg\e,Ae\e(Brd <bojohan@dd.chalmers.se>
11043
11044 * emacs-lisp/cl-macs.el (cl-transform-lambda): Recognize `declare'
11045 as well as `interactive', so that defmacro* would recognize
11046 `declare' forms.
11047
11048 2005-05-07 Eli Zaretskii <eliz@gnu.org>
11049
11050 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
11051 Explain more about the LIGHTER arg's usage in the doc string.
11052 Add commentary to clarify what the code does. Fix the regexp that
11053 strips whitespace from LIGHTER. Quote LIGHTER before using it,
11054 since it could have characters special to regular expressions.
11055
11056 2005-05-07 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
11057
11058 * replace.el (occur-1): Bind inhibit-read-only so that
11059 erase-buffer doesn't barf on read-only text properties (likewise
11060 for add-text-properties in occur-engine). Mark buffer as unmodified.
11061 (occur-engine): Don't set buffer-read-only here.
11062
11063 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11064
11065 * pcvs.el (cvs-mode-commit, cvs-mode-edit-log): Don't fiddle with
11066 list-buffers-directory. This caused the *cvs-commit* buffer to be
11067 sometimes mistakenly reused as a *cvs* buffer.
11068
11069 2005-05-07 Nick Roberts <nickrob@snap.net.nz>
11070
11071 * tooltip.el: Move code for GUD tooltips into gud.el.
11072 (require): CL no longer needed to compile case.
11073 (tooltip-mode): Do not toggle functions for GUD tooltips.
11074 (tooltip-gud-tips-p): Remove. Replace with minor mode
11075 gud-tooltip-mode in gud.el.
11076 (tooltip-gud-modes, tooltip-gud-display, tooltip-gud-echo-area)
11077 (tooltip-gud-toggle-dereference): Rename in gud.el by replacing
11078 tooltip-gud prefix with gud-tooltip and obsolete.
11079 (tooltip-change-major-mode, tooltip-activate-mouse-motions-if-enabled)
11080 (tooltip-mouse-motions-active, tooltip-activate-mouse-motions)
11081 (tooltip-mouse-motion): Mouse movement functions/variable.
11082 Rename in gud.el by adding gud prefix.
11083 (tooltip-gud-original-filter, tooltip-gud-dereference)
11084 (tooltip-gud-event, tooltip-toggle-gud-tips)
11085 (tooltip-gud-process-output, tooltip-gud-print-command)
11086 (tooltip-gud-tips): GUD tooltip functions/variables. Rename in
11087 gud.el by replacing tooltip-gud prefix with gud-tooltip.
11088 (gdb-tooltip-print): Move to gdb-ui.el.
11089
11090 * progmodes/gud.el: Move code for GUD tooltips from tooltip.el.
11091 (require): CL needed to compile case.
11092 (gud-tooltip-mode): Use to toggle GUD tooltips instead of
11093 tooltip-gud-tips-p. Make it a minor-mode.
11094 (gud-find-file): Only prepare GUD tooltips if gud-tooltip-mode is t.
11095 (gud-menu-map): GUD tooltips use gud-tooltip-mode now.
11096 (gud-tooltip-modes, gud-tooltip-display, gud-tooltip-echo-area)
11097 (gud-tooltip-change-major-mode)
11098 (gud-tooltip-activate-mouse-motions-if-enabled)
11099 (gud-tooltip-mouse-motions-active, gud-tooltip-activate-mouse-motions)
11100 (gud-tooltip-mouse-motion, gud-tooltip-toggle-dereference)
11101 (gud-tooltip-original-filter, gud-tooltip-dereference)
11102 (gud-tooltip-event, tooltip-toggle-gud-tips)
11103 (gud-tooltip-process-output, gud-tooltip-print-command)
11104 (gud-tooltip-tips): Move from tooltip.el.
11105
11106 * progmodes/gdb-ui.el (gdb-tooltip-print): Move from tooltip.el.
11107 (gdb-cpp-define-alist-flags): Doc fix.
11108 (gdb-set-gud-minor-mode-1): Only prepare GUD tooltips if
11109 gud-tooltip-mode is t.
11110
11111 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11112
11113 * net/goto-addr.el (goto-address-fontify): Make sure the overlays
11114 evaporate if their text is deleted.
11115 (goto-address-at-point): Make it work as a mouse binding as well.
11116 (goto-address-at-mouse): Obsolete it. Update users.
11117
11118 2005-05-06 Glenn Morris <gmorris@ast.cam.ac.uk>
11119
11120 * calendar/appt.el (top-level): No longer activate on load.
11121
11122 2005-05-06 Juanma Barranquero <lekktu@gmail.com>
11123
11124 * calendar/cal-bahai.el (mark-bahai-diary-entries):
11125 * net/webjump.el (webjump):
11126 * progmodes/idlw-help.el (idlwave-do-context-help1)
11127 (idlwave-highlight-linked-completions):
11128 * textmodes/po.el (po-find-file-coding-system-guts):
11129 Replace `assoc-ignore-case' by `assoc-string'.
11130
11131 2005-05-06 Eli Zaretskii <eliz@gnu.org>
11132
11133 * files.el (locate-file): Doc fix.
11134
11135 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program): Doc fix.
11136 Remove the redundant test for ms-dos.
11137
11138 * progmodes/cmacexp.el (c-macro-preprocessor): Use locate-file to
11139 look for the preprocessor with exec-suffixes. If not found in
11140 standard places, look in exec-path. Remove most of the tests that
11141 used system-type.
11142
11143 * loadup.el: Load jka-cmpr-hook instead of jka-comp-hook.
11144
11145 * jka-compr.el (jka-compr-uninstall): Add autoload cookie.
11146
11147 * jka-cmpr-hook.el: Renamed from jka-comp-hook.el, to avoid
11148 file-name clash with jka-compr.el on 8+3 filesystems.
11149
11150 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11151
11152 * term/mac-win.el: Don't define or bind scroll bar functions if
11153 x-toolkit-scroll-bars is t.
11154 (x-select-text, x-get-selection-value): Clear
11155 x-last-selected-text-clipboard if x-select-enable-clipboard is
11156 nil.
11157 (PRIMARY): Put mac-scrap-name property.
11158 (mac-select-convert-to-file-url): New function.
11159 (public.file-url): New selection target type. Add to
11160 selection-converter-alist.
11161 (x-get-selection, x-selection-value): Handle it.
11162 (x-cut-buffer-or-selection-value): New alias.
11163
11164 2005-05-05 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
11165
11166 * textmodes/bibtex.el (bibtex-summary): Use current BibTeX
11167 entry to avoid calling bibtex-find-entry with arg global
11168 being t. Remove arg key.
11169 (bibtex-summary-function, bibtex-complete-crossref-cleanup)
11170 (bibtex-copy-summary-as-kill): Change accordingly.
11171
11172 2005-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11173
11174 * textmodes/org.el (org-get-entries-from-diary): Remove unused vars.
11175 (org-agenda-date-later): Use with-current-buffer.
11176
11177 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
11178
11179 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
11180 (define-obsolete-variable-alias): Doc Fixes.
11181
11182 2005-05-06 Kim F. Storm <storm@cua.dk>
11183
11184 * simple.el (line-move-1): Fix 2005-04-26 change. Must still use
11185 vertical-motion when selective-display is active.
11186
11187 * ido.el (ido-setup-hook): New hook.
11188 (ido-define-mode-map-hook): Remove hook; use ido-setup-hook instead.
11189 (ido-input-stack): New var.
11190 (ido-define-mode-map): Bind M-b to ido-push-dir. Move old
11191 ido-next-work-file binding to M-O.
11192 Bind M-f to ido-wide-find-file-or-pop-dir.
11193 (ido-define-mode-map): Don't run ido-define-mode-map-hook.
11194 (ido-read-internal): Run ido-setup-hook.
11195 Catch quit in read-file-name and read-string to cancel edit.
11196 Handle new push, pop, and pop-all exit codes (for M-b/M-f).
11197 Automatically pop-all when completing a directory name (RET).
11198 (ido-file-internal): Add with-no-warnings around ffap and dired code.
11199 (ido-exit-minibuffer): Use exit-minibuffer instead of throw.
11200 (ido-wide-find-file, ido-wide-find-dir): Catch quit to cancel find.
11201 (ido-push-dir, ido-pop-dir, ido-wide-find-file-or-pop-dir):
11202 New functions for M-b/M-f to move among the directory components.
11203 (ido-make-merged-file-list): Catch quit to cancel merge.
11204 (ido-make-dir-list): Delete "." when ido-input-stack is non-empty.
11205 (ido-completion-help): No warnings for ido-completion-buffer-full.
11206
11207 2005-05-05 Daniel Pfeiffer <occitan@esperanto.org>
11208
11209 * font-lock.el (font-lock-negation-char-face): New face and variable.
11210 * progmodes/cc-fonts.el (c-cpp-matchers): Use it.
11211 * progmodes/sh-script.el (sh-font-lock-keywords): Use it.
11212 * progmodes/cperl-mode.el (cperl-init-faces): Use it.
11213 * progmodes/make-mode.el (makefile-font-lock-keywords): Use it.
11214
11215 2005-05-05 Juanma Barranquero <lekktu@gmail.com>
11216
11217 * emacs-lisp/byte-run.el (define-obsolete-function-alias):
11218 Fix typo in docstring.
11219
11220 * progmodes/ebrowse.el (ebrowse-install-1-to-9-keys)
11221 (ebrowse-print-statistics-line)
11222 (ebrowse-electric-position-mode-hook): Fix typo in docstring.
11223
11224 * term/w32-win.el (image-library-alist): Add additional name for
11225 Xpm library.
11226
11227 2005-05-05 Nick Roberts <nickrob@snap.net.nz>
11228
11229 * progmodes/cmacexp.el (c-macro-preprocessor): Update for BSD and
11230 use gcc instead of cpp.
11231
11232 * progmodes/gdb-ui.el (gdb-cpp-define-alist-flags): New variable.
11233 (gdb-create-define-alist): Use it.
11234 (gdb-cpp-define-alist-program): Update for MS-DOS.
11235
11236 2005-05-04 Nick Roberts <nickrob@snap.net.nz>
11237
11238 * progmodes/cmacexp.el (c-macro-preprocessor): Update for Mac OS X.
11239
11240 2005-05-04 Richard M. Stallman <rms@gnu.org>
11241
11242 * help.el (describe-key): No error when UNTRANSLATED is nil.
11243
11244 * simple.el (line-move-1): Fix previous change to signal errors
11245 appropriately.
11246
11247 2005-05-03 Ulf Jasper <ulf.jasper@web.de>
11248
11249 * calendar/icalendar.el (icalendar-version): Now at 0.12.
11250 (icalendar-duration-correction): Remove.
11251 (icalendar--get-event-properties): Split result at commas.
11252 (icalendar--decode-isoduration): New optional argument
11253 DURATION-CORRECTION.
11254 (icalendar--convert-ordinary-to-ical, icalendar--convert-sexp-to-ical)
11255 (icalendar--convert-yearly-to-ical, icalendar--convert-weekly-to-ical)
11256 (icalendar--convert-block-to-ical, icalendar--convert-float-to-ical)
11257 (icalendar--convert-date-to-ical, icalendar--convert-cyclic-to-ical)
11258 (icalendar--convert-anniversary-to-ical): New functions, extracted
11259 from icalendar-export-region, with bug fixes.
11260 (icalendar-export-region): Use the above functions.
11261 (icalendar-import-buffer): Check before saving diary file.
11262 (icalendar--convert-recurring-to-diary)
11263 (icalendar--convert-non-recurring-all-day-to-diary)
11264 (icalendar--convert-non-recurring-not-all-day-to-diary): New functions,
11265 extracted from icalendar--convert-ical-to-diary, with bug fixes.
11266 (icalendar--convert-ical-to-diary): Use the above functions.
11267
11268 2005-05-03 Nick Roberts <nickrob@snap.net.nz>
11269
11270 * progmodes/cc-mode.el (cc-define-alist, cc-create-define-alist):
11271 Remove these recent additions.
11272 (c-mode): Restore to before 2005-04-28.
11273
11274 * progmodes/cc-vars.el (cc-define-list-program): Remove this
11275 recent addition.
11276
11277 * progmodes/gdb-ui.el (gdb-cpp-define-alist-program)
11278 (gdb-define-alist): New variables.
11279 (gdb-create-define-alist): New function.
11280 (gdb-set-gud-minor-mode-1): Handle gdb-define-alist.
11281 (gdb-source, gdb-memory-set-repeat-count): Replace string-to-int
11282 with string-to-number.
11283 (gdb-reset): Kill gdb-define-alist. Move assignments outside loop.
11284
11285 * progmodes/gud.el: Replace string-to-int with string-to-number.
11286 (gud-find-file): Handle gdb-define-alist.
11287
11288 * tooltip.el (tooltip-gud-tips): Use gdb-define-alist.
11289
11290 2005-05-02 Jay Belanger <belanger@truman.edu>
11291
11292 * calc/calc-aent.el (math-read-token):
11293 * calc/calc-bin.el (calc-word-size):
11294 * calc/calc-ext.el (calc-read-number-fancy):
11295 * calc/calc-forms.el (calc-time, calc-date-notation, math-this-year)
11296 (math-parse-date, math-parse-standard-date, calcFunc-tzone):
11297 * calc/calc-frac.el (calc-over-notation):
11298 * calc/calc-graph.el (calc-graph-plot, calc-graph-set-styles)
11299 (calc-graph-num-points, calc-graph-init):
11300 * calc/calc-prog.el (calc-read-parse-table-part)
11301 (calc-edit-macro-repeats):
11302 * calc/calc-yank.el (calc-do-grab-rectangle):
11303 * calc/calc.el (calcDigit-key, math-read-number, math-read-bignum):
11304 Replace `string-to-int' by `string-to-number'.
11305
11306 2005-05-02 Kim F. Storm <storm@cua.dk>
11307
11308 * kmacro.el: Use executing-kbd-macro-index variable.
11309
11310 2005-05-02 Thien-Thi Nguyen <ttn@gnu.org>
11311
11312 * net/rlogin.el (rlogin-parse-words): Delete func.
11313 (rlogin): Use split-string, not rlogin-parse-words.
11314 Also, if there are option-like elements in the parsed args,
11315 take the host to be the first arg immediately following them.
11316 Suggested by Michael Mauger.
11317
11318 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
11319
11320 * subr.el (executing-macro): Use `define-obsolete-variable-alias'.
11321
11322 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
11323
11324 * progmodes/cc-mode.el (cc-create-define-alist): Use a shell.
11325 (cc-mode-cpp-program): Rename to cc-define-list-program and
11326 move to cc-vars.el.
11327
11328 * progmodes/cc-vars.el (cc-define-list-program):
11329 Change to "gcc -E -dM -". Make customizable.
11330
11331 2005-05-02 Kim F. Storm <storm@cua.dk>
11332
11333 * emulation/cua-base.el: Fix check for CUA-mode if no init file.
11334
11335 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
11336
11337 * progmodes/cc-mode.el (cc-mode-cpp-program): Change to "gcc -E".
11338
11339 * international/mule-util.el (truncate-string): Remove alias and
11340 obsolete declaration.
11341
11342 * international/mule-cmds.el (update-iso-coding-systems):
11343 Remove alias and obsolete declaration.
11344
11345 * international/mule.el (coding-system-parent): Remove alias and
11346 obsolete declaration.
11347
11348 * subr.el (define-function, sref): Remove aliases and obsolete
11349 declarations.
11350 (chars-in-region): Remove obsolete declaration.
11351
11352 2005-05-01 Richard M. Stallman <rms@gnu.org>
11353
11354 * info.el (Info-mode): Set widen-automatically to nil, locally.
11355
11356 * simple.el (widen-automatically): New variable.
11357 (pop-global-mark): Obey widen-automatically.
11358
11359 2005-05-01 Dan Nicolaescu <dann@ics.uci.edu>
11360
11361 * term/xterm.el (function-key-map): Call substitute-key-definition
11362 before the keymap size is increased by a lot of define-key calls.
11363
11364 2005-05-01 Richard M. Stallman <rms@gnu.org>
11365
11366 * subr.el (add-to-invisibility-spec, remove-from-invisibility-spec):
11367 Rename ARG to ELEMENT. Doc fix.
11368
11369 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
11370
11371 * allout.el (allout-exposure): Remove macro and obsolete declaration.
11372 Remove references to allout-exposure/change to allout-new-exposure.
11373
11374 * emacs-lisp/bytecomp.el (dot, dot-min, dot-max): Don't create
11375 bytecode symbols.
11376
11377 * subr.el (dot, dot-marker, dot-min, dot-max, buffer-flush-undo)
11378 (compiled-function-p, focus-frame, unfocus-frame):
11379 Remove aliases and obsolete declarations.
11380 Back out inadvertent changes from previous commit.
11381
11382 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
11383
11384 * files.el (require-final-newline): Make Custom tags consistent
11385 with mode-require-final-newline.
11386 (mode-require-final-newline): Doc fix.
11387
11388 2005-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
11389
11390 * international/latexenc.el (latexenc-find-file-coding-system):
11391 Fix regular expressions.
11392
11393 2005-05-01 David Kastrup <dak@gnu.org>
11394
11395 * international/latexenc.el (latexenc-find-file-coding-system):
11396 Fix regular expressions.
11397
11398 2005-05-01 Nick Roberts <nickrob@snap.net.nz>
11399
11400 * subr.el (string-to-int): Make obsolete.
11401
11402 2005-04-30 Richard M. Stallman <rms@gnu.org>
11403
11404 * simple.el (next-error-overlay-arrow-position): Turn off, for ttys.
11405
11406 * loadup.el: load jka-comp-hook.
11407
11408 * jka-compr.el: Many functions and vars moved to jka-comp-hook.el.
11409 (jka-compr-handler): Add autoload. `put' calls moved
11410 to jka-comp-hook.el.
11411 (compression, jka-compr): defgroups moved to jka-comp-hook.el.
11412 (jka-compr-inhibit): Autoload.
11413
11414 * jka-comp-hook.el: New file.
11415 Enable the mode by default.
11416
11417 * files.el (backup-buffer-copy): Use copy-file instead
11418 of write-region, and put back the 'excl.
11419
11420 2005-04-30 Chong Yidong <cyd@stupidchicken.com>
11421
11422 * progmodes/flymake.el (flymake-split-string)
11423 (flymake-split-string, flymake-log, flymake-pid-to-names)
11424 (flymake-reg-names, flymake-get-source-buffer-name)
11425 (flymake-unreg-names, flymake-add-line-err-info)
11426 (flymake-add-err-info): Clarify docstrings.
11427 (flymake-popup-menu, flymake-make-emacs-menu)
11428 (flymake-make-xemacs-menu): Add docstrings.
11429 (flymake-get-buffer-*, flymake-set-buffer-*): Functions deleted.
11430 Set variables directly throughout.
11431
11432 2005-04-30 Nick Roberts <nickrob@snap.net.nz>
11433
11434 * progmodes/cc-mode.el (cc-create-define-alist): Check that file
11435 exists. Initialize cc-define-alist.
11436 (c-mode): Add cc-create-define-alist locally to after-save-hook.
11437 If there is no file (Macroexpansion) don't create an alist.
11438
11439 2005-04-29 Sam Steingold <sds@gnu.org>
11440
11441 * progmodes/cc-mode.el (cc-mode-cpp-program): New user variable.
11442 (cc-create-define-alist): Use it instead of the hard-coded string.
11443
11444 2005-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
11445
11446 * international/mule-conf.el (file-coding-system-alist): Fix regexp
11447 for latexenc.
11448
11449 2005-04-29 Lute Kamstra <lute@gnu.org>
11450
11451 * emacs-lisp/generic.el: Improve commentary section.
11452 (define-generic-mode): Improve docstring.
11453
11454 2005-04-29 Carsten Dominik <dominik@science.uva.nl>
11455
11456 * textmodes/org.el (many places): Change to quiet the byte compiler.
11457 (org-prefix-format-compiled): New variable.
11458 (org-compile-prefix-format): New function.
11459 (org-timeline, org-agenda, org-diary): Call org-compile-prefix-format.
11460 (org-agenda-prefix-format,org-timeline-prefix-format): New options.
11461 (org-agenda-get-scheduled): Check if file is opened in `org-mode'.
11462 (org-get-entries-from-diary): Use `org-get-time-of-day' for
11463 consistency with entries from `org-mode' files.
11464 (org-get-time-of-day): Fix bug with partial matches early in a line.
11465 (org-non-link-chars): New constant.
11466 (org-link-regexp): Respect `org-non-link-chars'.
11467 (org-agenda-day-view): Remove command.
11468 (org-agenda-toggle-week-view): Rename from `org-agenda-week-view'.
11469 (org-follow-bbdb-link, org-store-link): Search also company field.
11470 (org-highlight-overlay): New variable.
11471 (org-highlight, org-unhighlight): New functions.
11472 (org-agenda-mode): Add pre-command-hook to remove highlight.
11473 (org-evaluate-time-range): Behavior depends upon whether time stamp
11474 contains a time or not.
11475 (org-show-subtree, org-show-entry): New functions.
11476 (org-agenda-cleanup-fancy-diary): Remove empty lines.
11477
11478 2005-04-28 Luc Teirlinck <teirllm@auburn.edu>
11479
11480 * comint.el (comint-output-filter-functions): Add autoload cookie.
11481
11482 2005-04-28 Kim F. Storm <storm@cua.dk>
11483
11484 * ido.el (ido-everywhere): Fix last change.
11485
11486 2005-04-28 Arne J\e,Ax\e(Brgensen <arne@arnested.dk>
11487
11488 * international/latexenc.el: New file.
11489 * international/mule-conf.el (file-coding-system-alist): For .tex,
11490 .ltx, .dtx and .drv extensions, use `latexenc-find-file-coding-system'.
11491
11492 2005-04-28 Lute Kamstra <lute@gnu.org>
11493
11494 * font-lock.el (font-lock-add-keywords)
11495 (font-lock-remove-keywords): Clarify docstring.
11496 (font-lock-keywords-alist, font-lock-removed-keywords-alist):
11497 Don't start docstrings with a `*'.
11498 (font-lock-update-removed-keyword-alist): Give it a docstring.
11499
11500 * generic-x.el: Update commentary section.
11501 Only require font-lock when compiling.
11502 Define all modes conditionally.
11503 Place all generic modes in the generic-x-modes customization group.
11504 (generic-x-modes): New customization group.
11505 (generic-default-modes, generic-mswindows-modes)
11506 (generic-unix-modes, generic-other-modes): New constants.
11507 (generic-define-mswindows-modes, generic-define-unix-modes):
11508 Update docstrings. Make them obsolete.
11509 (generic-extras-enable-list): New default value. Update docstring.
11510 Improve :type. Change :set function.
11511 (bat-generic-mode-syntax-table, rul-generic-mode-syntax-table):
11512 Fix docstring.
11513
11514 * emacs-lisp/generic.el (generic-mode-internal):
11515 Simplify font-lock-defaults.
11516 (define-generic-mode): Fix docstring.
11517
11518 2005-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11519
11520 * progmodes/grep.el (grep-mode-font-lock-keywords): Use the
11521 font-lock-face property to highlight matches.
11522
11523 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
11524
11525 * progmodes/cc-mode.el (cc-create-define-alist): New function.
11526 (cc-define-alist): New variable.
11527 (c-mode): Make it local and initialize it.
11528
11529 * progmodes/gdb-ui.el (gdb-active-process): New variable.
11530 (gdb-exited): New function.
11531 (gdb-annotation-rules): Use it.
11532 (gdb-starting): Set gdb-active-process to t.
11533 (gdb-stopping): Amend doc string.
11534 (gdb-reset): Set gdb-active-process to nil.
11535
11536 * tooltip.el (tooltip-gud-tips): Show the associated #define
11537 directives when a C program under GDB is not executing.
11538
11539 2005-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
11540
11541 * progmodes/cperl-mode.el (cperl-mode): Don't precompile the
11542 font-lock-fontify-syntactic-keywords.
11543
11544 * font-lock.el (font-lock-default-fontify-region): Don't force
11545 parse-sexp-lookup-properties to nil.
11546
11547 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
11548
11549 * man.el (man-mode-syntax-table): Set up `:' to have
11550 word-constituent syntax.
11551
11552 2005-04-27 Lute Kamstra <lute@gnu.org>
11553
11554 * novice.el (disable-command): Don't add spurious newlines to the
11555 init file. Reported by Dan Jacobson <jidanni@jidanni.org>.
11556
11557 2005-04-26 Jay Belanger <belanger@truman.edu>
11558
11559 * calc/calc-yank.el (calc-edit-finish): Make sure there is more
11560 than one window before deleting window.
11561
11562 2005-04-26 Luc Teirlinck <teirllm@auburn.edu>
11563
11564 * shell.el (shell-prompt-pattern): Doc fix.
11565 (shell-mode): Set paragraph-separate buffer locally to "\\'".
11566
11567 * comint.el (comint-prompt-regexp, comint-get-old-input)
11568 (comint-use-prompt-regexp)
11569 (comint-use-prompt-regexp-instead-of-fields)
11570 (comint-replace-by-expanded-history, comint-send-input)
11571 (comint-output-filter, comint-get-old-input-default)
11572 (comint-line-beginning-position, comint-bol, comint-show-output)
11573 (comint-backward-matching-input, comint-forward-matching-input)
11574 (comint-next-prompt, comint-previous-prompt):
11575 Rename `comint-use-prompt-regexp-instead-of-fields' to
11576 `comint-use-prompt-regexp'. Keep old name as alias and declare
11577 obsolete.
11578 (comint-use-prompt-regexp): Shorten first line of doc string.
11579
11580 * ielm.el (inferior-emacs-lisp-mode): Adapt to above name change.
11581 Set paragraph-separate buffer locally to "\\'".
11582
11583 * hippie-exp.el (try-expand-line, try-expand-line-all-buffers):
11584 Adapt to above name change.
11585
11586 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
11587 (smbclient-prompt-regexp): Ditto.
11588
11589 * progmodes/inf-lisp.el (inferior-lisp-prompt): Ditto.
11590
11591 2005-04-27 Nick Roberts <nickrob@snap.net.nz>
11592
11593 * progmodes/gdb-ui.el (gdb-location-alist): Rename from
11594 gdb-location-list.
11595 Break lines that are over 80 characters wide.
11596
11597 2005-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
11598
11599 * pcvs-info.el (cvs-fileinfo->full-path, cvs-display-full-path):
11600 New fun and var, to preserve compatibility.
11601
11602 * pcvs.el, pcvs-info.el: Rename "full-path" -> "full-name".
11603
11604 2005-04-26 Dominique de Waleffe <ddw@missioncriticalit.com> (tiny change)
11605
11606 * pcvs-info.el (cvs-fileinfo->backup-file): Don't pass the full file
11607 name to file-newer-than-file-p.
11608
11609 2005-04-26 Richard M. Stallman <rms@gnu.org>
11610
11611 * simple.el (line-move-1): Avoid using vertical-motion in easy cases.
11612
11613 * progmodes/python.el (python-mode):
11614 Use new name eldoc-documentation-function.
11615
11616 * hexl.el (hexl-mode): Use new name eldoc-documentation-function.
11617
11618 * emacs-lisp/eldoc.el (eldoc-mode): Doc fix.
11619 (eldoc-documentation-function):
11620 Rename from eldoc-print-current-symbol-info-function. Calls changed.
11621
11622 2005-04-26 Nick Roberts <nickrob@snap.net.nz>
11623
11624 * emacs-lisp/byte-run.el (define-obsolete-function-alias): New macro.
11625
11626 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
11627
11628 * term/xterm.el (function-key-map): Fix strings for
11629 {C,S,A,C-S}-f[1-4]. Use substitute-key-definition to bind
11630 {C,S,A,C-S}-{f1-f12}.
11631
11632 2005-04-26 Kenichi Handa <handa@m17n.org>
11633
11634 * international/mule-cmds.el (select-safe-coding-system):
11635 Fix previous change.
11636
11637 2005-04-26 Lute Kamstra <lute@gnu.org>
11638
11639 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix docstring.
11640
11641 * font-lock.el (font-lock-fontify-region-function): Fix docstring.
11642 (font-lock-comment-delimiter-face): Ditto.
11643
11644 * calc/calc.el (calc-trail-mode): Don't set font-lock-defaults.
11645
11646 2005-04-25 Jay Belanger <belanger@truman.edu>
11647
11648 * calc/calc-help.el (calc-view-news): Let-bind inhibit-read-only
11649 to t while inserting information; use help-mode.
11650
11651 2005-04-25 Dan Nicolaescu <dann@ics.uci.edu>
11652
11653 * term.el (ansi-term-color-vector): Use the xterm colors.
11654 (term-raw-map): Don't add mappings for \eO and \e[. Map deletechar.
11655
11656 2005-04-25 Lute Kamstra <lute@gnu.org>
11657
11658 * font-core.el (font-lock-defaults): Fix docstring.
11659
11660 * font-lock.el (font-lock-syntactic-face-function): Fix docstring.
11661
11662 2005-04-25 Kenichi Handa <handa@m17n.org>
11663
11664 * international/mule-cmds.el (select-safe-coding-system):
11665 Don't check consistency with coding: spec, etc if raw-text or
11666 no-conversion was found to be safe.
11667
11668 2005-04-24 Richard M. Stallman <rms@gnu.org>
11669
11670 * mail/sendmail.el (mail-font-lock-keywords): Match any number of
11671 citation markers at start of each line.
11672
11673 * mail/rmail.el (rmail-font-lock-keywords): Match any number of
11674 citation markers at start of each line.
11675
11676 * font-lock.el (font-lock-comment-delimiter-face): Doc fix.
11677
11678 * files.el (mode-require-final-newline): Fix previous change.
11679 (require-final-newline): Fix type label.
11680
11681 2005-04-24 Glenn Morris <gmorris@ast.cam.ac.uk>
11682
11683 * progmodes/f90.el (f90-calculate-indent): Fix treatment of first
11684 statement in buffer (broken by 2004-11-24 change).
11685
11686 2005-04-24 Kim F. Storm <storm@cua.dk>
11687
11688 * ido.el (ido-everywhere): Save and restore old read-buffer-function
11689 and read-file-name-function values. Don't overwrite existing
11690 non-nil values if ido-mode is enabled without ido-everywhere.
11691
11692 2005-04-24 Luc Teirlinck <teirllm@auburn.edu>
11693
11694 * files.el (mode-require-final-newline): Minor doc fix.
11695
11696 2005-04-24 Eli Zaretskii <eliz@gnu.org>
11697
11698 * subr.el (syntax-after): Doc fix.
11699 (syntax-class): If argument is nil, return nil. Mask off upper 16
11700 bits, not 8 bits.
11701
11702 * files.el (mode-require-final-newline): Doc fix.
11703 (backup-buffer-copy): Fix last change.
11704
11705 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11706
11707 * term/mac-win.el: Require select. Set selection-coding-system to
11708 mac-system-coding-system. Call menu-bar-enable-clipboard.
11709 (x-last-selected-text-clipboard, x-last-selected-text-primary)
11710 (x-select-enable-clipboard): New variables.
11711 (x-select-text, x-get-selection, x-selection-value)
11712 (x-get-selection-value, mac-select-convert-to-string)
11713 (mac-services-open-file, mac-services-open-selection)
11714 (mac-services-insert-text): New functions.
11715 (CLIPBOARD, FIND): Put mac-scrap-name property.
11716 (com.apple.traditional-mac-plain-text, public.utf16-plain-text)
11717 (public.tiff): Put mac-ostype property.
11718 (selection-converter-alist): Add entries for them.
11719 (mac-application-menu-map): New keymap.
11720 (interprogram-cut-function, interprogram-paste-function): Set to
11721 x-select-text and x-get-selection-value, respectively.
11722 (split-window-keep-point): Set to t.
11723
11724 2005-04-23 Richard M. Stallman <rms@gnu.org>
11725
11726 * files.el (read-directory-name): Always pass non-nil
11727 DEFAULT-FILENAME arg to read-file-name.
11728 (backup-buffer-copy, basic-save-buffer-2): Take care against
11729 writing thru an unexpected existing symlink.
11730 (revert-buffer): In indirect buffer, revert the base buffer.
11731 (magic-mode-alist): Doc fix.
11732 (buffer-stale-function): Doc fix.
11733 (minibuffer-with-setup-hook): Avoid warning.
11734 (mode-require-final-newline): Doc and custom fix.
11735
11736 * follow.el (follow-end-of-buffer): Use with-no-warnings.
11737
11738 * font-lock.el (font-lock-comment-face): On terminals with few colors,
11739 use the default appearance.
11740 (font-lock-comment-delimiter-face): New face, new variable.
11741
11742 * imenu.el (imenu--generic-function): The official position of a
11743 definition is the start of the line that BEG is in.
11744
11745 * midnight.el (midnight-timer): Move defvar up.
11746
11747 * mouse.el (mouse-drag-region-1): Delete some debugging code.
11748
11749 * saveplace.el (save-place-to-alist): Use with-no-warnings.
11750
11751 * startup.el (command-line): Use with-no-warnings.
11752
11753 * window.el (window-size-fixed): New defvar.
11754
11755 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
11756
11757 * mail/rmail.el (rmail-font-lock-keywords):
11758 Use font-lock-comment-delimiter-face.
11759
11760 * mail/sendmail.el (mail-font-lock-keywords):
11761 Use font-lock-comment-delimiter-face.
11762
11763 * progmodes/compile.el (next-error-highlight-timer): New defvar.
11764
11765 2005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
11766
11767 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11768 Specify t for LAXMATCH when matching directories.
11769 Save match data around compilation-compat-error-properties form.
11770
11771 2005-04-23 David Kastrup <dak@gnu.org>
11772
11773 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
11774 Mention that the autoloaded aliases should be kept for AUCTeX.
11775
11776 2005-04-23 Andreas Schwab <schwab@suse.de>
11777
11778 * isearch.el (isearch-forward): Doc fix.
11779
11780 2005-04-23 Eli Zaretskii <eliz@gnu.org>
11781
11782 * jit-lock.el (jit-lock-stealth-time): Change default value to 16.
11783 (jit-lock-stealth-nice): Change default value to 0.5.
11784
11785 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change)
11786
11787 * abbrev.el (write-abbrev-file): Write table entries in
11788 alphabetical order by table name.
11789
11790 2005-04-22 Kim F. Storm <storm@cua.dk>
11791
11792 * ido.el (ido-read-internal): Fix `list' completion.
11793
11794 2005-04-22 Kenichi Handa <handa@m17n.org>
11795
11796 * recentf.el (recentf-save-file-coding-system): New variable.
11797 (recentf-save-list): Encode the file by
11798 recentf-save-file-coding-system and add coding: tag.
11799
11800 2005-04-22 Nick Roberts <nickrob@snap.net.nz>
11801
11802 * emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
11803
11804 2005-04-21 Lute Kamstra <lute@gnu.org>
11805
11806 * loadhist.el (unload-feature): Don't remove a function from hooks
11807 if it is about to be restored to an autoload . Remove functions
11808 that will become unbound from auto-mode-alist. Simplify the code.
11809
11810 * subr.el (assq-delete-all): New implementation that is linear,
11811 not quadratic. Suggested by David Kastrup <dak@gnu.org>.
11812 (rassq-delete-all): New function.
11813
11814 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
11815 Add size-indication-mode.
11816
11817 2005-04-21 Kenichi Handa <handa@m17n.org>
11818
11819 * international/mule-cmds.el: Add autoload for widget-value in
11820 eval-when-compile.
11821
11822 2005-04-21 Nick Roberts <nickrob@snap.net.nz>
11823
11824 * menu-bar.el (menu-bar-options-save, menu-bar-showhide-menu):
11825 Add tooltip-mode.
11826
11827 * bindings.el (mode-line-mode-menu): Remove tooltip-mode.
11828
11829 2005-04-20 Luc Teirlinck <teirllm@auburn.edu>
11830
11831 * progmodes/inf-lisp.el (inferior-lisp): New defgroup.
11832 (inferior-lisp-filter-regexp, inferior-lisp-program)
11833 (inferior-lisp-load-command, inferior-lisp-prompt)
11834 (inferior-lisp-mode-hook, lisp-source-modes)
11835 (inferior-lisp-load-hook): defvar->defcustom.
11836 (inferior-lisp-program, inferior-lisp-prompt)
11837 (inferior-lisp-load-hook): Doc fixes.
11838 (inferior-lisp-install-letter-bindings): Small change in
11839 introductory comment.
11840
11841 2005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
11842
11843 * vc.el (vc-annotate-color-map): Change some colors so that text
11844 using them as foreground is readable on both white and black
11845 backgrounds.
11846
11847 2005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11848
11849 * international/mule-conf.el (translation-table-for-input):
11850 Remove redundant declaration.
11851
11852 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
11853
11854 * progmodes/gud.el (gud-menu-map): Add tooltip-toggle-gud-tips.
11855
11856 * tooltip.el (tooltip-gud-tips-p): Expand documentation.
11857 (tooltip-toggle-gud-tips): New function.
11858
11859 2005-04-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11860
11861 * term/mac-win.el (mac-symbol-encoder): Fix mappings of left and
11862 right angle brackets.
11863
11864 2005-04-20 Nick Roberts <nickrob@snap.net.nz>
11865
11866 * tooltip.el (tooltip-use-echo-area): Replace as alias and deprecate.
11867
11868 2005-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
11869
11870 * progmodes/flymake.el (flymake-get-absolute-file-name-basedir):
11871 Remove. Update callers to use expand-file-name instead.
11872
11873 * subr.el (syntax-class): New function.
11874
11875 * simple.el (blink-matching-open): Use it.
11876
11877 * paren.el (show-paren-function): Use it to recognize parens that are
11878 also used in 2-char comment markers.
11879
11880 2005-04-19 Lute Kamstra <lute@gnu.org>
11881
11882 * loadhist.el (unload-feature): Update for new format of
11883 load-history. Simplify the code.
11884
11885 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11886
11887 * term/mac-win.el: Add coding: tag and set it to iso-2022-7bit.
11888 (mac-add-charset-info): New function. Initialize variable
11889 mac-charset-info-alist using it.
11890 (mac-centraleurroman, mac-cyrillic): Do not use UCS in table data
11891 for translation.
11892 (mac-symbol-encoder, mac-dingbats-encoder): New translation table.
11893 (mac-font-encoder-list): Add entries for mac-symbol and mac-dingbats.
11894 (ccl-encode-mac-symbol-font, ccl-encode-mac-dingbats-font):
11895 New CCL programs.
11896
11897 2005-04-19 Kim F. Storm <storm@cua.dk>
11898
11899 * simple.el (next-buffer, prev-buffer, next-error)
11900 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
11901 (clone-indirect-buffer-other-window): Move bindings to bindings.el.
11902
11903 * bindings.el (next-buffer, prev-buffer, next-error)
11904 (scroll-other-window, keyboard-quit, keyboard-escape-quit)
11905 (clone-indirect-buffer-other-window): Move bindings from simple.el.
11906 (next-buffer, prev-buffer): Add C-x C-right and C-x C-left bindings.
11907 (next-error, previous-error): Add M-g M-n/n and M-g M-p/p bindings.
11908
11909 2005-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
11910
11911 * isearch.el (isearch-edit-string): Make the search-ring available for
11912 minibuffer history commands.
11913 (minibuffer-local-isearch-map): Remove bindings for M-p and M-n,
11914 the default history commands now work just as well.
11915 (isearch-ring-retreat-edit, isearch-ring-advance-edit): Remove.
11916
11917 2005-04-18 Kim F. Storm <storm@cua.dk>
11918
11919 * emulation/cua-base.el (cua--pre-command-handler): Add more
11920 elaborate check for shift modifier on non-window systems.
11921
11922 2005-04-18 Lars Hansen <larsh@math.ku.dk>
11923
11924 * desktop.el: Make "--no-desktop" turn off `desktop-save-mode'.
11925
11926 2005-04-18 Kim F. Storm <storm@cua.dk>
11927
11928 * tooltip.el (tooltip-show): Change second arg to USE-ECHO-AREA
11929 and make it optional. Don't test tooltip-gud-echo-area here.
11930 (tooltip-gud-process-output, gdb-tooltip-print):
11931 Pass tooltip-gud-echo-area to tooltip-show.
11932 (tooltip-help-tips): Remove second optional arg to tooltip-show.
11933
11934 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11935
11936 * tooltip.el (tooltip-mode): `emacs-quick-startup' and
11937 `display-graphic-p' may not be bound yet.
11938
11939 2005-04-17 Luc Teirlinck <teirllm@auburn.edu>
11940
11941 * startup.el (command-line): No longer enable Xterm Mouse mode by
11942 default in terminals compatible with xterm.
11943
11944 * xt-mouse.el (xterm-mouse-mode): Set init value back to nil.
11945
11946 2005-04-18 Nick Roberts <nickrob@snap.net.nz>
11947
11948 * tooltip.el (tooltip-gud-echo-area): Rename from
11949 tooltip-use-echo-area.
11950 (tooltip-show, tooltip-gud-process-output, gdb-tooltip-print)
11951 (tooltip-help-tips): Allow GUD tooltips to be displayed in echo
11952 area independently of where help tooltips are displayed.
11953
11954 2005-04-17 David Kastrup <dak@gnu.org>
11955
11956 * cus-theme.el (custom-theme-write-variables): Quote variables
11957 where necessary.
11958
11959 2005-04-17 Richard M. Stallman <rms@gnu.org>
11960
11961 * simple.el (yank-excluded-properties): Add follow-link to value.
11962
11963 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
11964
11965 * startup.el (fancy-splash-max-time): Just 30 seconds.
11966 (fancy-splash-delay): Just 7.
11967 (fancy-splash-screens): No time limit other than fancy-splash-max-time.
11968
11969 * loadhist.el (unload-feature): Update for new format of load-history.
11970 Simplify the code.
11971
11972 * mail/rmail.el (rmail-ignored-headers): Ignore more headers
11973 (rmail-font-lock-keywords): Don't fontify the text of a citation.
11974
11975 * mail/sendmail.el (mail-font-lock-keywords):
11976 Don't fontify subject text.
11977 Don't fontify the text of a citation.
11978
11979 2005-04-17 Mark H. Weaver <mhw@netris.org> (tiny change)
11980
11981 * comint.el (comint-output-filter): Run comint-output-filter-functions
11982 with point where the user had it.
11983
11984 2005-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
11985
11986 * international/ucs-tables.el (ucs-set-table-for-input):
11987 Disable when using unify-on-decoding.
11988
11989 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
11990
11991 * emulation/cua-base.el (cua-global-mark-face): Add special case
11992 for displays supporting a high number of colors.
11993
11994 2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
11995
11996 * repeat.el (repeat): Invoke pre-command-hook and post-command-hook.
11997
11998 2005-04-16 Chong Yidong <cyd@stupidchicken.com>
11999
12000 * filesets.el (filesets-add-buffer): If user supplies a name of a
12001 non-existing fileset, create a new fileset.
12002
12003 2005-04-16 Carsten Dominik <dominik@science.uva.nl>
12004
12005 * textmodes/org.el (org-up-heading-all): Fix bug with
12006 `outline-up-heading-all'.
12007
12008 2005-04-16 Andreas Schwab <schwab@suse.de>
12009
12010 * files.el (auto-mode-alist): Handle /etc/sysconfig/*,
12011 /etc/permissions.d/* and /etc/aliases.d/*.
12012
12013 2005-04-16 Kenichi Handa <handa@m17n.org>
12014
12015 * international/code-pages.el (cp-make-coding-system):
12016 Set `translation-table-for-input' property value to the symbol
12017 ucs-mule-to-mule-unicode, not to that value.
12018 (pt154): Escape guillemet by `\'.
12019
12020 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
12021
12022 * loadup.el: Load tooltip if x-show-tip is fboundp.
12023
12024 * startup.el (command-line): Add comment.
12025
12026 * tooltip.el (tooltip-mode): Specify correct standard value for
12027 Custom in init-value.
12028
12029 2005-04-15 Nick Roberts <nickrob@snap.net.nz>
12030
12031 * progmodes/gud.el (gud-goto-info): Use existing Info buffer, if
12032 possible.
12033
12034 2005-04-15 Carsten Dominik <dominik@science.uva.nl>
12035
12036 * textmodes/org.el (org-agenda-date-prompt): Rename from
12037 `org-agenda-date-today'.
12038 (org-evaluate-time-range): Insert at point instead of directly
12039 after time range.
12040 (org-first-headline-recenter, org-subtree-end-visible-p)
12041 (org-optimize-window-after-visibility-change): New functions
12042 (org-agenda-post-command-hook): Don't allow point at end of line,
12043 to make sure it always hits the text properties.
12044 (org-agenda-next-date-line, org-agenda-previous-date-line):
12045 New commands.
12046 (org-set-regexps-and-options): Category may contain white space.
12047 (org-agenda-get-deadlines, org-agenda-get-scheduled):
12048 Improve marker positions.
12049 (org-agenda-new-marker): Argument POS made optional.
12050 (org-agenda-get-timestamps): Deadlines which are done are listed
12051 in org-done-face now.
12052 (org-agenda-get-todos, org-agenda-get-timestamps)
12053 (org-agenda-get-deadlines, org-agenda-get-scheduled):
12054 Set `undone-face' and `done-face' properties.
12055 (org-last-todo-state-is-todo): New variable.
12056 (org-todo): Set `org-last-todo-state-is-todo'.
12057 (org-agenda-todo): Change face according to
12058 `org-last-todo-state-is-todo'. And change other lines referring to
12059 the same entry.
12060 (org-calendar-goto-agenda): New command.
12061 (org-calendar-to-agenda-key): New option.
12062 (org-startup-folded): New allowed value `content'.
12063 (org-set-regexps-and-options): Accept new value `content' for
12064 `org-startup-folded'.
12065 (org-get-current-options): Handle new value `content' for
12066 `org-startup-folded'.
12067 (org-insert-todo-heading): New command.
12068 (org-mode): Insert first line "*-* mode: org-mode -*-" when called
12069 interactively in empty file and option
12070 `org-insert-mode-line-in-empty-file' has been set.
12071 (org-agenda-todo,org-agenda-priority): Modify to use
12072 `org-agenda-change-all-lines'.
12073 (org-warning-face): Change color on dark background
12074
12075 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12076
12077 * international/mule-cmds.el (set-locale-environment): On Mac OS,
12078 use preferences AppleLocale and AppleLanguages, and variable
12079 mac-system-locale for default locale. On Mac OS Classic, use
12080 mac-system-coding-system for default coding systems.
12081
12082 * term/mac-win.el: Don't set file-name-coding-system.
12083 Decode variables system-name, emacs-build-system, user-login-name, and
12084 user-full-name by mac-system-coding-system on Mac OS Classic.
12085 (mac-system-coding-system): New variable.
12086
12087 2005-04-13 Luc Teirlinck <teirllm@auburn.edu>
12088
12089 * startup.el (command-line): Handle `xterm-mouse-mode' before
12090 reading init file.
12091
12092 * xt-mouse.el (xterm-mouse-mode): Adapt to above change.
12093
12094 2005-04-13 Glenn Morris <gmorris@ast.cam.ac.uk>
12095
12096 * progmodes/sh-script.el (sh-here-document-word): Make it a
12097 defcustom. Doc fix.
12098 (sh-add): Bash uses $(( )) for arithmetic.
12099 (sh-while-getopts) <sh>: Set OPTIND back to 1 at end.
12100 (sh-maybe-here-document): Remove quotes and leading whitespace
12101 from heredoc word when closing. Indent heredoc with tabs if word
12102 starts with "-".
12103
12104 2005-04-13 Richard M. Stallman <rms@gnu.org>
12105
12106 * simple.el (undo): Fix previous change.
12107
12108 * custom.el (defface): Doc fix.
12109
12110 2005-04-13 Lute Kamstra <lute@gnu.org>
12111
12112 * Makefile.in (DONTCOMPILE): Remove list.
12113 (compile, compile-always): Don't use DONTCOMPILE.
12114 (update-authors): Load the library in which batch-update-authors
12115 is defined.
12116 * makefile.w32-in (DONTCOMPILE): Remove list.
12117 (compile, compile-always): Fix comments.
12118 (update-authors): Load the library in which batch-update-authors
12119 is defined.
12120
12121 * generic-x.el (generic-mode-ini-file-find-file-hook):
12122 Rename to ini-generic-mode-find-file-hook.
12123 Keep generic-mode-ini-file-find-file-hook as an alias.
12124 (ini-generic-mode-find-file-hook): Rename from
12125 generic-mode-ini-file-find-file-hook. Fix docstring.
12126 (ini-generic-mode): Docstring change.
12127 (bat-generic-mode-run-as-comint): Silence the byte compiler.
12128
12129 * help.el (describe-key-briefly): UNTRANSLATED can be nil when
12130 called from lisp.
12131
12132 * generic.el: Move to the emacs-lisp subdir.
12133
12134 2005-04-12 Dan Nicolaescu <dann@ics.uci.edu>
12135
12136 * term/xterm.el (function-key-map): Add mappings for A-, C-, S-
12137 and C-S- function and cursor motion keys.
12138
12139 2005-04-12 Luc Teirlinck <teirllm@auburn.edu>
12140
12141 * startup.el (command-line): Enable Xterm Mouse mode by default.
12142 * xt-mouse.el (xterm-mouse-mode): Provide correct standard value
12143 for Custom. No longer show "Mouse" in mode line when enabled.
12144 Doc fix.
12145
12146 2005-04-12 Kim F. Storm <storm@cua.dk>
12147
12148 * emulation/cua-base.el (cua-rectangle-face)
12149 (cua-rectangle-noselect-face): Define face attributes here.
12150
12151 * emulation/cua-rect.el (cua--init-rectangles): Remove face setup.
12152
12153 2005-04-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12154
12155 * startup.el (command-line): Turn off blinking cursor if
12156 cursorBlink in resources is off or false.
12157
12158 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12159
12160 * term/mac-win.el (dnd): Require dnd.
12161 (mac-drag-n-drop): Call dnd-handle-one-url.
12162 (kTextEncodingMacRoman, kTextEncodingISOLatin1)
12163 (kTextEncodingISOLatin2): Remove constants.
12164 (mac-script-code-coding-systems): New constant.
12165 (mac-handle-language-change): New function.
12166 (special-event-map): Bind it to `language-change' event.
12167 (mac-centraleurroman, mac-cyrillic): New coding systems.
12168 (mac-font-encoder-list, ccl-encode-mac-centraleurroman-font)
12169 (ccl-encode-mac-cyrillic-font): Rename mac-centraleurroman-encoder
12170 and mac-cyrillic-encoder to encode-mac-centraleurroman and
12171 encode-mac-cyrillic, respectively.
12172
12173 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
12174
12175 * progmodes/gud.el, progmodes/gdb-ui.el (gdb-assembler-mode):
12176 Don't set overlay-arrow-string to "=>" as this is done
12177 globally in C now.
12178
12179 2005-04-12 Lute Kamstra <lute@gnu.org>
12180
12181 * generic-x.el (rc-generic-mode, rul-generic-mode):
12182 Fix auto-mode-alist entries.
12183 (etc-fstab-generic-mode): Tweak fontification.
12184
12185 * generic.el (generic-make-keywords-list): Fix docstring.
12186 (generic-mode-internal): Simplify generic-font-lock-keywords.
12187
12188 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
12189
12190 * whitespace.el (whitespace-buffer-leading)
12191 (whitespace-buffer-trailing): Revert the incorrect test inversion.
12192 However, fix the highlight area for the leading and
12193 trailing whitespaces to show space.
12194
12195 2005-04-11 Rajesh Vaidheeswarran <rv@gnu.org>
12196
12197 * whitespace.el (whitespace-version): Bump to 3.5
12198
12199 (whitespace-buffer-leading, whitespace-buffer-trailing):
12200 Invert sense of the test to highlight the whitespace.
12201
12202 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
12203
12204 * progmodes/gud.el (gud-display-line): GUD uses its own
12205 overlay arrow now so don't set overlay-arrow-string.
12206 (gud-pdb-command-name): Revert back to "pdb" (2004-04-26).
12207
12208 2005-04-11 Dan Nicolaescu <dann@ics.uci.edu>
12209
12210 * term.el (term-ansi-current-bold, term-ansi-current-underline)
12211 (term-ansi-current-reverse, term-ansi-current-invisible)
12212 (term-ansi-face-already-done): Change to boolean.
12213 (term-reset-terminal, term-handle-colors-array): Handle the above
12214 vars accordingly.
12215 (term-buffer-vertical-motion): Rename from buffer-vertical-motion.
12216 (term-emulate-terminal): Use the new name.
12217
12218 * faces.el (secondary-selection): Use yellow1, not yellow.
12219 (trailing-whitespace): Use red1, not red.
12220
12221 2005-04-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12222
12223 * dired.el (dired-mode): Use dnd-* instead of x-dnd-*
12224 (dired-dnd-handle-local-file): Call dnd-get-local-file-name.
12225 (dired-dnd-handle-file): Call dnd-get-local-file-uri
12226
12227 * cus-edit.el (dnd): New group.
12228
12229 * term/w32-win.el (dnd): Require dnd
12230 (w32-drag-n-drop): Call dnd-handle-one-url.
12231
12232 * x-dnd.el: Require dnd.
12233 (x-dnd-handle-uri-list, x-dnd-handle-file-name):
12234 Call dnd-handle-one-url.
12235 (x-dnd-types-alist, x-dnd-insert-utf8-text)
12236 (x-dnd-insert-utf16-text, x-dnd-insert-ctext): Change x-dnd-insert-text
12237 to dnd-insert-text.
12238 (x-dnd-protocol-alist, x-dnd-open-file-other-window)
12239 (x-dnd-handle-one-url, x-dnd-get-local-file-uri)
12240 (x-dnd-get-local-file-name, x-dnd-open-local-file)
12241 (x-dnd-open-file, x-dnd-insert-text): Move to dnd.el (without x-).
12242
12243 * dnd.el (dnd-protocol-alist): New file with generic DND functions.
12244
12245 2005-04-11 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
12246
12247 * wdired.el: Doc fixes.
12248 (wdired-confirm-overwrite): Rename from wdired-is-ok-overwrite.
12249 (wdired-use-dired-vertical-movement): Rename from
12250 wdired-always-move-to-filename-beginning.
12251 (wdired-mode-map): Use `ignore' instead of `wdired-newline'.
12252 (wdired-change-to-wdired-mode): Change mode name.
12253 (wdired-newline): Delete.
12254
12255 2005-04-11 Richard M. Stallman <rms@gnu.org>
12256
12257 * whitespace.el (whitespace-highlight-the-space):
12258 Don't call whitespace-unhighlight-the-space here.
12259
12260 * simple.el (undo): Record t in undo-equiv-table
12261 for the redo record made by an undo-in-region.
12262
12263 2005-04-12 Nick Roberts <nickrob@snap.net.nz>
12264
12265 * progmodes/gdb-ui.el (gdb-display-inferior-io-buffer)
12266 (gdb-frame-inferior-io-buffer): New Functions to control
12267 display of separate IO buffer.
12268 (menu): Add them to menu-bar.
12269 (gdb-display-buffer): Check for buffer another frame.
12270 Protect GUD buffer.
12271 (gdb-setup-windows): Create IO buffer if not already there.
12272 (gdb-memory-mode): Remove purecopy noops.
12273
12274 2005-04-11 Glenn Morris <gmorris@ast.cam.ac.uk>
12275
12276 * progmodes/f90.el (f90-electric-insert): Add optional prefix arg,
12277 and pass to self-insert-command.
12278
12279 2005-04-11 Lute Kamstra <lute@gnu.org>
12280
12281 * generic.el: Commentary section cleanup.
12282 (generic): Delete.
12283 (generic-use-find-file-hook, generic-lines-to-scan)
12284 (generic-find-file-regexp, generic-ignore-files-regexp)
12285 (default-generic-mode, generic-mode-find-file-hook)
12286 (generic-mode-ini-file-find-file-hook): Move to generic-x.el.
12287 * generic-x.el (generic-x): Docstring fix. Put it in the data group.
12288 (generic-use-find-file-hook, generic-lines-to-scan)
12289 (generic-find-file-regexp, generic-ignore-files-regexp)
12290 (default-generic-mode, generic-mode-find-file-hook)
12291 (generic-mode-ini-file-find-file-hook): Move from generic.el.
12292
12293 2005-04-10 Karl Fogel <kfogel@red-bean.com>
12294
12295 * bookmark.el (bookmark-write-file): Catch errors writing file.
12296 This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
12297
12298 2005-04-10 Richard M. Stallman <rms@gnu.org>
12299
12300 * startup.el (fancy-splash-tail): Update copyright year.
12301 (command-line): Split part of -Q into -D.
12302 (emacs-basic-display): New defvar.
12303 (fancy-splash-text): Correct name of menu item.
12304
12305 * saveplace.el (save-place-alist-to-file): Catch errors writing file.
12306
12307 * info.el (Info-fontify-node): Handle fontification of multiple * Menu
12308 lines in one node.
12309
12310 * comint.el (comint-send-input): New arg ARTIFICIAL.
12311 Callers in this file changed.
12312
12313 * abbrev.el (define-abbrevs): Read system abbrevs properly.
12314
12315 * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message.
12316
12317 2005-04-10 Chong Yidong <cyd@stupidchicken.com>
12318
12319 * url/url-ldap.el (url-ldap): Add docstring. Fix call to
12320 `ldap-search-internal'.
12321
12322 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12323
12324 * files.el (set-auto-mode-1): Use line-end-position.
12325
12326 * international/latin-1.el:
12327 * international/latin-2.el:
12328 * international/latin-3.el:
12329 * international/latin-4.el:
12330 * international/latin-5.el:
12331 * international/latin-8.el:
12332 * international/latin-9.el: Give punctuation syntax to NBSP.
12333
12334 * textmodes/bibtex.el (bibtex-autokey-titleword-ignore)
12335 (bibtex-reference-key, bibtex-autokey-demangle-name, bibtex-mode):
12336 Use char-classes to accept non-ascii letters, accepted in some recent
12337 bibtex implementations.
12338
12339 2005-04-10 Luc Teirlinck <teirllm@auburn.edu>
12340
12341 * custom.el (custom-set-minor-mode): Any non-nil value for the
12342 variable should enable the mode when set through Custom.
12343
12344 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
12345
12346 * progmodes/vhdl-mode.el (vhdl-mode-map-init): Don't override default
12347 TAB binding so tab-always-indent is obeyed.
12348 (vhdl-minibuffer-local-map): Move initialization into declaration.
12349 (vhdl-mode-abbrev-table-init): Mark the abbrevs as `system'.
12350 (vhdl-run-when-idle, vhdl-create-mode-menu, vhdl-character-to-event)
12351 (vhdl-hooked-abbrev): Avoid test for XEmacs.
12352 (vhdl-current-line): Use line-beginning-position.
12353 (vhdl-doc-variable, vhdl-doc-mode): Call help-setup-xref before
12354 with-output-to-temp-buffer, so the current position can be recorded.
12355
12356 2005-04-10 Masatake YAMATO <jet@gyve.org>
12357
12358 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12359 Add regexp for gcov.
12360
12361 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
12362
12363 * calendar/time-date.el (time-to-seconds, seconds-to-time)
12364 (days-to-time, time-subtract, time-add): Don't use the #xhhhh
12365 syntax which Emacs 20 doesn't support.
12366
12367 2005-04-09 Richard M. Stallman <rms@gnu.org>
12368
12369 * help.el (describe-key-briefly, describe-key):
12370 Replace strings as event types with "(any string)".
12371
12372 2005-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
12373
12374 * arc-mode.el (archive-mode-map): Move initialization into
12375 the declaration. Override *all* bindings of `undo'.
12376 (archive-lemacs): Remove, use (featurep 'xemacs) instead.
12377
12378 2005-04-09 Jay Belanger <belanger@truman.edu>
12379
12380 * calc/calc-units.el (math-standard-units): Redefine Watt hour as W*hr.
12381
12382 2005-04-09 Dan Nicolaescu <dann@ics.uci.edu>
12383
12384 * term/xterm.el (xterm-rgb-convert-to-16bit): Simplify.
12385 (xterm-register-default-colors): Update color values computation
12386 to match xterm-200.
12387
12388 2005-04-09 Kenichi Handa <handa@m17n.org>
12389
12390 * international/code-pages.el (iso-latin-7): Fix the map.
12391
12392 2005-04-08 Luc Teirlinck <teirllm@auburn.edu>
12393
12394 * emacs-lisp/lisp.el (defun-prompt-regexp)
12395 (parens-require-spaces, buffer-end, end-of-defun)
12396 (insert-parentheses): Doc fixes.
12397
12398 2005-04-08 Kim F. Storm <storm@cua.dk>
12399
12400 * comint.el (comint-highlight-prompt): Fix face spec.
12401 * hi-lock.el (hi-green): Likewise.
12402
12403 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
12404
12405 * cus-edit.el (custom-modified-face):
12406 * comint.el (comint-highlight-input): Fix previous changes.
12407 * term.el (term-handle-ansi-escape): Add a comment.
12408
12409 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
12410
12411 * whitespace.el (whitespace-highlight-the-space): Put the same overlay
12412 in the buffer and in whitespace-highlighted-space.
12413 (whitespace-unhighlight-the-space): Simplify.
12414 (whitespace-buffer): Simplify.
12415
12416 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu>
12417
12418 * textmodes/table.el (table-cell-face): Add special case for
12419 displays supporting a high number of colors.
12420 * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face)
12421 (vhdl-font-lock-reserved-words-face)
12422 (vhdl-speedbar-architecture-face)
12423 (vhdl-speedbar-instantiation-face)
12424 (vhdl-speedbar-architecture-selected-face)
12425 (vhdl-speedbar-instantiation-selected-face): Likewise.
12426 * progmodes/sh-script.el (sh-heredoc-face): Likewise.
12427 * progmodes/idlw-help.el (idlwave-help-link-face): Likewise.
12428 * progmodes/ebrowse.el (ebrowse-tree-mark-face)
12429 (ebrowse-root-class-face, ebrowse-member-attribute-face)
12430 (ebrowse-progress-face): Likewise.
12431 * progmodes/compile.el (compilation-info-face): Likewise.
12432 * progmodes/cc-fonts.el (c-invalid-face): Likewise.
12433 * emacs-lisp/re-builder.el (reb-match-3): Likewise.
12434 * calendar/calendar.el (diary-face): Likewise.
12435 * woman.el (woman-italic-face, woman-bold-face)
12436 (woman-unknown-face): Likewise.
12437 * wid-edit.el (widget-button-pressed-face): Likewise.
12438 * whitespace.el (whitespace-highlight-face): Likewise.
12439 * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise.
12440 * pcvs-info.el (cvs-marked-face): Likewise.
12441 * info.el (info-xref): Likewise.
12442 * ido.el (ido-subdir-face, ido-indicator-face): Likewise.
12443 * hilit-chg.el (highlight-changes-face)
12444 (highlight-changes-delete-face): Likewise.
12445 * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b)
12446 (hi-red-b): Likewise.
12447 * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise.
12448 * font-lock.el (font-lock-keyword-face)
12449 (font-lock-function-name-face, font-lock-warning-face): Likewise.
12450 * cus-edit.el (custom-invalid-face, custom-modified-face)
12451 (custom-set-face, custom-changed-face, custom-variable-tag-face)
12452 (custom-group-tag-face-1, custom-group-tag-face): Likewise.
12453 * comint.el (comint-highlight-prompt): Likewise.
12454
12455 2005-04-08 Lute Kamstra <lute@gnu.org>
12456
12457 * font-lock.el (font-lock-keywords): Docstring fixes.
12458
12459 2005-04-08 Kenichi Handa <handa@m17n.org>
12460
12461 * ps-mule.el (ps-mule-show-warning): If the number of unprintable
12462 chars are more than a limit, print " and more..." at the tail.
12463
12464 2005-04-08 Kim F. Storm <storm@cua.dk>
12465
12466 * emacs-lisp/authors.el (authors-aliases): Update list.
12467 (authors-ignored-files): New list.
12468 (authors-fixed-entries): Fix typo.
12469 (authors-renamed-files-alist): Update list.
12470 (authors-add): Check authors-ignored-files.
12471
12472 2005-04-08 Carsten Dominik <dominik@science.uva.nl>
12473
12474 * calendar/diary-lib.el (add-to-diary-list): MARKER argument made
12475 optional, to ensure backward compatibility.
12476
12477 2005-04-08 Stephen Eglen <stephen@gnu.org>
12478
12479 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
12480
12481 2005-04-08 Kim F. Storm <storm@cua.dk>
12482
12483 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to mouse-face.
12484
12485 * mouse.el (mouse-on-link-p): Doc fix.
12486
12487 2005-04-07 Luc Teirlinck <teirllm@auburn.edu>
12488
12489 * ielm.el (ielm-prompt-read-only): Doc fix.
12490
12491 * comint.el (comint-prompt-read-only): Doc fix.
12492
12493 2005-04-07 Benjamin Rutt <brutt@bloomington.in.us>
12494
12495 * ffap.el (ffap-pass-wildcards-to-dired): New user option to
12496 ensure dired always handles wildcards passed to ffap.
12497 (find-file-at-point): Use it.
12498 (ffap-dired-wildcards): Doc fix.
12499
12500 2005-04-07 Juri Linkov <juri@jurta.org>
12501
12502 * simple.el (next-error-overlay-arrow-position): New defvar.
12503 Put "=>" on its property `overlay-arrow-string'. Add it to
12504 `overlay-arrow-variable-list'.
12505
12506 * progmodes/compile.el (compilation-setup):
12507 Set `next-error-overlay-arrow-position' to nil. Also set it to
12508 nil in the local hook `kill-buffer-hook'. Make local variable
12509 `overlay-arrow-string' and set it to "=>".
12510 (compilation-goto-locus): Set BOL position to
12511 `next-error-overlay-arrow-position' instead of
12512 `overlay-arrow-position'.
12513
12514 * info.el (Info-mode): Add `Info-kill-buffer' to `kill-buffer-hook'
12515 locally instead of adding it to the global hook.
12516 (Info-kill-buffer): Move up.
12517
12518 2005-04-06 Dan Nicolaescu <dann@ics.uci.edu>
12519
12520 * term/xterm.el (xterm-standard-colors): Update color values from
12521 xterm-200.
12522
12523 2005-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
12524
12525 * textmodes/tex-mode.el (tex-font-lock-keywords-2): Add \bfseries.
12526
12527 * fast-lock.el:
12528 * lazy-lock.el: Move them to the obsolete subdir.
12529
12530 2005-04-06 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
12531
12532 * wdired.el (wdired-advise-functions, wdired-add-skip-in-replace)
12533 (wdired-add-replace-advice): Remove.
12534 (wdired-change-to-wdired-mode): Use query-replace-skip-read-only.
12535
12536 2005-04-06 Kim F. Storm <storm@cua.dk>
12537
12538 * startup.el (command-line): Add --bare-bones alias for -Q.
12539
12540 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12541
12542 * term/mac-win.el: Use create-fontset-from-mac-roman-font to
12543 create the startup fontset if a font specification ends with
12544 `mac-roman'.
12545
12546 2005-04-06 Lute Kamstra <lute@gnu.org>
12547
12548 * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03
12549 change.
12550
12551 * emacs-lisp/copyright.el (copyright-update-year): Replace the
12552 right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>.
12553
12554 2005-04-05 Lute Kamstra <lute@gnu.org>
12555
12556 * generic.el (generic-mode-internal): Fix 2005-03-31 change.
12557 (define-generic-mode): Ditto. Fix debug declaration.
12558
12559 * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
12560 Put them in the generic-x group.
12561
12562 * calendar/timeclock.el (timeclock): Doc fix.
12563
12564 * generic.el (define-generic-mode): Don't use custom-current-group.
12565 Document default :group value.
12566 * emacs-lisp/easy-mmode.el (define-minor-mode): Ditto.
12567 (define-global-minor-mode): Don't use custom-current-group.
12568
12569 2005-04-05 Glenn Morris <gmorris@ast.cam.ac.uk>
12570
12571 * startup.el (command-line-1): Display startup-echo-area-message
12572 when fancy splash screen is in use.
12573
12574 * progmodes/sh-script.el (sh-builtins) <bash>: Add `caller'.
12575 (sh-escaped-newline): New face.
12576 (sh-font-lock-keywords) <shell>: Improve regexp for escaped
12577 newline, and use sh-escaped-newline face.
12578
12579 * progmodes/tcl.el (tcl-escaped-newline): New face.
12580 (tcl-builtin-list): New variable.
12581 (tcl-set-font-lock-keywords): Add builtins, variables, and escaped
12582 newlines. Fix keywords subexpression number.
12583
12584 2005-04-05 Carsten Dominik <dominik@science.uva.nl>
12585
12586 * textmodes/org.el (org-diary-default-entry): Fix call to
12587 `add-to-diary-entry'.
12588
12589 2005-04-05 Kim F. Storm <storm@cua.dk>
12590
12591 * ediff-init.el: Use (featurep 'xemacs).
12592
12593 2005-04-05 David Ponce <david@dponce.com>
12594
12595 * cus-edit.el (face): Derive from symbol widget. Display sample
12596 of the current face on the fly.
12597 (widget-face-sample-face-get, widget-face-notify): New functions.
12598 (widget-face-value-create): Remove.
12599
12600 * wid-edit.el (widget-field-end): Temporarily remove field
12601 narrowing before to call `get-char-property'.
12602
12603 2005-04-04 Jay Belanger <belanger@truman.edu>
12604
12605 * calc/calc-aent.el (math-read-replacement-list): Add subscripts.
12606 (math-read-subscripts): New variable.
12607 (math-read-preprocess-string): Process subscripts.
12608
12609 2005-04-04 Luc Teirlinck <teirllm@auburn.edu>
12610
12611 * comint.el (comint-prompt-read-only): Doc fix.
12612
12613 * dired.el (dired-copy-filename-as-kill): Make `-' arg behave like
12614 `-1'. Doc fix.
12615
12616 2005-04-04 Carsten Dominik <dominik@science.uva.nl>
12617
12618 * textmodes/org.el (org-insert-mode-line-in-empty-file):
12619 Change default value to nil.
12620
12621 2005-04-04 Lute Kamstra <lute@gnu.org>
12622
12623 * autorevert.el (auto-revert-mode): Specify :group.
12624 * battery.el (display-battery-mode): Specify :group.
12625 * diff-mode.el (diff-minor-mode): Specify :group.
12626 * font-core.el (font-lock-mode): Specify :group.
12627 * hl-line.el (hl-line-mode): Specify :group.
12628 * iimage.el (iimage): New customization group.
12629 (iimage-mode): Specify :group.
12630 * longlines.el (longlines-mode): Specify :group.
12631 * master.el: Don't require easy-mmode.
12632 (master): New customization group.
12633 (master-mode): Specify :group.
12634 * msb.el (msb-mode): Specify :group.
12635 * reveal.el (reveal-mode): Specify :group.
12636 * simple.el (next-error-follow-minor-mode): Specify :group.
12637 * smerge-mode.el (smerge-mode): Specify :group.
12638 * emacs-lisp/eldoc.el (eldoc-mode): Specify :group.
12639 * emulation/cua-base.el (cua-mode): Specify :group.
12640 * international/encoded-kb.el (encoded-kbd-mode): Specify :group.
12641 * language/thai-util.el (thai-auto-composition-mode)
12642 (thai-word-mode): Specify :group.
12643 * mail/supercite.el (sc-minor-mode): Specify :group.
12644 * progmodes/cwarn.el (cwarn-mode): Specify :group.
12645 * progmodes/flymake.el (flymake-mode): Specify :group.
12646 * progmodes/glasses.el (glasses-mode): Specify :group.
12647 * progmodes/hideif.el (hide-ifdef-mode): Specify :group.
12648 * textmodes/enriched.el (enriched-mode): Specify :group.
12649 * textmodes/refill.el (refill-mode): Specify :group.
12650
12651 * add-log.el (change-log-font-lock-keywords): Names in
12652 parenthesized lists can contain spaces.
12653
12654 2005-04-04 Thien-Thi Nguyen <ttn@gnu.org>
12655
12656 * startup.el (fancy-splash-text): Shorten default text of
12657 "Emacs Tutorial" line. Also, if the current language env
12658 indicates an available tutorial file other than TUTORIAL,
12659 extract its title and append it to the line in parentheses.
12660 (fancy-splash-insert): If arg is a thunk, funcall it.
12661
12662 2005-04-04 Jay Belanger <belanger@truman.edu>
12663
12664 * calc.el (calc-language-alist): Add tags to customization type.
12665
12666 2005-04-03 Luc Teirlinck <teirllm@auburn.edu>
12667
12668 * xt-mouse.el (xterm-mouse-mode): Add explicit Custom group, mouse.
12669 Doc fix.
12670
12671 2005-04-03 Marcelo Toledo <marcelo@gnu.org>
12672
12673 * add-log.el (change-log-font-lock-keywords): The manual
12674 describing a Change Log entry, says: (...) "Aside from these
12675 header lines, every line in the change log starts with a space or
12676 a tab.". The font-lock was not highlighting lines started with
12677 spaces, added support for it.
12678
12679 2005-04-03 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
12680
12681 * textmodes/bibtex.el (bibtex-url): Use format to generate the url.
12682 (bibtex-generate-url-list): Update docstring accordingly. Put the
12683 complex example in the docstring.
12684 (bibtex-font-lock-url): Use pop.
12685
12686 2005-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
12687
12688 * progmodes/tcl.el (tcl-set-font-lock-keywords): Use new \_< ops.
12689
12690 * pcvs.el (cvs-checkout): Prompt for cvsroot as well.
12691
12692 2005-04-03 Glenn Morris <gmorris@ast.cam.ac.uk>
12693
12694 * filesets.el (filesets-set-default): Doc fix.
12695
12696 2005-04-03 Lute Kamstra <lute@gnu.org>
12697
12698 * generic.el (define-generic-mode): Add argument to specify
12699 keywords for defcustom.
12700 (default-generic-mode): Specify :group.
12701
12702 * generic-x.el: Specify :group for all generic modes.
12703
12704 * desktop.el (desktop-no-desktop-file-hook)
12705 (desktop-after-read-hook): Doc fix.
12706
12707 2005-04-02 Luc Teirlinck <teirllm@auburn.edu>
12708
12709 * simple.el (visible-mode): Use explicit :group keyword.
12710 This changes the group of `visible-mode-hook' from paren-blinking
12711 to editing-basics.
12712
12713 2005-04-02 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
12714
12715 * mail/rmail.el (rmail-parse-url): Bugfix. Parse traditional
12716 mailbox specifications as well as URLs.
12717 (rmail-insert-inbox-text): Remove unused conditional branches.
12718
12719 2005-04-01 Jay Belanger <belanger@truman.edu>
12720
12721 * calc/calc-graph.el (calc-gnuplot-name, calc-gnuplot-plot-command)
12722 (calc-gnuplot-print-command): Move definitions to calc.el.
12723
12724 * calc/calc-embed.el (calc-embedded-announce-formula)
12725 (calc-embedded-open-formula, calc-embedded-close-formula)
12726 (calc-embedded-open-word, calc-embedded-close-word)
12727 (calc-embedded-open-plain, calc-embedded-close-plain)
12728 (calc-embedded-open-new-formula, calc-embedded-close-new-formula)
12729 (calc-embedded-open-mode, calc-embedded-close-mode):
12730 Move definitions to calc.el.
12731
12732 * calc/calc.el (calc-settings-file, calc-language-alist):
12733 Make customizable.
12734 (calc-embedded-announce-formula, calc-embedded-open-formula)
12735 (calc-embedded-close-formula, calc-embedded-open-word)
12736 (calc-embedded-close-word, calc-embedded-open-plain)
12737 (calc-embedded-close-plain, calc-embedded-open-new-formula)
12738 (calc-embedded-close-new-formula, calc-embedded-open-mode)
12739 (calc-embedded-close-mode, calc-gnuplot-name)
12740 (calc-gnuplot-plot-command, calc-gnuplot-print-command): Move here
12741 from other files and make customizable.
12742
12743 2005-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
12744
12745 * pcvs.el (cvs-temp-buffer, cvs-mode-kill-process, cvs-buffer-check):
12746 Use buffer-live-p.
12747 (cvs-mode-run): Don't call cvs-update-header here.
12748 (cvs-run-process): Call cvs-update-header.
12749 Use process properties for cvs-postprocess and cvs-buffer so that
12750 the sentinel can behave better if the temp buffer is killed.
12751 Use a pipe rather than a tty, to better handle unexpected prompts.
12752 (cvs-sentinel): Rewrite. Call cvs-update-header.
12753
12754 2005-04-01 Andre Spiegel <spiegel@gnu.org>
12755
12756 * vc-hooks.el (vc-workfile-unchanged-p): Disable mtime check when
12757 we go via Tramp or Ange-FTP. Suggested by Kai Grossjohann.
12758
12759 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12760
12761 * generic.el (define-generic-mode): Add indentation rule.
12762
12763 2005-03-31 Luc Teirlinck <teirllm@auburn.edu>
12764
12765 * files.el (mode-require-final-newline): Make Custom correctly
12766 report a nil value and allow to set it to nil via Custom.
12767 Doc fix.
12768
12769 2005-04-01 Kenichi Handa <handa@m17n.org>
12770
12771 * international/characters.el: Enable the correct case setting for
12772 dotless-i and dotted-I.
12773
12774 2005-04-01 Kim F. Storm <storm@cua.dk>
12775
12776 * ido.el (ido-file-internal): Fall back to non-ido command if
12777 initial directory is on slow ftp (or tramp) host.
12778
12779 2005-03-31 Richard M. Stallman <rms@gnu.org>
12780
12781 * emacs-lisp/autoload.el (make-autoload):
12782 Handle define-global-minor-mode.
12783
12784 * emacs-lisp/easy-mmode.el (define-global-minor-mode):
12785 Rename from easy-mmode-define-global-mode.
12786 (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
12787
12788 * progmodes/scheme.el (scheme-mode-syntax-table):
12789 Update syntax of | and # for two-character comment syntax.
12790
12791 2005-03-31 Lute Kamstra <lute@gnu.org>
12792
12793 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
12794 (define-minor-mode): Call custom-current-group at load-time.
12795
12796 * generic.el (define-generic-mode): Add debug declaration.
12797 Add defcustom for the mode hook.
12798 (generic-mode-internal): Use run-mode-hooks.
12799
12800 2005-03-31 Kim F. Storm <storm@cua.dk>
12801
12802 * mouse.el (mouse-1-click-follows-link): Increase to 450 ms.
12803 (mouse-fixup-help-message): New defun called by show_help_echo
12804 to fixup mouse-2 prefix in help messages when applicable.
12805
12806 * tooltip.el (tooltip-show-help-function): Don't fixup message here.
12807
12808 2005-03-31 Kenichi Handa <handa@m17n.org>
12809
12810 * language/thai-word.el (thai-find-word-ends): Pay attention to
12811 the case that we reach the end of buffer.
12812
12813 * textmodes/fill.el (fill-text-properties-at): New function.
12814 (fill-newline): Use fill-text-properties-at instead of
12815 text-properties-at.
12816
12817 2005-03-31 Olive Lin <olive.lin@versateladsl.be> (tiny change)
12818
12819 * textmodes/tex-mode.el (tex-start-tex) Use shell-quote-argument,
12820 not comint-quote-filename.
12821
12822 2005-03-31 Thien-Thi Nguyen <ttn@gnu.org>
12823
12824 * help-fns.el (help-with-tutorial): Revert last change.
12825
12826 2005-03-31 Kim F. Storm <storm@cua.dk>
12827
12828 * emulation/cua-base.el (cua-scroll-down): Add CUA property.
12829
12830 2005-03-30 Paul Eggert <eggert@cs.ucla.edu>
12831
12832 * calendar/cal-china.el: Update reference to "Calendrical
12833 Calculations" book; there's a new edition.
12834 * calendar/cal-coptic.el: Likewise.
12835 * calendar/cal-french.el: Likewise.
12836 * calendar/cal-hebrew.el: Likewise.
12837 * calendar/cal-islam.el: Likewise.
12838 * calendar/cal-iso.el: Likewise.
12839 * calendar/cal-julian.el: Likewise.
12840 * calendar/cal-mayan.el: Likewise.
12841 * calendar/cal-persia.el: Likewise.
12842 * calendar/calendar.el: Likewise.
12843 * calendar/holidays.el: Likewise.
12844 * calendar/lunar.el: Likewise.
12845 * calendar/solar.el: Likewise.
12846
12847 * calendar/calendar.el (calendar-day-abbrev-array): Remove trailing
12848 white space from doc string.
12849
12850 2005-03-30 Jay Belanger <belanger@truman.edu>
12851
12852 * calc/calc-help.el (calc-full-help): Remove email address.
12853
12854 2005-03-30 Thien-Thi Nguyen <ttn@gnu.org>
12855
12856 * help-fns.el (help-with-tutorial): Delete title line.
12857
12858 2005-03-30 Glenn Morris <gmorris@ast.cam.ac.uk>
12859
12860 * calendar/cal-x.el (calendar-one-frame-setup)
12861 (calendar-only-one-frame-setup, calendar-two-frame-setup): Use t
12862 rather than 'symbol for set-window-dedicated-p.
12863
12864 * calendar/appt.el (appt-buffer-name): Make it a constant.
12865 (appt-add): Doc fix.
12866
12867 * filesets.el (filesets-menu-path, filesets-menu-before)
12868 (filesets-menu-in-menu): Doc fix. Now valid in GNU Emacs.
12869 (filesets-menu-cache-file): Use directory ~/.emacs.d.
12870 (filesets-add-submenu): Delete and use add-submenu instead.
12871
12872 2005-03-30 Carsten Dominik <dominik@science.uva.nl>
12873
12874 * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
12875 (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
12876 (org-diary-default-entry): New function.
12877 (org-get-entries-from-diary): Better parsing of diary entries.
12878 (org-agenda-check-no-diary): New function.
12879 ("diary-lib"): Advice to function `add-to-diary-list', to allow
12880 linking to diary entries.
12881 (org-agenda-execute-calendar-command): New function.
12882 (org-agenda): Improve visible section in window.
12883 Use `org-fit-agenda-window'.
12884 (org-fit-agenda-window): New option.
12885 (org-move-subtree-down): Better handling of empty lines
12886 at end of subtree.
12887 (org-cycle): Numeric prefix is interpreted now as show-subtree N
12888 levels up.
12889 (org-fontify-done-headline): New option.
12890 (org-headline-done-face): New face.
12891 (org-set-font-lock-defaults): Use `org-headline-done-face'.
12892 (org-table-copy-down): Rename from `org-table-copy-from-above'.
12893 When current field is non-empty, it is copied to next row.
12894 (org-table-copy-from-above): Fix bug which made it
12895 impossible to copy fields containing only a single non-white character.
12896
12897 2005-03-30 Kim F. Storm <storm@cua.dk>
12898
12899 * kmacro.el (kmacro-end-macro): Isearch may store this command
12900 into the macro -- so ignore it when executing keyboard macro.
12901
12902 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
12903
12904 * tooltip.el (tooltip-gud-display): Use gud-overlay-arrow-position.
12905
12906 2005-03-29 Kenichi Handa <handa@m17n.org>
12907
12908 * language/thai.el ("Thai"): Set setup-function and exit-function
12909 for Thai language environment.
12910
12911 * language/thai-util.el: Require thai-word.
12912 (thai-word-mode-map): New variable.
12913 (thai-word-mode): New minor mode.
12914 (setup-thai-language-environment-internal): New function.
12915 (exit-thai-language-environment-internal): New function.
12916
12917 * language/thai-word.el (thai-word-table): Declare it by defvar,
12918 use dolist to initialize it.
12919 (thai-kill-word, thai-backward-kill-word, thai-transpose-words)
12920 (thai-fill-find-break-point): New functions.
12921
12922 2005-03-29 Richard M. Stallman <rms@gnu.org>
12923
12924 * simple.el (idle-update-delay): Move definition up.
12925 (set-mark): Doc fix.
12926
12927 2005-03-29 Chong Yidong <cyd@stupidchicken.com>
12928
12929 * longlines.el: New file.
12930
12931 * simple.el (buffer-substring-filters): New variable.
12932 (filter-buffer-substring): New function.
12933 (kill-region, copy-region-as-kill): Use it.
12934
12935 * register.el (copy-to-register, append-to-register)
12936 (prepend-to-register): Use filter-buffer-substring.
12937
12938 2005-03-30 Nick Roberts <nickrob@snap.net.nz>
12939
12940 * progmodes/gud.el (gdb): (Re)-initialize gud-filter-pending-text.
12941 (gud-filter-pending-text): Move in front of gdb.
12942 (gud-overlay-arrow-position): New variable.
12943 (gud-sentinel, gud-display-line): Use it in place of
12944 overlay-arrow-position.
12945
12946 2005-03-29 Glenn Morris <gmorris@ast.cam.ac.uk>
12947
12948 * progmodes/fortran.el (fortran-if-indent): Doc fix.
12949 (fortran-font-lock-keywords-2): Add "where", "elsewhere".
12950 (fortran-font-lock-keywords-4): New variable.
12951 (fortran-blocks-re, fortran-end-block-re)
12952 (fortran-start-block-re): New constants, for hideshow.
12953 (hs-special-modes-alist): Add a Fortran entry.
12954 (fortran-mode-map): Bind fortran-end-of-block,
12955 fortran-beginning-of-block to \M-\C-n, \M-\C-p.
12956 (fortran-mode): Doc fix. Add fortran-font-lock-keywords-4.
12957 (fortran-looking-at-if-then, fortran-end-of-block)
12958 (fortran-beginning-of-block): New functions, for hideshow.
12959
12960 * progmodes/f90.el (f90-end-block-re, f90-start-block-re):
12961 Doc fix. Tweak regexp.
12962 (f90-beginning-of-block): Push mark first.
12963
12964 2005-03-29 Jay Belanger <belanger@truman.edu>
12965
12966 * calc/calc.el: Update copyright date.
12967 (calc-version): Increase to 2.1.
12968 (calc-version-date): Remove.
12969
12970 * calc/calc-help.el: Update copyright date.
12971 (calc-full-help): Remove reference to calc-version-date.
12972 Update copyright date.
12973
12974 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
12975
12976 * vc.el (vc-do-command): Use a pipe for async processes, so password
12977 prompts don't show up at places where the user can't reply.
12978
12979 2005-03-29 Olive Lin <olive.lin@versateladsl.be> (tiny change)
12980
12981 * textmodes/tex-mode.el (tex-send-command): shell-quote-argument
12982 on the file name we pass to the inferior shell.
12983
12984 2005-03-29 Stephan Stahl <stahl@eos.franken.de> (tiny change)
12985
12986 * progmodes/which-func.el (which-function): Be robust in the face of an
12987 imenu--make-index-alist failure.
12988
12989 2005-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
12990
12991 * reveal.el (reveal-mode-map): Don't override C-a and C-e.
12992
12993 * progmodes/python.el (python-preoutput-filter): Fix last change.
12994
12995 2005-03-29 Lute Kamstra <lute@gnu.org>
12996
12997 * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
12998 functions and compiled macros.
12999 (debug-convert-byte-code): Handle macros too.
13000 (debug-on-entry-1): Don't signal an error when trying to clear a
13001 function that is not set to debug on entry.
13002
13003 2005-03-29 Jay Belanger <belanger@truman.edu>
13004
13005 * calc/calc-lang.el: Add functions to math-function-table
13006 properties of tex and math.
13007
13008 2005-03-29 Kenichi Handa <handa@m17n.org>
13009
13010 * ps-mule.el (ps-mule-plot-string): Translate characters by
13011 ps-print-translation-table.
13012 (ps-mule-begin-job): Call find-charset-region/string with
13013 ps-print-translation-table.
13014 (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
13015
13016 * ps-print.el (ps-print-translation-table): New variable.
13017 (ps-plot-region): Translate characters by ps-print-translation-table.
13018
13019 2005-03-29 Juri Linkov <juri@jurta.org>
13020
13021 * simple.el (next-error-highlight-timer): New variable.
13022
13023 * progmodes/compile.el (compilation-goto-locus):
13024 Use `next-error-highlight-timer' instead of `sit-for'.
13025
13026 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13027
13028 * mail/supercite.el (sc-mail-field): Use assoc-string.
13029 (sc-get-address): Simplify regexps.
13030
13031 * files.el (minibuffer-with-setup-hook): New macro.
13032 (find-file-read-args): Use it to avoid let-binding
13033 minibuffer-with-setup-hook (which breaks turning on/off
13034 file-name-shadow-mode while in the prompt).
13035
13036 * complete.el (PC-read-include-file-name-internal):
13037 Use test-completion.
13038
13039 2005-03-28 Luc Teirlinck <teirllm@auburn.edu>
13040
13041 * font-lock.el: Bind `font-lock-fontify-block' to M-o M-o.
13042
13043 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13044
13045 * window.el (window-buffer-height): Use count-screen-lines.
13046
13047 * progmodes/python.el (python-preoutput-leftover): New var.
13048 (python-preoutput-filter): Use it.
13049 (python-send-receive): Loop until all the result has been received.
13050
13051 2005-03-28 Juri Linkov <juri@jurta.org>
13052
13053 * dired.el (dired-mode-map): Add ellipsis to "Compare directories".
13054
13055 * menu-bar.el (menu-bar-file-menu): Remove ellipsis from
13056 "Recover Crashed Session".
13057 (menu-bar-search-menu): Add ellipsis to "Search tagged files".
13058 (menu-bar-replace-menu): Add ellipsis to "Replace in tagged files".
13059 (menu-bar-goto-menu): Add ellipsis to "Set Tags File Name".
13060 (menu-bar-goto-menu): Add ellipsis to "Tags Apropos".
13061 (menu-bar-options-menu): Add ellipsis to "Set Font/Fontset".
13062 (menu-bar-manuals-menu): Add ellipsis to "Find Command in Manual".
13063 (menu-bar-manuals-menu): Add ellipsis to "Find Key in Manual".
13064 (menu-bar-help-menu): Remove ellipsis from "Find Emacs Packages".
13065
13066 * ediff-hook.el (menu-bar-ediff-misc-menu, ediff-misc-menu):
13067 Remove ellipsis from "Ediff Manual", "Customize Ediff", "List
13068 Ediff Sessions", "Toggle use of separate control buffer frame",
13069 "Use separate frame for Ediff control buffer".
13070
13071 * bookmark.el (menu-bar-bookmark-map): Add ellipsis to "Jump to
13072 Bookmark", "Set Bookmark", "Insert Contents", "Insert Location",
13073 "Rename Bookmark", "Delete Bookmark".
13074
13075 * info.el (Info-mode-menu): Remove ellipsis from "Index".
13076 Add ellipsis to "Lookup a String", "Lookup a string in all indices".
13077 Add `:active Info-index-alternatives' to "Next Matching Item".
13078
13079 * wdired.el (wdired-change-to-wdired-mode):
13080 Mention `wdired-abort-changes' key in the initial message.
13081
13082 * international/mule.el (auto-coding-alist): Associate non-ascii
13083 image filename extensions with `no-conversion'.
13084
13085 2005-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
13086
13087 * international/iso-acc.el:
13088 * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
13089
13090 2005-03-26 Luc Teirlinck <teirllm@auburn.edu>
13091
13092 * textmodes/sgml-mode.el (html-mode): Doc update.
13093
13094 * autorevert.el (auto-revert-check-vc-info): Minor doc fix.
13095
13096 2005-03-26 Dan Nicolaescu <dann@ics.uci.edu>
13097
13098 * term.el (term-move-columns): Fix face after extending a line.
13099 (term-insert-spaces): Likewise.
13100 (term-reset-terminal): Fix off by one error.
13101
13102 2005-03-26 Eli Zaretskii <eliz@gnu.org>
13103
13104 * international/mule.el (auto-coding-alist): Add .xpi files.
13105
13106 * files.el (auto-mode-alist): Add .xpi files.
13107
13108 2005-03-26 Jure Cuhalev <gandalf@owca.info> (tiny change)
13109
13110 * textmodes/ispell.el (ispell-dictionary-alist-6): Add slovenian.
13111
13112 2005-03-26 Eli Zaretskii <eliz@gnu.org>
13113
13114 * term/bobcat.el: Don't use keyswap.el, since it is now obsolete.
13115
13116 2005-03-26 Glenn Morris <gmorris@ast.cam.ac.uk>
13117
13118 * calendar/cal-menu.el (top level): Delete local C-down-mouse-3
13119 binding. Suggested by Stephan Stahl <stahl@eos.franken.de>.
13120
13121 * calendar/cal-move.el (calendar-beginning-of-year): Move the
13122 cursor to Jan 1 when needed.
13123 (calendar-end-of-year): Fix -/+ typo.
13124 Reported by Chong Yidong <cyd@stupidchicken.com>.
13125
13126 2005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13127
13128 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
13129
13130 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
13131 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
13132
13133 2005-03-25 Richard M. Stallman <rms@gnu.org>
13134
13135 * filesets.el (filesets-init): Add autoload.
13136
13137 * mail/mailalias.el (mail-directory): Doc fix.
13138
13139 2005-03-25 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
13140
13141 * mail/mailalias.el (mail-directory-process): Do nothing if
13142 mail-directory-process is an atom.
13143 (mail-get-names): Ignore mail-directory-names if it is an atom.
13144 (mail-directory-process defvar): Doc fix.
13145 (mail-names): Doc fix.
13146
13147 2005-03-25 Johan Bockg\e,Ae\e(Brd <bojohan+mail@dd.chalmers.se> (tiny change)
13148
13149 * textmodes/flyspell.el (mail-mode-flyspell-verify): Fix regexp syntax.
13150
13151 2005-03-26 Kenichi Handa <handa@m17n.org>
13152
13153 * international/mule-util.el (detect-coding-with-priority):
13154 Call update-coding-systems-internal before detect-coding-region.
13155
13156 2005-03-26 Nick Roberts <nickrob@snap.net.nz>
13157
13158 * progmodes/gdb-ui.el (gdb-breakpoints-mode-map)
13159 (gdb-frames-mode-map): Add follow-link property.
13160
13161 2005-03-25 Jay Belanger <belanger@truman.edu>
13162
13163 * calc/calcalg2.el (calc-solve-for): Use "Variable(s)" to prompt
13164 for variables.
13165
13166 2005-03-25 Juri Linkov <juri@jurta.org>
13167
13168 * image-mode.el: Optimize image filename extension regexps in
13169 autoload cookies. Associate .x[bp]m with `image-mode-maybe'
13170 in `auto-mode-alist'.
13171 (image-mode): Add `image-toggle-display-text' to local hook
13172 `change-major-mode-hook'. Display the image as an image by
13173 default. Set `cursor-type' and `truncate-lines' if the image
13174 is already displayed. Take into account the current mode (image
13175 or text) in message.
13176 (image-minor-mode): New minor mode.
13177 (image-mode-maybe, image-toggle-display-text): New functions.
13178 (image-toggle-display): Use called-interactively-p.
13179 Let-bind `inhibit-read-only' to t.
13180
13181 * image-mode.el (image-minor-mode): Set `cursor-type' and
13182 `truncate-lines' if the image is already displayed. Add turning
13183 image-minor-mode off to `change-major-mode-hook'. Add message.
13184 Call `image-toggle-display-text' after turning image-minor-mode off.
13185
13186 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
13187
13188 * international/mule-cmds.el (set-locale-environment): For Mac OS X's
13189 Terminal.app, use utf-8.
13190 (set-display-table-and-terminal-coding-system): Add coding-system arg.
13191 (set-locale-environment): Use it.
13192
13193 * term/xterm.el: Undo last change, better done in mule-cmds.el.
13194
13195 * emacs-lisp/rx.el (rx-constituents): Add symbol-start and symbol-end.
13196
13197 * progmodes/python.el (python-close-block-statement-p)
13198 (python-outdent-p, python-current-defun): Use symbol-end.
13199
13200 2005-03-25 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
13201
13202 * files.el (save-some-buffers): Doc fix.
13203
13204 2005-03-25 Werner Lemberg <wl@gnu.org>
13205
13206 * complete.el, thumbs.el: Replace `legal' with `valid'.
13207 * calendar/calendar.el: Replace `legal' with `valid'.
13208 * emacs-lisp/advice.el: Replace `legal' with `valid'.
13209 * mail/supercite.el: Replace `legal' with `valid'.
13210 * progmodes/cperl-mode.el, progmodes/idlw-shell.el
13211 * progmodes/idlwave.el, progmodes/vhdl-mode.el:
13212 Replace `legal' with `valid'.
13213 * textmodes/reftex-vars.el, textmodes/reftex.el:
13214 Replace `legal' with `valid'.
13215
13216 2005-03-25 Werner Lemberg <wl@gnu.org>
13217
13218 * calc/calc-forms.el, calc/calc-sel.el:
13219 * midnight.el, vc-cvs.el:
13220 * emacs-lisp/cl-macs.el:
13221 * emulation/vip.el:
13222 * eshell/esh-io.el, eshell/esh-var.el:
13223 * mail/supercite.el:
13224 * progmodes/ebnf-abn.el, progmodes/ebnf-bnf.el
13225 * progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-iso.el
13226 * progmodes/ebnf-yac.el, progmodes/ebnf2ps.el, progmodes/idlwave.el
13227 * progmodes/sh-script.el, progmodes/xscheme.el:
13228 * textmodes/refbib.el, textmodes/refer.el, textmodes/reftex-cite.el
13229 * textmodes/reftex-index.el, textmodes/reftex-parse.el
13230 * textmodes/reftex-ref.el, textmodes/reftex-vars.el
13231 * textmodes/reftex.el, textmodes/org.el:
13232 Replace `illegal' with `invalid'.
13233
13234 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13235
13236 * progmodes/flymake.el (flymake-get-file-name-mode-and-masks)
13237 (flymake-find-buildfile, flymake-find-possible-master-files)
13238 (flymake-check-include, flymake-parse-line): Replace loops over the
13239 length of lists, by loops over lists, to remove silly O(n\e,A2\e(B) behavior.
13240
13241 * progmodes/flymake.el (flymake-ensure-ends-with-slash): Remove.
13242 Substitute file-name-as-directory in the rest of the file.
13243 (flymake-get-common-file-prefix): Rewrite, using compare-strings.
13244 (flymake-replace-region): Remove unused arg `buffer'.
13245 (flymake-check-patch-master-file-buffer): Update calls to it.
13246 (flymake-add-err-info): Remove unused var `count'.
13247 (flymake-mode): Use define-minor-mode.
13248
13249 * progmodes/flymake.el: Use with-current-buffer.
13250 (flymake-float-time, flymake-get-temp-dir, flymake-line-end-position)
13251 flymake-replace-regexp-in-string, flymake-line-beginning-position)
13252 (flymake-popup-menu, flymake-current-row, flymake-selected-frame):
13253 Avoid testing for `xemacs'.
13254 (flymake-nop): Move.
13255 (flymake-region-has-flymake-overlays): Return the computed value.
13256 (flymake-reformat-err-line-patterns-from-compile-el): Use dolist.
13257 Remove unused var `endline'.
13258 (flymake-get-line-count): Remove unused function.
13259 (flymake-display-err-menu-for-current-line): Unused var move-mouse-pos.
13260
13261 * emulation/vi.el:
13262 * generic.el:
13263 * hilit-chg.el (global-highlight-changes):
13264 * hi-lock.el (hi-lock-mode):
13265 * follow.el: find-file-hooks -> find-file-hook.
13266
13267 * comint.el (comint-insert-input): Obey mouse-yank-at-point.
13268
13269 2005-03-24 Juri Linkov <juri@jurta.org>
13270
13271 * dired.el (dired-mode-map): Add menu item "Compare directories"
13272 for dired-compare-directories.
13273
13274 * dired-aux.el (dired-compare-directories): Add autoload cookie.
13275 Doc fix. Replace `read-file-name' with `read-directory-name'.
13276
13277 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13278
13279 * term/xterm.el: If running in Terminal.app set coding-system to utf-8.
13280
13281 2005-03-24 Jay Belanger <belanger@truman.edu>
13282
13283 * calc/calc-embed.el (calc-embedded-mode-change): Save all
13284 relevant mode settings in calc-embedded-original-modes when modes
13285 are permanently changed.
13286
13287 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13288
13289 * autoinsert.el: find-file-hooks -> find-file-hook.
13290
13291 2005-03-24 Lute Kamstra <lute@gnu.org>
13292
13293 * generic.el (generic-font-lock-defaults): Make it obsolete.
13294 (generic-font-lock-keywords): New variable to replace
13295 generic-font-lock-defaults.
13296 (generic-mode-set-font-lock): Delete it.
13297 (generic-mode-internal): Don't call generic-mode-set-font-lock.
13298 (generic-bracket-support): Add docstring.
13299
13300 * generic-x.el: Rename generic-font-lock-defaults to
13301 generic-font-lock-keywords throughout.
13302 (mailagent-rules-setup-function): Delete it.
13303 (mailagent-rules-generic-mode): Use anonymous function instead.
13304 (show-tabs-generic-mode-font-lock-defaults-1)
13305 (show-tabs-generic-mode-font-lock-defaults-2): Make them constants.
13306 Quote faces.
13307 (show-tabs-tab-face, show-tabs-space-face): Specify background,
13308 not foreground.
13309
13310 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
13311 Recognize define-generic-mode.
13312
13313 2005-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
13314
13315 * icomplete.el (icomplete-simple-completing-p): Don't turn on icomplete
13316 if there's no completion table.
13317
13318 2005-03-23 Miles Bader <miles@gnu.org>
13319
13320 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
13321 Remove tty-specific variants, as they're no longer needed.
13322
13323 2005-03-23 Lute Kamstra <lute@gnu.org>
13324
13325 * generic-x.el: Code cleanup: make args constant whenever possible.
13326 (installshield-statement-keyword-list)
13327 (installshield-system-functions-list)
13328 (installshield-system-variables-list, installshield-types-list)
13329 (installshield-funarg-constants-list): Make them constants.
13330
13331 * generic.el (generic-make-keywords-list): Add autoload cookie.
13332
13333 * calendar/time-date.el: Add comment on time value formats.
13334 Don't require parse-time.
13335 (with-decoded-time-value): New macro.
13336 (encode-time-value): New function.
13337 (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
13338 (days-to-time): Return a valid time value when arg is huge.
13339 (time-since): Use time-subtract.
13340 (time-to-number-of-days): Use time-to-seconds.
13341
13342 2005-03-23 David Ponce <david@dponce.com>
13343
13344 * recentf.el: (recentf-keep): New option.
13345 (recentf-menu-action): Default to `find-file'.
13346 (recentf-keep-non-readable-files-flag)
13347 (recentf-keep-non-readable-files-p)
13348 (recentf-file-readable-p, recentf-find-file)
13349 (recentf-cleanup-remote): Remove.
13350 (recentf-include-p): More robust.
13351 (recentf-keep-p): New function.
13352 (recentf-remove-if-non-kept): Rename from
13353 `recentf-remove-if-non-readable'. Use `recentf-keep-p'.
13354 All callers updated.
13355 (recentf-menu-items-for-commands): Fix help string.
13356 (recentf-track-closed-file): Update. Doc fix.
13357 (recentf-cleanup): Update. Count removed files. Doc fix.
13358
13359 2005-03-23 Kim F. Storm <storm@cua.dk>
13360
13361 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
13362 Don't inherit from fringe face (now happens automatically).
13363
13364 2005-03-22 Kim F. Storm <storm@cua.dk>
13365
13366 * tooltip.el (tooltip-show-help-function): Ignore negative mouse
13367 position values.
13368
13369 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
13370
13371 * menu-bar.el (showhide-date-time): Remove.
13372 (menu-bar-showhide-menu): Use menu-bar-make-mm-toggle.
13373 (menu-bar-make-mm-toggle): Simplify.
13374
13375 2005-03-22 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
13376
13377 * progmodes/perl-mode.el (perl-font-lock-keywords-2):
13378 Accept qualified variable and function names.
13379
13380 2005-03-22 Thien-Thi Nguyen <ttn@gnu.org>
13381
13382 * bindings.el (completion-ignored-extensions):
13383 Remove ".lis" for `vax-vms'.
13384
13385 2005-03-22 Andreas Schwab <schwab@suse.de>
13386
13387 * generic-x.el: Revert last change.
13388 * ldefs-boot.el: Update.
13389
13390 2005-03-22 Jay Belanger <belanger@truman.edu>
13391
13392 * calc/calc-embed.el (calc-embedded-original-modes): New variable.
13393 (calc-embedded-save-original-modes)
13394 (calc-embedded-restore-original-modes): New functions.
13395 (calc-do-embedded): Save original modes when entering embedded mode
13396 and restore when leaving embedded mode.
13397 (calc-embedded-modes-change): Change the value of
13398 calc-embedded-original-modes to reflect permanent changes.
13399
13400 2005-03-22 Lute Kamstra <lute@gnu.org>
13401
13402 * generic-x.el: Require generic again.
13403
13404 2005-03-22 Miles Bader <miles@gnu.org>
13405
13406 * progmodes/gdb-ui.el (breakpoint-enabled, breakpoint-disabled):
13407 Tweak details to look good on both ttys and bitmap displays, light
13408 or dark background, etc.
13409
13410 2005-03-21 Kim F. Storm <storm@cua.dk>
13411
13412 * tooltip.el (tooltip-show-help-function): Check car and cdr of
13413 mouse position.
13414
13415 2005-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13416
13417 * icomplete.el: Don't forcibly turn on the mode upon load.
13418 (icomplete-mode): Use define-minor-mode.
13419 (icomplete-eoinput): Default to nil.
13420 (icomplete-minibuffer-setup): Remove autoload.
13421 (icomplete-tidy): Simplify.
13422 (icomplete-exhibit): Use buffer-undo-list to determine if we're still
13423 in the initial state or if the user has modified the field.
13424 Fix handling of icomplete-max-delay-chars.
13425 Remove code that handles the oddball case where
13426 minibuffer-completion-table is an integer.
13427 Wrap icomplete-completions in while-no-input in case building
13428 completions takes more time than expected.
13429 (icomplete-completions): Simplify.
13430
13431 2005-03-21 Richard M. Stallman <rms@gnu.org>
13432
13433 * jka-compr.el (jka-compr-really-do-compress):
13434 Make variable buffer-local.
13435
13436 * image-mode.el: Handle .xpm files too.
13437 (image-toggle-display): Preserve modification flag.
13438
13439 * help.el (where-is): Don't mention aliases with no key bindings.
13440
13441 2005-03-21 Lute Kamstra <lute@gnu.org>
13442
13443 * generic.el: Fix commentary section. Don't require cl for
13444 compilation.
13445 (generic-mode-list): Add autoload cookie.
13446 (generic-use-find-file-hook, generic-lines-to-scan)
13447 (generic-find-file-regexp, generic-ignore-files-regexp)
13448 (generic-mode, generic-mode-find-file-hook)
13449 (generic-mode-ini-file-find-file-hook): Fix docstrings.
13450 (define-generic-mode): Make it a defmacro. Fix docstring.
13451 (generic-mode-internal): Code cleanup. Add autoload cookie.
13452 (generic-mode-set-comments): Code cleanup.
13453 * generic-x.el: Don't prevent compilation. Don't require generic.
13454 Follow coding conventions. Minor code cleanup.
13455 (etc-fstab-generic-mode): Add some keywords.
13456 * font-lock.el (lisp-font-lock-keywords-1): Font lock a call to
13457 define-generic-mode like a function declaration.
13458
13459 2005-03-21 Jay Belanger <belanger@truman.edu>
13460
13461 * calc/calc-embed.el (calc-do-embedded): Put data on stack before
13462 changing modes.
13463
13464 2005-03-21 Sam Steingold <sds@gnu.org>
13465
13466 * add-log.el (add-log-current-defun): Support more C DEFUN forms.
13467
13468 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
13469
13470 * progmodes/dcl-mode.el (dcl-font-lock-keywords):
13471 Add underscore to "f$ lexicals" regexp.
13472
13473 2005-03-20 Juri Linkov <juri@jurta.org>
13474
13475 * subr.el (progress-reporter-do-update): When `min-value' is equal
13476 to `max-value', set `percentage' to 0 and prevent division by zero.
13477
13478 2005-03-20 Michael Albinus <michael.albinus@gmx.de>
13479
13480 Sync with Tramp 2.0.48.
13481
13482 * net/tramp.el (all): Change all addresses to .gnu.org.
13483 (tramp-append-tramp-buffers): New defun.
13484 (tramp-bug): Apply `tramp-append-tramp-buffers' as post-hook.
13485 Catch `dont-send' signal.
13486 (tramp-set-auto-save-file-modes): Set always permissions, because
13487 there might be an old auto-saved file belonging to another
13488 original file. This could be a security threat. Reported by
13489 Kjetil Kjernsmo <kjetil@kjernsmo.net>.
13490 Check for Emacs 21.3.50 removed.
13491
13492 * net/tramp-smb.el (all): Remove debug construct for
13493 `with-parsed-tramp-file-name'.
13494 (tramp-smb-prompt): Prompt can contain spaces inside directory names.
13495 (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file):
13496 No error message if DIRECTORY or FILENAME doesn't exist.
13497 (tramp-smb-open-connection): Check existence of
13498 `tramp-smb-program'.
13499
13500 2005-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
13501
13502 * progmodes/perl-mode.el (perl-font-lock-syntactic-face-function):
13503 Properly handle the case where the `m' or `s' command's argument is not
13504 yet terminated.
13505 (perl-indent-new-calculate): New function.
13506 (perl-indent-line): Use it.
13507
13508 2005-03-20 Miles Bader <miles@gnu.org>
13509
13510 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Use breakpoint faces
13511 in text-mode too. Change to new face names.
13512 (breakpoint-enabled): Rename from `breakpoint-enabled-bitmap-face'.
13513 Add `:weight bold' attribute.
13514 (breakpoint-disabled): Rename from `breakpoint-disabled-bitmap-face'.
13515
13516 2005-03-19 Juri Linkov <juri@jurta.org>
13517
13518 * files.el (auto-mode-alist): Add comment. Optimize jar/ear/war.
13519
13520 * international/mule.el (auto-coding-alist): Sync with
13521 `auto-mode-alist' by adding upper case archive file extensions
13522 and adding ear/war to jar extension.
13523
13524 2005-03-19 David Casperson <casper@unbc.ca> (tiny change)
13525
13526 * textmodes/tex-mode.el (tex-view): If tex-shell process is not
13527 running, restart it.
13528
13529 2005-03-19 Yoichi NAKAYAMA <yoichi@geiin.org> (tiny changes)
13530
13531 * finder.el (finder-current-item): Throw an error on an empty line.
13532
13533 * man.el (Man-follow-manual-reference): If current-word returns
13534 nil, use "".
13535
13536 2005-03-19 Matt Hodges <MPHodges@member.fsf.org>
13537
13538 * simple.el (goto-line): Doc fix.
13539
13540 2005-03-19 Aaron Hawley <Aaron.Hawley@uvm.edu> (tiny change)
13541
13542 * files.el (save-buffer): Doc fix.
13543
13544 2005-03-19 Michael R. Mauger <mmaug@yahoo.com>
13545
13546 * recentf.el (recentf-cleanup-remote): New variable.
13547 (recentf-cleanup): Use it to conditionally check availability of
13548 remote files.
13549
13550 2005-03-19 Joe Edmonds <joe-bugs-debian-org@elem.com> (tiny change)
13551
13552 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Recognize `@' in
13553 function names.
13554
13555 2005-03-19 Eli Zaretskii <eliz@gnu.org>
13556
13557 * language/thai-word.el: New file.
13558
13559 2005-03-19 JUAN-LEON Lahoz Garcia <juanleon1@gmail.com>
13560
13561 * files.el (backup-buffer): If the file's directory is not
13562 writable, use copy instead of move to backup the file.
13563
13564 2005-03-19 Eli Zaretskii <eliz@gnu.org>
13565
13566 * obsolete/keyswap.el: Moved to obsolete/ from term/.
13567
13568 2005-03-19 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13569
13570 * ps-print.el (ps-generate-string-list, ps-generate-header-line):
13571 Use functionp instead of symbolp and fboundp. Reported by Drkm
13572 <darkman_spam@yahoo.fr>.
13573 (ps-print-version): New version 6.6.6.
13574
13575 2005-03-18 Tak Ota <Takaaki.Ota@am.sony.com>
13576
13577 * textmodes/table.el (table--line-column-position): New idiom.
13578 (table--row-column-insertion-point-p): New function to test
13579 validity of row and column insertion operation at a location.
13580 (table-global-menu, table-cell-menu): Use above functions for
13581 deterministic test operation.
13582 (table--editable-cell-p): Behave in deterministic fashion.
13583
13584 2005-03-18 Juri Linkov <juri@jurta.org>
13585
13586 * isearch.el (isearch-lazy-highlight-new-loop):
13587 Make arguments beg and end optional.
13588 (isearch-update): Remove optional arguments nil from
13589 isearch-lazy-highlight-new-loop.
13590 (isearch-lazy-highlight-search): Let-bind case-fold-search to
13591 isearch-lazy-highlight-case-fold-search instead of
13592 isearch-case-fold-search, and let-bind isearch-regexp to
13593 isearch-lazy-highlight-regexp.
13594 Use isearch-lazy-highlight-last-string instead of isearch-string.
13595
13596 * replace.el (perform-replace): Remove bindings of global
13597 variables isearch-string, isearch-regexp, isearch-case-fold-search.
13598 Add three new arguments to `replace-highlight'.
13599 (replace-highlight): Add arguments string, regexp, case-fold.
13600 Let-bind isearch-string, isearch-regexp, isearch-case-fold-search
13601 to allow isearch-lazy-highlight-new-loop to use these values
13602 to set corresponding isearch-lazy-highlight-* internal
13603 variables whose values lazy highlighting will use regardless of
13604 changes to global variables isearch-string, isearch-regexp,
13605 isearch-case-fold-search during lazy highlighting loop.
13606 (replace-dehighlight): Rename `isearch-lazy-highlight-cleanup'
13607 to `lazy-highlight-cleanup'.
13608
13609 * textmodes/ispell.el (ispell-lazy-highlight): New defcustom.
13610 (ispell-highlight-face): Set default face to `isearch' when
13611 lazy highlighting is enabled.
13612 (ispell-highlight-spelling-error-overlay): Set `ispell-overlay'
13613 priority to 1. Add lazy highlighting.
13614 (ispell-highlight-spelling-error-xemacs): Remove obsolete arg
13615 from `isearch-dehighlight'.
13616
13617 2005-03-18 David Ponce <david@dponce.com>
13618
13619 * files.el (hack-local-variables): Do a case-insensitive search
13620 for End.
13621
13622 2005-03-18 Juri Linkov <juri@jurta.org>
13623
13624 * isearch.el (lazy-highlight-cleanup) <command>: Rename from
13625 `isearch-lazy-highlight-cleanup', add alias to old name and
13626 declare obsolete. Add release numbers to other obsolete vars.
13627 (isearch-done, isearch-lazy-highlight-new-loop):
13628 Rename `isearch-lazy-highlight-cleanup' to `lazy-highlight-cleanup'.
13629 (lazy-highlight-cleanup) <variable>: Doc fix.
13630 (isearch-lazy-highlight-update): Rename obsolete
13631 `isearch-lazy-highlight-face' to `lazy-highlight-face'.
13632
13633 2005-03-18 Kenichi Handa <handa@m17n.org>
13634
13635 * language/thai-util.el: Fix categorization of Thai characters in
13636 thai-category-table.
13637 (thai-composition-pattern): Adjust it for the above change.
13638 (thai-self-insert-command, thai-compose-syllable): New functions.
13639 (thai-compose-region): Use thai-compose-syllable.
13640 (thai-compose-string): Likewise.
13641 (thai-composition-function): Likewise.
13642 (thai-auto-composition): New function.
13643 (thai-auto-composition-mode): New minor mode.
13644
13645 * language/thai.el: Fix patterns to be registered in
13646 composition-function-table.
13647
13648 * international/quail.el (quail-input-method): Locally bind
13649 inhibit-modification-hooks to t.
13650
13651 2005-03-17 Richard M. Stallman <rms@gnu.org>
13652
13653 * progmodes/perl-mode.el (perl-mode-hook): Defvar it.
13654 (perl-mode): Use run-mode-hooks.
13655
13656 * mail/rmail.el (rmail-movemail-program, rmail-pop-password)
13657 (rmail-pop-password-required, rmail-remote-password): Doc fixes.
13658 (rmail-preserve-inbox, rmail-probe, rmail-autodetect): Doc fix.
13659
13660 * mail/sendmail.el (sendmail-send-it): Reenable the code
13661 to compute resend-to-address and use it.
13662
13663 * tar-mode.el (tar-mode): Turn off undo unconditionally.
13664
13665 * image-mode.el: New file.
13666
13667 * image.el (insert-sliced-image): Add autoload cookie.
13668
13669 * font-lock.el (font-lock-lines-before): New user option.
13670 (font-lock-after-change-function): Obey it.
13671
13672 * bindings.el (esc-map): Make M-g a prefix.
13673 Bind M-g g and M-g M-g to goto-line.
13674
13675 * faces.el (face-id): Doc fix.
13676
13677 2005-03-17 Frederik Fouvry <fouvry@CoLi.Uni-SB.DE>
13678
13679 * mail/rmail.el (rmail-unknown-mail-followup-to): New function.
13680 (rmail-show-message): Use rmail-unknown-mail-followup-to.
13681 (rmail-reply): Recognize Mail-Followup-To and Mail-Reply-To headers.
13682
13683 * mail/sendmail.el (mail-yank-ignored-headers)
13684 (mail-font-lock-keywords, mail-mode-fill-paragraph):
13685 Add Mail-Followup-To and Mail-Reply-To headers.
13686 (mail-citation-hook): Add autoload cookie.
13687 (mail-mode): Doc fix.
13688 (mail-mode-map): Bind mail-mail-followup-to and mail-mail-reply-to.
13689 (mail-send): Compute Mail-Followup-To and Mail-Reply-To headers.
13690 (mail-mode-fill-paragraph): Handle those headers.
13691 (mail-mailing-lists): New variable.
13692 (mail-mail-reply-to, mail-mail-followup-to): New functions.
13693
13694 2005-03-17 Juri Linkov <juri@jurta.org>
13695
13696 * isearch.el (isearch-fallback): Check for `(car previous)'
13697 before calling `isearch-other-end-state'.
13698
13699 2005-03-17 Kim F. Storm <storm@cua.dk>
13700
13701 * simple.el (move-beginning-of-line): Move to beginning of buffer
13702 line, as well as beginning of screen line.
13703
13704 2005-03-16 Glenn Morris <gmorris@ast.cam.ac.uk>
13705
13706 * calendar/diary-lib.el (mark-diary-entries): Use new optional
13707 argument REDRAW rather than calendar-redrawing variable.
13708 * calendar/calendar.el (calendar-redrawing): Delete.
13709 (redraw-calendar): Do not bind calendar-redrawing.
13710
13711 2005-03-16 Matt Hodges <MPHodges@member.fsf.org>
13712
13713 * calendar/diary-lib.el (diary-redraw-calendar): Preserve point in
13714 diary-file buffer.
13715
13716 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
13717
13718 * help.el (describe-mode): Allow a :minor-mode-function property to
13719 specify a different minor mode toggle function than the variable.
13720 * simple.el (auto-fill-function):
13721 * subr.el (add-minor-mode): Use it.
13722
13723 2005-03-16 Kenichi Handa <handa@m17n.org>
13724
13725 * language/ethio-util.el (sera-being-called-by-w3): New variable.
13726 (ethio-sera-to-fidel-ethio): Check also sera-being-called-by-w3.
13727 (ethio-fidel-to-sera-buffer): Likewise.
13728
13729 2005-03-16 Juri Linkov <juri@jurta.org>
13730
13731 * emacs-lisp/find-func.el (find-function-regexp):
13732 Add defun-emitting macro `menu-bar-make-toggle'.
13733
13734 * isearch.el: Put `isearch-scroll' property to
13735 `split-window-horizontally'.
13736
13737 * info.el: Update error messages for `debug-ignored-errors'.
13738 (Info-isearch-search): Doc fix.
13739 (Info-find-node): Move up code to go into info buffer before
13740 recording the node to the history.
13741 (Info-fontify-node): Fontify titles only if the next line
13742 has two or more `*', `=', `-', `.'.
13743 Display "go to this node" for empty (match-string 3).
13744
13745 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13746
13747 * term/mac-win.el: Add mouse pointer shape constants.
13748
13749 2005-03-15 Kim F. Storm <storm@cua.dk>
13750
13751 * simple.el (move-beginning-of-line): Use vertical-motion.
13752
13753 2005-03-15 Juri Linkov <juri@jurta.org>
13754
13755 * isearch.el (isearch-error): New variable.
13756 (isearch-invalid-regexp, isearch-within-brackets): Remove.
13757 (isearch-error-state): Rename from `isearch-invalid-regexp-state'.
13758 (isearch-within-brackets-state): Remove.
13759 (isearch-case-fold-search-state, isearch-pop-fun-state):
13760 Decrease frame index.
13761 (isearch-mode, isearch-top-state, isearch-push-state)
13762 (isearch-edit-string, isearch-abort, isearch-search-and-update)
13763 (isearch-fallback, isearch-message-prefix, isearch-message-suffix)
13764 (isearch-search, isearch-lazy-highlight-new-loop):
13765 Replace `isearch-invalid-regexp' with `isearch-error'.
13766 Remove `isearch-within-brackets'.
13767 (isearch-search): Add `search-failed' handler to `condition-case'.
13768 (isearch-lazy-highlight-search): Add `condition-case' to catch
13769 errors and allow `isearch-lazy-highlight-update' to try
13770 highlighting from the beginning of the window.
13771 (isearch-repeat): Move up code to set isearch-wrapped to t
13772 before calling isearch-wrap-function.
13773
13774 * info.el (Info-isearch-initial-node): New internal variable.
13775 (Info-search): Signal an error in isearch mode when search leaves
13776 the initial node. Signal an error when `bound' is non-nil and
13777 nothing was found in the current subfile.
13778 (Info-isearch-search): Remove `condition-case'.
13779 (Info-isearch-wrap): Don't wrap when search failed during leaving
13780 the initial node. If `Info-isearch-search' is nil, wrap around
13781 the current node.
13782 (Info-isearch-start): New fun.
13783 (Info-mode): Add buffer-local hook `Info-isearch-start' to
13784 `isearch-mode-hook'.
13785
13786 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13787
13788 * simple.el (normal-erase-is-backspace): Set default to t if
13789 running on Mac.
13790
13791 * term/mac-win.el (function-key-map): Sync with x-win.el.
13792
13793 2005-03-15 Kenichi Handa <handa@m17n.org>
13794
13795 * international/mule-cmds.el (locale-language-names): Modify the
13796 format of elements and add more entries.
13797 (locale-preferred-coding-systems): Add more entries.
13798 (set-locale-environment): Adjust for the change of
13799 locale-language-names.
13800
13801 2005-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
13802
13803 * pcvs.el (smerge-ediff): Remove bogus autoload.
13804
13805 2005-03-14 Lute Kamstra <lute@gnu.org>
13806
13807 * emacs-lisp/debug.el (debugger-make-xrefs): Docstring fix.
13808 Ignore a `*' at the beginning of a line.
13809
13810 * subr.el (macro-declaration-function): Move to emacs-lisp/byte-run.el.
13811 * emacs-lisp/byte-run.el (macro-declaration-function): Move from
13812 subr.el.
13813 (dont-compile, eval-when-compile, eval-and-compile): Use declare
13814 to specify indentation.
13815
13816 * generic.el (define-generic-mode): Let generic-mode-list be a
13817 list of strings; test membership with equal.
13818
13819 2005-03-14 Kim F. Storm <storm@cua.dk>
13820
13821 * simple.el (next-line, previous-line): Add optional try-vscroll
13822 arg to recognize interactive use. Pass it on to line-move.
13823 (line-move): Don't perform auto-window-vscroll when defining or
13824 executing keyboard macro to ensure consistent behavior.
13825
13826 2005-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
13827
13828 * pcvs-util.el (cvs-string->strings): Strip trailing whitespace.
13829
13830 2005-03-13 Lute Kamstra <lute@gnu.org>
13831
13832 * emacs-lisp/debug.el (debug): Set debug-on-exit before calling
13833 debugger-setup-buffer so that backtrace marks the frames set to
13834 debug-on-exit and we don't have to do it manually. Set an extra
13835 debug-on-exit for macro's.
13836 (debugger-setup-buffer): Don't mark the top frame manually.
13837
13838 2005-03-12 Lute Kamstra <lute@gnu.org>
13839
13840 * emacs-lisp/byte-run.el: Replace lisp-indent-hook with
13841 lisp-indent-function throughout.
13842 (with-no-warnings): Set lisp-indent-function property.
13843
13844 2005-03-12 Thien-Thi Nguyen <ttn@gnu.org>
13845
13846 * progmodes/dcl-mode.el (dcl-mode-syntax-table):
13847 Add entry for backslash.
13848
13849 2005-03-12 Juri Linkov <juri@jurta.org>
13850
13851 * info.el (Info-search): Four fixes for backward search.
13852
13853 2005-03-11 Jay Belanger <belanger@truman.edu>
13854
13855 * calc/calc.el (calc-language-alist): New variable.
13856 * calc/calc-embed.el (calc-embedded-language-alist): Remove.
13857 (calc-embedded-find-modes): Use calc-language-alist instead of
13858 calc-embedded-language-alist.
13859
13860 2005-03-11 Glenn Morris <gmorris@ast.cam.ac.uk>
13861
13862 * calendar/calendar.el (calendar-redrawing): New internal
13863 variable.
13864 (redraw-calendar): Remove bogus save-excursion from previous
13865 change. Bind calendar-redrawing to t for mark-diary-entries.
13866 * calendar/diary-lib.el (mark-diary-entries): No need to redraw
13867 calendar if that is why we were called.
13868
13869 2005-03-11 Kenichi Handa <handa@m17n.org>
13870
13871 * international/mule.el (make-coding-system): Set property
13872 coding-system-define-form to nil.
13873 (define-coding-system-alias): Likewise.
13874
13875 2005-03-11 Kenichi Handa <handa@m17n.org>
13876
13877 These changes are suggested by Dave Love <fx@gnu.org>.
13878
13879 * textmodes/fill.el: Change encoding to iso-2022-7bit and add
13880 coding: tag.
13881 (adaptive-fill-regexp): Add more bullets.
13882 (fill-french-nobreak-p): Add Latin-1 and Latin-9 guillemets in
13883 regexps.
13884
13885 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
13886
13887 * help.el (describe-mode): Properly handle non-trivial lighters.
13888 Don't ignore minor modes that are not listed in minor-mode-list.
13889
13890 * tooltip.el (tooltip-mode): Don't complain that you can't turn the
13891 feature ON when the user requests to turn it OFF.
13892
13893 2005-03-10 Lute Kamstra <lute@gnu.org>
13894
13895 * emacs-lisp/debug.el (debug-entry-code): Delete it.
13896 (implement-debug-on-entry): New function to replace debug-entry-code.
13897 (debug-on-entry-1): Use implement-debug-on-entry. Delete the
13898 second argument as the 2005-03-07 change makes it obsolete.
13899 (debug-on-entry, cancel-debug-on-entry): Update call to
13900 debug-on-entry-1.
13901 (debug, debugger-setup-buffer): Comment update.
13902 (debugger-frame-number): Update to work with implement-debug-on-entry.
13903
13904 2005-03-10 Jay Belanger <belanger@truman.edu>
13905
13906 * calc/calc-embed.el (math-ms-args): Declare it.
13907 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable
13908 math-ms-args.
13909 (calc-embedded-subst): Use math-multi-subst-rec to substitute
13910 variables.
13911
13912 2005-03-10 Nick Roberts <nickrob@snap.net.nz>
13913
13914 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location):
13915 Use message-box.
13916
13917 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify.
13918 (tooltip-activate-mouse-motions-if-enabled): Use dolist.
13919 (tooltip-gud-tips): Simplify.
13920 (tooltip-gud-tips-p): Remove superfluous :set.
13921 (tooltip-gud-modes): Add fortran-mode.
13922 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area.
13923
13924 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line.
13925
13926 2005-03-09 Kim F. Storm <storm@cua.dk>
13927
13928 * play/animate.el (animate-place-char): Use forward-line instead
13929 of next-line to improve performance.
13930
13931 2005-03-09 Simon Josefsson <jas@extundo.com>
13932
13933 * net/browse-url.el (browse-url-default-browser): Doc fix.
13934
13935 2005-03-09 Miles Bader <miles@gnu.org>
13936
13937 * emacs-lisp/bytecomp.el (byte-compile-variable-ref)
13938 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)".
13939
13940 2005-03-09 Kenichi Handa <handa@m17n.org>
13941
13942 * international/latin-1.el: Set case and syntax for 255 only if
13943 set-case-syntax-set-multibyte is nil.
13944
13945 * textmodes/ispell.el (ispell-insert-word): New function.
13946 (ispell-word): Use ispell-insert-word to insert a new word.
13947 (ispell-process-line): Likewise.
13948 (ispell-complete-word): Likewise.
13949
13950 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk>
13951
13952 * calendar/calendar.el (redraw-calendar): Preserve point.
13953 Reported by Matt Hodges <MPHodges@member.fsf.org>.
13954 (calendar-week-start-day): Move after definition of
13955 redraw-calendar. Delete buffer test, since redraw-calendar has
13956 that now.
13957
13958 * calendar/diary-lib.el (mark-diary-entries): Only call
13959 redraw-calendar in the first of any recursive calls.
13960 Reported by Alan Shutko <ats@acm.org>.
13961
13962 2005-03-08 Juri Linkov <juri@jurta.org>
13963
13964 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist)
13965 (html-horizontal-rule, html-line, html-image, html-checkboxes)
13966 (html-radio-buttons): Add a space before the trailing `/>' where
13967 sgml-xml-mode is non-nil.
13968 (sgml-delete-tag): Check if the tag ends with `/>' to not delete
13969 the subsequent tag of the empty XML tag.
13970 (html-href-anchor): Don't set initial input to "http:".
13971 (html-image): Ask for the image URL and set point inside alt="".
13972 (html-name-anchor): Duplicate the name in the `id' attribute when
13973 sgml-xml-mode is non-nil.
13974 (html-paragraph): Remove \n before <p>.
13975 (html-checkboxes, html-radio-buttons): Insert `checked="checked"'
13976 instead of `checked' when sgml-xml-mode is non-nil.
13977
13978 * facemenu.el (list-colors-print): Print #RRGGBB in default face.
13979 Remove 1 space before #RRGGBB to not truncate it on terminal
13980 windows w/o fringes. Remove 1 space between bg and fg examples
13981 to get more space.
13982 (list-colors-duplicates): Replace `and' with `if' for `boundp' to
13983 avoid byte-compile warnings.
13984
13985 * image-file.el (image-file-handler): Put `safe-magic' property to
13986 `image-file-handler'.
13987
13988 * info.el (Info-isearch-search): Emulate word search in
13989 isearching through multiple Info nodes with Info-search.
13990 (Info-isearch-wrap): Allow isearch-word.
13991
13992 2005-03-08 Lute Kamstra <lute@gnu.org>
13993
13994 * emacs-lisp/debug.el (debugger-step-through): Make sure that
13995 stepping into the debugger's code is not possible.
13996 (debugger-jumping-flag): Docstring update.
13997
13998 2005-03-08 Jay Belanger <belanger@truman.edu>
13999
14000 * calc/calc-embed.el (calc-do-embedded): Reset mode line when
14001 embedded mode begins.
14002 (calc-embedded-language-alist): New variable.
14003 (calc-embedded-find-modes): Use calc-embedded-language-alist to
14004 set default language mode.
14005
14006 2005-03-08 Kenichi Handa <handa@m17n.org>
14007
14008 * international/ccl.el (define-ccl-program): Fix docstring about
14009 extra 256 bytes assured for the output buffer.
14010
14011 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
14012 Fix BUFFER_MAGNIFICATION to 2.
14013 (ccl-encode-mule-utf-16be-with-signature): Likewise.
14014
14015 2005-03-07 Karl Chen <quarl@cs.berkeley.edu>
14016
14017 * align.el (align-rules-list): Added an alignment rule for CSS
14018 declarations (applies to css-mode and html-mode buffers).
14019
14020 2005-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
14021
14022 * emacs-lisp/debug.el (debug-on-entry-1): Fix handling of macros.
14023
14024 2005-03-07 Kim F. Storm <storm@cua.dk>
14025
14026 * simple.el (move-beginning-of-line): New command.
14027
14028 * bindings.el (global-map): Bind C-a to move-beginning-of-line.
14029
14030 * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line.
14031
14032 * emulation/cua-base.el: Put CUA move property on move-end-of-line
14033 and move-beginning-of-line.
14034
14035 * apropos.el (apropos-print): Omit command from M-x ... RET.
14036
14037 2005-03-07 Nick Roberts <nickrob@snap.net.nz>
14038
14039 * progmodes/gdb-ui.el (gdb-var-create-handler): Handle just MI case.
14040 (gdb-send, gdb-send-item): Log items sent from gdb-send too.
14041
14042 2005-03-06 Richard M. Stallman <rms@gnu.org>
14043
14044 * bindings.el (esc-map): Bind M-g to goto-line.
14045
14046 * facemenu.el (global-map): Bind M-o, not M-g.
14047
14048 2005-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14049
14050 * menu-bar.el (menu-bar-file-menu): Add the same :enable to
14051 "Open Directory" as for "Open File".
14052
14053 2005-03-06 Chong Yidong <cyd@stupidchicken.com>
14054
14055 * simple.el (activate-mark-hook, deactivate-mark-hook): Add defvars.
14056 (push-mark-command): Run activate-mark-hook.
14057
14058 2005-03-06 Richard M. Stallman <rms@gnu.org>
14059
14060 * help-mode.el (help-mode-finish): Don't alter the element
14061 in view-return-to-alist if there already is one.
14062
14063 * jit-lock.el (jit-lock-stealth-fontify): When calling sit-for,
14064 make sure the current buffer is the expected one.
14065
14066 * novice.el (disabled-command-function): Output in *Disabled Command*.
14067 Explicitly ignore non-keyboard events, and explicitly handle C-g.
14068
14069 * textmodes/flyspell.el (flyspell-large-region):
14070 Pass args differently for aspell.
14071
14072 * files.el (mode-require-final-newline): Doc fix.
14073
14074 2005-03-03 Stephan Stahl <stahl@eos.franken.de> (tiny change)
14075
14076 * progmodes/which-func.el (which-function):
14077 Specify NOERROR when calling imenu--make-index-alist.
14078
14079 2005-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
14080
14081 * simple.el (normal-erase-is-backspace): Define default value.
14082
14083 * custom.el (custom-theme-set-variables): Remove unused var
14084 `immediate'.
14085 (custom-reevaluate-setting): Simple function to handle variables
14086 that are defined before their default value can really be
14087 computed.
14088
14089 * startup.el (command-line): Use it for temporary-file-directory,
14090 small-emporary-file-directory, auto-save-file-name-transforms,
14091 blink-cursor-mode, and normal-erase-is-backspace.
14092
14093 * font-lock.el (font-lock-fontify-keywords-region): Ensure forward
14094 progress, even with buggy anchored keywords.
14095
14096 2005-03-05 Luc Teirlinck <teirllm@auburn.edu>
14097
14098 * simple.el (goto-line): Remove unbalanced final parenthesis.
14099
14100 2005-03-05 Richard M. Stallman <rms@gnu.org>
14101
14102 * simple.el (goto-line): Use a number at point as the default.
14103 With C-u as arg, switch buffers.
14104
14105 2005-03-05 Juri Linkov <juri@jurta.org>
14106
14107 * frame.el (blink-cursor-mode): Replace `emacs-quick-startup'
14108 with `no-blinking-cursor'.
14109
14110 * startup.el (no-blinking-cursor): New defvar.
14111 (command-line): Add `--no-blinking-cursor' to longopts.
14112 Set `no-blinking-cursor' to t for command line arguments
14113 -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup'
14114 with `no-blinking-cursor' in the condition for calling
14115 `blink-cursor-mode'.
14116
14117 2005-03-04 Luc Teirlinck <teirllm@auburn.edu>
14118
14119 * menu-bar.el (menu-bar-make-mm-toggle): Doc fix.
14120 (menu-bar-options-save): Add blink-cursor-mode.
14121 (menu-bar-options-menu): Add blink-cursor-mode.
14122
14123 2005-03-04 Ulf Jasper <ulf.jasper@web.de>
14124
14125 * calendar/icalendar.el (icalendar-version): Increase to 0.11.
14126 (icalendar-export-file, icalendar-export-region)
14127 (icalendar-import-file, icalendar-import-buffer): Add autoload cookies.
14128 (icalendar--convert-ical-to-diary): Fix problem with DURATION.
14129
14130 2005-03-04 Lute Kamstra <lute@gnu.org>
14131
14132 * emacs-lisp/debug.el (debugger-step-after-exit): Make it a defvar.
14133 (debug-function-list): Ditto.
14134
14135 2005-03-04 Robert J. Chassell <bob@rattlesnake.com>
14136
14137 * textmodes/texinfmt.el (texinfo-append-refill):
14138 Redefine the types of line to which @refill
14139 is not appended by replacing a search for `@refill\\|@bye' with
14140 `@refill\\|^[ \t]*@'. The intent is to solve both the `@end
14141 itemize@refill' bug and the unfilled long lines bug.
14142 (texinfmt-version): Update number and date.
14143
14144 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
14145
14146 * international/code-pages.el (windows-1250, windows-125[2-8])
14147 (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies.
14148
14149 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
14150
14151 * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be
14152 bound yet.
14153
14154 2005-03-02 Romain Francoise <romain@orebokech.com>
14155
14156 * ibuf-ext.el (ibuffer-filter-disable): Move back to the current
14157 buffer after removing limits.
14158 (ibuffer-pop-filter): Ditto.
14159 Update copyright.
14160
14161 2005-03-02 Miles Bader <miles@gnu.org>
14162
14163 * button.el (make-text-button): If the user doesn't specify a
14164 type, use the default. Rewrite to use `add-text-properties' and
14165 plist functions.
14166
14167 2005-03-01 Lute Kamstra <lute@gnu.org>
14168
14169 * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring.
14170 (debugger-jumping-flag): New var.
14171 (debug-entry-code): Use it.
14172 (debugger-jump): Use debugger-jumping-flag and add
14173 debugger-reenable to post-command-hook.
14174 (debugger-reenable): Use debugger-jumping-flag and remove itself
14175 from post-command-hook.
14176 (debug, debug-on-entry, cancel-debug-on-entry): Remove call to
14177 debugger-reenable.
14178
14179 2005-03-01 Robert J. Chassell <bob@rattlesnake.com>
14180
14181 * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out
14182 inclusion of "itemize\\|", which may be unnecessary, is certainly
14183 inelegant, and stops refilling in itemize lists when formatting
14184 Japanese Texinfo files to Info.
14185 Update copyright to 2005.
14186
14187 2005-03-01 Nick Roberts <nickrob@snap.net.nz>
14188
14189 * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead
14190 of an error if GDB can't find the source file.
14191
14192 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk>
14193
14194 * calendar/calendar.el (redraw-calendar): Work from any buffer,
14195 not just the calendar.
14196
14197 * calendar/diary-lib.el (mark-diary-entries): Remove any old marks
14198 first.
14199 (diary-redraw-calendar): New function.
14200 (make-diary-entry): Add diary-redraw-calendar to local
14201 write-contents-functions. Turn off selective display before
14202 inserting in diary.
14203
14204 2005-03-01 Kim F. Storm <storm@cua.dk>
14205
14206 * emacs-lisp/copyright.el (copyright-fix-years): New command.
14207
14208 2005-03-01 Lute Kamstra <lute@gnu.org>
14209
14210 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure
14211 that debug-entry-code can be safely removed from a function while
14212 this code is being evaluated. Revert the 2005-02-27 change as the
14213 new implementation no longer requires it. Make sure that a
14214 function body containing just a string is not mistaken for a docstring.
14215 (debug): Skip one more frame in case of debug on entry.
14216 (debugger-setup-buffer): Delete one more frame line in case of
14217 debug on entry.
14218 (debugger-frame-number): Update to use the new text introduced by
14219 the 1999-11-03 change. Skip one more frame in case of debug on entry.
14220
14221 2005-02-28 Kim F. Storm <storm@cua.dk>
14222
14223 * double.el (double-translate-key): Call force-window-update after
14224 read-event to avoid crash in redisplay.
14225
14226 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
14227
14228 * emacs-lisp/debug.el (inhibit-debug-on-entry): New var.
14229 (debug): Use it. Move the inhibit-trace earlier.
14230 (debug-entry-code): New const.
14231 (debug-on-entry-1): Use it.
14232
14233 2005-02-28 Chong Yidong <cyd@stupidchicken.com>
14234
14235 * international/utf-16.el (ccl-encode-mule-utf-16le):
14236 Fix BUFFER_MAGNIFICATION to 2.
14237 (ccl-encode-mule-utf-16be): Likewise.
14238
14239 2005-02-28 Kenichi Handa <handa@m17n.org>
14240
14241 * international/utf-16.el (ccl-encode-mule-utf-16le-with-signature):
14242 Fix BUFFER_MAGNIFICATION to 4.
14243 (ccl-encode-mule-utf-16be-with-signature): Likewise.
14244
14245 2005-02-28 Nick Roberts <nickrob@snap.net.nz>
14246
14247 * speedbar.el (speedbar-update-flag): Doc fix.
14248 (speedbar-show-info-under-mouse): Give set-mouse-position the right
14249 argument.
14250
14251 2005-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
14252
14253 * reveal.el (reveal-post-command): Don't try to reveal overlays which
14254 have a non-nil `invisible' property but are actually visible.
14255
14256 * progmodes/perl-mode.el (perl-imenu-generic-expression): Add entries
14257 for perldoc sections.
14258 (perl-outline-regexp, perl-outline-level): New var and function.
14259 (perl-mode): Use them.
14260
14261 2005-02-27 Glenn Morris <gmorris@ast.cam.ac.uk>
14262
14263 * calendar/diary-lib.el (diary-remind): Discard any mark portion
14264 from diary-entry. Reported by Andrew Kemp <ajwk@pell.uklinux.net>.
14265
14266 2005-02-27 Luc Teirlinck <teirllm@auburn.edu>
14267
14268 * cus-edit.el: Comment change.
14269 (custom-buffer-create-internal): Slightly reword text at top of
14270 Custom buffers. Mention there that saving an option edits the
14271 init file. Add link to Emacs manual node on `custom-file'.
14272 (custom-magic-alist): Rewrite individual State messages to use
14273 capitalized keywords. Doc fix.
14274
14275 2005-02-27 Matt Hodges <MPHodges@member.fsf.org>
14276
14277 * calendar/calendar.el (calendar-buffer): Move above
14278 calendar-week-start-day.
14279 (calendar-week-start-day): Doc fix. Add :set function.
14280 (calendar-minimum-window-height): New variable.
14281 (generate-calendar-window): Only resize window if selected-window
14282 is displaying the calendar buffer. Use new variable
14283 calendar-minimum-window-height.
14284 (generate-calendar): Reword error message.
14285 (calendar-mode-map): Bind DEL to scroll-other-window-down.
14286
14287 2005-02-27 Andreas Schwab <schwab@suse.de>
14288
14289 * vc.el (vc-do-command): Don't run command asynchronously when
14290 operating in a remote directory.
14291
14292 * net/tramp.el (tramp-file-name-for-operation): Fix misapplied
14293 change from sync with Tramp 2.0.47.
14294
14295 2005-02-27 Richard M. Stallman <rms@gnu.org>
14296
14297 * textmodes/ispell.el (ispell-change-dictionary): Doc fix.
14298
14299 * textmodes/flyspell.el (flyspell-mode-on):
14300 Call ispell-change-dictionary only if necessary.
14301
14302 * emacs-lisp/re-builder.el (regexp-builder): New function.
14303
14304 * register.el (describe-register-1): Explicitly handle
14305 yank-excluded-properties = t.
14306
14307 * cus-edit.el (custom-buffer-create-internal): Improve progress msgs.
14308 (custom-magic-alist): Change the status descriptions again.
14309 (face widget-type): Total rewrite based on `restricted-sexp'
14310 to eliminate the confusing double hiding levels.
14311
14312 * emacs-lisp/debug.el (debug-on-entry-1):
14313 If function body is empty, add nil as body form.
14314
14315 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
14316
14317 * emacs-lisp/trace.el (inhibit-trace): New var.
14318 (trace-make-advice): Use it.
14319
14320 * emacs-lisp/debug.el (debug): Put back the inhibit-trace.
14321
14322 2005-02-26 Kim F. Storm <storm@cua.dk>
14323
14324 * mouse.el (mouse-1-click-in-non-selected-windows): New defcustom.
14325 (mouse-on-link-p, mouse-drag-region-1): Use it.
14326
14327 2005-02-25 Lute Kamstra <lute@gnu.org>
14328
14329 * replace.el (query-replace-read-from): Fix 2005-02-19 change.
14330
14331 2005-02-24 Luc Teirlinck <teirllm@auburn.edu>
14332
14333 * frame.el (blink-cursor-mode): Add :group keyword.
14334
14335 2005-02-24 Ulf Jasper <ulf.jasper@web.de>
14336
14337 * calendar/icalendar.el (icalendar--decode-isodatetime):
14338 New optional argument DAY-SHIFT.
14339 (icalendar-export-region): Fix coding-system-for-write.
14340 (icalendar--convert-ical-to-diary): Shift end-day of all-day
14341 events by one.
14342
14343 2005-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
14344
14345 * textmodes/tex-mode.el (tex-font-lock-keywords-3): #n is atomic.
14346
14347 2005-02-24 Kim F. Storm <storm@cua.dk>
14348
14349 * international/iso-acc.el (iso-accents-compose): Fix crash
14350 during redisplay. Call force-window-update after read-event
14351 and delete-region to signal that window is not accurate.
14352
14353 2005-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
14354
14355 * emacs-lisp/debug.el (debug): Hide the buffer if it's not killed.
14356 Remove unused and inexistent var `inhibit-trace'.
14357 (debugger-mode): Use run-mode-hooks.
14358 (debugger-list-functions): Add buttons; setup xref stack.
14359
14360 2005-02-23 Richard M. Stallman <rms@gnu.org>
14361
14362 * calendar/appt.el (appt-time-msg-list): 3rd elt of each
14363 appointment says it was explicitly made.
14364 (appt-add): Set the 3rd element.
14365 (appt-make-list): Preserve explicit appointments.
14366
14367 * subr.el (find-tag-default): Catch errors in forward-sexp.
14368
14369 2005-02-23 Juri Linkov <juri@jurta.org>
14370
14371 * info.el (Info-isearch-search): New defcustom.
14372 (Info-isearch-search): Call the default isearch function
14373 when Info-isearch-search is nil.
14374 (Info-isearch-wrap): Use variable Info-isearch-search.
14375
14376 2005-02-22 Luc Teirlinck <teirllm@auburn.edu>
14377
14378 * cus-edit.el: Comment change.
14379
14380 2005-02-22 Kim F. Storm <storm@cua.dk>
14381
14382 * progmodes/hideif.el (hide-ifdef-use-define-alist):
14383 Use completing-read. Suggested by Juan-Leon Lahoz Garcia.
14384
14385 2005-02-22 Simon Josefsson <jas@extundo.com>
14386
14387 * net/browse-url.el (browse-url-netscape-new-window-is-tab):
14388 New variable.
14389 (browse-url-netscape): Use it. Suggested by "Johann 'Myrkraverk'
14390 Oskarsson" <myrkraverk@users.sourceforget.net>.
14391
14392 2005-02-22 Kim F. Storm <storm@cua.dk>
14393
14394 * mouse.el (mouse-on-link-p): If arg POS is a mouse event,
14395 check that window of that event is the selected window.
14396 (mouse-drag-region-1): Compare mouse event window to selected
14397 window before setting point.
14398
14399 * tooltip.el (tooltip-show-help-function): Pass event to
14400 mouse-on-link-p so it can check selected window.
14401
14402 2005-02-22 Kenichi Handa <handa@m17n.org>
14403
14404 * ps-mule.el (ps-mule-header-string-charsets): Delete it.
14405 (ps-mule-show-warning): New function.
14406 (ps-mule-begin-job): Use ps-mule-show-warning if unprintable
14407 characters are found.
14408
14409 * ps-print.el (ps-header-footer-string): Return a list of header
14410 and footer strings.
14411
14412 2005-02-21 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
14413
14414 * pcvs.el (cvs-retrieve-revision): Fix thinko.
14415
14416 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
14417
14418 * frame.el (blink-cursor-mode): Use define-minor-mode.
14419
14420 * term/mac-win.el (function-key-map): Use char-names more consistently.
14421 (file-name-coding-system): Only set it for MacOS-9. The other case is
14422 already handled in mule-cmds.el (where it also works when mac-win.el
14423 is not used).
14424
14425 2005-02-21 Kenichi Handa <handa@m17n.org>
14426
14427 * international/mule.el (ctext-pre-write-conversion): Always use
14428 " *code-converting-work*" buffer for work.
14429
14430 * textmodes/ispell.el (ispell-dictionary-alist): Fix docstring.
14431
14432 2005-02-20 Thien-Thi Nguyen <ttn@gnu.org>
14433
14434 * progmodes/scheme.el (scheme-font-lock-keywords-2): Handle named-let.
14435
14436 2005-02-20 Jonathan Yavner <jyavner@member.fsf.org>
14437
14438 * ses.el (undo-more): Restore defadvice, but only the part that
14439 allows changes outside the restricted area of the buffer.
14440
14441 2005-02-20 Kim F. Storm <storm@cua.dk>
14442
14443 * simple.el (line-move): Add fourth optional arg try-vscroll which
14444 must be set to perform auto-window-vscroll.
14445 When moving backwards and doing auto-window-vscroll, automatically
14446 vscroll to the last part of lines which are taller than the window.
14447 (next-line, previous-line): Set try-vscroll arg on line-move.
14448
14449 2005-02-19 Dan Nicolaescu <dann@ics.uci.edu>
14450
14451 * replace.el (query-replace, query-replace-regexp)
14452 (replace-string, replace-regexp): When operating on region, make
14453 the minibuffer prompt say so.
14454
14455 * isearch.el (isearch-forward): Document isearch-query-replace and
14456 isearch-query-replace-regexp keybindings.
14457
14458 2005-02-19 Jay Belanger <belanger@truman.edu>
14459
14460 * calc/calc-aent.el (math-read-token): Add local variable.
14461
14462 * calc/calc-prog.el (calc-user-define-edit): Add local variable.
14463 (calc-edit-top): Move declaration to earlier in file.
14464 (calc-edit-macro-repeats): Add local variables.
14465
14466 * calc/calcalg2.el: Add differentiation rule for calcFunc-coth.
14467 Adjust differentiation rules for calcFunc-tan, calcFunc-cot,
14468 calcFunc-tanh.
14469 Adjust integration rule for calcFunc-tan.
14470
14471 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
14472
14473 * viper-cmd.el (viper-prefix-commands): Make into a defconst.
14474 (viper-exec-buffer-search): Use regexp-quote to quote buffer string.
14475 (viper-minibuffer-setup-sentinel): Make some variables buffer-local.
14476 (viper-skip-separators): Bug fix.
14477 (viper-set-searchstyle-toggling-macros): Allow to unset macros in a
14478 particular major mode.
14479 (viper-del-backward-char-in-replace): Don't put deleted char on the
14480 kill ring.
14481
14482 * viper-ex.el (viper-color-display-p): New function.
14483 (viper-has-face-support-p): Use viper-color-display-p.
14484
14485 * viper-keym.el (viper-gnus-modifier-map): New keymap.
14486
14487 * viper-macs.el (viper-unrecord-kbd-macro): Bug fix.
14488
14489 * viper-util.el (viper-glob-unix-files): Fix shell status check.
14490 (viper-file-remote-p): Make equivalent to file-remote-p.
14491
14492 * viper.el (viper-major-mode-modifier-list):
14493 Use viper-gnus-modifier-map.
14494
14495 2005-02-19 David Kastrup <dak@gnu.org>
14496
14497 * subr.el (subregexp-context-p): Fix garbled doc string by adding
14498 quoting.
14499
14500 2005-02-19 Jay Belanger <belanger@truman.edu>
14501
14502 * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
14503 Remove extra definitions.
14504 (calc-coth): New function.
14505 (calcFunc-cot): Fix `let'.
14506
14507 2005-02-19 Eli Zaretskii <eliz@gnu.org>
14508
14509 * faces.el (escape-glyph, minibuffer-prompt): Add commentary for
14510 the reasons we use "type pc" in these faces.
14511
14512 * button.el (button): Ditto.
14513
14514 2005-02-19 Michael Mauger <mmaug@yahoo.com>
14515
14516 * replace.el (query-replace-read-from): Set the value of
14517 query-replace-from-history-variable to handle the case of an empty
14518 string entered to accept the suggested default.
14519
14520 * net/tramp.el (tramp-file-name-for-operation):
14521 Use dired-call-process instead of dired-call-process-command.
14522
14523 2005-02-19 Jay Belanger <belanger@truman.edu>
14524
14525 * calc/calc-arith.el (math-trig-inverses, math-div-trig)
14526 (math-div-non-trig): New variables.
14527 (math-combine-prod-trig, math-div-new-trig, math-div-new-non-trig)
14528 (math-div-isolate-trig, math-div-isolate-trig-term): New functions.
14529 (math-combine-prod, math-div-symb-fancy): Add simplifications for
14530 trig expressions.
14531
14532 2005-02-19 Nick Roberts <nickrob@snap.net.nz>
14533
14534 * progmodes/gdb-ui.el (gdb-var-update-handler)
14535 (gdb-speedbar-timer-fn): Ensure speedbar updates with new values
14536 for watch expressions,
14537 (gdb-var-create-handler): Don't set speedbar-update-flag.
14538 (gdb-post-prompt): Simplify test for speedbar.
14539
14540 2005-02-19 Michael Kifer <kifer@cs.stonybrook.edu>
14541
14542 * ediff.el (ediff-set-diff-overlays-in-one-buffer)
14543 (ediff-set-fine-overlays-in-one-buffer,ediff-goto-word): Make sure
14544 we use the syntax table of the correct buffer.
14545 (ediff-same-file-contents,ediff-same-contents): Enhancements thanks to
14546 Felix Gatzemeier.
14547
14548 * ediff-init.el (ediff-hide-face): Check for definedness of functions.
14549 (ediff-file-remote-p): Make synonymous with file-remote-p.
14550 In all deffaces ediff-*-face-*, use min-colors.
14551
14552 * ediff-mult.el (ediff-meta-mark-equal-files): Make use of
14553 ediff-recurse-to-subdirectories.
14554 (ediff-mark-if-equal): Check that the arguments are strings, use
14555 ediff-same-contents (after to Felix Gatzemeier).
14556
14557 * ediff.el (ediff-merge-on-startup): Don't set buffer-modified-p to
14558 nil.
14559
14560 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
14561
14562 * log-view.el (log-view-message-re): Fix up Subversion regexp.
14563
14564 2005-02-18 David Kastrup <dak@gnu.org>
14565
14566 * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
14567 use `mark-active' when defined.
14568
14569 2005-02-18 Kenichi Handa <handa@m17n.org>
14570
14571 * ps-print.el (ps-font-info-database): New entry
14572 ZapfChancery-MediumItalic with correct font name. Fix font name
14573 of the entry Zapf-Chancery-MediumItalic.
14574
14575 2005-02-16 Luc Teirlinck <teirllm@auburn.edu>
14576
14577 * autorevert.el (auto-revert-stop-on-user-input): Further doc fix.
14578
14579 2005-02-16 Kim F. Storm <storm@cua.dk>
14580
14581 * ido.el (ido-fallback-command): Pass user input to fallback command.
14582
14583 2005-02-16 Nick Roberts <nickrob@snap.net.nz>
14584
14585 * progmodes/gdb-ui.el (gdb-set-gud-minor-mode-existing-buffers)
14586 (gdb-find-file-hook): Add server prefix.
14587
14588 2005-02-16 Richard M. Stallman <rms@gnu.org>
14589
14590 * replace.el (perform-replace): Pass new args to replace-highlight.
14591 (replace-highlight): Take region args,
14592 and pass them to isearch-lazy-highlight-new-loop.
14593
14594 * novice.el (disabled-command-hook): Autoload the defalias
14595 and the make-obsolete-variable call.
14596
14597 * menu-bar.el (menu-bar-select-frame): FRAME defaults to selected.
14598
14599 * isearch.el (isearch-lazy-highlight-start-limit)
14600 (isearch-lazy-highlight-end-limit): New variables limit
14601 the region for highlighting.
14602 (isearch-lazy-highlight-new-loop): New args BEG and END.
14603 (isearch-lazy-highlight-search): Use the new vars.
14604 (isearch-lazy-highlight-update): Likewise.
14605
14606 * dired.el (dired-build-subdir-alist): Bind buffer-undo-list to t.
14607
14608 * cus-start.el (all): Use default-boundp.
14609
14610 2005-02-15 David Casperson <casper@unbc.ca> (tiny change)
14611
14612 * menu-bar.el (menu-bar-select-frame): Handle current frame.
14613
14614 2005-02-15 Luc Teirlinck <teirllm@auburn.edu>
14615
14616 * autorevert.el (auto-revert-stop-on-user-input)
14617 (auto-revert-verbose): Doc fixes.
14618
14619 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
14620
14621 * international/mule-cmds.el (set-locale-environment): Remove call
14622 to set-selection-coding-system on Windows.
14623
14624 2005-02-15 Jay Belanger <belanger@truman.edu>
14625
14626 * calc/calc-alg.el: Add simplification rules for calcFunc-sec,
14627 calcFunc-csc, calcFunc-cot, calcFunc-sech, calcFunc-csch, and
14628 calcFunc-coth.
14629 (math-simplify-sqrt): Add simplifications.
14630
14631 * calc/calc-arith.el (math-real-if-arg-functions): Add functions
14632 to list.
14633
14634 * calc/calc-ext.el: Add functions to autoloads.
14635
14636 * calc/calc-math.el (calc-sec, calc-csc, calc-cot, calc-sech)
14637 (calc-csch, calc-coth, calcFunc-sec, calcFunc-csc, calcFunc-cot)
14638 (calcFunc-sech, calcFunc-csch, calcFunc-coth, math-sec-raw)
14639 (math-csc-raw, math-cot-raw): New functions.
14640
14641 * calc/calc-rules.el (calc-DistribRules, calc-NegateRules): Add rules.
14642
14643 * calc/calc-undo.el (calc-handle-undo): Remove prefix from
14644 the variable name in a message.
14645
14646 * calc/calc-units.el: Add simplification rules for calcFunc-sec,
14647 calcFunc-csc, calcFunc-cot.
14648
14649 * calc/calcalg2.el: Add derivative and integration rules for
14650 calcFunc-sec, calcFunc-csc, calcFunc-cot, calcFunc-sech,
14651 calcFunc-csch, calcFunc-coth.
14652 (math-do-integral-methods): Add to checks for when to use
14653 substitutions.
14654
14655 * calc/calccomp.el (math-eqn-special-funcs): Add functions to list.
14656
14657 2005-02-15 Lute Kamstra <lute@gnu.org>
14658
14659 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
14660 Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
14661 <monnier@iro.umontreal.ca>
14662 (lisp-outline-level): Improve efficiency. Suggested by David
14663 Kastrup <dak@gnu.org>.
14664
14665 2005-02-15 Nick Roberts <nickrob@snap.net.nz>
14666
14667 * progmodes/gdb-ui.el (gdb-find-file-unhook): New variable.
14668 (gdb-set-gud-minor-mode, gdb-set-gud-minor-mode-1)
14669 (gdb-set-gud-minor-mode-existing-buffers): New functions.
14670 (gdb-find-file-hook): New hook. Add it to find-file-hook.
14671 (gdb-info-breakpoints-custom, gdb-source-info): Simplify.
14672
14673 2005-02-14 Luc Teirlinck <teirllm@auburn.edu>
14674
14675 * cus-start.el (all): Comment change.
14676
14677 2005-02-14 Lute Kamstra <lute@gnu.org>
14678
14679 * cus-start.el (all): Check if symbol is void.
14680
14681 2005-02-14 Carsten Dominik <dominik@science.uva.nl>
14682
14683 * textmodes/reftex-cite.el (reftex-do-citation): Cleanup single
14684 optional argument to \cite.
14685
14686 2005-02-14 Richard M. Stallman <rms@gnu.org>
14687
14688 * cus-edit.el (custom-buffer-create-internal): Update help message.
14689 (custom-magic-alist): Update help messages.
14690
14691 * cus-start.el (all): Allow a var to specify a standard value.
14692
14693 2005-02-12 Luc Teirlinck <teirllm@auburn.edu>
14694
14695 * custom.el (custom-theme-set-variables): Handle variable aliases.
14696
14697 * frame.el (blink-cursor-timer): Doc fix.
14698 (blink-cursor): Make it an alias for `blink-cursor-mode' and
14699 declare obsolete.
14700 (blink-cursor-mode): Define with defcustom and use correct
14701 standard expression in that defcustom.
14702 * startup.el (command-line): Adapt to above changes in frame.el.
14703
14704 2005-02-11 Lute Kamstra <lute@gnu.org>
14705
14706 * apropos.el (apropos-score-doc): Prevent division by zero.
14707
14708 2005-02-11 Ulf Jasper <ulf.jasper@web.de>
14709
14710 * calendar/icalendar.el (icalendar--get-event-property): Doc fix.
14711 (icalendar--get-event-property-attributes)
14712 (icalendar--get-event-properties)
14713 (icalendar--datetime-to-diary-date): New functions.
14714 (icalendar--split-value): Doc fix.
14715 (icalendar--datetime-to-noneuropean-date)
14716 (icalendar--datetime-to-european-date): New optional argument
14717 SEPARATOR. Return result as a string instead of a list.
14718 (icalendar--get-weekday-number): Check if ABBREVWEEKDAY is nil.
14719 (icalendar--convert-string-for-export): Rename arg S to STRING.
14720 (icalendar-export-region): Doc fix. Change name of error buffer.
14721 Save output buffer.
14722 (icalendar-import-file): Add blank at end of prompt.
14723 (icalendar-import-buffer): Doc fix. Do not switch to error
14724 buffer. Indicate status in return value.
14725 (icalendar--convert-ical-to-diary): Doc fix. Change name of error
14726 buffer. Save output buffer. Handle exception from recurrence
14727 rules (EXDATE, EXRULE). Handle start- and end-date of recurring
14728 events. Fix problems with weekly all-day events.
14729
14730 2005-02-10 Richard M. Stallman <rms@gnu.org>
14731
14732 * simple.el (eval-expression-print-format):
14733 Avoid warning about edebug-active.
14734
14735 * help.el (help-for-help-internal): Rename from help-for-help.
14736 (help-for-help): Define with defalias.
14737
14738 * font-core.el (font-lock-default-function): Use with-no-warnings.
14739
14740 * cus-edit.el (custom-buffer-create-internal): Improve help-echo.
14741
14742 * custom.el (defface): Doc fix.
14743
14744 2005-02-10 Nick Roberts <nickrob@snap.net.nz>
14745
14746 * progmodes/gdb-ui.el (gdb-ann3): Re-instate GDB command "set
14747 width 0" to prevent word wrapping problems.
14748
14749 2005-02-09 Kim F. Storm <storm@cua.dk>
14750
14751 * ido.el (ido-file-extensions-order): New defcustom.
14752 (ido-file-extension-lessp, ido-file-extension-aux)
14753 (ido-file-extension-order): New advanced file ordering.
14754 (ido-file-lessp): New simple file ordering.
14755 (ido-sort-list): Remove.
14756 (ido-make-file-list): Use ido-file-lessp or ido-file-extension-lessp.
14757 (ido-make-dir-list, ido-completion-help): Use ido-file-lessp.
14758
14759 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu>
14760
14761 * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K
14762 that some versions of grep produce.
14763 (grep-mode-font-lock-keywords): Likewise.
14764
14765 2005-02-09 Nick Roberts <nickrob@snap.net.nz>
14766
14767 * progmodes/gdb-ui.el (gdb-location-list): New variable.
14768 (gdb-cdir): Delete.
14769 (gdb-info-breakpoints-custom, gdb-goto-breakpoint)
14770 (gdb-source-info): Treat case when source file is in another
14771 directory properly.
14772 (gdb-get-location): New function.
14773
14774 2005-02-07 Jay Belanger <belanger@truman.edu>
14775
14776 * calc/calc-prog.el (calc-write-parse-table-part)
14777 (calc-fix-token-name): Fix a check for language type.
14778
14779 * calc/calccomp.el (math-compose-expr): Fix a check for language type.
14780
14781 2005-02-07 Andre Spiegel <spiegel@gnu.org>
14782
14783 * vc-hooks.el (vc-make-version-backup): Ignore file-errors such
14784 as directory not writable.
14785
14786 2005-02-07 Kim F. Storm <storm@cua.dk>
14787
14788 * emulation/cua-base.el (cua-max-undo, cua-undo): Remove.
14789 (cua--standard-movement-commands): Remove list.
14790 Instead, set CUA property value to move for movement commands.
14791 (cua-movement-commands): Remove. Users must set CUA prop instead.
14792 (cua--pre-command-handler): Check CUA property.
14793 (cua--init-keymaps): Don't remap undo commands.
14794 (cua-mode): Don't call cua--rectangle-on-off.
14795
14796 * emulation/cua-rect.el (cua--undo-list, cua--tidy-undo-counter)
14797 (cua--rect-undo, cua--tidy-undo-lists, cua--rectangle-on-off): Remove.
14798 (cua--rect-undo-set-point): New var.
14799 (cua--rectangle-undo-boundary): Setup undo apply entry.
14800 (cua--rect-undo-handler): New function for rectangle undo.
14801 (cua--rect-start-position, cua--rect-end-position): Add.
14802 (cua--rectangle-post-command): Call cua--rectangle-set-corners
14803 for restored rectangle. Set point if cua--rect-undo-set-point.
14804
14805 2005-02-06 Jay Belanger <belanger@truman.edu>
14806
14807 * calc/calc-lang.el (calc-tex-language): Display more information
14808 in messages.
14809
14810 * calc/calccomp.el (math-compose-expr): Allow multiline matrices
14811 in TeX mode.
14812
14813 2005-02-06 Richard M. Stallman <rms@gnu.org>
14814
14815 * emacs-lisp/lisp.el (buffer-end): Doc fix.
14816
14817 2005-02-05 Arne_J\e,Ax\e(Brgensen <arne@arnested.dk> (tiny change)
14818
14819 * net/ldap.el (ldap-search-internal): Support attributes with
14820 optional descriptions separated by a semi-colon, as in
14821 "userCertificate;binary".
14822
14823 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14824
14825 * x-dnd.el (x-dnd-handle-xdnd): Handle the case where the flags
14826 isn't a cons (i.e. the version is 0).
14827
14828 2005-02-05 Eli Zaretskii <eliz@gnu.org>
14829
14830 * help.el (help-for-help): Doc fix.
14831
14832 2005-02-05 Nick Roberts <nickrob@snap.net.nz>
14833
14834 * progmodes/gdb-ui.el: Update copyright. Put GDB-Frames before
14835 GDB-Windows on the menu-bar as this works better.
14836
14837 2005-02-04 Jay Belanger <belanger@truman.edu>
14838
14839 * calc/calc-embed.el (calc-embedded-update): Don't put in
14840 unnecessary newlines. Adjust the end of formula marker.
14841
14842 * calc/calc-lang.el (math-latex-parse-frac): Don't use arguments.
14843 (math-latex-parse-two-args): New function.
14844
14845 2005-02-03 Lute Kamstra <lute@gnu.org>
14846
14847 * help-fns.el (help-with-tutorial): Make sure that users cannot
14848 remove the entire text of the tutorial by means of `undo'.
14849
14850 2005-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
14851
14852 * textmodes/ispell.el (ispell-internal-change-dictionary): Fix problem
14853 in recent changes, where the ispell process was repeatedly
14854 killed & restarted.
14855
14856 * international/mule-cmds.el (set-locale-environment): Set file-name
14857 coding system to utf-8 on Darwin systems.
14858 (set-default-coding-systems): Don't set default-file-name-coding-system
14859 on Darwin systems.
14860
14861 2005-02-03 Richard M. Stallman <rms@gnu.org>
14862
14863 * hi-lock.el (hi-lock-mode): Turning on Hi-Lock turns on Font-Lock.
14864
14865 2005-02-03 Matt Hodges <MPHodges@member.fsf.org>
14866
14867 * faces.el (list-faces-display): Add optional argument.
14868
14869 2005-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
14870
14871 * font-core.el (font-lock-default-function): Handle the rare case where
14872 only font-lock-keywords is set.
14873
14874 2005-02-02 Kenichi Handa <handa@m17n.org>
14875
14876 * international/characters.el: Cancel previous change for
14877 I-WITH-DOT-ABOVE and DOTLESS-i.
14878
14879 * international/latin-5.el: Cancel previous change.
14880
14881 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
14882
14883 * progmodes/gud.el: Correction to syntax in gud-menu-map.
14884
14885 2005-02-02 Kenichi Handa <handa@m17n.org>
14886
14887 * international/latin-5.el (tbl): Setup cases of I-WITH-DOT-ABOVE,
14888 DOTLESS-i.
14889
14890 * international/characters.el: Setup cases of GREEK-FINAL-SIGMA,
14891 Y-WITH-DIAERESIS, I-WITH-DOT-ABOVE, DOTLESS-i.
14892
14893 * case-table.el (get-upcase-table): New function.
14894 (copy-case-table): Copy upcaes table too if non-nil.
14895 (set-case-syntax-delims): Maintain upcase table too.
14896 (set-case-syntax-pair): Likewise.
14897 (set-upcase-syntax, set-downcase-syntax): New functions.
14898 (set-case-syntax): Maintain upcase table too.
14899
14900 2005-02-02 Nick Roberts <nickrob@snap.net.nz>
14901
14902 * progmodes/gdb-ui.el (gdb-goto-info): Delete.
14903
14904 * progmodes/gud.el (gud-goto-info): New function.
14905 (gud-tool-bar-map): Use correct icon.
14906
14907 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
14908
14909 * emacs-lisp/lisp-mode.el (lisp-indent-function): Fix bug:
14910 When delegating, order args in the funcall correctly.
14911
14912 2005-02-01 Thien-Thi Nguyen <ttn@gnu.org>
14913
14914 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
14915
14916 2005-02-01 Carsten Dominik <dominik@science.uva.nl>
14917
14918 * textmodes/reftex.el (reftex-access-scan-info): Error out in a
14919 buffer not visiting a file.
14920
14921 2005-01-31 Jay Belanger <belanger@truman.edu>
14922
14923 * calc/calc-embed.el (calc-embedded-find-bounds): Set the formula
14924 bound on the line with the formula.
14925
14926 2005-01-31 Kim F. Storm <storm@cua.dk>
14927
14928 * ses.el (ses-create-cell-variable-range)
14929 (ses-destroy-cell-variable-range, ses-reset-header-string)
14930 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
14931 (ses-insert-row): Fix format of apply undo entries.
14932
14933 2005-01-31 Jay Belanger <belanger@truman.edu>
14934
14935 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
14936 parts.
14937
14938 * calc/calc-embed.el (calc-embedded-open-formula)
14939 (calc-embedded-close-formula): Ignore matrix environments.
14940
14941 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
14942 TeX mode.
14943
14944 * calc/calc-lang.el (math-function-table, math-oper-table)
14945 (math-variable-table): Adjust the LaTeX portions.
14946
14947 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
14948 (math-latex-ignore-words): New constant.
14949
14950 2005-01-31 Richard M. Stallman <rms@gnu.org>
14951
14952 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
14953 (ispell-local-dictionary): Doc fix.
14954 (ispell-dictionary-alist): Don't include ispell-local-dictionary-alist.
14955 Don't reinitialize at run time. Don't defcustom.
14956 All uses changed to append ispell-local-dictionary-alist,
14957 or check it first.
14958 (ispell-current-dictionary): New variable for dictionary in use.
14959 (ispell-dictionary): Now used only for global default.
14960 (ispell-start-process): Set ispell-current-dictionary,
14961 not ispell-dictionary.
14962 (ispell-change-dictionary): Use this only for setting
14963 user preferences.
14964 (ispell-internal-change-dictionary): New function
14965 to change the current dictionary in use.
14966 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
14967 Use ispell-current-dictionary.
14968 Handle ispell-local-dictionary-overridden.
14969 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
14970
14971 2005-01-31 Jay Belanger <belanger@truman.edu>
14972
14973 * calc/calc-aent.el (math-read-token): Add support for LaTeX.
14974
14975 * calc/calc-ext.el: Add calc-latex-language to autoloads.
14976 (calc-mode-map): Add calc-latex-language.
14977
14978 * calc/calc-lang.el (calc-latex-language, math-latex-parse-frac)
14979 (math-latex-print-frac): New functions.
14980 (math-oper-table, math-function-table, math-variable-table)
14981 (math-complex-format, math-input-filter): Add latex properties.
14982 (calc-set-language): Set math-expr-special-function-mapping.
14983
14984 * calc/calc-prog.el (calc-edit-user-syntax, calc-fix-token-name)
14985 (calc-write-parse-table-part): Add LaTeX support.
14986
14987 * calc/calc.el (calc-language): Adjust docstring.
14988 (calc-set-mode-line): Add LaTeX support.
14989 (math-expr-special-function-mapping): New variable.
14990 (math-tex-ignore-words): Add to list.
14991
14992 * calc/calccomp.el (math-compose-expr, math-compose-rows):
14993 Add LaTeX support.
14994 (math-compose-expr): Add support for special functions.
14995
14996 * calc/calc-help.el (calc-d-prefix-help): Add LaTeX.
14997
14998 2005-01-31 Nick Roberts <nickrob@snap.net.nz>
14999
15000 * progmodes/gdb-ui.el (gdb-memory-address)
15001 (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit)
15002 (gdb-memory-mode-map, gdb-memory-format-keymap)
15003 (gdb-memory-format-menu, gdb-memory-unit-keymap)
15004 (gdb-memory-unit-menu): New variables for a buffer
15005 that lets the user examine program memory.
15006 (gdb-memory-set-address, gdb-memory-set-repeat-count)
15007 (gdb-memory-format-binary, gdb-memory-format-octal)
15008 (gdb-memory-format-unsigned, gdb-memory-format-signed)
15009 (gdb-memory-format-hexadecimal, gdb-memory-format-menu)
15010 (gdb-memory-format-menu-1, gdb-memory-unit-giant)
15011 (gdb-memory-unit-word, gdb-memory-unit-halfword)
15012 (gdb-memory-unit-byte, gdb-memory-unit-menu)
15013 (gdb-memory-unit-menu-1, gdb-make-header-line-mouse-map)
15014 (gdb-memory-mode, gdb-memory-buffer-name)
15015 (gdb-display-memory-buffer, gdb-frame-memory-buffer):
15016 New functions for above buffer.
15017
15018 2005-01-30 Richard M. Stallman <rms@gnu.org>
15019
15020 * cus-edit.el (custom-bury-buffer): Function deleted.
15021 (custom-buffer-done-function): Option deleted.
15022 (custom-buffer-done-kill): New (replacement option.
15023 (Custom-buffer-done): Call quit-window.
15024 (custom-buffer-create-internal): Update for above changes.
15025
15026 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
15027
15028 * simple.el (undo-ask-before-discard): New var.
15029 (undo-outer-limit-truncate): Implement it.
15030 (undo-extra-outer-limit): Doc update.
15031
15032 2005-01-29 Richard M. Stallman <rms@gnu.org>
15033
15034 * ses.el (undo-more): Delete defadvice.
15035 (ses-begin-change): Doc fix.
15036
15037 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
15038 instead of rebinding C-x u and C-_.
15039
15040 * files.el (normal-backup-enable-predicate): Return nil for files
15041 in /tmp, regardless of temporary-file-directory.
15042
15043 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
15044
15045 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
15046 (open-rectangle, delete-whitespace-rectangle-line)
15047 (clear-rectangle-line): If FILL, pass t instead of FILL
15048 for move-to-column's 2nd arg.
15049
15050 * simple.el (undo): Fix the test for continuing a series of undos.
15051 (undo-more): Set pending-undo-list to t when we reach end.
15052 (pending-undo-list): Move up defvar.
15053
15054 * wid-edit.el (widget-button-click):
15055 Shorten the range of the track-mouse binding.
15056
15057 * comint.el (comint-insert-input): Undo previous changes;
15058 use last-input-event in interactive spec.
15059
15060 2005-01-29 Eli Zaretskii <eliz@gnu.org>
15061
15062 * progmodes/compile.el (compilation-start): Bind buffer-read-only
15063 to nil before invoking call-process. Reset buffer's modified flag
15064 after fontifying it in the no-async branch.
15065
15066 * wid-edit.el (widget-specify-button): If mouse pointer shape
15067 cannot be changed, use mouse face instead.
15068
15069 2005-01-29 Nick Roberts <nickrob@snap.net.nz>
15070
15071 * progmodes/gdb-ui.el (gdb-info-breakpoints-custom)
15072 (gdb-goto-breakpoint): Make breakpoint handling work on template
15073 functions in C++. Reported by Martin Reed <mjreed@essex.ac.uk>
15074 (gdb-assembler-custom): Update to recognize breakpoint information
15075 added on 2005-01-19.
15076
15077 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
15078
15079 * progmodes/scheme.el (scheme-mode-variables): Set comment-add.
15080 (dsssl-mode): Use define-derived-mode.
15081 (scheme-mode-initialize): Remove.
15082 (scheme-mode): Use run-mode-hooks.
15083
15084 * cus-edit.el (customize-group-other-window)
15085 (custom-buffer-create-other-window): Don't override special-display-*.
15086 (custom-mode-map): Make it dense.
15087
15088 * emacs-lisp/lisp-mode.el (eval-defun-1): Make sure `defvar' always
15089 sets the default value.
15090
15091 2005-01-28 Eli Zaretskii <eliz@gnu.org>
15092
15093 * descr-text.el: Add more keywords.
15094
15095 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
15096
15097 * speedbar.el: Avoid unnecessary use of locate-library.
15098
15099 * international/mule-cmds.el (standard-display-european-internal):
15100 Don't fiddle with latin-1 non-break space any more since it's now
15101 special cased in the C code.
15102 Don't "do&undo" setting for 160 (especially, don't undo incorrectly).
15103
15104 2005-01-26 Luc Teirlinck <teirllm@auburn.edu>
15105
15106 * cus-start.el (all): Add `undo-outer-limit'.
15107
15108 2005-01-25 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15109
15110 * textmodes/bibtex.el (bibtex-format-entry):
15111 Use `bibtex-empty-field-re' only on the text of fields, not on entire
15112 field lines.
15113 (bibtex-autofill-entry): Use `bibtex-empty-field-re' on a string,
15114 not on part of a buffer.
15115
15116 2005-01-25 Lute Kamstra <lute@gnu.org>
15117
15118 * textmodes/bibtex.el (bibtex-empty-field-re): Don't match
15119 nonempty field text strings like "{letters\\macro{}more letters}".
15120 Clarify docstring.
15121 (bibtex-sort-entry-class, bibtex-autokey-titleword-ignore)
15122 (bibtex-entry-offset, bibtex-parse-association)
15123 (bibtex-parse-field-name): Fix typos in docstrings.
15124 (bibtex-field-list, bibtex-find-crossref): Fix typos in error messages.
15125
15126 2005-01-24 Carsten Dominik <dominik@science.uva.nl>
15127
15128 * textmodes/reftex-global.el (reftex-isearch-push-state-function)
15129 (reftex-isearch-pop-state-function, reftex-isearch-isearch-search)
15130 (reftex-isearch-switch-to-next-file, reftex-isearch-turn-off)
15131 (reftex-isearch-turn-on, reftex-isearch-minor-mode): New functions.
15132
15133 * textmodes/reftex.el (reftex-mode-menu): Add entry for reftex
15134 isearch minor mode.
15135
15136 2005-01-24 Luc Teirlinck <teirllm@auburn.edu>
15137
15138 * help-at-pt.el (help-at-pt-display-when-idle): Add autoload cookie.
15139
15140 2005-01-24 Lute Kamstra <lute@gnu.org>
15141
15142 * textmodes/ispell.el (ispell-dictionary-alist-4): Rewrite the
15143 CASECHARS and NOT-CASECHARS regular expressions of the
15144 "nederlands" and "nederlands8" dictionaries to prevent a "Range
15145 striding over charsets" error.
15146
15147 2005-01-24 Jay Belanger <belanger@truman.edu>
15148
15149 * calc/calc-store.el (calc-declare-variable): Use calc-var-name to
15150 display variable name.
15151
15152 2005-01-24 Kenichi Handa <handa@m17n.org>
15153
15154 * international/encoded-kb.el (encoded-kbd-iso2022-single-shift):
15155 Fix setting of the element of encoded-kbd-iso2022-invocations.
15156
15157 2005-01-24 Nick Roberts <nickrob@snap.net.nz>
15158
15159 * progmodes/gdb-ui.el (gdb-goto-breakpoint, gdb-frames-select)
15160 (gdb-threads-select): Change to also accept mouse events.
15161 (gdb-mouse-goto-breakpoint, gdb-frames-mouse-select)
15162 (gdb-threads-mouse-select): Delete.
15163
15164 2005-01-23 Luc Teirlinck <teirllm@auburn.edu>
15165
15166 * files.el (insert-directory): Take care of empty directory,
15167 listed without -a switch.
15168
15169 2005-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
15170
15171 * textmodes/refill.el (refill-post-command-function):
15172 Add `indent-new-comment-line' and `reindent-then-newline-and-indent'
15173 to the list of functions that we should be careful not to undo.
15174 (refill-late-fill-paragraph-function): Remove.
15175 (refill-saved-state): New var.
15176 (refill-mode): Use it to save fill-paragraph-function.
15177 Save also the value of auto-fill-function.
15178
15179 * term/w32-win.el: Simplify code.
15180
15181 2005-01-23 Kim F. Storm <storm@cua.dk>
15182
15183 * simple.el (line-move): Adapt to new return value from
15184 pos-visible-in-window-p.
15185
15186 * simple.el (line-move): Fix last change. Check partial
15187 visibility at point rather than at window-start.
15188
15189 2005-01-22 Jason Rumney <jasonr@gnu.org>
15190
15191 * term/w32-win.el (xw-defined-colors): Remove debug-message.
15192
15193 2005-01-22 David Kastrup <dak@gnu.org>
15194
15195 * progmodes/grep.el: Add alias `find-grep' for `grep-find'.
15196
15197 2005-01-22 Eli Zaretskii <eliz@gnu.org>
15198
15199 * type-break.el (type-break-mode): Add a test for
15200 type-break-file-name being non-nil.
15201
15202 2005-01-22 Toby Allsopp <Toby.Allsopp@navman.com> (tiny change)
15203
15204 * net/eudc.el (top level): Call (message "") via progn, so that
15205 eudc-options-file is loaded.
15206
15207 2005-01-22 Kim F. Storm <storm@cua.dk>
15208
15209 * simple.el (line-move-1): Rename from line-move.
15210 (line-move): New function that adjusts vscroll for partially
15211 visible rows, and calls line-move-1 otherwise.
15212
15213 2005-01-21 Ren\e,Ai\e(B Kyllingstad <listmailxemacs@kyllingstad.com>
15214
15215 * pcomplete.el: Define pcomplete-read-event instead of read-event,
15216 since it's not a complete read-event implementation
15217
15218 2005-01-20 Jay Belanger <belanger@truman.edu>
15219
15220 * calc/calc-ext.el (calc-fancy-prefix-other-key): Set prefix arg
15221 for called function.
15222
15223 2005-01-20 Steven Tamm <steventamm@mac.com>
15224
15225 * term/mac-win.el (process-connection-type): Remove.
15226 Controlled now by s/darwin.h:PTY_ITERATION.
15227
15228 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
15229
15230 * window.el (handle-select-window): Don't switch window when we're
15231 in the minibuffer.
15232
15233 2005-01-10 Paul Pogonyshev <pogonyshev@gmx.net>
15234
15235 * subr.el (dotimes-with-progress-reporter): New macro.
15236
15237 * ses.el (ses-dotimes-msg): Remove macro.
15238 Use `dotimes-with-progress-reporter' instead.
15239
15240 2005-01-19 Steven Tamm <steventamm@mac.com>
15241
15242 * term/mac-win.el (process-connection-type): Use new
15243 operating-system-release variable to use ptys on Darwin 7 (OS X
15244 10.3) when using carbon build.
15245
15246 2005-01-19 Jay Belanger <belanger@truman.edu>
15247
15248 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
15249 flags if the last command was a tab or M-tab.
15250
15251 * calc/calc-prog.el (calc-user-define-edit): Put original formula
15252 in formula editing buffer.
15253
15254 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
15255
15256 * progmodes/gdb-ui.el (gdb-put-breakpoint-icon): Add help-echo for
15257 breakpoint image symbol in margin.
15258
15259 2005-01-19 Jay Belanger <belanger@truman.edu>
15260
15261 * calc/calc-prog.el (calc-execute-kbd-macro):
15262 Ignore calc-keep-arg-flag.
15263
15264 2005-01-19 Kenichi Handa <handa@m17n.org>
15265
15266 * textmodes/ispell.el (ispell-looking-at): New function.
15267 (ispell-process-line): Use ispell-looking-at to compare the ispell
15268 output and the buffer contents.
15269
15270 2005-01-18 Jay Belanger <belanger@truman.edu>
15271
15272 * calc/calc.el (calc-display-raw): Fix docstring.
15273
15274 2005-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
15275
15276 * simple.el (blink-matching-open): Strip extra info from syntax.
15277
15278 * progmodes/sh-script.el (sh-here-doc-open-re): Don't allow | or other
15279 funny chars in the end-of-here-doc marker.
15280
15281 2005-01-19 Nick Roberts <nickrob@snap.net.nz>
15282
15283 * progmodes/gdb-ui.el (gdb-put-string): Copy/create strings so
15284 that enable/disabled state of breakpoints is shown correctly in
15285 fringe and on ttys.
15286 (gdb-put-breakpoint-icon, gdb-info-breakpoints-custom):
15287 Add breakpoint information as text properties.
15288 (gdb-mouse-toggle-breakpoint):
15289 Rename to gdb-mouse-set-clear-breakpoint.
15290 (gdb-mouse-toggle-breakpoint): New function. Enable/disable
15291 breakpoints in the margin.
15292 (gdb-remove-strings): Simplify.
15293
15294 2005-01-17 Jay Belanger <belanger@truman.edu>
15295
15296 * calc/calc-yank.el (calc-edit-mode): Inhibit read-only when
15297 erasing buffer.
15298
15299 2005-01-17 Richard M. Stallman <rms@gnu.org>
15300
15301 * progmodes/grep.el (grep-find): Copy from `grep' the condition
15302 for calling grep-compute-defaults.
15303
15304 * play/decipher.el (decipher-mode): Don't call decipher-read-alphabet
15305 if buffer is empty.
15306
15307 * emacs-lisp/lisp.el (backward-kill-sexp, kill-sexp): Doc fixes.
15308
15309 2005-01-17 Stefan Monnier <monnier@iro.umontreal.ca>
15310
15311 * hilit-chg.el (highlight-changes-mode): Don't autoload.
15312
15313 * bindings.el (mode-line-mode-menu): Use bound-and-true-p for all the
15314 non-preloaded variables.
15315
15316 2005-01-17 Steven Tamm <steventamm@mac.com>
15317
15318 * textmodes/tex-mode.el (tex-start-shell): Adding -i to the
15319 tex-shell cause to force interactivity when using pipes.
15320
15321 2005-01-17 Kim F. Storm <storm@cua.dk>
15322
15323 * simple.el (just-one-space): Make arg optional.
15324
15325 2005-01-17 Nick Roberts <nickrob@snap.net.nz>
15326
15327 * xt-mouse.el (xterm-mouse-event): Set new optional fourth arg in
15328 posn-at-x-y to t to access left-margin.
15329
15330 2005-01-16 Michael Albinus <michael.albinus@gmx.de>
15331
15332 Sync with Tramp 2.0.47.
15333
15334 * net/tramp.el (tramp-operation-not-permitted-regexp) New defcustom,
15335 catching keep-date problems in cp/scp operations.
15336 (tramp-handle-copy-file): Don't call `set-file-modes'
15337 unconditionally. Specialized functions should know better what is
15338 necessary. This improves performance a little bit, and the
15339 functions could catch errors with `cp -p' and `scp -p'.
15340 (tramp-do-copy-or-rename-file-via-buffer)
15341 (tramp-do-copy-or-rename-file-out-of-band): Call `set-file-modes'
15342 when appropriate.
15343 (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error.
15344 Call `set-file-modes' when appropriate.
15345 (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak
15346 Johnsson <isak@hypergene.com>
15347 (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list
15348 of both Tramp buffer and debug buffer. Reported by Joakim Verona
15349 <joakim@verona.se>
15350 (tramp-file-name-for-operation): Mark `shell-command' as magic for
15351 Emacs only.
15352
15353 * net/tramp-util.el (tramp-minor-mode): New minor mode. Add it to
15354 `find-file-hooks' and `dired-mode-hook'.
15355 (tramp-minor-mode-map): Respective map. Add remapping for
15356 `compile' and `recompile'.
15357 (tramp-remap-command, tramp-recompile): New defuns.
15358 (tramp-compile): Enable `tramp-minor-mode' and `compilation-mode'
15359 in buffer "*Compilation*". Call the commands asynchronously.
15360
15361 * net/tramp-vc.el (tramp-vc-do-command, tramp-vc-do-command-new)
15362 (tramp-vc-simple-command): Call `tramp-handle-shell-command' but
15363 `shell-command', because it isn't magic in XEmacs. Reported by
15364 Adrian Aichner <adrian@xemacs.org>.
15365
15366 * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry for
15367 `substitute-in-file-name.
15368 (tramp-smb-handle-substitute-in-file-name): New defun.
15369 (tramp-smb-advice-PC-do-completion): Delete advice.
15370
15371 2005-01-16 Kai Grossjohann <kgrossjo@eu.uu.net>
15372
15373 * net/tramp.el (tramp-wait-for-output): Fix typo in echo processing.
15374 Fix error in deleting region.
15375
15376 2005-01-15 Richard M. Stallman <rms@gnu.org>
15377
15378 * emacs-lisp/lisp-mnt.el (lm-with-file): Use Lisp mode in temp buffer.
15379 In non-temp buffer, switch syntax table temporarily.
15380
15381 * emacs-lisp/lisp-mode.el (indent-pp-sexp): Doc fix.
15382
15383 * replace.el (occur-accumulate-lines, occur-engine): Avoid warnings.
15384
15385 * tar-mode.el (tar-extract): Bind buffer-undo-list to t.
15386
15387 * imenu.el (imenu--split-menu): Copy menulist before sorting.
15388 (imenu--generic-function): Use START, not BEG, as pos of definition.
15389
15390 * simple.el (just-one-space): Argument specifies number of spaces.
15391
15392 * simple.el (eval-expression-print-format): Avoid warning
15393 about edebug-active.
15394
15395 2005-01-15 James R. Van Zandt <jrvz@comcast.net> (Tiny change)
15396
15397 * progmodes/sh-script.el: Code copied from make-mode.el
15398 with small changes,
15399 (sh-mode-map): Bind C-c C-\.
15400 (sh-backslash-column, sh-backslash-align): New variables.
15401 (sh-backslash-region, sh-append-backslash): New functions.
15402
15403 2005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
15404
15405 * mail/rmail.el: Updated to work with movemail from GNU Mailutils
15406 (rmail-pop-password, rmail-pop-password-required): Move to
15407 rmail-obsolete group.
15408 (rmail-set-pop-password): Rename to rmail-set-remote-password.
15409 All callers updated.
15410 (rmail-get-pop-password): Rename to rmail-get-remote-password.
15411 Take an argument specifying whether it is POP or IMAP mailbox we
15412 are using. All callers updated.
15413 (rmail-pop-password-error): Rename to
15414 rmail-remote-password-error. Added mailutils-specific error message.
15415 (rmail-movemail-search-path)
15416 (rmail-movemail-variant-in-use): New variables.
15417 (rmail-remote-password, rmail-remote-password-required):
15418 New customization variables.
15419 (rmail-probe,rmail-autodetect, rmail-movemail-variant-p): New funs.
15420 (rmail-parse-url): New function.
15421 (rmail-get-new-mail, rmail-insert-inbox-text): Update for use
15422 with GNU mailutils movemail.
15423
15424 2005-01-15 Kevin Ryde <user42@zip.com.au>
15425
15426 * info-look.el (c-mode/symbol): Add ^` to prefix, and change
15427 suffix to space, $ or '$, to correctly position point when going
15428 to @table style constants like DBL_MAX.
15429
15430 2005-01-15 Jorgen Schaefer <forcer@forcix.cx> (tiny change)
15431
15432 * type-break.el (type-break-mode, type-break-file-time)
15433 (type-break-file-keystroke-count, type-break-choose-file):
15434 Don't store data in or load data from the file if type-break-file-name
15435 is nil.
15436 (type-break-file-name): Doc update as per the above.
15437
15438 2005-01-15 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk> (tiny change)
15439
15440 * woman.el (woman-dired-define-key-maybe): If KEY is undefined,
15441 lookup-key might return nil; handle that.
15442
15443 2005-01-15 Alan Mackenzie <acm@muc.de>
15444
15445 * ebrowse.el (ebrowse-class-in-tree): Return the tail of the tree
15446 rather than the element found, thus enabling the tree to be setcar'd.
15447
15448 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
15449
15450 * textmodes/org.el (org-show-following-heading): New option.
15451 (org-show-hierarchy-above): Use `org-show-following-heading'.
15452 (org-cycle): Documentation fix.
15453
15454 * textmodes/org.el (orgtbl-optimized): New option
15455 (orgtbl-mode): New command, a minor mode.
15456 (orgtbl-mode-map): New variable.
15457 (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
15458 (orgtbl-error, orgtbl-self-insert-command)
15459 (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
15460
15461 * textmodes/org.el (org-mode): `org-table-may-need-update' is now
15462 a local variable in each org-mode buffer.
15463
15464 * textmodes/org.el (org-set-regexps-and-options): Rename from
15465 `org-set-regexps'. Added checking for STARTUP keyword.
15466 (org-get-current-options): Add STARTUP options.
15467 (org-table-insert-row): Make mode intelligent about when
15468 realignment is needed.
15469 (org-self-insert-command, org-delete-backward-char, org-delete-char):
15470 New commands.
15471 (org-enable-table-editor): New default value `optimized'.
15472 (org-table-blank-field): Support blanking regions if active.
15473
15474 2005-01-14 Carsten Dominik <dominik@science.uva.nl>
15475
15476 * textmodes/reftex-cite.el (reftex-bib-sort-year): Catch the case
15477 if the year is not given.
15478
15479 * textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
15480 Add new escapes %m and %M, fixed bug with %F by adding
15481 save-match-data.
15482 (reftex-reference): Remove ?. from list of spaces.
15483 (reftex-label-info): Add automatic label prefix recognition.
15484
15485 * textmodes/reftex-index.el (reftex-index-next-phrase):
15486 Add slave parameter to call of `reftex-index-this-phrase'.
15487 (reftex-index-this-phrase): New optional argument.
15488 (reftex-index-region-phrases): Add slave parameter to call of
15489 `reftex-index-this-phrase'.
15490 (reftex-display-index): New argument redo.
15491 (reftex-index-rescan): Add 'redo to arguments of
15492 `reftex-display-index'.
15493 (reftex-index-Rescan, reftex-index-revert)
15494 (reftex-index-switch-index-tag): Add 'redo to arguments of
15495 `reftex-display-index'.
15496 (reftex-index-make-phrase-regexp): Fix bug with case-sensitive
15497 indexing. Fix bug with matching is there is a quote before or
15498 after the word.
15499
15500 * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
15501 Fix bug when collecting citation keys in lines with comments.
15502 (reftex-citation): Prefix argument no longer rescans the document,
15503 but forces prompting for optional arguments of cite macros.
15504 (reftex-do-citation): Prompting for optional arguments implemented.
15505
15506 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
15507 Add optional arguments to most cite commands.
15508 (reftex-cite-cleanup-optional-args): New option
15509 (reftex-cite-prompt-optional-args): New option.
15510 (reftex-trust-label-prefix): New option.
15511
15512 * textmodes/reftex-toc.el (reftex-toc-find-section):
15513 Add push-mark before changing the position in the buffer.
15514
15515 * textmodes/reftex.el (reftex-prefix-to-typekey-alist): New variable.
15516 (reftex-compile-variables): Compute reftex-prefix-to-typekey-alist.
15517
15518 2005-01-14 Nick Roberts <nickrob@snap.net.nz>
15519
15520 * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
15521 more carefully.
15522
15523 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
15524
15525 * textmodes/sgml-mode.el (sgml-fill-nobreak): New fun.
15526 (sgml-mode): Use it.
15527 (sgml-get-context): Better keep track of implicitly closed tags.
15528
15529 2005-01-13 Kenichi Handa <handa@m17n.org>
15530
15531 * textmodes/ispell.el: These changes are to fix misalignment error
15532 caused by equivalent characters of different Emacs charsets.
15533 (ispell-unified-chars-table): New variable.
15534 (ispell-get-decoded-string): New function.
15535 (ispell-get-casechars, ispell-get-not-casechars)
15536 (ispell-get-otherchars): Call ispell-get-decoded-string.
15537
15538 2005-01-12 Johan Bockg\e,Ae\e(Brd <bojohan@users.sourceforge.net>
15539
15540 * custom.el (custom-declare-variable): Just put symbol instead
15541 of (defvar . symbol) in `current-load-list'.
15542
15543 2005-01-12 Reiner Steib <Reiner.Steib@gmx.de>
15544
15545 * emacs-lisp/elint.el: Fixed typo in Commentary section.
15546
15547 2005-01-12 Jay Belanger <belanger@truman.edu>
15548
15549 * calc/calc-help.el (calc-describe-key): Use temporary info buffer
15550 to create a Calc summary.
15551
15552 2005-01-12 Kim F. Storm <storm@cua.dk>
15553
15554 * mouse.el (mouse-on-link-p): Change functionality and doc
15555 string to comply with latest description in lisp ref.
15556
15557 2005-01-12 Nick Roberts <nickrob@snap.net.nz>
15558
15559 * xt-mouse.el (xterm-mouse-translate, xterm-mouse-event):
15560 Enable mouse clicks on mode-line, header-line and margin.
15561 (event-type): Give mouse event symbols an 'event-kind property
15562 with value 'mouse-click.
15563
15564 2005-01-12 Juri Linkov <juri@jurta.org>
15565
15566 * facemenu.el (list-colors-display): Add new arg buffer-name.
15567 Use it. Fix docstring. Replace code for identifying duplicate
15568 colors by the name with call to `list-colors-duplicates' which
15569 identifies duplicate colors by the value unless the color
15570 is one of special Windows colors. Set truncate-lines to t.
15571 Print sorted duplicate color names on each line. Indent to 22
15572 \(the longest color name in rgb.txt) instead of 20. Optimize.
15573 (list-colors-duplicates): New function.
15574 (facemenu-color-name-equal): Delete function.
15575
15576 * facemenu.el (list-colors-print): New function created from code
15577 in list-colors-display. Print #RRGGBB at the window right edge.
15578 (list-colors-display): When temp-buffer-show-function is not
15579 defined, call list-colors-print from temp-buffer-show-hook
15580 to get the right value of window-width in list-colors-print
15581 after the buffer is displayed.
15582
15583 * simple.el (pop-mark): Move deactivate-mark out of conditional
15584 part to deactivate the active mark regardless of the state of the
15585 mark ring.
15586
15587 * desktop.el (desktop-save): Add `mode: emacs-lisp' to the local
15588 variables line in desktop files.
15589
15590 2005-01-12 Juri Linkov <juri@jurta.org>
15591
15592 * isearch.el (search-highlight, isearch, isearch-lazy-highlight):
15593 Bring together isearch highlight related options.
15594 (lazy-highlight): Replace group `replace' by `matching'.
15595 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
15596 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
15597 (lazy-highlight): Add aliases to old names isearch-lazy-highlight-...
15598 and declare them obsolete.
15599 (lazy-highlight-face): Rename from isearch-lazy-highlight-face.
15600 (isearch-faces): Remove defgroup.
15601 (isearch-overlay, isearch-highlight, isearch-dehighlight):
15602 Move isearch highlighting code closer to lazy highlighting code.
15603
15604 * replace.el (query-replace-lazy-highlight): Add lazy-highlight group.
15605 (query-replace-highlight, query-replace-lazy-highlight)
15606 (query-replace): Move definitions to the beginning of the file.
15607
15608 2005-01-11 Juri Linkov <juri@jurta.org>
15609
15610 * toolbar/back_arrow.xpm, toolbar/back_arrow.pbm
15611 * toolbar/lc-back_arrow.xpm, toolbar/lc-fwd_arrow.xpm
15612 * toolbar/fwd_arrow.xpm, toolbar/fwd_arrow.pbm: New icons.
15613
15614 * info.el (Info-history-forward): New variable.
15615 (Info-select-node): Reset Info-history-forward to nil.
15616 (Info-last): Turn into defalias.
15617 (Info-history-back): Rename from Info-last.
15618 Add current node to Info-history-forward.
15619 (Info-history-forward): New fun.
15620 (Info-mode-map): Replace Info-last by Info-history-back.
15621 Bind Info-history-forward to "r".
15622 (Info-mode-menu): Replace Info-last by Info-history-back.
15623 Fix menu item text. Add menu item for Info-history-forward.
15624 (info-tool-bar-map): Replace Info-last by Info-history-back.
15625 Replace its icon "undo" by "back_arrow". Add icon "fwd_arrow"
15626 for Info-history-forward.
15627 (Info-mode): Replace Info-last by Info-history-back in docstring.
15628 Add local variable Info-history-forward.
15629 (Info-goto-emacs-command-node): Replace Info-last by Info-history-back.
15630
15631 2005-01-11 Stefan Monnier <monnier@iro.umontreal.ca>
15632
15633 * mouse.el (mouse-drag-mode-line-1, mouse-drag-vertical-line)
15634 (mouse-drag-region, mouse-drag-region-1, mouse-drag-secondary):
15635 Ignore select-window events rather than fiddle with
15636 mouse-autoselect-window.
15637
15638 2005-01-11 Matthew Mundell <matt@mundell.ukfsn.org>
15639
15640 * type-break.el (type-break-mode): Fix previous change.
15641
15642 2005-01-10 Jay Belanger <belanger@truman.edu>
15643
15644 * calc/calc-ext.el (calc-reset): Reset when inside embedded
15645 calculator; only reset when point is inside a calculator.
15646 Don't adjust the window height if the window takes up the whole height
15647 of the frame.
15648
15649 2005-01-10 Thien-Thi Nguyen <ttn@gnu.org>
15650
15651 * ebuff-menu.el (Electric-buffer-menu-mode):
15652 Preserve value of buffer-local var header-line-format.
15653
15654 2005-01-09 Jay Belanger <belanger@truman.edu>
15655
15656 * calc/calc.el (calc-mode-var-list-restore-saved-values):
15657 Make sure settings file exists before accessing it.
15658
15659 * calc/calc-embed.el (calc-embedded-subst):
15660 Replace math-multi-subst-rec, which is only supposed to be called
15661 by math-multi-subst, by math-multi-subst.
15662
15663 2005-01-09 Andre Spiegel <spiegel@gnu.org>
15664
15665 * vc.el (vc-allow-async-revert): New user option.
15666 (vc-disable-async-diff): New internal variable.
15667 (vc-revert-buffer): Use them to disable asynchronous diff.
15668
15669 * vc-cvs.el, vc-arch.el, vc-svn.el, vc-mcvs.el (vc-cvs-diff)
15670 (vc-arch-diff, vc-svn-diff, vc-mcvs-diff): Don't diff
15671 asynchronously if vc-disable-async-diff is t.
15672
15673 2005-01-09 Jay Belanger <belanger@truman.edu>
15674
15675 * calc/calc.el (defcalcmodevar): New macro.
15676 (calc-mode-var-list-restore-default-values)
15677 (calc-mode-var-list-restore-saved-values): New functions.
15678 (calc-mode-var-list): Use defcalcmodevar to define it.
15679 (calc-always-load-extensions, calc-line-numbering)
15680 (calc-line-breaking, calc-display-just, calc-display-origin)
15681 (calc-number-radix, calc-leading-zeros, calc-group-digits)
15682 (calc-group-char, calc-point-char, calc-frac-format)
15683 (calc-prefer-frac, calc-hms-format, calc-date-format)
15684 (calc-float-format, calc-full-float-format, calc-complex-format)
15685 (calc-complex-mode, calc-infinite-mode, calc-display-strings)
15686 (calc-matrix-just, calc-break-vectors, calc-full-vectors)
15687 (calc-full-trail-vectors, calc-vector-commas, calc-vector-brackets)
15688 (calc-matrix-brackets, calc-language, calc-language-option)
15689 (calc-left-label, calc-right-label, calc-word-size)
15690 (calc-previous-modulo, calc-simplify-mode, calc-auto-recompute)
15691 (calc-display-raw, calc-internal-prec, calc-angle-mode)
15692 (calc-algebraic-mode, calc-incomplete-algebraic-mode)
15693 (calc-symbolic-mode, calc-matrix-mode, calc-shift-prefix)
15694 (calc-window-height, calc-display-trail, calc-show-selections)
15695 (calc-use-selections, calc-assoc-selections)
15696 (calc-display-working-message, calc-auto-why, calc-timing)
15697 (calc-mode-save-mode, calc-standard-date-formats, calc-autorange-units)
15698 (calc-was-keypad-mode, calc-full-mode, calc-user-parse-tables)
15699 (calc-gnuplot-default-device, calc-gnuplot-default-output)
15700 (calc-gnuplot-print-device, calc-gnuplot-print-output)
15701 (calc-gnuplot-geometry, calc-graph-default-resolution)
15702 (calc-graph-default-resolution-3d, calc-invocation-macro)
15703 (calc-show-banner): Use defcalcmodevar to declare them and set
15704 their default values.
15705
15706 * calc/calc-ext.el (calc-reset): Restore saved values of variables
15707 instead of default values (but restore default values if there is
15708 an argument of 0).
15709
15710 2005-01-09 David Kastrup <dak@gnu.org>
15711
15712 * desktop.el (desktop-restore-eager): Fix typo in type.
15713
15714 2005-01-08 Richard M. Stallman <rms@gnu.org>
15715
15716 * cus-edit.el (customize): Delete :link.
15717
15718 2005-01-08 Jay Belanger <belanger@truman.edu>
15719
15720 * calc/calc.el (calc-mode): Remove the extension from the
15721 `calc-settings-file' file name when loading it.
15722
15723 2005-01-08 Kim F. Storm <storm@cua.dk>
15724
15725 * info.el (Info-mode-map, Info-next-link-keymap)
15726 (Info-prev-link-keymap, Info-up-link-keymap):
15727 Map follow-link to mouse-face.
15728 (Info-fontify-node): Add "mouse-2: " prefix to tooltip.
15729
15730 2005-01-08 Jay Belanger <belanger@truman.edu>
15731
15732 * calc/calc.el (calc-settings-file): Change default value.
15733 Suggested by cgw in a comment in calc-mode.el.
15734
15735 * calc/calc-mode.el (calc-settings-file-name):
15736 Compare calc-settings-file to user-init-file instead of ~/.emacs.
15737 Replace ~/.emacs in a prompt by calc-settings-file.
15738
15739 2005-01-07 Lars Hansen <larsh@math.ku.dk>
15740
15741 * desktop.el (desktop-restore-eager, desktop-lazy-verbose)
15742 (desktop-lazy-idle-delay): New customizable variables.
15743 (desktop-buffer-args-list): New variable.
15744 (desktop-append-buffer-args): New function.
15745 (desktop-save): Call desktop-append-buffer-args for some buffers.
15746 (desktop-lazy-create-buffer): New function.
15747 (desktop-idle-create-buffers): New function.
15748 (desktop-read): Add message about buffers to restore lazily.
15749 (desktop-lazy-abort): New command.
15750 (desktop-clear): Call desktop-lazy-abort.
15751 (desktop-lazy-complete): New command.
15752
15753 2005-01-06 Richard M. Stallman <rms@gnu.org>
15754
15755 * emacs-lisp/find-func.el (find-face-definition):
15756 Rename from find-face.
15757
15758 2005-01-06 Kim F. Storm <storm@cua.dk>
15759
15760 * simple.el (completion-list-mode-map): Map follow-link to mouse-face.
15761
15762 * man.el (Man-xref-man-page, Man-xref-header-file)
15763 (Man-xref-normal-file): Add follow-link property.
15764
15765 2005-01-06 Jay Belanger <belanger@truman.edu>
15766
15767 * calc/calc-units.el: Make sure the proper macro definitions are
15768 available when compiling.
15769
15770 2005-01-06 Juri Linkov <juri@jurta.org>
15771
15772 * isearch.el (isearch-lazy-highlight-update):
15773 Rename `isearch-lazy-highlight-interval' to `lazy-highlight-interval'.
15774
15775 2005-01-06 Miles Bader <miles@gnu.org>
15776
15777 * isearch.el (lazy-highlight): Rename from `lazy-highlight-face'.
15778 (isearch-lazy-highlight-face): Use new name.
15779
15780 2005-01-05 Stefan Monnier <monnier@iro.umontreal.ca>
15781
15782 * uniquify.el (uniquify-rationalize-file-buffer-names):
15783 Re-add an interactive spec.
15784 (uniquify-rationalize-file-buffer-names): Fix corner case when renaming
15785 to the same name.
15786
15787 * isearch.el (isearch-dehighlight): Remove unused arg `totally'.
15788 (isearch-update, isearch-done): Adjust calls accordingly.
15789
15790 2005-01-05 Richard M. Stallman <rms@gnu.org>
15791
15792 * custom.el (custom-set-variables, custom-theme-set-variables):
15793 Clarify documentation.
15794
15795 * emacs-lisp/find-func.el (find-variable)
15796 (find-variable-other-window, find-variable-other-frame):
15797 Fix the TYPE args to find-function-read and find-function-do-it.
15798 (find-function): Doc fix.
15799 (find-function-at-point): Replace function-at-point alias.
15800
15801 2005-01-04 Richard M. Stallman <rms@gnu.org>
15802
15803 * cus-face.el (custom-declare-face):
15804 Record defface in current-load-list.
15805
15806 * help-fns.el (variable-at-point): New arg ANY-SYMBOL.
15807
15808 * emacs-lisp/find-func.el: Doc fixes.
15809 (find-face-regexp): New variable.
15810 (find-function-regexp-alist): New variable.
15811 (find-function-C-source): Third arg is now TYPE.
15812 (find-function-search-for-symbol): Handle general TYPE.
15813 (find-function-read, find-function-do-it): Handle general TYPE.
15814 (find-definition-noselect, find-face): New functions.
15815 (function-at-point): Alias deleted.
15816
15817 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
15818
15819 * battery.el (display-battery-mode): Rename from display-battery.
15820 Handle the case where it gets turned off.
15821
15822 2005-01-04 Richard M. Stallman <rms@gnu.org>
15823
15824 * cus-edit.el (customize): Make :link point to user doc.
15825
15826 * man.el (Man-fontify-manpage): Turn off undo generation.
15827
15828 * add-log.el (change-log-font-lock-keywords): Don't match just "From".
15829
15830 2005-01-04 Andreas Schwab <schwab@suse.de>
15831
15832 * files.el (insert-directory): Only look for error lines in
15833 inserted text. Don't move too far after processing --dired markers.
15834
15835 2005-01-04 Richard M. Stallman <rms@gnu.org>
15836
15837 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook):
15838 Don't expand if the character is @, period, dash, etc.
15839 (define-mail-abbrev): Quote names that contain problem characters.
15840
15841 2005-01-04 Thien-Thi Nguyen <ttn@gnu.org>
15842
15843 * progmodes/hideshow.el: No longer require `cl'; `dolist' is standard.
15844
15845 2005-01-03 Richard M. Stallman <rms@gnu.org>
15846
15847 * replace.el (replace-dehighlight): Use lazy-highlight-cleanup.
15848 (query-replace-highlight, query-replace-lazy-highlight)
15849 (query-replace): Definitions moved up. Doc fix.
15850
15851 2005-01-03 Richard M. Stallman <rms@gnu.org>
15852
15853 * isearch.el (lazy-highlight): Group renamed from isearch-lazy-...
15854 (lazy-highlight-cleanup, lazy-highlight-initial-delay)
15855 (lazy-highlight-interval, lazy-highlight-max-at-a-time)
15856 (lazy-highlight-face): Rename from isearch-lazy-...
15857 Change all references to them.
15858
15859 2005-01-03 Luc Teirlinck <teirllm@auburn.edu>
15860
15861 * cus-edit.el (custom-file): Doc fix for defcustom.
15862 (custom-file): The function no longer sets the variable
15863 `custom-file' to its return value.
15864
15865 * startup.el (command-line): No longer load `custom-file'.
15866
15867 2005-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
15868
15869 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defface.
15870
15871 * progmodes/perl-mode.el (perl-nochange, perl-calculate-indent):
15872 Don't confuse module-prefixed identifiers for labels.
15873 Reported by Juan-Leon Lahoz Garcia <juanleon1@gmail.com>.
15874
15875 2005-01-02 Richard M. Stallman <rms@gnu.org>
15876
15877 * files.el (basic-save-buffer-1): Fix previous change.
15878
15879 * loadhist.el (file-loadhist-lookup): New function.
15880 (file-provides, file-requires): Use it.
15881
15882 * electric.el (Electric-pop-up-window): Use fit-window-to-buffer
15883 instead of calculating the right size.
15884
15885 2005-01-02 Karl Chen <quarl@cs.berkeley.edu> (tiny change)
15886
15887 * vc-svn.el (vc-svn-diff): Stay local if possible.
15888
15889 2005-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
15890
15891 * vc-arch.el (vc-arch-workfile-version): Handle the empty-branch case.
15892
15893 * files.el (hack-local-variables): Fix last change.
15894
15895 2005-01-02 Jay Belanger <belanger@truman.edu>
15896
15897 * calc/calc-yank.el (calc-edit-top): New variable.
15898 (calc-edit-mode): Set calc-edit-top to be the beginning of the edited
15899 object. Change header properties.
15900 (calc-edit-finish, calc-edit-finish-stack-object)
15901 (calc-edit-show-buffer): Use calc-edit-top to find the beginning of the
15902 edited object.
15903 * calc/calc-sel.el (calc-finish-selection-edit): Use calc-edit-top
15904 for the beginning of the edited object.
15905 * calc/calc-embed.el (calc-embedded-finish-edit): Use calc-edit-top
15906 for the beginning of the edited object.
15907 * calc/calc-prog.el (calc-edit-macro-finish-edit)
15908 (calc-finish-formula-edit, calc-macro-repeats)
15909 (calc-edit-macro-adjust-buffer, calc-edit-format-macro-buffer)
15910 (calc-edit-macro-pre-finish-edit): Use calc-edit-top for the
15911 beginning of the edited object.
15912 (calc-user-define-edit): Change the header for editing macros.
15913 Remove unnecessary variable.
15914
15915 2005-01-01 Jay Belanger <belanger@truman.edu>
15916
15917 * calc/calc-yank.el (calc-edit-mode): Change default header.
15918 (calc-edit-finish, calc-show-edit-buffer): Adjust to handle new header.
15919 * calc/calc-store.el (calc-edit-variable): Change title to match new
15920 header.
15921 * calc/calc-prog.el (calc-edit-user-syntax): Change title in edit
15922 mode to match new header.
15923 (calc-user-define-edit): Change titles to include names of commands.
15924 (calc-finish-formula-edit): Adjust to handle new header.
15925 (calc-finish-macro-edit): Remove.
15926 (calc-edit-macro-repeats, calc-edit-macro-adjust-buffer)
15927 (calc-edit-macro-command, calc-edit-macro-command-type)
15928 (calc-edit-macro-combine-alg-ent, calc-edit-macro-combine-ext-command)
15929 (calc-edit-macro-combine-var-name, calc-edit-macro-combine-digits)
15930 (calc-edit-format-macro-buffer, calc-edit-macro-pre-finish-edit)
15931 (calc-edit-macro-finish-edit): New functions.
15932 (calc-user-define-edit): Use new functions to edit named calc macros.
15933
15934 2005-01-01 Stefan <monnier@iro.umontreal.ca>
15935
15936 * files.el (hack-local-variables): Cleanup prefix/suffix matching.
15937
15938 * ses.el (copy-region-as-kill): Deactivate mark.
15939
15940 2005-01-01 Richard M. Stallman <rms@gnu.org>
15941
15942 * replace.el (occur-1): If the output buffer is also an input,
15943 don't kill it, rename it.
15944
15945 * faces.el (set-face-background, set-face-foreground): Doc fix.
15946
15947 * cus-face.el (custom-face-attributes): Fix :help-echo strings
15948 for :foreground and :background.
15949
15950 * dired.el (dired-view-command-alist): Variable deleted.
15951 (dired-view-file, dired-mouse-find-file-other-window):
15952 Delete the code to use it.
15953
15954 2005-01-01 Kim F. Storm <storm@cua.dk>
15955
15956 * image.el (insert-sliced-image): Use t for line-height property.
15957
15958 See ChangeLog.11 for earlier changes.
15959
15960 ;; Local Variables:
15961 ;; coding: iso-2022-7bit
15962 ;; End:
15963
15964 Copyright (C) 2005 Free Software Foundation, Inc.
15965 Copying and distribution of this file, with or without modification,
15966 are permitted provided the copyright notice and this notice are preserved.
15967
15968 ;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1